@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
.en {
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  transition: 1s;
  font-size: 16px;
}
@media screen and (max-width: 960px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #353535;
  margin-top: 104px;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  body {
    margin-top: 64px;
  }
}

article {
  overflow: hidden;
}

/*@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}*/
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;
  }
}
@media screen and (min-width: 601px) {
  .sp-only {
    display: none !important;
  }
}
.scrollanime {
  transition: all ease 1s;
}

.opacity {
  opacity: 0;
}

.updown {
  opacity: 0;
  transform: translateY(-50px);
}

.downup {
  opacity: 0;
  transform: translateY(50px);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.scaleup {
  opacity: 0;
  transform: scale(0.8);
}

.fadeIn.opacity {
  opacity: 1;
}
.fadeIn.updown {
  opacity: 1;
  transform: translateY(0);
}
.fadeIn.downup {
  opacity: 1;
  transform: translateY(0);
}
.fadeIn.slide-right {
  opacity: 1;
  transform: translateX(0);
}
.fadeIn.slide-left {
  opacity: 1;
  transform: translateX(0);
}
.fadeIn.scaleup {
  opacity: 1;
  transform: scale(1);
}

.eachTextAnime {
  overflow: hidden;
  display: block;
  opacity: 0;
  transition: opacity ease .3s .5s;
}
.eachTextAnime span {
  transform: translateY(100%);
  display: inline-block;
  position: relative;
}
.eachTextAnime.appeartext {
  opacity: 1;
}
.eachTextAnime.appeartext span {
  transform: translateY(0);
  transition: all ease-out 1s;
}

.wrap01 {
  width: 1312px;
  max-width: 92%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 960px) {
  .wrap01 {
    width: 600px;
  }
}

.wrap02 {
  width: 1175px;
  max-width: 92%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 960px) {
  .wrap02 {
    width: 600px;
  }
}

.wrap03 {
  width: 900px;
  max-width: 92%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 960px) {
  .wrap03 {
    width: 600px;
  }
}

.wrap04 {
  width: 1040px;
  max-width: 92%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 960px) {
  .wrap04 {
    width: 600px;
  }
}

.wrap-r {
  max-width: calc(100% - (50% - (1175px/2)));
  width: calc(100% - 4%);
  margin-right: 0;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 960px) {
  .wrap-r {
    max-width: calc(100% - (50% - (600px/2)));
  }
}
@media screen and (max-width: 660px) {
  .wrap-r {
    max-width: 96%;
  }
}

.wrap-l {
  max-width: calc(100% - (50% - (1175px/2)));
  width: calc(100% - 4%);
  margin-right: auto;
  margin-left: 0;
  position: relative;
}
@media screen and (max-width: 960px) {
  .wrap-l {
    max-width: calc(100% - (50% - (600px/2)));
  }
}
@media screen and (max-width: 660px) {
  .wrap-l {
    max-width: 96%;
  }
}

.mt0 {
  margin-top: 0 !important;
}

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

.header {
  position: fixed;
  width: 100%;
  top: 0;
  height: 104px;
  background-color: #fff;
  z-index: 1000;
}
@media screen and (max-width: 960px) {
  .header {
    height: 64px;
  }
}
.header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  position: relative;
  width: 1312px;
  max-width: 98%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .header__inner {
    max-width: 92%;
  }
}
.header__logo {
  margin-right: auto;
  margin-left: 0;
  width: 158px;
  max-width: 15vw;
}
@media screen and (max-width: 960px) {
  .header__logo {
    width: 113px;
    max-width: none;
  }
}
.header__logo__a {
  display: block;
}
.header__nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .header__nav {
    transform: rotateY(0) translateY(-100%);
    visibility: hidden;
    flex-direction: column;
    position: fixed;
    padding-top: 100px;
    padding-bottom: 30px;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: -1;
    transition: all ease .5s;
    grid-row-gap: 60px;
    overflow: auto;
  }
  .header__nav.active {
    visibility: visible;
    transform: scaleY(1) translateY(0);
  }
}
.header__nav__lists {
  display: flex;
  column-gap: min(1vw, 27px);
}
@media screen and (max-width: 960px) {
  .header__nav__lists {
    flex-direction: column;
    width: 247px;
    max-width: 100%;
    grid-row-gap: 30px;
  }
}
.header__nav__lists > li > a {
  padding: 20px 0;
}
@media screen and (max-width: 960px) {
  .header__nav__lists > li > a {
    padding: 0;
  }
}
.header__nav__lists > li > a:hover {
  opacity: 1;
  color: #24ACA2;
}
.header__nav__item {
  position: relative;
  font-size: min(1.3vw, 14px);
}
@media screen and (max-width: 960px) {
  .header__nav__item {
    font-size: 16px;
  }
}
.header__nav__item a {
  display: block;
}
@media screen and (max-width: 960px) {
  .header__nav__item > a {
    position: relative;
  }
  .header__nav__item > a:after {
    display: block;
    content: '';
    width: 14px;
    height: 11px;
    background: center/contain url("../img/common/ico-menuArrow.svg") no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}
.header__nav__item.menu-item-has-children > a {
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .header__nav__item.menu-item-has-children > a:after {
    width: 14px;
    height: 14px;
    background: center/contain url("../img/common/ico-menuPlus.svg") no-repeat;
  }
}
.header__nav__item .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #C5E9E7;
  border-radius: 10px;
  white-space: nowrap;
  padding: 1em 2em;
  display: none;
}
@media screen and (max-width: 960px) {
  .header__nav__item .sub-menu {
    position: relative;
    top: auto;
    margin-top: 20px;
    padding: 1em 5%;
  }
}
.header__nav__item .sub-menu > li {
  margin-top: .7em;
}
@media screen and (max-width: 960px) {
  .header__nav__item .sub-menu > li {
    margin-top: 10px;
  }
}
.header__nav__item .sub-menu > li:first-of-type {
  margin-top: 0;
}
.header__nav__item.menu-item-has-children {
  cursor: pointer;
}
.header__ctas {
  display: flex;
  align-items: center;
  margin-left: min(4vw, 52px);
  column-gap: min(2vw, 16px);
}
@media screen and (max-width: 1070px) {
  .header__ctas {
    margin-left: 2vw;
  }
}
@media screen and (max-width: 960px) {
  .header__ctas {
    flex-direction: column;
    grid-row-gap: 30px;
    margin-left: 0;
  }
}
.header__ctas .btnContact {
  font-size: min(1.3vw, 16px);
  max-width: 18vw;
}
@media screen and (max-width: 960px) {
  .header__ctas .btnContact {
    font-size: 14px;
    max-width: none;
  }
}
.header__line {
  font-size: 13px;
  font-weight: 500;
}
.header__line a {
  display: block;
  margin: 10px auto 0;
  width: 110px;
}

