@charset "UTF-8";
/* -------------------------------------------------- */
/* file   : common.css                                  */
/* update : 2022                                      */
/* -------------------------------------------------- */
/* Scss Document */
/* Scss Document */
/* -------------------------------------------------- */
/* file   : common.css                                  */
/* update : 2022                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* file   : base.css                                  */
/* update : 2022                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* 全デバイス共通(PC向け) */
/* --------------------------------------------------- */
/* reset */
/* -------------------------------------------------- */
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  padding: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "メイリオ", "Meiryo", "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 17px;
  color: #4d4d4d;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
}

/* font */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
@media print, screen and (min-width: 560px) and (max-width: 1080px) {
  /* ---------------------tablet END----------------------------- */
}
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  body {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
  }
  /* -------------------------------------------------- */
}
/* -------------------------------------------------- */
/* 全デバイス共通(PC向け) */
/* --------------------------------------------------- */
/* body */
/* -------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

/* link */
/* -------------------------------------------------- */
a {
  color: #4d4d4d;
}
a:link {
  text-decoration: none;
  word-break: break-all;
}
a:visited {
  text-decoration: none;
}
a:hover img {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* ---------------全デバイス共通--------------------- */
.pc {
  display: block;
}

.sp {
  display: none;
}

/* ---------------全デバイス共通(sp)--------------------- */
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* Scss Document */
/*　inview
----------------------------------------------- */
.view01 {
  position: relative;
  top: 30px;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view01.fadeInDown {
  top: 0;
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view02 {
  position: relative;
  right: 30px;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view02.fadeInLeft {
  right: 0;
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view03 {
  position: relative;
  left: 30px;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view03.fadeInRight {
  left: 0;
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view04 {
  position: relative;
  bottom: 30px;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view04.fadeInTop {
  bottom: 0;
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view05 {
  position: relative;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view05.fadeInStay {
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

@media screen and (min-width: 751px) {
  .view01 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view01.fadeInDown {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view02 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view02.fadeInLeft {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view03 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view03.fadeInRight {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view04 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view04.fadeInTop {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view05 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view05.fadeInStay {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
}
/* -------------------------------------------------- */
/* file   : common.css                                  */
/* update : 2022                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* file   : common.css                                */
/* update : 2022                                      */
/* -------------------------------------------------- */
/*============================
    header
  ============================*/
/* -------------------------------------------------- */
/* pc向け */
/* --------------------------------------------------- */
.header-inner {
  padding: 35px 100px 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo {
  width: 494px;
}

.header-btn {
  width: 35px;
  height: 25px;
  position: fixed;
  top: 72px;
  right: 100px;
  z-index: 13;
}

.menu-trigger {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.menu-trigger.active span {
  background: #FFF;
}
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #00aac3;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 11px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.menu-trigger.active span:nth-of-type(3) {
  opacity: 0;
}

.header-menu {
  width: 400px;
  height: 100%;
  background: #2ca6e0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header-menu.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.header-menu_inner {
  max-width: 350px;
  height: 100%;
  margin: 0 auto;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.header-menu_inner::-webkit-scrollbar {
  display: none;
}

.menu {
  margin-top: 115px;
  padding-bottom: 80px;
}
.menu a {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 21px;
  font-weight: 700;
  color: #FFF;
}
.menu a:hover {
  text-decoration: underline;
}

.menu_item {
  border-bottom: 1px solid #FFF;
}

.menu-icon {
  display: block;
}
.menu-icon::before {
  content: "◎";
  font-size: 21px;
  font-weight: 700;
  color: #FFF;
}

.menu_no-link {
  padding: 8px 0 8px 21px;
  font-size: 21px;
  font-weight: 700;
  color: #FFF;
  border-bottom: 1px dashed #FFF;
}

.menu_sub {
  padding-left: 40px;
  display: block;
  border-bottom: 1px dashed #FFF;
}
.menu_sub::before {
  content: "・";
  font-size: 21px;
  font-weight: 700;
  color: #FFF;
}

.menu_main {
  padding-left: 21px;
  display: block;
  border-bottom: 1px dashed #FFF;
}
.no-border {
  border: none;
}

/* -------------------pc END------------------------------- */
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
@media screen and (max-width: 768px) {
  .header-btn {
    top: 77px;
  }
}
/* ---------------------tablet END----------------------------- */
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  #container {
    overflow: hidden;
  }
  .header-inner {
    padding: 10px 15px 15px 10px;
  }
  .header-logo {
    width: 67.78%;
  }
  .header-btn {
    width: 20px;
    height: 14px;
    top: 30px;
    right: 15px;
  }
  .menu-trigger span {
    height: 2px;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 6px;
  }
  .header-menu {
    width: 100%;
    left: 0;
    right: auto;
    display: none;
    -webkit-transition: auto;
    transition: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header-menu_inner {
    max-width: 220px;
  }
  .menu {
    margin-top: 60px;
    padding-bottom: 60px;
  }
  .menu a {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 13px;
  }
  .menu a:hover {
    text-decoration: none;
  }
  .menu-icon::before {
    font-size: 13px;
  }
  .menu_no-link {
    padding: 5px 0 5px 13px;
    font-size: 13px;
  }
  .menu_sub {
    padding-left: 25px;
  }
  .menu_sub::before {
    font-size: 13px;
  }
  .menu_main {
    padding-left: 13px;
  }
  .no-border {
    border: none;
  }
}
/* -------------------sp END------------------------------- */
/* -------------------------------------------------- */
/* file   : common.css                                  */
/* update : 2022                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* file   : common.css                                */
/* update : 2023                                      */
/* -------------------------------------------------- */
/*============================
    footer
  ============================*/
/* -------------------------------------------------- */
/* pc向け */
/* --------------------------------------------------- */
.banner {
  padding: 14px 0 18px;
}

.banner_inner {
  text-align: center;
}

.footer-sns {
  padding: 22px 0;
  text-align: center;
  background: #f4f4f4;
}

.footer-sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 35px;
}

.footer-sns_item {
  width: 4.5%;
}

.footer-form {
  padding: 26px 0 24px;
}

.footer-form_ttl {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  color: #000;
}

.footer-form_btn {
  margin: 18px auto 0;
}

.footer-tel {
  padding: 14px 0 8px;
  text-align: center;
  background: #f4f4f4;
}

.footer-tel_inner {
  position: relative;
}
.footer-tel_inner::after {
  content: "";
  width: 71px;
  height: 77px;
  display: block;
  background: url(../img/f_contact.svg) no-repeat center/100% auto;
  position: absolute;
  bottom: 5px;
  left: calc(50% + 163px);
}

.footer-tel_ttl {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #000;
}

.footer-tel_no {
  margin-top: 7px;
}
.footer-tel_no a {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.02em;
  pointer-events: none;
  color: #000;
}
.footer-tel_no span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-tel_time {
  margin-top: 7px;
  font-size: 15px;
  letter-spacing: 0;
}

.footer-main {
  padding: 40px 0 5px;
  text-align: center;
}

.footer-logo {
  width: 247px;
  margin: 0 auto;
}

.footer-adress {
  margin-top: 33px;
  letter-spacing: 0;
}

.footer-copy {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0;
  display: block;
}

.lp-footer-sns {
  padding: 12px 0 16px;
  text-align: center;
  background: #f4f4f4;
}

.lp-footer-sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 14px;
}

.lp-footer-sns_item {
  width: 67px;
}
.lp-footer-sns_item img {
  width: 45px;
}

.lp-footer-sns_name {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  display: block;
}

.lp-footer-main {
  padding: 14px 0 10px;
}

.lp-footer_ttl {
  padding: 0 5px 5px;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #949494;
}

.lp-footer-logo {
  max-width: 320px;
  margin: 12px auto 0;
}

.lp-footer-adress {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0;
  text-align: center;
}

.lp-footer-contact {
  margin-top: 24px;
}

.lp-footer-contact_text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 8px auto 0;
  padding: 0 15px;
  font-size: 13px;
  letter-spacing: 0;
}

.lp-footer-copy {
  margin-top: 20px;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0;
  display: block;
}

/* -------------------pc END------------------------------- */
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
/* ---------------------tablet END----------------------------- */
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  .banner {
    padding: 12px 0 15px;
  }
  .banner_inner {
    padding: 0 10px;
  }
  .footer-sns {
    padding: 24px 0;
  }
  .footer-sns_list {
    gap: 0 30px;
  }
  .footer-sns_item {
    width: 12.5%;
  }
  .footer-form {
    padding: 20px 0;
  }
  .footer-form_ttl {
    font-size: 20px;
  }
  .footer-form_btn {
    margin: 14px auto 0;
  }
  .footer-tel {
    padding: 22px 0 20px;
  }
  .footer-tel_inner::after {
    width: 53px;
    height: 57px;
    bottom: -10px;
    left: calc(50% + 117px);
  }
  .footer-tel_ttl {
    font-size: 20px;
  }
  .footer-tel_no {
    margin-top: 8px;
  }
  .footer-tel_no a {
    font-size: 28px;
    pointer-events: all;
  }
  .footer-tel_no span {
    font-size: 15px;
  }
  .footer-tel_time {
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: 0;
  }
  .footer-main {
    padding: 18px 0 10px;
  }
  .footer-logo {
    width: 59.71%;
  }
  .footer-adress {
    margin-top: 27px;
  }
  .footer-copy {
    margin-top: 15px;
    font-size: 11px;
  }
  .lp-footer-main .inner {
    padding: 0 12px;
  }
  .lp-footer-adress {
    padding: 0 5px;
  }
  .lp-footer-contact_text {
    width: auto;
    padding: 0 20px;
  }
  .lp-footer-copy {
    margin-top: 15px;
    font-size: 11px;
  }
}
/* -------------------sp END------------------------------- */
/* -------------------------------------------------- */
/* file   : common.css                                  */
/* update : 2022                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* file   : common.css                                */
/* update : 2023                                      */
/* -------------------------------------------------- */
/*============================
    共通パーツ
  ============================*/
/* -------------------------------------------------- */
/* pc向け */
/* --------------------------------------------------- */
body.js-on {
  overflow: hidden;
}

.inner {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-ttl {
  padding: 11px 0 7px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-align: center;
  background: #f4f4f4;
}

.page-ttl02 {
  margin-bottom: 40px;
  padding: 10px 0 6px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #FFF;
  background: #00998c;
}

.head-ttl {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #231815;
  padding-left: 15px;
}
.head-ttl::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: 0;
  background: #231815;
  width: 4px;
  height: 100%;
  border-radius: 25px;
}
.head-ttl.green {
  font-size: 32px;
}
.head-ttl.green::before {
  background: #00998c;
}

.btn {
  width: 230px;
}
.btn a {
  padding: 7px 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  display: block;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 82, 179, 0.2);
          box-shadow: 2px 2px 5px rgba(0, 82, 179, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn a span {
  display: inline-block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn a:hover {
  color: #FFF;
  background: #006e46;
}
.btn a:hover span {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.btn--yellow a {
  color: #006e46;
  background: #e6e921;
}

.btn--green a {
  color: #FFF;
  background: #4aa499;
}

.recruit {
  padding: 19px 0 25px;
  text-align: center;
  background: #e1f3ef;
  position: relative;
}

.recruit_inner {
  position: relative;
}
.recruit_inner::before {
  content: "";
  width: 58px;
  height: 91px;
  display: block;
  background: url(../../img/recruit01.svg) no-repeat center/100% auto;
  position: absolute;
  bottom: -4px;
  right: calc(50% + 127px);
}
.recruit_inner::after {
  content: "";
  width: 63px;
  height: 80px;
  display: block;
  background: url(../../img/recruit02.svg) no-repeat center/100% auto;
  position: absolute;
  bottom: 0;
  left: calc(50% + 137px);
}

.recruit-ttl {
  font-size: 37px;
  font-weight: 700;
  letter-spacing: 0;
  color: #4aa499;
}

.recruit_btn {
  margin: 4px auto 0;
}

/* -------------------pc END------------------------------- */
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
/* ---------------------tablet END----------------------------- */
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  .inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .page-ttl {
    padding: 5px 0;
    font-size: 15px;
    letter-spacing: 0.05em;
  }
  .page-ttl02 {
    margin-bottom: 0;
    padding: 10px 0 6px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .head-ttl {
    position: relative;
    font-size: 17px;
    padding-left: 12px;
  }
  .head-ttl.green {
    font-size: 22px;
  }
  .btn {
    width: 230px;
  }
  .btn a {
    padding: 7px 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    display: block;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 5px rgba(0, 82, 179, 0.2);
            box-shadow: 2px 2px 5px rgba(0, 82, 179, 0.2);
    -webkit-transition: 0s;
    transition: 0s;
  }
  .btn a span {
    -webkit-transition: 0s;
    transition: 0s;
  }
  .btn a:hover {
    color: #006e46;
    background: #e6e921;
  }
  .btn a:hover span {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .recruit {
    padding: 14px 0 20px;
  }
  .recruit_inner::before {
    width: 47px;
    height: 73px;
    bottom: -4px;
    right: calc(50% + 125px);
  }
  .recruit_inner::after {
    width: 51px;
    height: 64px;
    bottom: 0;
    left: calc(50% + 125px);
  }
  .recruit-ttl {
    font-size: 30px;
  }
}
/* -------------------sp END------------------------------- */