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

.clearfix::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  display: block;
}

.grecaptcha-badge {
  visibility: hidden;
}


/* 全体 */
body {
	line-height: 1.8;
}


/* フォント関係 */
.gfont {
  font-family: 'Rajdhani', sans-serif;
}

body {
  /* font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; */
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  /* font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; */
  font-size: 14px;
  letter-spacing: 1px;
}

p {
  letter-spacing: 1.5px;
  line-height: 2;
}

b, strong, .bold{
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
  font-weight: bold;
}

/* IEだけに適応 */
_:lang(x)::-ms-backdrop, .selector {
	font-family: "Segoe UI", Meiryo, sans-serif;
}

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

.mincho {
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}


/* フェードイン */
.fadeinTop {
  opacity : 0;
  transition: opacity 1s;
}
.fadeinTop2 {
  opacity : 0;
  transition: opacity 1s 0.6s;
}
.fadeinTopBottom {
  opacity : 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}
.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(30px);
  transition: opacity 1s, transform 1s;
}
.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%;
}

#topMenuContainer {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  z-index: 5;
  transition: 1s;
  display: flex;
  align-items: center;
}

#menuBarContainer {
  width: 70px;
  height: 70px;
  text-align: center;
  margin-right: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  z-index: 3;
}

#menuBarContainer > span {
  width: 28px;
  height: 3px;
  margin: 7.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(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: 35%;
  min-width: 500px;
  height: 100vh;
  background: #595958;
  position: fixed;
  top: 0;
  left: 0%;
  transform: translateX(-100%);
  z-index: 2;
  transition: 0.3s;
}
#menuContents.open {
  transform: translateX(0%);
}

.menu {
  width: 50%;
  min-width: 250px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menuContentsTitle {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #fff;
}
.menuContentsTitle::after {
  content: "";
  display: block;
  width: 71px;
  height: 4.5px;
  background: #fff;
  margin-top: 15px;
}

#menuContents nav {
  width: 100%;
  margin-top: 50px;
}

.menuContentsList li {
  margin: 15px 0;
}

#menuContents a {
  color: #fff;
  font-size: 24px;
  letter-spacing: 3px;
  position: relative;
}
.menuContentsList li a::after {
  content: "";
  width: 0px;
  height: 3px;
  background: #fff;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.2s
}
.menuContentsList li a:hover::after {
  width: 52px;
}

.sns {
  margin-top: 30px;
}

.sns li {
  margin-right: 30px;
  display: inline-block;
}
.sns li:last-of-type {
  margin-right: 0;
}

.sns li img {
  width: 27px;
  vertical-align: bottom;
}
/* .sns li:last-of-type img {
  width: 29.4px;
} */

.menuCopy {
  font-size: 12px;
  margin-top: 40px;
  color: #fff;
}



/* フッター */
footer {
  width: 100%;
  height: 100px;
  text-align: center;
}

footer small {
  line-height: 100px;
  font-size: 14px;
}









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

}







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

  body {
    font-size: 14px;
  }

  /* メニュー関係 */
  #menuBarContainer {
    width: 50px;
    height: 50px;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-right: 2px;
  }

  #menuBarContainer > span {
    width: 24px;
    height: 2px;
    margin: 6px auto 0 auto;
  }

  @keyframes open1 {
    0% {transform: translateY(0px) rotate(0deg);}
    50% {transform: translateY(8px) rotate(0deg);}
    100% {transform: translateY(8px) rotate(45deg);}
  }
  @keyframes open3 {
    0% {transform: translateY(0px) rotate(0deg);}
    50% {transform: translateY(-8px) rotate(0deg);}
    100% {transform: translateY(-8px) rotate(-45deg);}
  }

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




/* トップ */
/* header {
  width: 100%;
} */

#topMenuContainer {
  /* width: 100%; */
  height: 50px;
  /* position: fixed;
  top: 0;
  z-index: 5;
  transition: 1s;
  display: flex;
  justify-content: flex-end;
  align-items: center; */
}

#menuContents {
  width: 100%;
  min-width: auto;
  /* height: 100vh; */
  /* background: #595958;
  position: fixed;
  top: 0;
  left: 0%;
  transform: translateX(-100%);
  z-index: 2;
  transition: 0.3s; */
}
/* #menuContents.open {
  transform: translateX(0%);
} */

.menu {
  width: 70%;
  min-width: auto;
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}

.menuContentsTitle {
  font-size: 38px;
  line-height: 1;
  /* letter-spacing: 1px;
  color: #fff; */
}
.menuContentsTitle::after {
  /* content: "";
  display: block;
  width: 71px; */
  height: 4px;
  /* background: #fff;
  margin-top: 15px; */
}

#menuContents nav {
  /* width: 100%; */
  margin-top: 30px;
}

.menuContentsList li {
  margin: 8px 0;
}

#menuContents a {
  /* color: #fff;
  font-size: 24px; */
  letter-spacing: 2px;
  /* position: relative; */
}
/* .menuContentsList li a::after {
  content: "";
  width: 0px;
  height: 3px;
  background: #fff;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.2s
} */
.menuContentsList li a:hover::after {
  width: 50px;
}

.sns {
  margin-top: 15px;
}

.sns li {
  margin-right: 25px;
  /* display: inline-block; */
}
/* .sns li:last-of-type {
  margin-right: 0;
} */

.sns li img {
  width: 24px;
  /* vertical-align: bottom; */
}
/* .sns li:last-of-type img {
  width: 26.4px;
} */

.menuCopy {
  font-size: 10px;
  margin-top: 40px;
  /* color: #fff; */
}





/* フッター */
footer {
  /* width: 100%; */
  height: 70px;
  /* text-align: center; */
}

footer small {
  line-height: 70px;
  font-size: 10px;
}

}