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

/* 変数 */
:root {
  --headerHight: 70px;
  --menuBarWidth: 70px;
  --primaryColor: #897342;
  --secondaryColor: #F6F1F5;
}
/* ここまで */


/* 全体 */
@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-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 2.2;
}

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

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

.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}


/* 共通ボタン */
.moreBtn {
  width: 155px;
  transition: 0.3s;
  position: relative;
}

.moreBtn::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: 0;
}

.moreBtn a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;
  position: relative;
}
.moreBtn a::before {
  content: "";
  display: block;
  width: 17px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.moreBtn a::after {
  content: "";
  width: 9px;
  height: 9px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
}



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

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

.logo {
  flex: 0 1 130.8px;
  margin-left: 20px;
}

.logo img {
  width: 100%;
  vertical-align: bottom;
  transition: 1s;
}

.headerMenuContainer {
  height: 100%;
  display: flex;
}

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

#menu-1.headerMenu li {
  height: 100%;
  margin: 0 15px;
  position: relative;
}

#menu-1.headerMenu li a {
  height: 100%;
  font-size: 14px;
  font-weight: bold;
  color: var(--primaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
}

#menu-1.headerMenu 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.headerMenu > li:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}

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

.snsContainer {
  margin-right: 30px;
  display: flex;
  align-items: center;
  gap: 0 25px;
}

.snsContainer li:first-of-type {
  width: 22px;
}
.snsContainer li:last-of-type {
  width: 19.65px;
}

.snsContainer li img {
  width: 100%;
  vertical-align: middle;
}

#menuBarContainer {
  width: var(--menuBarWidth);
  height: var(--headerHight);
  padding: 23px 0;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: 1s;
  z-index: 3;
  display: none;
}

#menuBarContainer span {
  width: 28px;
  height: 2px;
  margin: 7.5px auto 0 auto;
  background: var(--primaryColor);
  border-radius: 3px;
  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:nth-of-type(2) {
  animation: open2 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:nth-of-type(2) {
  animation: close2 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 open2 {
  0% {opacity: 1;}
  50% {opacity: 0;}
  100% {opacity: 0;}
}
@keyframes open3 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(-9.5px) rotate(0deg);}
  100% {transform: translateY(-9.5px) rotate(-45deg);}
}

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

















#menuContents {
  width: 100%;
  height: 100vh;
  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;
}

#menuContents nav {
  /* width: 90%;
  max-width: 300px; */
  /* display: inline-block; */
  margin: 130px auto 0;
}

#menuContents #menu-2 li {
  margin: 30px auto;
  position: relative;
}
#menuContents #menu-2 > li > a::before {
  content: "- ";
  color: var(--primaryColor);
  margin-right: 5px;
  /* transform: translateY(-10px); */
}

#menuContents #menu-2 li a {
  box-sizing: border-box;
  font-size: 22px;
  color: var(--primaryColor);
  display: flex;
  align-items: center;
}

#menuContents #menu-2 li ul li:first-of-type {
  margin-top: 5px;
}

#menuContents #menu-2 li ul li {
  margin: 10px auto;
  text-indent: 1em;
}

#menuContents #menu-2 li ul li a {
  font-size: 15px;
  text-decoration: underline;
}

.menuContentsInfo {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menuContentsLogo {
  width: 160px;
}

.menuContentsLogo img {
  width: 100%;
  vertical-align: bottom;
}

.menuContentsInfo small {
  position: static;
  margin-top: 40px;
  text-align: center;
}









/* フッター */
footer {
  width: 100%;
  padding: 80px 0 80px;
  margin-top: 150px;
  background: var(--secondaryColor);
}

#footerContainer {
  width: 90%;
  max-width: 900px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

#menu-3 {
  height: 155px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px 100px;
}

#menu-3 li {
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: 0.7px;
}

#menu-3 li ul li {
  margin: 3px 0;
  text-indent: 1em;
}
#menu-3 li ul li::before {
  content: "-";
}

.footerLogo {
  width: 232px;
}

.footerLogo img {
  width: 100%;
  vertical-align: bottom;
}

