/* 共通 */
.pc.tb {
  display: inline-block
}
.tb {
  display: none;
}
.sp {
  display: none;
}

/* 変数 */
:root {
  --headerHight: 70px;
  --menuBarWidth: 70px;
  --primaryColor: #2d509a;
  --secondaryColor: #c1e9f7;
  --fontColor: #231815;
  --gradation: linear-gradient(to right, #7fccd3 0%, #0071bc 92.2704%, #0071bc 100%)
}
/* ここまで */


/* 全体 */
@media (min-width: 561px) {
  a[href^="tel:"] {
      pointer-events: none;
      cursor: default;
  }
}


/* 共通 */
img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
	color: var(--primaryColor);
}

/* リキャプチャ */
.grecaptcha-badge { visibility: hidden; }

/* フォント関係 */
body {
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.7;
  font-weight: 400;
  font-style: normal;
}

.gfont {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: bolder;
  font-style: normal;
}




/* imgアニメーション */
.imgWrap, .imgWrap2 {
  overflow: hidden;
  position: relative;
}

.imgWrap::before, .imgWrap2::before {
  background: var(--primaryColor);
  content: '';
  inset: -1%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.imgAnimation.imgWrap::before {
  animation: imgAnimation 2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes imgAnimation {
  0% {transform: translateX(0);}
  100% {transform: translateX(-100%);}
}

.imgAnimation2.imgWrap2::before {
  animation: imgAnimation2 2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes imgAnimation2 {
  0% {transform: translateX(0);}
  100% {transform: translateX(100%);}
}




/* フェードイン */
.fadeinTopBottom {
  opacity : 0;
  transform: translateY(80px);
  transition: opacity 2s, transform 2s;
}
@media(max-width: 560px) {
  .fadeinTopBottom {
    opacity : 0;
    transform: translateY(40px);
    transition: opacity 2s, transform 2s;
  }
}

.fadein_bottom {
  opacity : 0;
  transform: translateY(80px);
  transition: opacity 2s, transform 2s;
}
@media(max-width: 560px) {
  .fadein_bottom {
    opacity : 0;
    transform: translateY(40px);
    transition: opacity 2s, transform 2s;
  }
}





/* ヘッダー */
header {
  width: 100%;
  height: var(--headerHight);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

#topMenuContainer {
  height: 100%;
  padding: 0 5px 0 20px;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 11;
}

.logo {
  width: 30%;
  max-width: 226.65px;
}

#menuBarContainer {
  width: var(--menuBarWidth);
  height: var(--headerHight);
  padding: 23px 0 19px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 50%;
  position: relative;
  top: 0;
  cursor: pointer;
  transition: 1s;
  z-index: 30;
}

#menuBarContainer span {
  width: 35px;
  height: 3px;
  margin: 6px auto 0 auto;
  background: var(--fontColor);
  border-radius: 1px;
  z-index: 5;
  display: block;
  transition: 1s;
}

#menuBarContainer > span:first-of-type {
  margin-top: 0;
}

#menuBarContainer p {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-indent: 2.2px;
  line-height: 1;
  font-weight: bolder;
  transition: 1s;
}

#menuBarContainer.open > span:first-of-type {
  animation: open1 1s both;
}
#menuBarContainer.open > span:last-of-type {
  animation: open3 1s both;
}
#menuBarContainer.open > p {
  opacity: 0;
  visibility: hidden;
}

#menuBarContainer.close > span:first-of-type {
  animation: close1 1s both;
}
#menuBarContainer.close > span:last-of-type {
  animation: close3 1s both;
}

@keyframes open1 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(9.5px) rotate(0deg);}
  100% {transform: translateY(9.5px) rotate(45deg);}
}
@keyframes open3 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(0px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(-45deg);}
}

@keyframes close1 {
  0% {transform: translateY(9.5px) rotate(45deg);}
  50% {transform: translateY(9.5px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(0deg);}
}
@keyframes close3 {
  0% {transform: translateY(0px) rotate(-45deg);}
  50% {transform: translateY(0px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(0deg);}
}

.headerTel {
  width: 98px;
  height: 138px;
  background: var(--gradation);
  border-radius: 0 0 0 20px;
  overflow: hidden;
  position: absolute;
  top: var(--headerHight);
  right: 0;
  z-index: 11;
}

.headerTel a {
  display: block;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px 0;
  font-size: 14px;
  letter-spacing: 2px;
  text-indent: 2px;
  font-weight: bold;
  color: #fff;
}

.headerTel a img {
  width: 30.48px;
}

.headerContact {
  display: none;
}








#menuContents {
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0;
  z-index: 10;
  font-weight: 500;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}
#menuContents.open {
  visibility: visible;
  opacity: 1;
}