.btnTel__nums {
  display: flex;
  font-size: min(1.6vw, 24px);
  font-weight: 500;
  align-items: center;
  column-gap: 8px;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .btnTel__nums {
    font-size: 24px;
  }
}
.btnTel__num {
  flex-shrink: 0;
}
.btnTel__txt {
  text-align: center;
  font-size: 12px;
  display: block;
  line-height: 1.2;
}

.btnContact {
  display: inline-flex;
  width: 240px;
  height: 56px;
  border-radius: 100px;
  background-color: #24ACA2;
  color: #fff;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  font-weight: bold;
  max-width: 100%;
  letter-spacing: 0.01em;
  border: solid 2px #24ACA2;
  transition: all ease .3s;
}
@media screen and (max-width: 960px) {
  .btnContact {
    height: 48px;
  }
}
.btnContact:hover {
  opacity: 1;
  background-color: #fff;
  color: #24ACA2;
}
.btnContact:hover svg path {
  fill: #24ACA2;
}

.menu_toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  grid-row-gap: 5px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  background-color: #24ACA2;
  border-radius: 50%;
  transition: all ease .5s;
}
.menu_toggle.active {
  background-color: transparent;
}
.menu_toggle__line {
  background-color: #fff;
  display: block;
  width: 16px;
  height: 1px;
  border-radius: 5px;
  transform-origin: center;
  transition: all ease .5s;
}
.menu_toggle__line.active {
  background-color: #24ACA2;
}
.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 {
  opacity: 0;
}
.menu_toggle__line--3.active {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: rotate(-45deg);
}

