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

/* 変数 */
:root {
  --headerHight: 100px;
  --menuBarWidth: 80px;
  --primaryColor: #373737;
  --secondaryColor: #594842;
  --thirdColor: #12C4FF;
}
/* ここまで */


/* 全体 */
@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: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 2.2;
  color: var(--primaryColor);
}

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



/* imgアニメーション */
/* FV */
.fvImgWrap {
  overflow: hidden;
  position: relative;
}

.fvImgWrap::before {
  animation: fvImgWrap 2s cubic-bezier(0.4, 0, 0.2, 1) both;
  background: #fff;
  content: '';
  inset: -1% 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

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

/* 全体 */
.imgWrap {
  overflow: hidden;
  position: relative;
}

.imgWrap::before {
  background: #fff;
  content: '';
  inset: -1% 0;
  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%);}
}







/* フェードイン */
/* .fadeinTop {
  opacity : 0;
  transition: opacity 1s;
}
.fadeinTop2 {
  opacity : 0;
  transition: opacity 1s 0.6s;
} */
.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;
  }
}
/* .fadeinTop4Bottom {
  opacity : 0;
  transform: translateY(30px);
  transition: opacity 1s 1.2s, transform 1s 1.2s;
} */
/* .fadein {
  opacity : 0;
  transition: opacity 1s, transform 1s;
}
.fadein_left {
	opacity : 0;
	transform: translateX(-30px);
	transition: opacity 1s, transform 1s;
}
.fadein_right {
	opacity : 0;
	transform: translateX(30px);
	transition: opacity 1s, transform 1s;
} */
.fadein_bottom {
  opacity : 0;
  transform: translateY(80px);
  transition: opacity 2s, transform 2s;
}
/* @media(max-width: 1024px) {
  .fadein_bottom {
    opacity : 0;
    transform: translateY(60px);
    transition: opacity 2s, transform 2s;
  }
} */
@media(max-width: 560px) {
  .fadein_bottom {
    opacity : 0;
    transform: translateY(40px);
    transition: opacity 2s, transform 2s;
  }
}
/* .fadein_bottom1 {
  opacity : 0;
  transform: translateY(30px);
  transition: opacity 1s 0.3s,  transform 1s 0.3s;
}
.fadein_bottom2 {
  opacity : 0;
  transform: translateY(30px);
  transition: opacity 1s 0.6s,  transform 1s 0.6s;
} */



/* メニュー関係 */
header {
  width: 100%;
  height: var(--headerHight);
  position: fixed;
  z-index: 10;
}

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




.logo {
  flex: 0 1 125.4px;
  margin-left: 30px;
}

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

#menuBarContainer {
  width: 72px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: 1s;
  z-index: 3;
}

#menuBarContainer > img {
  width: 32px;
  vertical-align: bottom;
}

.menuBar {
  width: 32px;
  margin-top: 5px;
}

.menuBar span {
  display: block;
  width: 100%;
  height: 2px;
  background: #373737;
}

.menuBar span:first-of-type {
  margin-bottom: 10px;
}

/* #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(10.5px) rotate(0deg);}
  100% {transform: translateY(10.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(-10.5px) rotate(0deg);}
  100% {transform: translateY(-10.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(55, 55, 55, 0.99);
  position: fixed;
  inset: 0;
  z-index: 11;
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}
#menuContents.open {
  visibility: visible;
  opacity: 1;
}

.menuCloseBtn {
  width: 23px;
  height: 23px;
  padding: 30px 25px;
  margin: 12px 0 0 auto;
  position: relative;
  cursor: pointer;
}

.menuCloseBtn span:first-of-type, .menuCloseBtn span:last-of-type {
  width: 31.5px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.menuCloseBtn span:last-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#menuContents nav {
  width: calc(100% - 156px);
  margin: 200px 0 0 auto;
}

#menuContents .menu-1-container {
  width: 90%;
  max-width: 686px;
  margin: 0 auto;
}

#menuContents #menu-1 {
  width: 100%;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-wrap: wrap;
  gap: 40px 138px;
}

#menuContents #menu-1 li {
  flex: 0 1 136px;
  position: relative;
}

#menuContents #menu-1 li::before {
  content: "・";
  color: #fff;
  font-size: 22px;
}

#menuContents #menu-1 li a {
  font-size: 22px;
  color: #fff;
}

.insta {
  width: 90%;
  max-width: 686px;
  margin: 60px auto 0;
  font-size: 22px;
}

.insta a {
  color: #fff;
  display: flex;
  align-items: center;
}

.insta img {
  width: 29.5px;
  margin-right: 20px;
}

.menuCopy {
  width: 156px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
}

.menuCopy img {
  width: 125.4px;
  vertical-align: bottom;
  transform: rotate(90deg);
}







/* フッター */
footer.site-footer {
  width: 100%;
  height: 300px;
  margin-top: 150px;
}

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

