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

/* 変数 */
:root {
  --headerHight: 85px;
  --menuBarWidth: 85px;
  --primaryColor: #2D4AC1;
  --secondaryColor: #EAF4FA;
}
/* ここまで */


/* 全体 */
@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;
  background: #fff;
  z-index: 12;
  transition: 1s;
}

.logo {
  flex: 0 1 200px;
  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;
}









/* フッター */
footer {
  background: #2C2C2C;
}

#footerContainer {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 70px 0 60px;
  position: relative;
}

#footerContainer > img {
  width: 260px;
}

small {
  width: 63px;
  position: absolute;
  bottom: 10px;
  right: 0;
}







@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;
} */

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









/* フッター */
/* footer {
  background: #2C2C2C;
} */

#footerContainer {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 70px 0 60px;
  position: relative;
}

#footerContainer > img {
  width: 170px;
}

small {
  width: 58px;
  position: absolute;
  bottom: 10px;
  right: 0;
}


}







/* スマホ */
@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;
}

/* 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 {
  background: #2C2C2C;
} */

#footerContainer {
  /* width: 90%;
  max-width: 1260px;
  margin: 0 auto; */
  padding: 50px 0 70px;
  /* position: relative; */
  text-align: center;
}

#footerContainer > img {
  width: 200px;
}

small {
  width: 62px;
  /* position: absolute; */
  bottom: 5px;
  left: 0;
  right: 0;
  margin: 0 auto;
}





}