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

/* 変数 */
:root {
  --headerHight: 70px;
  --menuBarWidth: 70px;
  --primaryColor: #ffb529;
  --secondaryColor: #94dc9e;
  --thirdColor: #f296ac;
  --fourthColor: #85c8e5;
  --fontColor: #141414;
  --backColor: #faf6f3;
}
/* ここまで */


/* 全体 */
main {
  overflow: hidden;
}

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

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

/* フォント関係 */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
  color: var(--fontColor);
  background: var(--backColor);
}

a {
  color: var(--fontColor);
	text-decoration: none;
}

.afontAmaru {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: bold;
}

.afontManbo {
  font-family: "ads-mambo", sans-serif;
}






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

.imgWrap::before, .imgWrap2::before {
  background: #fff;
  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%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

#topMenuContainer {
  position: relative;
  z-index: 12;
  display: flex;
  justify-content: flex-end;
}

.logo {
  width: 143.4093px;
  position: fixed;
  top: 20px;
  left: 30px;
}

.logo img {
  transition: 1s;
}

#topMenuContainer nav {
  margin: 0 0 0 auto;
  display: inline-block;
}

#menu-1 {
  height: 55px;
  margin: 10px 20px 0 auto;
  padding: 6px 6px 6px 35px;
  box-sizing: border-box;
  border-radius: 28px;
  background: #fff;
  display: flex;
  justify-content: flex-end;
  gap: 0 30px;
}

#menu-1 li {
  height: 100%;
  position: relative;
}
#menu-1 > li:last-of-type {
  padding: 0px 32px;
  box-sizing: border-box;
  border-radius: 23px;
  background: var(--primaryColor);
}
#menu-1 > li:last-of-type a {
  color: #fff;
}

#menu-1 li a {
  height: 100%;
  font-size: 14.4px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#menu-1 li ul {
  padding: 10px 40px;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-40%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
#menu-1 > li:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}

#menu-1 li ul li {
  margin: 15px 0;
  display: flex;
  align-items: center;
}

#menu-1 li ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primaryColor);
  margin: 0 5px 0 0;
}

#menu-1 li ul li a {
  color: var(--fontColor);
}

#menuBarContainer {
  width: 60px;
  height: 60px;
  margin: 10px 10px 0 auto;
  padding: 24px 0;
  box-sizing: border-box;
  position: relative;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: 1s;
  z-index: 3;
  display: none;
}

#menuBarContainer span {
  width: 24px;
  height: 3px;
  margin: 6px auto 0 auto;
  background: #000;
  border-radius: 3px;
  z-index: 5;
  display: block;
  transition: 1s;
}
/* #menuBarContainer span:last-of-type {
  width: 28px;
  margin-right: 22px;
} */

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

#menuBarContainer.open {
  background: var(--primaryColor);
}

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

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

@keyframes open1 {
  0% {transform: translateY(0px) rotate(0deg); background: #000;}
  50% {transform: translateY(4.5px) rotate(0deg);}
  100% {transform: translateY(4.5px) rotate(45deg); background: #fff;}
}
@keyframes open2 {
  0% {transform: translateY(0px) rotate(0deg); background: #000;}
  50% {transform: translateY(-4.5px) rotate(0deg);}
  100% {transform: translateY(-4.5px) rotate(-45deg); background: #fff;}
}

@keyframes close1 {
  0% {transform: translateY(4.5px) rotate(45deg); background: #fff;}
  50% {transform: translateY(4.5px) rotate(0deg); background: #000;}
  100% {transform: translateY(0px) rotate(0deg); background: #000;}
}
@keyframes close2 {
  0% {transform: translateY(-4.5px) rotate(-45deg); background: #fff;}
  50% {transform: translateY(-4.5px) rotate(0deg); background: #000;}
  100% {transform: translateY(0px) rotate(0deg); background: #000;}
}









#menuContents {
  width: 100%;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  inset: 0;
  z-index: 10;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}
#menuContents.open {
  visibility: visible;
  opacity: 1;
}

.menuContentsBack {
  position: absolute;
  bottom: 0;
  left: 0;
}

#menuContents nav {
  margin: 130px auto 0;
}

#menu-2 {
  width: 50%;
  min-width: 400px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* align-items: center; */
  gap: 40px 0;
}

#menu-2 li {
  position: relative;
  letter-spacing: 1px;
  /* text-align: center; */
}

#menu-2 li a {
  box-sizing: border-box;
  font-size: 22px;
  color: var(--fontColor);
}

#menu-2 li ul {
  position: static;
  margin-top: 10px;
}

#menu-2 li ul li {
  margin: 10px auto;
}
#menu-2 li ul li::before {
  content: "-";
  margin-right: 3px;
}

#menu-2 li ul li a {
  font-size: 15px;
  letter-spacing: 0;
}