.menuBack {
  width: 100%;
  min-width: 1260px;
  max-height: calc(100vh - 400px);
  object-fit: cover;
  object-position: bottom center;
}

.menuListContainer {
  width: 84%;
  max-width: 1050px;
  margin: 90px auto 0;
}

.menuListContainer nav {
  max-width: 750px;
}

.menuListContainer nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 50px;
}

.menuListContainer li {
  min-width: 140px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.menuListContainer li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradation);
}

.menuListContainer li a {
  font-size: 20px;
  color: var(--fontColor);
  white-space: nowrap;
}

.menuInfoContainer {
  margin-top: 90px;
  display: flex;
  gap: 30px 70px;
  position: relative;
}

.menuInfo1 p:first-of-type {
  font-size: 18.5px;
  letter-spacing: 2px;
}

.menuInfo1 p:nth-of-type(2) {
  margin: 5px 0 5px;
  font-size: 32.1px;
  letter-spacing: 2px;
}

.menuInfo1 p:last-of-type {
  font-size: 17.1px;
  letter-spacing: 2px;
}

.menuInfo2 {
  width: 385px;
  height: 86px;
  background: var(--gradation);
  border-radius: 15px;
  overflow: hidden;
}

.menuInfo2 a {
  display: block;
  height: 100%;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menuDeco {
  width: 119.8px;
  position: absolute;
  top: -130px;
  right: 0;
  z-index: -1;
}













/* フッター */
footer {
  margin-top: 50px;
  padding: 45px 0 50px;
  box-sizing: border-box;
  font-weight: 500;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.footerBack {
  width: 100%;
  min-width: 1900px;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  top: 0;
  z-index: -1;
}

.footerContentsContainer {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.footerContents {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0 20px;
}

.footerInfo {
  width: 336.38px;
}

.map {
  margin-top: 15px;
  letter-spacing: 1px;
  font-weight: 500;
}

.map img {
  width: 16.38px;
  margin: 0 7px 0 7px;
}

.address {
  margin: 10px 0 10px;
  padding-left: 7px;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 2;
}

.footerMenuContainer {
  width: 490px;
}

.footerMenuText p {
  font-weight: bold;
  line-height: 1.8;
}

.footerMenuText p:first-of-type {
  font-size: 18px;
}

.footerMenuText p:nth-of-type(3) {
  font-size: 43.18px;
  line-height: 1.4;
}

.footerMenu {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 12px;
}

.footerMenu li {
  width: 152px;
  height: 43px;
  background: #fff;
  border-radius: 15px;
}

.footerMenu li a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--fontColor);
}

footer small {
  display: block;
  margin-top: 30px;
  font-size: 11px;
  text-align: center;
}








@media (max-width: 1024px) {
/* 共通 */
.pc {
  display: none;
}
.tb {
  display: inline-block;
}
.tb.sp {
  display: inline-block;
}

/* 変数 */
/* :root {
  --headerHight: 80px;
  --menuBarWidth: 44px;
} */
/* ここまで */




/* ヘッダー */
.logo {
  /* width: 30%; */
  max-width: 200px;
}

.spLinkBtn {
  width: 100%;
  height: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  z-index: 11;
}

.headerTel, .headerContact {
  width: 50%;
  height: 100%;
  background: var(--gradation);
  border-radius: 0;
  /* overflow: hidden; */
  position: relative;
  top: auto;
  right: auto;
  z-index: 11;
}

.headerContact {
  display: block;
}

.headerTel a, .headerContact a {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 5px;
  font-size: 14px;
  letter-spacing: 2px;
  text-indent: 2px;
  font-weight: bold;
  color: #fff;
}

.headerTel a img {
  width: 25px;
}












/* #menuContents {
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0;
  z-index: 10;
  font-weight: 500;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 1s;
} */
/* #menuContents.open {
  visibility: visible;
  opacity: 1;
} */

.menuBack {
  width: 100%;
  min-width: initial;
  max-height: auto;
  margin-top: 80px;
  /* object-fit: cover;
  object-position: bottom center; */
}

.menuListContainer {
  /* width: 84%; */
  max-width: 550px;
  margin: 50px auto 0;
}

.menuListContainer nav {
  max-width: none;
}

/* .menuListContainer nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 50px;
} */

/* .menuListContainer li {
  min-width: 140px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 12px;
} */
/* .menuListContainer li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradation);
} */

/* .menuListContainer li a {
  font-size: 20px;
  color: var(--fontColor);
  white-space: nowrap;
} */

.menuInfoContainer {
  margin-top: 120px;
  /* display: flex;
  gap: 30px 70px;
  position: relative; */
}

/* .menuInfo1 p:first-of-type {
  font-size: 18.5px;
  letter-spacing: 2px;
} */

.menuInfo1 p:nth-of-type(2) {
  margin: 0px 0 0px;
  /* font-size: 32.1px;
  letter-spacing: 2px; */
}

/* .menuInfo1 p:last-of-type {
  font-size: 17.1px;
  letter-spacing: 2px;
} */

.menuInfo2 {
  /* width: 385px;
  height: 86px;
  background: var(--gradation);
  border-radius: 15px;
  overflow: hidden; */
  display: none;
}

/* .menuInfo2 a {
  display: block;
  height: 100%;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.menuDeco {
  width: 80px;
  /* position: absolute; */
  top: -40px;
  /* right: 0;
  z-index: -1; */
}




/* フッター */
footer {
  margin-top: 50px;
  padding: 0px 0 70px;
  /* box-sizing: border-box; */
  /* font-weight: 500;
  position: relative;
  z-index: 1; */
}

.footerBack {
  /* width: 100%; */
  min-width: initial;
  /* height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  top: 0;
  z-index: -1; */
}

.footerContentsContainer {
  /* width: 90%; */
  max-width: 644px;
  /* margin: 0 auto; */
}

.footerContents {
  /* display: flex; */
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px 0;
  flex-direction: column;
}

.footerInfo {
  width: 100%;
}

.footerLogo {
  width: 300px;
}

/* .map {
  margin-top: 15px;
  letter-spacing: 1px;
  font-weight: 500;
}

.map img {
  width: 16.38px;
  margin: 0 7px 0 7px;
}

.address {
  margin: 10px 0 10px;
  padding-left: 7px;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 2;
} */

.footerContentsContainer .footerDeco {
  display: block;
  width: 360px;
  margin: 30px auto 0;
}

.footerMenuContainer {
  width: 100%;
}

/* .footerMenuText p {
  font-weight: bold;
  line-height: 1.8;
}

.footerMenuText p:first-of-type {
  font-size: 18px;
}

.footerMenuText p:nth-of-type(3) {
  font-size: 43.18px;
  line-height: 1.4;
}

.footerMenu {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 12px;
}

.footerMenu li {
  width: 152px;
  height: 43px;
  background: #fff;
  border-radius: 15px;
}

.footerMenu li a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--fontColor);
}

footer small {
  display: block;
  margin-top: 30px;
  font-size: 11px;
  text-align: center;
} */

}