.footerLogo {
  flex: 0 0 125.4px;
}
.footerLogo img {
  width: 100%;
  vertical-align: bottom;
}

footer .menu-1-container {
  flex: 1 1 auto;
  max-width: 440px;
  margin-left: 2em;
}

footer #menu-2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 70px;
}

footer #menu-2 li {
  flex: 0 1 100px;
  position: relative;
}

footer #menu-2 li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: -1em;
}

.copy {
  height: 50px;
  margin-top: -50px;
  padding-right: 20px;
  box-sizing: border-box;
  font-size: 10px;
  color: #B1B1B1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}







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


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






/* メニュー関係 */
/* header {
  width: 100%;
  height: var(--headerHight);
  position: fixed;
  z-index: 10;
}

#topMenuContainer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

/* .logo {
  flex: 0 1 125.4px;
  margin-left: 30px;
} */

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

/* #menuBarContainer {
  width: 72px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: 1s;
  z-index: 3;
}

#menuBarContainer > img {
  width: 32px;
  vertical-align: bottom;
}

.menuBar {
  width: 32px;
  margin-top: 5px;
}

.menuBar span {
  display: block;
  width: 100%;
  height: 2px;
  background: #373737;
}

.menuBar span:first-of-type {
  margin-bottom: 10px;
} */

/* #menuContents {
  width: 100%;
  height: 100vh;
  background: rgba(55, 55, 55, 0.99);
  position: fixed;
  inset: 0;
  z-index: 11;
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}
#menuContents.open {
  visibility: visible;
  opacity: 1;
}

.menuCloseBtn {
  width: 23px;
  height: 23px;
  padding: 30px 25px;
  margin: 12px 0 0 auto;
  position: relative;
  cursor: pointer;
}

.menuCloseBtn span:first-of-type, .menuCloseBtn span:last-of-type {
  width: 31.5px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.menuCloseBtn span:last-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
} */

#menuContents nav {
  width: 100%;
  margin: 0;
}

#menuContents .menu-1-container {
  /* width: 90%; */
  max-width: 410px;
  /* margin: 0 auto; */
}

/* #menuContents #menu-1 {
  width: 100%;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-wrap: wrap;
  gap: 40px 138px;
}

#menuContents #menu-1 li {
  flex: 0 1 136px;
  position: relative;
}

#menuContents #menu-1 li::before {
  content: "・";
  color: #fff;
  font-size: 22px;
}

#menuContents #menu-1 li a {
  font-size: 22px;
  color: #fff;
} */

.insta {
  /* width: 90%; */
  max-width: 410px;
  /* margin: 60px auto 0;
  font-size: 22px; */
}

/* .insta a {
  color: #fff;
  display: flex;
  align-items: center;
}

.insta img {
  width: 29.5px;
  margin-right: 20px;
} */

.menuCopy {
  width: 100%;
  height: 180px;
  /* background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0; */
}

.menuCopy img {
  /* width: 125.4px;
  vertical-align: bottom; */
  transform: rotate(0deg);
}







/* フッター */
footer.site-footer {
  /* width: 100%; */
  height: 200px;
  margin-top: 100px;
}

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

.footerLogo {
  /* flex: 0 0 125.4px; */
  margin: 0 auto;
}
/* .footerLogo img {
  width: 100%;
  vertical-align: bottom;
} */

