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

/* 変数 */
:root {
  --headerHight: 90px;
  --menuBarWidth: 90px;
  --primaryColor: #9DCB41;
  --secondaryColor: #E3F3CB;
  --thirdColor: #009F48;
}
/* ここまで */


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

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

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

/* フォント関係 */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 2;
}

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

.afont {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
}


/* フェードイン */
.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;
  transition: 1s;
}

.logo {
  flex: 0 1 170px;
  margin-left: 30px;
  position: relative;
}

.logo img {
  transition: 1s;
}

.headerMenuContainer ul {
  height: 100%;
  margin-right: 30px;
  display: flex;
  gap: 10px 30px;
  font-weight: bold;
}

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

#menuBarContainer span {
  width: 25px;
  height: 4px;
  margin: 5px auto 0 auto;
  background: #000;
  border-radius: 3px;
  z-index: 5;
  display: block;
  transition: 1s;
}

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

#menuBarContainer.open > span {
  background: #fff;
} */

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

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











/* #menuContents {
  width: 100%;
  height: 100vh;
  background: var(--primaryColor);
  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 {
  margin: 130px auto 0;
}

#menuContents #menu-1 li {
  margin: 20px auto;
  position: relative;
}

#menuContents #menu-1 li a {
  box-sizing: border-box;
  font-size: 25px;
  font-weight: bold;
  color: #fff;
} */









/* フッター */
#footerContainer {
  width: 90%;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 60px 0 70px;
  border-top: 1px solid #9B9B9B;
  font-weight: bold;
  display: flex;
  gap: 0 50px;
}

.footerImg {
  flex: 0 1 284px;
}

#menu-1 {
  flex: 1 1 auto;
  display: flex;
  gap: 0 40px;
  text-align: right;
}






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

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






/* ヘッダー */
/* 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;
} */

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

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










/* フッター */
footer {
  margin-top: 100px;
  /* color: #fff;
  font-weight: bold; */
}

.footerCompanyContainer {
  padding: 80px 0 60px;
  /* background: var(--primaryColor); */
}

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

.footerCompanyLogo {
  width: 300px;
}

.footerInfoContainer {
  margin-top: 40px;
  /* display: flex; */
  flex-direction: column;
  gap: 50px 0;
}

.footerInfoText {
  flex: 0 1 auto;
}

.footerInfoAddress {
  margin-bottom: 30px;
  /* font-size: 20px; */
}

/* .footerInfoText dl {
  margin-top: 20px;
  display: flex;
  gap: 20px 20px;
  font-size: 18px;
} */

/* .footerInfoText dt {
  flex: 0 0 106px;
  height: 36px;
  padding-bottom: 2px;
  box-sizing: border-box;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  letter-spacing: 1.5px;
  color: var(--primaryColor);
}

.footerInfoMap {
  flex: 1 1 auto;
}

.footerInfoMap iframe {
  width: 100%;
  height: 420px;
  border-radius: 50px;
} */

.footerMenuContainer {
  padding: 50px 0 10px;
  /* background: #000;
  text-align: center; */
}

.footerMenuuLogo {
  width: 250px;
  margin-bottom: 20px;
  /* margin: 0 auto; */
}

.footerMenuContainer ul {
  /* margin: 40px auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 30px; */
  display: none;
}

/* .footerMenuContainer ul a {
  color: #fff;
} */


/* .copy {
  font-size: 10px;
  color: #919191;
} */


}







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


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






/* ヘッダー */
/* 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 135px;
  margin-left: 20px;
}

.headerMenuContainer {
  display: none;
}

#menuBarContainer {
  display: block;
  padding: 14px 0;
}

/* 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 250px;
  margin-left: 30px;
  position: relative;
}

.logo img {
  transition: 1s;
}

#topMenuContainer.open .logo img:first-of-type {
  opacity: 0;
}
#topMenuContainer.open .logo img:last-of-type {
  opacity: 1;
}

.logo img:last-of-type {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.headerMenuContainer ul {
  height: 100%;
  margin-right: 30px;
  display: flex;
  gap: 10px 30px;
  font-weight: bold;
} */

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

#menuBarContainer span {
  width: 25px;
  height: 4px;
  margin: 5px auto 0 auto;
  background: #000;
  border-radius: 3px;
  z-index: 5;
  display: block;
  transition: 1s;
} */

/* #menuContents {
  width: 100%;
  height: 100vh;
  background: var(--primaryColor);
  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: 70%;
  margin: 100px auto 0;
}

/* #menuContents #menu-1 li {
  margin: 20px auto;
  position: relative;
}

#menuContents #menu-1 li a {
  box-sizing: border-box;
  font-size: 25px;
  font-weight: bold;
  color: #fff;
} */









/* フッター */
footer {
  margin-top: 80px;
  /* color: #fff;
  font-weight: bold; */
}

.footerCompanyContainer {
  padding: 60px 0 60px;
  /* background: var(--primaryColor); */
}

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

.footerCompanyLogo {
  width: 250px;
}

.footerInfoContainer {
  margin-top: 30px;
  /* display: flex; */
  /* flex-direction: column; */
  gap: 40px 0;
}

/* .footerInfoText {
  flex: 0 1 auto;
} */

.footerInfoAddress {
  line-height: 1.8;
  /* margin-bottom: 30px; */
  /* font-size: 20px; */
}

/* .footerInfoText dl {
  margin-top: 20px;
  display: flex;
  gap: 20px 20px;
  font-size: 18px;
} */

/* .footerInfoText dt {
  flex: 0 0 106px;
  height: 36px;
  padding-bottom: 2px;
  box-sizing: border-box;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  letter-spacing: 1.5px;
  color: var(--primaryColor);
}

.footerInfoMap {
  flex: 1 1 auto;
} */

.footerInfoMap iframe {
  /* width: 100%; */
  height: 250px;
  border-radius: 40px;
}

.footerMenuContainer {
  padding: 40px 0 10px;
  /* background: #000;
  text-align: center; */
}

.footerMenuuLogo {
  width: 250px;
  margin-bottom: 10px;
  /* margin: 0 auto; */
}

.footerMenuContainer ul {
  /* margin: 40px auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 30px; */
  display: none;
}

/* .footerMenuContainer ul a {
  color: #fff;
} */


/* .copy {
  font-size: 10px;
  color: #919191;
} */





}