/* スマホ */
@media (max-width: 560px) {
/* 共通 */
.pc.tb {
  display: none;
}
.tb {
  display: none;
}
.sp {
  display: inline-block;
}


/* 変数 */
:root {
  --headerHight: 50px;
  --menuBarWidth: 50px;
}




/* ヘッダー */
#topMenuContainer {
  padding: 0 0px 0 10px;
}

.logo {
  width: 50%;
  max-width: 142.8px;
}

#menuBarContainer {
  /* width: var(--menuBarWidth);
  height: var(--headerHight); */
  padding: 14px 0 8px;
  /* box-sizing: border-box;
  text-align: center;
  border-radius: 50%;
  position: relative;
  top: 0;
  cursor: pointer;
  transition: 1s;
  z-index: 30; */
}

#menuBarContainer span {
  width: 28px;
  /* height: 3px; */
  margin: 5px auto 0 auto;
  /* background: var(--fontColor);
  border-radius: 1px;
  z-index: 5;
  display: block;
  transition: 1s; */
}

/* #menuBarContainer > span:first-of-type {
  margin-top: 0;
} */

#menuBarContainer p {
  margin-top: 5px;
  /* font-size: 10px; */
  letter-spacing: 0px;
  text-indent: 0px;
  /* line-height: 1;
  font-weight: bolder;
  transition: 1s; */
}

/* #menuBarContainer.open > span:first-of-type {
  animation: open1 1s both;
}
#menuBarContainer.open > span:last-of-type {
  animation: open3 1s both;
}
#menuBarContainer.open > p {
  opacity: 0;
  visibility: hidden;
}

#menuBarContainer.close > span:first-of-type {
  animation: close1 1s both;
}
#menuBarContainer.close > span:last-of-type {
  animation: close3 1s both;
} */

@keyframes open1 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(8.5px) rotate(0deg);}
  100% {transform: translateY(8.5px) rotate(45deg);}
}
/* @keyframes open3 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(0px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(-45deg);}
} */