.footer__contents {
  border-radius: 24px 24px 0 0;
  padding: 64px 0 32px;
  background-color: #353535;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .footer__contents {
    padding: 40px 0;
  }
}
.footer__logo {
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .footer__logo {
    margin-bottom: 18px;
  }
}
.footer__logo img {
  width: 118px;
}
@media screen and (max-width: 960px) {
  .footer__logo img {
    width: 90px;
  }
}
.footer__address {
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .footer__address {
    font-size: 13px;
  }
}
.footer__tel {
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (max-width: 960px) {
  .footer__tel {
    font-size: 13px;
  }
}
.footer__sns {
  margin-top: 64px;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  column-gap: 16px;
}
@media screen and (max-width: 960px) {
  .footer__sns {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.footer__sns__item {
  width: 32px;
}
@media screen and (max-width: 960px) {
  .footer__sns__item {
    width: 20px;
  }
}
.footer__sns__item.line {
  width: 110px;
}
.footer__nav {
  display: flex;
  column-gap: 16px;
  justify-content: center;
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (max-width: 960px) {
  .footer__nav {
    font-size: 13px;
  }
}
.footer__copy {
  padding: 12px;
  text-align: center;
  font-size: 12px;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .footer__copy {
    font-size: 10px;
  }
}

.cmn_txtGrade01 {
  display: inline-block;
  background: linear-gradient(to right, #24ACA2, #1A726C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cmn_ttl01 {
  font-size: 24px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .cmn_ttl01 {
    font-size: 18px;
  }
}
.cmn_ttl01.center {
  text-align: center;
}
.cmn_ttl01__main {
  font-weight: 500;
}
.cmn_ttl01__main.white {
  color: #fff;
}
.cmn_ttl01__main .jp {
  display: block;
}
.cmn_ttl01__main .jp em {
  color: #24ACA2;
}
.cmn_ttl01__main .en {
  font-size: 3.3333em;
  letter-spacing: 0.03em;
  line-height: 1.18;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .cmn_ttl01__main .en {
    font-size: 2.8em;
  }
}
.cmn_ttl01__main.small {
  font-size: 16px;
}
.cmn_ttl01__main.small .en {
  font-size: 2.5em;
}
.cmn_ttl01__sub {
  font-size: 1.333em;
  font-weight: 500;
  margin-top: 1em;
  line-height: 1.3;
}
@media screen and (max-width: 960px) {
  .cmn_ttl01__sub {
    font-size: 1.1em;
    margin-top: 0.8em;
  }
}
.cmn_ttl01__sub.onlySub {
  margin-top: 0;
  font-size: 1.17em;
}
.cmn_ttl01__sub.fcGreen {
  color: #24ACA2;
}
.cmn_ttl01__border {
  display: block;
  width: 5em;
  height: 2px;
  background-color: #E9E9E9;
  margin-top: 1.333em;
  margin-bottom: 1.333em;
}
@media screen and (max-width: 960px) {
  .cmn_ttl01__border {
    margin-top: 0.8em;
    margin-bottom: 0.8em;
  }
}
.cmn_ttl01__border.center {
  margin-right: auto;
  margin-left: auto;
}
.cmn_ttl01__border.white {
  background-color: #fff;
}
.cmn_ttl01__border.short {
  width: 2.5em;
}

.cmn_img01 {
  position: relative;
  padding: 27px 27px 0 0;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .cmn_img01 {
    padding: 20px 20px 0 0;
  }
}
.cmn_img01 img {
  border-radius: 16px;
}
@media screen and (max-width: 960px) {
  .cmn_img01 img {
    border-radius: 12px;
  }
}
.cmn_img01:before {
  display: block;
  content: "";
  width: 292px;
  height: 175px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #24ACA2;
  border-radius: 15px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .cmn_img01:before {
    width: 220px;
    height: 140px;
    border-radius: 12px;
  }
}
.cmn_img01.leftBottom {
  padding: 0 0 27px 27px;
}
@media screen and (max-width: 960px) {
  .cmn_img01.leftBottom {
    padding: 0 0 20px 20px;
  }
}
.cmn_img01.leftBottom:before {
  top: auto;
  right: auto;
  left: 0;
  bottom: 0;
}

.cmn_btn01 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  max-width: 100%;
  height: 56px;
  border-radius: 100px;
  border: solid 2px #24ACA2;
  letter-spacing: 0.06em;
  font-weight: bold;
  color: #24ACA2;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  .cmn_btn01 {
    height: 48px;
    width: 220px;
  }
}
.cmn_btn01:after {
  display: block;
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  /*width: 6px;
  height: 10px;
  background: center/contain url("../img/common/ico-btnArrow.svg") no-repeat;*/
  width: 6px;
  height: 6px;
  border-top: solid 1px #24ACA2;
  border-right: solid 1px #24ACA2;
  transform: rotate(45deg);
  transition: all ease .3s;
}
.cmn_btn01.downArrow {
  font-size: 14px;
  /*height: 40px;*/
}
@media screen and (max-width: 960px) {
  .cmn_btn01.downArrow {
    width: 240px;
  }
}
.cmn_btn01.downArrow:after {
  transform: rotate(135deg);
}
.cmn_btn01:hover {
  background-color: #24ACA2;
  border-color: #fff;
  color: #fff;
  opacity: 1;
}
.cmn_btn01:hover:after {
  border-color: #fff;
}

.secCmnCta {
  margin: 64px 0;
}
.secCmnCta__flex {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 960px) {
  .secCmnCta__flex {
    flex-direction: column;
    align-items: center;
  }
}
.secCmnCta__flex:hover .secCmnCta__img img {
  transform: scale(1.1);
}
@media screen and (max-width: 960px) {
  .secCmnCta__flex:hover .secCmnCta__img img {
    transform: none;
  }
}
.secCmnCta__flex:hover .btnContact {
  background-color: #fff;
  color: #24ACA2;
}
.secCmnCta__txtBlk {
  background-color: #C5E9E7;
  flex-shrink: 0;
  padding: 79px min(5vw, 79px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .secCmnCta__txtBlk {
    background-color: inherit;
    padding: 40px 5%;
  }
}
.secCmnCta__btn {
  margin-top: 52px;
}
@media screen and (max-width: 960px) {
  .secCmnCta__btn {
    position: relative;
    margin-top: 30px;
  }
}
.secCmnCta__img {
  flex-grow: 1;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .secCmnCta__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .secCmnCta__img:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #24ACA2, #1A726C);
    opacity: 0.8;
    z-index: 0;
  }
}
.secCmnCta__img img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
  transition: all ease .5s;
}
@media screen and (max-width: 960px) {
  .secCmnCta .cmn_ttl01 {
    color: #fff;
    text-align: center;
  }
}
@media screen and (max-width: 960px) {
  .secCmnCta .cmn_ttl01 .jp em {
    color: #fff;
  }
}
@media screen and (max-width: 960px) {
  .secCmnCta .cmn_txtGrade01 {
    color: #fff;
    -webkit-text-fill-color: #fff;
  }
}
@media screen and (max-width: 960px) {
  .secCmnCta .btnContact {
    color: #24ACA2;
    background-color: #fff;
  }
}

.page-id-23 .secCmnCta, .page-id-17 .secCmnCta, .page-id-19 .secCmnCta, .page-id-21 .secCmnCta {
  display: none;
}

.breadcrumbs {
  width: 1312px;
  max-width: 98%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .breadcrumbs {
    max-width: 92%;
    font-size: 13px;
  }
}
.breadcrumbs__ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 34px;
}
.breadcrumbs__li {
  position: relative;
}
.breadcrumbs__li:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  margin: auto;
  width: 5px;
  height: 5px;
  border-top: solid 1px #353535;
  border-right: solid 1px #353535;
  transform: rotate(45deg);
}
.breadcrumbs__li:last-of-type:after {
  display: none;
}