#menu-2 > li:last-of-type {
  width: 200px;
  height: 50px;
  margin: 40px auto 0;
  border-radius: 25px;
  overflow: hidden;
  background: var(--primaryColor);
}

#menu-2 > li:last-of-type > a {
  display: flex;
  height: 100%;
  font-size: 19px;
  color: #fff;
  justify-content: center;
  align-items: center;
}

.menuContentsSnsContainer {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0 40px;
}

.menuContentsSns {
  width: 38px;
}

.menuContentsSns:nth-of-type(3) {
  width: 32px;
}










/* フッター */
footer {
  width: 100%;
  padding: 60px 0 15px;
  background: var(--backColor);
}

#footerContainer {
  width: 90%;
  max-width: 1308px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footerLogo {
  width: 163px;
}

#menu-3 {
  display: flex;
  gap: 0 60px;
  font-size: 15px;
  font-weight: bold;
}

#menu-3 > li:last-of-type {
  width: 142px;
  height: 42px;
  margin-top: -10px;
  background: var(--primaryColor);
  border-radius: 22px;
  overflow: hidden;
}

#menu-3 > li:last-of-type a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
}

#menu-3 li ul li a {
  font-size: 12px;
}
#menu-3 li ul li a::before {
  content: "・";
}

.footerSnsContainer {
  display: flex;
  justify-content: flex-end;
  gap: 0 25px;
}

.footerSnsContainer li {
  width: 20px;
}
.footerSnsContainer li:nth-of-type(3) {
  width: 17.2px;
}

.copy {
  display: block;
  margin: 20px auto 0;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #bababa;
  text-align: center;
}







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






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

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

.logo {
  width: 110px;
  position: fixed;
  top: 15px;
  left: 20px;
}

.logo img {
  transition: 1s;
}

/* .logo img {
  transition: 1s;
} */

#topMenuContainer > nav > #menu-1 {
  /* height: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 0 20px; */
  display: none;
}

/* #menu-1 li {
  height: 100%;
  position: relative;
}
#menu-1 > li:last-of-type {
  margin: 0 40px 0 70px;
}

#menu-1 li a {
  height: 100%;
  font-size: 14.4px;
  letter-spacing: 1px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#menu-1 li ul {
  padding: 20px 50px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-40%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
#menu-1 > li:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}

#menu-1 li ul li {
  margin: 15px 0;
}

#menu-1 li ul li a {
  color: var(--fontColor);
} */

#menuBarContainer {
  display: block;
}








/* フッター */
footer {
  /* width: 100%; */
  padding: 50px 0 15px;
  /* background: var(--backColor); */
}

#footerContainer {
  width: 90%;
  max-width: px;
  /* margin: 0 auto; */
  /* display: flex;
  justify-content: space-between; */
  align-items: center;
  flex-direction: column;
  gap: 60px 0;
}

/* .footerLogo {
  width: 163px;
} */

#menu-3 {
  /* display: flex; */
  gap: 0 20px;
  /* font-size: 15px;
  font-weight: bold; */
}