#footerContainer .snsContainer {
  margin-top: 40px;
  margin-right: 0;
  justify-content: flex-end;
}

#footerContainer .snsContainer li:first-of-type {
  width: 27.5px;
}

#footerContainer .snsContainer li:last-of-type {
  width: 24.6px;
}

#footerContainer .snsContainer img {
  filter: brightness(0);
}

.copy {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: right;
  position: absolute;
  bottom: -60px;
  right: 0;
}







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






/* ヘッダー */
#menu-1.headerMenu {
  display: none;
}

.headerMenuContainer > .snsContainer {
  display: none;
}

#menuBarContainer {
  display: inline-block;
}

.snsContainer {
  justify-content: center;
  margin-right: 0;
}

#menuContents small {
  transform: none;
}









/* フッター */
footer {
  /* width: 100%; */
  padding: 80px 0 90px;
  margin-top: 100px;
  /* background: var(--secondaryColor); */
}

#footerContainer {
  /* width: 90%;
  max-width: 900px;
  height: 100%; */
  margin: 0 auto;
  display: flex;
  justify-content: center;
  /* align-items: center;
  position: relative; */
}

#menu-3 {
  /* height: 155px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px 100px; */
  display: none;
}

/* #menu-3 li {
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: 0.7px;
}

#menu-3 li ul li {
  margin: 3px 0;
  text-indent: 1em;
}
#menu-3 li ul li::before {
  content: "-";
} */

.footerLogo {
  width: 180px;
}

/* .footerLogo img {
  width: 100%;
  vertical-align: bottom;
} */

#footerContainer .snsContainer {
  /* margin-top: 30px;
  margin-right: 0;
  justify-content: center; */
  display: none;
}

/* #footerContainer .snsContainer li:first-of-type {
  width: 27.5px;
}

#footerContainer .snsContainer li:last-of-type {
  width: 24.6px;
}

#footerContainer .snsContainer img {
  filter: brightness(0);
} */

.copy {
  /* display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  position: absolute; */
  bottom: -80px;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}


}







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


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






/* メニュー関係 */
.logo {
  flex: 0 1 87.2px;
  margin-left: 15px;
}

#menuBarContainer {
  padding: 17px 0;
}

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




#menuContents #menu-2 li {
  margin: 20px auto;
}
#menuContents #menu-2 > li::before {
  transform: translateY(-100px);
}

#menuContents #menu-2 li a {
  font-size: 22px;
}

#menuContents #menu-2 li ul li:first-of-type {
  margin-top: 0px;
}

#menuContents #menu-2 li ul li {
  margin: 5px auto;
}








/* フッター */
footer {
  /* width: 100%; */
  padding: 60px 0 70px;
  margin-top: 80px;
  /* background: var(--secondaryColor); */
}

/* #footerContainer { */
  /* width: 90%;
  max-width: 900px;
  height: 100%; */
  /* margin: 0 auto;
  display: flex;
  justify-content: center; */
  /* align-items: center;
  position: relative; */
/* } */

/* #menu-3 { */
  /* height: 155px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px 100px; */
  /* display: none;
} */

/* #menu-3 li {
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: 0.7px;
}

#menu-3 li ul li {
  margin: 3px 0;
  text-indent: 1em;
}
#menu-3 li ul li::before {
  content: "-";
} */

.footerLogo {
  width: 160px;
}

/* .footerLogo img {
  width: 100%;
  vertical-align: bottom;
} */

/* #footerContainer .snsContainer { */
  /* margin-top: 30px;
  margin-right: 0;
  justify-content: center; */
  /* display: none;
} */

/* #footerContainer .snsContainer li:first-of-type {
  width: 27.5px;
}

#footerContainer .snsContainer li:last-of-type {
  width: 24.6px;
}

#footerContainer .snsContainer img {
  filter: brightness(0);
} */

.copy {
  /* display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  position: absolute; */
  bottom: -66px;
  /* right: auto;
  left: 50%;
  transform: translateX(-50%); */
  white-space: nowrap;
}





}