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

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


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

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

/* フォント関係 */
body {
  font-family: "m-plus-1c", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 2.2;
}

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

.gfont {
  font-family: "Noto Sans JP", sans-serif;
}

/* 共通ボタン */
.moreBtn {
  width: 280px;
  height: 45px;
  border: 2px solid #000;
  box-sizing: border-box;
}

.moreBtn a {
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #000;
  font-weight: bolder;
  display: flex;
  justify-content: center;
  align-items: center;
}



/* 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);
  background: #000;
  z-index: 10;
  transition: 0.15s;
  position: relative;
/*   border-bottom: 11px solid #009FFF; */
}

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

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

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

.headerMenuContainer {
  height: 100%;
  display: flex;
  margin-left: 30px;
}

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

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

#menu-1.headerMenu li a {
  height: 100%;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#menu-1.headerMenu li ul {
  padding: 20px 50px;
  background: var(--primaryColor);
  text-align: center;
  white-space: nowrap;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  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;
}

#menuBarContainer {
  display: none;
}

#menuContents {
  display: none;
}










/* フッター */
footer {
  width: 100%;
  padding: 50px 0 80px;
  margin-top: 100px;
/*   border-top: 2px solid var(--primaryColor); */
	background: #000;
}

#menu-3 {
  display: flex;
  justify-content: center;
}

#menu-3 li {
  padding: 0 15px;
  position: relative;
  line-height: 1;
  border-right: 1px solid #fff;
}
#menu-3 li:first-of-type {
  border-left: 1px solid #fff;
}

#menu-3 li a {
  color: #fff;
}

.copy {
  margin-top: 10px;
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
}










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


/* 変数 */
:root {
  --headerHight: 75.5px;
  --primaryColor: #FF0064;
  --secondaryColor: #F6F1F5;
}
/* ここまで */






/* ヘッダー */
#menuBarContainer {
  width: 38px;
  height: 36px;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  position: absolute;
  left: 22px;
  cursor: pointer;
  z-index: 3;
  display: block;
}

#menuBarContainer span {
  width: 18px;
  height: 1px;
  margin: 6.5px auto 0 auto;
  background: #fff;
  z-index: 5;
  display: block;
  /* transition: 0.1s; */
}

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

#menuBarContainer.open span:first-of-type {
  width: 25px;
  transform: translate(-2px, 7.5px) rotate(45deg);
}
#menuBarContainer.open span:nth-of-type(2) {
  opacity: 0;
}
#menuBarContainer.open span:last-of-type {
  width: 25px;
  transform: translate(-2px, -7.5px) rotate(-45deg);
}

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

header {
  /* width: 100%;
  height: var(--headerHight);
  background: var(--primaryColor);
  z-index: 10;
  transition: 0.15s; */
}

#topMenuContainer {
  /* width: 100%;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto; */
  padding: 0 22px;
  box-sizing: border-box;
  /* display: flex;
  align-items: center;
  position: relative;
  z-index: 12; */
  justify-content: center;
}

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

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

.headerMenuContainer {
  display: none;
}

/* #menu-1.headerMenu {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
}

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

#menu-1.headerMenu li a {
  height: 100%;
  font-size: 14px;
  color: #fff;
  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;
} */








body.open {
  overflow: hidden;
}

#menuContents {
  display: block;
  width: 400px;
  height: 100vh;
  border-right: 1px solid #eee;
  position: absolute;
  top: 75.5px;
  left: 0;
  z-index: 10;
  transform: translateX(-100%);
  transition: 0.15s;
}

.menuContentsBack {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  position: fixed;
  top: 75.5px;
  left: 0;
  z-index: -1;
  display: none;
}

#menuContents nav {
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  box-sizing: border-box;
  background: #fff;
}



/* メニューオープン */
#menuContents.open {
  display: block;
  left: 0;
}
#menuContents.open {
  transform: translateX(0);
}





#menuContents #menu-2 li {
  margin: 0 auto 8px;
  position: relative;
}