footer .menu-1-container {
  /* flex: 1 1 auto;
  max-width: 440px;
  margin-left: 2em; */
  display: none;
}

/* footer #menu-1 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 70px;
}

footer #menu-1 li {
  flex: 0 1 100px;
  position: relative;
}

footer #menu-1 li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: -1em;
} */

.copy {
  /* height: 50px;
  margin-top: -50px; */
  padding-right: 0px;
  /* box-sizing: border-box;
  font-size: 10px;
  color: #B1B1B1;
  display: flex; */
  justify-content: center;
  /* align-items: center; */
}


}







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


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






/* メニュー関係 */
/* header {
  width: 100%;
  height: var(--headerHight);
  position: fixed;
  z-index: 10;
}

#topMenuContainer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

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

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

#menuBarContainer {
  width: 64px;
  /* text-align: center; */
  /* padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: 1s;
  z-index: 3; */
}

#menuBarContainer > img {
  width: 24px;
  /* vertical-align: bottom; */
}

.menuBar {
  width: 24px;
  margin-top: 6px;
}

/* .menuBar span {
  display: block;
  width: 100%;
  height: 2px;
  background: #373737;
} */

.menuBar span:first-of-type {
  margin-bottom: 6px;
}

#menuContents {
  /* width: 100%;
  height: 100vh;
  background: rgba(55, 55, 55, 0.99);
  position: fixed;
  inset: 0;
  z-index: 11;
  visibility: hidden;
  opacity: 0;
  transition: 1s; */
  overflow: scroll;
}
/* #menuContents.open {
  visibility: visible;
  opacity: 1;
} */

.menuCloseBtn {
  /* width: 23px;
  height: 23px; */
  padding: 18px 20px;
  margin: 0px 0 0 auto;
  /* position: relative;
  cursor: pointer; */
}

/* .menuCloseBtn span:first-of-type, .menuCloseBtn span:last-of-type {
  width: 31.5px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.menuCloseBtn span:last-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
} */

#menuContents nav {
  /* width: 100%; */
  margin: 50px 0 0;
}

/* #menuContents .menu-1-container {
  width: 90%;
  max-width: 410px;
  margin: 0 auto;
} */

#menuContents #menu-1 {
  /* width: 100%; */
  /* padding-bottom: 60px; */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-wrap: wrap; */
  gap: 25px 84px;
}

#menuContents #menu-1 li {
  flex: 0 1 116px;
  position: relative;
}

#menuContents #menu-1 li::before {
  /* content: "・";
  color: #fff; */
  font-size: 18px;
}

#menuContents #menu-1 li a {
  font-size: 18px;
  /* color: #fff; */
}

.insta {
  /* width: 90%; */
  /* max-width: 410px;
  margin: 60px auto 0; */
  font-size: 18px;
}

/* .insta a {
  color: #fff;
  display: flex;
  align-items: center;
} */

.insta img {
  width: 24px;
  margin-right: 15px;
}

.menuCopy {
  /* width: 100%;
  height: 180px; */
  margin-top: 60px;
  /* background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center; */
  position: static;
  /* left: 0;
  bottom: 0; */
}

/* .menuCopy img {
  width: 125.4px;
  vertical-align: bottom;
  transform: rotate(0deg);
} */







/* フッター */
footer.site-footer {
  /* width: 100%; */
  height: 200px;
  margin-top: 50px;
  position: relative;
}

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

.footerLogo {
  /* flex: 0 0 125.4px; */
  margin: 0 auto;
}
/* .footerLogo img {
  width: 100%;
  vertical-align: bottom;
} */

footer .menu-1-container {
  /* flex: 1 1 auto;
  max-width: 440px;
  margin-left: 2em; */
  display: none;
}

/* footer #menu-1 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 70px;
}

footer #menu-1 li {
  flex: 0 1 100px;
  position: relative;
}

footer #menu-1 li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: -1em;
} */

.copy {
  /* height: 50px; */
  margin-top: 0px;
  /* padding-right: 0px;
  box-sizing: border-box;
  font-size: 10px;
  color: #B1B1B1;
  display: flex;
  justify-content: center; */
  /* align-items: center; */
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}


}