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

/* 変数 */
:root {
  --headerHight: 100px;
  --menuBarWidth: 70px;
  --primaryColor: #202B46;
  --secondaryColor: #313B54;
  --titleFontColor: #C9B177;
}
/* ここまで */


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


/* 共通 */
body {
  background: var(--primaryColor);
}
main {
  overflow: hidden;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}

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

/* フォント関係 */
.bodyClass {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
  color: #fff;
}

a {
  color: #fff;
	text-decoration: none;
}

.afont {
  font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.gfont {
  font-family: "Noto Sans JP", sans-serif;
  /* font-optical-sizing: auto; */
}




/* 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: calc(100% - 190px);
  height: var(--headerHight);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
}

#topMenuContainer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 10;
}

#menu-1.headerMenu {
  margin-right: 30px;
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  gap: 0 20px;
}

#menu-1.headerMenu li {
  padding: 0 20px;
  height: 34px;
  background: var(--primaryColor);
  border-radius: 17px;
}
/* #menu-1.headerMenu li:first-of-type {
  border: 2px solid #fff;
  box-sizing: border-box;
} */

#menu-1.headerMenu li a {
  height: 100%;
  font-size: 16px;
  letter-spacing: 0.7px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

#menu-1.headerMenu li.headerTel {
  width: 170px;
  height: 34px;
  padding: 0;
  background: url(../img/headerTelBack.png) center center / contain no-repeat;
}

#menu-1.headerMenu li a img {
  width: 11px;
  margin-right: 5px;
}

#menuBarContainer {
  width: var(--menuBarWidth);
  height: var(--headerHight);
  padding: 25.5px 0;
  background: url(../img/menuBarBack.png) center center / 35px 35px no-repeat;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: 1s;
  z-index: 30;
  display: none;
}

#menuBarContainer span {
  width: 20px;
  height: 2px;
  margin: 5px auto 0 auto;
  background: #fff;
  z-index: 5;
  display: block;
  transition: 1s;
}

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

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

#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(3.5px) rotate(0deg);}
  100% {transform: translateY(3.5px) rotate(45deg);}
}
@keyframes open3 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(-3.5px) rotate(0deg);}
  100% {transform: translateY(-3.5px) rotate(-45deg);}
}

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

















#menuContents {
  width: 230px;
  height: 300px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  position: fixed;
  inset: 10px 10px auto auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}
#menuContents.open {
  visibility: visible;
  opacity: 1;
}

#menuContents nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px 0;
}

#menuContents #menu-2 li {
  position: relative;
}

#menuContents #menu-2 li a {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--primaryColor);
  text-align: center;
}

#menuContents #menu-2 li:last-of-type a {
  height: 100%;
}

#menuContents #menu-2 li:last-of-type {
  width: 170px;
  height: 34px;
  margin-top: 15px;
  background: url(..//img/headerTelBack.png) center center / contain no-repeat;
}

#menuContents #menu-2 li:last-of-type a {
  font-size: 15.5px;
  font-weight: 500;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 4px;
}

#menuContents #menu-2 li:last-of-type img {
  width: 10px;
}











/* フッター */
footer {
  width: 100%;
  padding-bottom: 20px;
  background: var(--primaryColor);
}

.toApp {
  padding: 70px 0 90px;
  text-align: center;
  background: url(../img/appBack.jpg) center center / cover no-repeat;
}

.toApp dt {
  font-size: 25px;
  letter-spacing: 1.5px;
  position: relative;
}

.toApp dt::after {
  content: "";
  width: 80px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
}

.toApp dd {
  margin-top: 35px;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toApp dd img {
  width: 25px;
  margin-right: 8px;
}

.toApp p {
  margin-top: 15px;
}

.toApp p span:first-of-type {
  font-size: 20px;
  display: block;
}

.toApp p span:last-of-type {
  font-size: 15px;
}

.btn {
  width: 300px;
  height: 70px;
  margin: 50px auto 0;
  border: 2px solid #fff;
  position: relative;
}
.btn:hover::after {
  right: 10px;
}

.btn::after {
  content: "";
  width: 22.75px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 17px;
  transition: 0.3s;
}

.btn a {
  height: 100%;
  font-size: 20px;
  letter-spacing: 1.3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footerText {
  width: 90%;
  max-width: 900px;
  margin: 100px auto 0;
  font-size: 12px;
}

.footerText p {
  margin-top: 80px;
}

.footerText p span {
  font-weight: bold;
}

footer small {
  width: 100%;
  display: block;
  margin: 80px auto 0;
  font-size: 12px;
  letter-spacing: 0.3px;
  text-align: center;
}






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






/* ヘッダー */
header {
  width: calc(100% - 155px);
}

#menu-1.headerMenu {
  margin-right: 23px;
  gap: 0 15px;
}

#menu-1.headerMenu li a {
  font-size: 15px;
}

#menu-1.headerMenu li a img {
  margin-right: 4px;
}


}







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


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








/* ヘッダー */
header {
  width: 100%;
  background: var(--primaryColor);
}

#topMenuContainer {
  justify-content: flex-start;
}

#menu-1.headerMenu {
  margin-right: 0px;
  margin-left: auto;
}

header .logo {
  width: 94.0341px;
  margin-left: 15px;
}

#menu-1.headerMenu li {
  padding: 0 5px;
  /* height: 34px;
  background: var(--primaryColor); */
  border-radius: 0px;
  border: 2px solid #fff;
  box-sizing: border-box;
}

#menuBarContainer {
  display: block;
}

/* header {
  width: calc(100% - 190px);
  height: var(--headerHight);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
}

#topMenuContainer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 12;
} */







/* フッター */
.toApp {
  padding: 50px 0 70px;
  text-align: center;
  background: url(../img/appBack.jpg) center center / cover no-repeat;
}

.toApp dt {
  font-size: 22px;
  letter-spacing: 1px;
}

.toApp dd {
  margin-top: 30px;
}

.toApp p {
  margin-top: 10px;
}

.btn {
  margin: 40px auto 0;
}

.footerText {
  margin: 60px auto 0;
}

.footerText p {
  margin-top: 55px;
}

footer small {
  margin: 60px auto 0;
}




}