#menuContents #menu-2 li a {
  font-size: 18px;
  font-weight: 500;
}

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

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

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














/* フッター */
/* footer {
  width: 100%;
  padding: 50px 0 80px;
  margin-top: 100px;
  border-top: 2px solid var(--primaryColor);
}

#menu-3 {
  display: flex;
  justify-content: center;
}

#menu-3 li {
  padding: 0 15px;
  position: relative;
  line-height: 1;
  border-right: 1px solid var(--primaryColor);
}
#menu-3 li:first-of-type {
  border-left: 1px solid var(--primaryColor);
}

#menu-3 li a {
  color: var(--primaryColor);
}

.copy {
  margin-top: 10px;
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--primaryColor);
  text-align: center;
} */


}







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


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






/* ヘッダー */
/* #menuBarContainer {
  width: 38px;
  height: 36px;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  position: absolute;
  left: 20px;
  cursor: pointer;
  z-index: 3;
  display: block;
}

#menuBarContainer span {
  width: 18px;
  height: 1px;
  margin: 6.5px auto 0 auto;
  background: #fff;
  z-index: 5;
  display: block;
}

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

#menuBarContainer.open span:first-of-type {
  width: 25px;
  transform: translate(-2px, 7.5px) rotate(45deg);
}
#menuBarContainer.open span:nth-of-type(2) {
  opacity: 0;
}
#menuBarContainer.open span:last-of-type {
  width: 25px;
  transform: translate(-2px, -7.5px) rotate(-45deg);
} */

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

/* header { */
  /* width: 100%;
  height: var(--headerHight);
  background: var(--primaryColor);
  z-index: 10;
  transition: 0.15s; */
/* } */

/* #topMenuContainer { */
  /* width: 100%;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto; */
  /* padding: 0 22px;
  box-sizing: border-box; */
  /* display: flex;
  align-items: center;
  position: relative;
  z-index: 12; */
  /* justify-content: center;
} */

.logo {
  flex: 0 1 139px;
}

.logo a {
  display: block;
  width: 100%;
  height: 100%;
}

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

/* .headerMenuContainer {
  display: none;
} */

/* #menu-1.headerMenu {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
}

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

#menu-1.headerMenu li a {
  height: 100%;
  font-size: 14px;
  color: #fff;
  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;
} */








/* body.open {
  overflow: hidden;
} */

#menuContents {
  /* width: 400px; */
  /* max-width: 100%;
  height: 100vh;
  position: absolute; */
  top: 65px;
  /* left: 0;
  z-index: 10;
  transform: translateX(-100%);
  transition: 0.2s; */
}

/* .menuContentsBack {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  position: fixed;
  top: 75.5px;
  left: 0;
  z-index: -1;
  display: none;
}

#menuContents nav {
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  box-sizing: border-box;
  background: #fff;
  transition: 0.2s;
} */



/* メニューオープン */
/* #menuContents.open {
  display: block;
  left: 0;
}
#menuContents.open {
  transform: translateX(0);
} */





/* #menuContents #menu-2 li {
  margin: 0 auto 8px;
  position: relative;
}

#menuContents #menu-2 li a {
  font-size: 18px;
  font-weight: 400;
}

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

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

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










/* フッター */
footer {
  width: 100%;
  padding: 50px 0 20px;
  margin-top: 100px;
  /* border-top: 2px solid var(--primaryColor); */
}

#menu-3 {
  /* display: flex;
  justify-content: center; */
  flex-direction: column;
  gap: 30px 0;
}

#menu-3 li {
  padding: 0 40px;
  box-sizing: border-box;
  /* position: relative;
  line-height: 1; */
  border-right: none;
}
#menu-3 li:first-of-type {
  border-left: none;
}

/* #menu-3 li a {
  color: var(--primaryColor);
} */

.copy {
  margin-top: 50px;
  /* display: block; */
  font-size: 10px;
  /* color: var(--primaryColor);
  text-align: center; */
}





}