@media screen and (max-width: 960px) {
  .pageHeader .wrap01 {
    width: 100%;
  }
}
.pageHeader__bg {
  margin-top: 64px;
  margin-bottom: 160px;
  position: relative;
  padding: 153px 2.3% 58px;
}
@media screen and (max-width: 960px) {
  .pageHeader__bg {
    padding: 50px 4% 32px;
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 960px) {
  .pageHeader__bg .cmn_ttl01__main .en {
    font-size: 2.2em;
  }
}
.pageHeader__bg .cmn_ttl01__border {
  width: 2.5em;
}
.pageHeader__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-right: 10%;
  padding-bottom: 42px;
}
@media screen and (max-width: 960px) {
  .pageHeader__img {
    padding-right: 5%;
    padding-bottom: 20px;
  }
}
.pageHeader__img:before {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 266px;
  height: 155px;
  border-radius: 16px;
  background-color: #24ACA2;
  z-index: -1;
}
.pageHeader__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.pageHeader__onlyTxt {
  margin-top: 80px;
}
@media screen and (max-width: 960px) {
  .pageHeader__onlyTxt {
    margin-top: 40px;
  }
}
.pageHeader__onlyTxt .cmn_ttl01 {
  font-size: 16px;
}
.pageHeader__onlyTxt .cmn_ttl01__main .en {
  font-size: 3em;
}
@media screen and (max-width: 960px) {
  .pageHeader__onlyTxt .cmn_ttl01__main .en {
    font-size: 2.2em;
  }
}
.pageHeader__onlyTxt .cmn_ttl01__border {
  width: 3em;
  margin: 40px auto 32px;
}
@media screen and (max-width: 960px) {
  .pageHeader__onlyTxt .cmn_ttl01__border {
    margin: 30px auto 30px;
  }
}

.fcGreen {
  color: #24ACA2;
}
