@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  transition: 1s;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #231815;
  line-height: 1.5;
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (min-width: 961px) {
  .disp_sp {
    display: none !important;
    visibility: hidden !important;
  }
}
@media screen and (max-width: 960px) {
  .disp_pc {
    display: none !important;
    visibility: hidden !important;
  }
}
.en {
  font-family: "Inter", sans-serif;
}

.gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.scrollanime {
  /*ここで全体のアニメーション秒数を設定*/
  transition: all ease 1.5s;
  /*出現前は全て透明に*/
  opacity: 0;
}

.js-top1scroll .scrollanime {
  transition-delay: .5s;
}

/*classに応じて出現前の位置や大きさを設定*/
.toUp {
  transform: translateY(50px);
}

.toDown {
  transform: translateY(-50px);
}

.toLeft {
  transform: translateX(50px);
}

.toRight {
  transform: translateX(-50px);
}

.toBig {
  transform: scale(0.8);
}

/*画面に入った後は元の位置や大きさに戻る*/
.fadeIn.scrollanime {
  opacity: 1;
}

.fadeIn.toUp {
  transform: translateY(0);
}

.fadeIn.toDown {
  transform: translateY(0);
}

.fadeIn.toLeft {
  transform: translateX(0);
}

.fadeIn.toRight {
  transform: translateX(0);
}

.fadeIn.toBig {
  transform: scale(1);
}

.textAnime {
  overflow: hidden;
}

.textAnime span {
  display: inline-block;
  transition: all ease .5s;
}

.txtToTop span {
  transform: translateY(100%);
}

.txtToBottom span {
  transform: translateY(-100%);
}

.txtToRight span {
  transform: scaleX(0);
  transform-origin: left;
}

.txtColor span {
  color: #E0E0E0;
}

.txtRotateX span {
  opacity: 0;
  transform: rotateY(360deg);
}

.txtRotateY span {
  opacity: 0;
  transform: rotateX(360deg);
}

.fadeIn.txtToTop span {
  transform: translateY(0);
}

.fadeIn.txtToBottom span {
  transform: translateY(0);
}

.fadeIn.txtToRight span {
  transform: scaleX(1);
}

.fadeIn.txtColor span {
  color: #333333;
}

.fadeIn.txtRotateX span {
  opacity: 1;
  transform: rotateY(0);
}

.fadeIn.txtRotateY span {
  opacity: 1;
  transform: rotateX(0);
}

.wrap01 {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .wrap01 {
    width: 600px;
  }
}

.wrap02 {
  width: 1000px;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .wrap02 {
    width: 600px;
  }
}

.wrap-r {
  max-width: calc(100% - (50% - (1200px/2)));
  width: calc(100% - 5%);
  margin-right: 0;
  margin-left: auto;
}

.wrap-l {
  max-width: calc(100% - (50% - (1200px/2)));
  width: calc(100% - 5%);
  margin-right: auto;
  margin-left: 0;
}

a {
  transition: all ease .3s;
}
a:hover {
  opacity: 0.7;
}

.fcWhite {
  color: #fff !important;
}