@keyframes close1 {
  0% {transform: translateY(8.5px) rotate(45deg);}
  50% {transform: translateY(8.5px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(0deg);}
}
/* @keyframes close3 {
  0% {transform: translateY(0px) rotate(-45deg);}
  50% {transform: translateY(0px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(0deg);}
} */

.spLinkBtn {
  /* width: 100%; */
  height: 50px;
  /* position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  z-index: 11; */
}

/* .headerTel, .headerContact {
  width: 50%;
  height: 100%;
  background: var(--gradation);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  top: auto;
  right: auto;
  z-index: 11;
} */

.headerTel a, .headerContact a {
  /* height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 5px; */
  font-size: 12px;
  letter-spacing: 1.5px;
  text-indent: 1.5px;
  /* font-weight: bold;
  color: #fff; */
}

.headerTel a img {
  width: 18px;
}








/* #menuContents {
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0;
  z-index: 10;
  font-weight: 500;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 1s;
} */
/* #menuContents.open {
  visibility: visible;
  opacity: 1;
} */

.menuBack {
  /* width: 100%;
  min-width: initial;
  max-height: auto; */
  margin-top: 50px;
  /* object-fit: cover;
  object-position: bottom center; */
}

.menuListContainer {
  /* width: 84%; */
  max-width: 270px;
  margin: 30px auto 0;
}

/* .menuListContainer nav {
  max-width: none;
} */

.menuListContainer nav ul {
  /* display: flex;
  flex-wrap: wrap; */
  gap: 25px 10px;
}

.menuListContainer li {
  min-width: 130px;
  /* position: relative;
  display: flex;
  align-items: center; */
  gap: 0 8px;
}
/* .menuListContainer li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradation);
} */

.menuListContainer li a {
  font-size: 14px;
  /* color: var(--fontColor);
  white-space: nowrap; */
}

.menuInfoContainer {
  margin-top: 80px;
  /* display: flex;
  gap: 30px 70px;
  position: relative; */
}

.menuInfo1 p:first-of-type {
  font-size: 13px;
  letter-spacing: 1px;
}

.menuInfo1 p:nth-of-type(2) {
  margin: 0px 0 0px;
  font-size: 22.5px;
  letter-spacing: 1px;
}

.menuInfo1 p:last-of-type {
  font-size: 12px;
  letter-spacing: 1px;
}

.menuInfo2 {
  /* width: 385px;
  height: 86px;
  background: var(--gradation);
  border-radius: 15px;
  overflow: hidden; */
  display: none;
}

/* .menuInfo2 a {
  display: block;
  height: 100%;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.menuDeco {
  width: 58.7px;
  /* position: absolute; */
  top: -40px;
  /* right: 0;
  z-index: -1; */
}





/* フッター */
footer {
  margin-top: 50px;
  padding: 0px 0 70px;
  /* box-sizing: border-box; */
  /* font-weight: 500;
  position: relative;
  z-index: 1; */
}

.footerBack {
  /* width: 100%; */
  min-width: initial;
  /* height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  top: 0;
  z-index: -1; */
}

.footerContentsContainer {
  /* width: 90%; */
  max-width: 644px;
  /* margin: 0 auto; */
}

.footerContents {
  /* display: flex; */
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px 0;
  flex-direction: column;
}

/* .footerInfo {
  width: 100%;
} */

.footerLogo {
  width: 251.3px;
}

/* .map {
  margin-top: 15px;
  letter-spacing: 1px;
  font-weight: 500;
}

.map img {
  width: 16.38px;
  margin: 0 7px 0 7px;
}

.address {
  margin: 10px 0 10px;
  padding-left: 7px;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 2;
} */

.footerContentsContainer .footerDeco {
  /* display: block; */
  width: 241.5px;
  margin: 20px auto 0;
}

/* .footerMenuContainer {
  width: 100%;
} */

.footerMenuText p {
  /* font-weight: bold; */
  line-height: 1.6;
}

.footerMenuText p:first-of-type {
  font-size: 15px;
}

.footerMenuText p:nth-of-type(2) {
  font-size: 14px;
  /* line-height: 1.4; */
}

.footerMenuText p:nth-of-type(3) {
  font-size: 24.78px;
  line-height: 2;
}

.footerMenuText p:nth-of-type(4) {
  font-size: 14px;
  line-height: 1.2;
}

.footerMenu {
  max-width: 316px;
  margin: 25px auto 0;
  /* display: flex;
  flex-wrap: wrap; */
  /* gap: 12px 12px; */
}

/* .footerMenu li {
  width: 152px;
  height: 43px;
  background: #fff;
  border-radius: 15px;
} */

/* .footerMenu li a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--fontColor);
} */

footer small {
  display: block;
  margin-top: 30px;
  font-size: 11px;
  text-align: center;
}
}