/* #menu-3 > li:last-of-type {
  width: 142px;
  height: 42px;
  margin-top: -10px;
  background: var(--primaryColor);
  border-radius: 22px;
  overflow: hidden;
}

#menu-3 > li:last-of-type a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
}

#menu-3 li ul li a {
  font-size: 12px;
}
#menu-3 li ul li a::before {
  content: "・";
}

.footerSnsContainer {
  display: flex;
  justify-content: flex-end;
  gap: 0 25px;
}

.footerSnsContainer li {
  width: 20px;
}
.footerSnsContainer li:nth-of-type(3) {
  width: 17.2px;
}

.copy {
  display: block;
  margin: 20px auto 0;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #bababa;
  text-align: center;
} */

}







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


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







.logo {
  width: 80px;
}

#menuBarContainer {
  width: 50px;
  height: 50px;
  /* margin: 10px 10px 0 auto; */
  padding: 19px 0;
  /* box-sizing: border-box;
  position: relative;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: 1s;
  z-index: 3; */
}





/* #menuContents {
  width: 100%;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  inset: 0;
  z-index: 10;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}
#menuContents.open {
  visibility: visible;
  opacity: 1;
}

.menuContentsBack {
  position: absolute;
  bottom: 0;
  left: 0;
} */

#menuContents nav {
  width: 80%;
  margin: 110px auto 0;
}

#menu-2 {
  width: 100%;
  min-width: initial;
  /* height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between; */
  /* align-items: center; */
  gap: 25px 0;
}

/* #menu-2 li {
  position: relative;
  letter-spacing: 1px; */
  /* text-align: center; */
/* } */

#menu-2 li a {
  /* box-sizing: border-box; */
  font-size: 20px;
  /* color: var(--fontColor); */
}

/* #menu-2 li ul {
  position: static;
  margin-top: 0px;
} */

#menu-2 li ul li {
  margin: 5px auto;
}
#menu-2 li ul li::before {
  content: "・";
  /* margin-right: 3px; */
}

/* #menu-2 li ul li a {
  font-size: 15px;
  letter-spacing: 0;
} */

#menu-2 > li:last-of-type {
  width: 142px;
  height: 42px;
  margin: 15px auto 0;
  border-radius: 21px;
  /* overflow: hidden; */
  /* background: var(--primaryColor); */
}

#menu-2 > li:last-of-type > a {
  /* display: flex;
  height: 100%; */
  font-size: 15px;
  /* color: #fff;
  justify-content: center;
  align-items: center; */
}

.menuContentsSnsContainer {
  /* position: absolute; */
  /* bottom: 40px; */
  /* left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center; */
  gap: 0 30px;
}

.menuContentsSns {
  width: 30px;
}

.menuContentsSns:nth-of-type(3) {
  width: 26px;
}






/* フッター */
footer {
  /* width: 100%; */
  padding: 50px 0 15px;
  /* background: var(--backColor); */
}

#footerContainer {
  width: 90%;
  max-width: initial;
  margin: 0 auto;
  display: block;
  /* justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 60px 0; */
}

.footerLogo {
  width: 100px;
  margin: 0 auto;
}

#menu-3 {
  height: 180px;
  margin-top: 40px;
  /* display: flex; */
  flex-direction: column;
  gap: 20px 0;
  flex-wrap: wrap;
  /* font-size: 15px;
  font-weight: bold; */
}

#menu-3 > li:last-of-type {
  /* width: 142px;
  height: 42px; */
  margin-top: 10px;
  /* background: var(--primaryColor);
  border-radius: 21px;
  overflow: hidden; */
}

/* #menu-3 > li:last-of-type a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
} */

#menu-3 li ul li {
  height: 25px;
}

#menu-3 li ul li a {
  font-size: 12px;
}
#menu-3 li ul li a::before {
  content: "・";
}

.footerSnsContainer {
  /* display: flex; */
  justify-content: flex-end;
  gap: 0 25px;
}

.footerSnsContainer li {
  width: 30px;
}
.footerSnsContainer li:nth-of-type(3) {
  width: 26px;
}

/* .copy {
  display: block;
  margin: 20px auto 0;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #bababa;
  text-align: center;
} */


}