.ttl01--center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ttl01__jp {
  font-size: 14px;
  padding-left: 25px;
  position: relative;
  font-weight: bold;
  display: block;
}
.ttl01__jp:before {
  display: block;
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 5px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background-color: #F5BF09;
}
.ttl01__en {
  display: inline-block;
  line-height: 1.2;
  font-size: 60px;
  font-weight: bold;
  background: linear-gradient(273deg, #99D4A8 3.61%, #30987B 50.57%, #28AB9F 97.54%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ttl01__en.fcWhite {
  background: none;
  background-clip: inherit;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
}
@media screen and (max-width: 960px) {
  .ttl01__en {
    font-size: 42px;
  }
}

.btn01 {
  display: flex;
  border-radius: 4px;
  background-color: #28AB9F;
  font-size: 16px;
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 282px;
  max-width: 100%;
  height: 44px;
  align-items: center;
  font-weight: 500;
  position: relative;
  border: solid 2px #28AB9F;
}
.btn01:hover {
  background-color: #fff;
  color: #28AB9F;
  opacity: 1;
}
.btn01__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 100px;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
}
.btn01--right {
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .btn01.sp-left {
    margin-right: auto;
    margin-left: 0;
  }
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  padding-top: 30px;
  z-index: 100;
}
@media screen and (max-width: 960px) {
  .header {
    padding-top: 10px;
  }
}
.header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  position: relative;
  max-width: calc(100% - 60px);
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  height: 80px;
  padding: 0 23px;
}
@media screen and (max-width: 960px) {
  .header__inner {
    max-width: 90%;
    padding: 0 6px;
    height: 40px;
    border-radius: 4px;
  }
}
.header__logo {
  margin-right: auto;
  margin-left: 0;
}
.header__logo__a {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
@media screen and (max-width: 1200px) {
  .header__logo__a {
    flex-direction: column;
  }
}
@media screen and (max-width: 960px) {
  .header__logo__a {
    flex-direction: row;
    column-gap: 7px;
  }
}
.header__logo img {
  width: 284px;
}
@media screen and (max-width: 1200px) {
  .header__logo img {
    width: 200px;
  }
}
@media screen and (max-width: 960px) {
  .header__logo img {
    width: 136px;
  }
}
.header__logo__txt {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .header__logo__txt {
    font-size: 12px;
  }
}
@media screen and (max-width: 960px) {
  .header__logo__txt {
    font-size: 7px;
  }
}
@media screen and (max-width: 960px) {
  .header__nav {
    transform: rotateY(0) translateY(-100%);
    visibility: hidden;
    flex-direction: column;
    position: fixed;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    color: #fff;
    z-index: -1;
    transition: all ease .5s;
    border-radius: 0 0 0 80px;
  }
  .header__nav.active {
    visibility: visible;
    transform: scaleY(1) translateY(0);
  }
}
.header__nav__lists {
  display: flex;
  column-gap: 50px;
  color: #28AB9F;
  font-weight: bold;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .header__nav__lists {
    column-gap: 25px;
  }
}
@media screen and (max-width: 960px) {
  .header__nav__lists {
    flex-direction: column;
    grid-row-gap: 50px;
    width: 204px;
    margin: 170px auto 0;
    align-items: flex-start;
  }
}
.header__nav__item__a:hover {
  opacity: 1;
  color: #F5BF09;
}

.menuBtn {
  display: flex;
  padding: 0 10px 0 23px;
  border-radius: 8px;
  background-color: #28AB9F;
  font-size: 14px;
  color: #fff;
  justify-content: space-between;
  width: 204px;
  max-width: 100%;
  height: 44px;
  align-items: center;
  font-weight: 500;
  border: solid 2px #28AB9F;
}
.menuBtn:hover {
  color: #28AB9F !important;
  background-color: #fff;
  opacity: 1;
}
.menuBtn__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 100px;
  width: 24px;
  height: 24px;
}

.menu_toggle {
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  margin: auto;
  width: 33px;
  height: 32px;
  display: flex;
  flex-direction: column;
  grid-row-gap: 3px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  background-color: #28AB9F;
  border-radius: 3px;
}
.menu_toggle__line {
  background-color: #fff;
  display: block;
  width: 18px;
  height: 2px;
  transform-origin: center;
  transition: all ease .5s;
}
.menu_toggle__line--1.active {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
.menu_toggle__line--2.active {
  transform: scale(0);
}
.menu_toggle__line--3.active {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: rotate(-45deg);
}

.cmnCtaBlk {
  display: flex;
  height: 375px;
  margin-bottom: 112px;
}
@media screen and (max-width: 960px) {
  .cmnCtaBlk {
    margin-bottom: 0;
    height: 195px;
  }
}
@media screen and (max-width: 740px) {
  .cmnCtaBlk {
    flex-direction: column;
    height: auto;
  }
}
.cmnCtaBlk__item {
  width: 50%;
  height: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 740px) {
  .cmnCtaBlk__item {
    width: 100%;
    height: 195px;
  }
}
.cmnCtaBlk__item:hover {
  opacity: 0.9;
}
.cmnCtaBlk__item:hover .cmnCtaBlk__bg {
  transform: scale(1.05);
}
.cmnCtaBlk__item:hover .cmnCtaBlk__arrow {
  transform: scale(1.2);
}
.cmnCtaBlk__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: all ease .5s;
}
.cmnCtaBlk__bg--recruit {
  background: center/cover url("../img/common/bg-cta-recruit.jpg") no-repeat;
}
.cmnCtaBlk__bg--contact {
  background: center/cover url("../img/common/bg-cta-contact.jpg") no-repeat;
}
.cmnCtaBlk .ttl01 {
  position: absolute;
  left: 27px;
  bottom: 24px;
}
@media screen and (max-width: 740px) {
  .cmnCtaBlk .ttl01 {
    left: 10px;
    bottom: 11px;
  }
}
.cmnCtaBlk__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 100px;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 30px;
  bottom: 30px;
  transition: all ease .5s;
}
@media screen and (max-width: 740px) {
  .cmnCtaBlk__arrow {
    right: 10px;
    bottom: 17px;
  }
}

.footerMain {
  background-color: #062320;
  padding: 80px 0;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 960px) {
  .footerMain {
    padding: 40px 0;
  }
}
.footerMain__inner {
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
}
@media screen and (max-width: 960px) {
  .footerMain__inner {
    grid-row-gap: 40px;
    width: 900px;
  }
}
@media screen and (max-width: 740px) {
  .footerMain__inner {
    flex-direction: column;
  }
}
.footerMain__left {
  flex-shrink: 0;
}
.footer__logo {
  display: block;
  width: 284px;
  max-width: 100%;
  margin-bottom: 42px;
}
@media screen and (max-width: 960px) {
  .footer__logo {
    margin-bottom: 18px;
  }
}
.footer__address {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}
.footer__tels {
  display: flex;
  column-gap: 16px;
  font-size: 14px;
  font-weight: 500;
}
.footer__links {
  display: flex;
  column-gap: 50px;
  font-weight: bold;
  align-items: center;
  flex-wrap: wrap;
  grid-row-gap: 20px;
  justify-content: flex-end;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .footer__links {
    justify-content: flex-start;
    column-gap: 40px;
    width: 280px;
    max-width: 100%;
  }
  .footer__links .menuBtn {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .footer__link--btn {
    width: 100%;
    margin-top: 10px;
  }
}
.footer__link a:hover {
  opacity: 1;
  color: #28AB9F;
}
.footer__btm {
  display: flex;
  justify-content: flex-end;
  column-gap: 40px;
  align-items: center;
  font-weight: 500;
  margin-top: 100px;
}
@media screen and (max-width: 960px) {
  .footer__btm {
    margin-top: 20px;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    grid-row-gap: 40px;
  }
}
.footer__privacy {
  font-size: 12px;
}
.footer__copy {
  font-size: 10px;
}
@media screen and (max-width: 960px) {
  .footer__copy {
    text-align: center;
  }
}
.footer__pageTop {
  opacity: 0;
  cursor: pointer;
  transition: all ease .3s;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 200px;
  border: solid 1px #062320;
  z-index: 1000;
}
.footer__pageTop.is-show {
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .footer__pageTop {
    width: 44px;
    height: 44px;
    top: auto;
    bottom: 15px;
    right: 15px;
  }
}
.footer__pageTop:hover {
  opacity: 0.8;
}

.pageTitle {
  margin: 20px 20px 0 20px;
  border-radius: 10px;
  background: center/cover url("../img/common/bg-pageHeader.jpg") no-repeat;
  position: relative;
}
@media screen and (max-width: 960px) {
  .pageTitle {
    margin: 0;
    border-radius: 0;
    background-image: url("../img/common/bg-pageHeader-sp.jpg");
  }
}
.pageTitle__inner {
  padding-top: 170px;
  padding-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .pageTitle__inner {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}

.breadcrumb {
  position: absolute;
  right: 33px;
  bottom: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.breadcrumb__item {
  display: flex;
  column-gap: 8px;
  align-items: center;
}
.breadcrumb__item:not(:last-of-type):after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
}
