@charset "utf-8";
html {
  scroll-behavior: smooth;
}
* {
  margin:0;
  padding:0;
}

:root {
  --color-pink-01:#F56E9B;
  --color-gray-01:#FAF8F8;
  --color-gray-02:#F5F5F5;
  /* --color-blue-01:#00A7E8;
  --color-blue-02:#eefaff; */
  --f-maru:"Zen Maru Gothic";
  --section-padding-TB:64px 0;

}

body {
  font-family:"Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, Verdana, Arial, "MS P Gothic", "MS Pゴシック", sans-serif;
  /* font-family:"ヒラギノ角ゴ ProN W6", "Hiragino Kaku Gothic ProN W6", HiraKakuProN-W6, "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic W3 JIS2004"; */
  line-height:1.9;
  font-size:1.5rem;
  font-weight:400;
  position: relative;
  background:#000;
}

.bg-block {
  width:100%;
  height:100vh;
  background:no-repeat url(/wp-content/themes/tgcrunway/imgs/bg-runway.webp) 0 0 / cover;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
}


.wrapper {
  width: 100%;
  position: relative;
}



a {
  color:#000;
  text-decoration:underline;
  /* cursor: none !important; */
}

a:link {
  color:#000;
  text-decoration:underline;
}

a:visited {
  color:#000;
  text-decoration:underline;
}

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

a:active {
  text-decoration:underline;
}

img {
  max-width: 100%;
  height: auto !important;
  vertical-align:bottom;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}


/*
a.hover-img img {
  transition:.5s;
  opacity:1;
}

a.hover-img img:hover {
  opacity:0.6;
}


*/



.hover-opa {
  transform:scale(1);
  opacity:1;
  transition:.4s;
}

.hover-opa:hover {
  transform:scale(0.9);
  opacity:.8;
}




@media only screen and (max-width: 896px) {
.hover-opa:hover {
  transform:scale(1);
  opacity:1;
}
}




main {
  width:390px;

  position:relative;
  background:#fff;
  margin:auto;
  overflow:hidden !important;
}




@media only screen and (max-width: 896px) {
main {
  width:100%;
}
}

.scroll__block {
  width:100%;
  height:50px;
  position:relative;
  margin-bottom:26px;
}


.scroll {
  position: absolute;
  right: 50%;
  top:0;
  writing-mode: vertical-rl;
}

.scroll::before {
  animation: scroll 2s infinite;
  background-color: #EEB7C3;
  bottom:0;
  content: "";
  top:0;
  height: 50px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.po-re {
  position:relative;
}

.innerBlock {
  padding:0 5%;
}

.sectionPadding-TB {
  padding:var(--section-padding-TB);
}

.section__title {
  text-align:center;
  margin-bottom:32px;
}


.fv {
    position:relative;
}

.fv .img-logo-01 {
    position:absolute;
    top:9px;
    left:8px;
    width:31.5%;
}

.fv .img-logo-01-02 {
    position:absolute;
    top:5px;
    left:3px;
    width:36%;
    z-index:3;
}

.img-fv-02 {
    top:6px;
    right:5px;
    width:62%;
    position:absolute;
}

.img-fv-03 {
    top:75px;
    right:8px;
    width:18.97%;
    position:absolute;
    z-index:2;
}

.img-fv-04 {
    top:80px;
    left:0px;
    width:92%;
    position:absolute;
}

.img-fv-title {
    top:63%;
    left:4%;
    width:92%;
    position:absolute;
}

.img-fv-title-02 {
    top:6px;
    right:0;
    width:100%;
    position:absolute;
}


.btn-fv {
    width:92%;
    left:4%;
    position:absolute;
    bottom:8%;
    z-index:2;
}

.btn-fv-02 {
    width:92%;
    left:4%;
    position:absolute;
    bottom:8%;
    z-index:2;
}

@keyframes shiny {
    0% {
        transform: scale(0) rotate(25deg);
        opacity: 0;
    }
    2% {
        transform: scale(1) rotate(25deg);
        opacity: 1;
    }
    20% {
        transform: scale(50) rotate(25deg);
        opacity: 0;
    }
    100% {
        transform: scale(50) rotate(25deg);
        opacity: 0;
    }
}

.shiny-btn {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
}

.shiny-btn::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 50px;
    height: 150px;
    background-image: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0) 10%,
        rgba(255, 255, 255, 1) 100%,
        rgba(255, 255, 255, 0) 0%
    );
    animation: shiny 5s ease-in-out infinite;
}

.shiny-btn .hover-opa img {
  transform:scale(1);
  opacity:1;
  transition:.4s;
}

.shiny-btn .hover-opa:hover img {
  transform:scale(0.9);
  opacity:.6;
}

@media only screen and (max-width: 896px) {
.shiny-btn .hover-opa:hover img {
  transform:scale(1);
  opacity:1;
}
}

.scrollWrap {
  position:relative;
  width:100%;
  height:80px;
  z-index:2;

  bottom:-40px;
}

.scrolldown1{
  position:absolute;
  left:50%;
  bottom:0px;
  height:80px;
  z-index:10;
}

.scrolldown1::after{
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 40px;
  background: #000;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}

@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:50px;
    opacity: 1;
  }
  100%{
    height:0;
    top:80px;
    opacity: 0;
  }
}

.about {
    position:relative;
    background:var(--color-pink-01);
}

.about__inner {
    padding:0 5%;
}

.img-about-01 {
    padding:50px 0 28px;
}

.img-about-02 {
    padding:0 0 16px;
}

.img-about-03 {
    padding:0 0 32px;
}

.img-about-04 {
    padding:0 0 48px;
}

.img-about-parts-01 {
    position:absolute;
    top:-60px;
    right:-40px;
    width:140px;
}

.img-about-parts-02 {
    position:absolute;
    bottom:-70px;
    left:-50px;
    width:135px;
    z-index:2;
}

@keyframes yure {
    0%{
        transform:rotate(0deg);
    }
    50%{
        transform:rotate(28deg);
    }
    100%{
        transform:rotate(0deg);
    }
}

.parts-yure-01 {
    animation:yure 5s infinite;
}

.stage {
    position:relative;
}

.stage:before {
    display:block;
    background:var(--color-pink-01);
    width:100%;
    height:130px;
    top:0;
    left:0;
    content:'';
    position:absolute;
}

.stage-01 {
    position:relative;
    margin-bottom:40px;
}

.img-stage-01 {
    position:relative;
    width:100%;
    padding:0 5%;
    margin-top:-30px;
}

.runway {
    background:#F1F1F1;
    padding:80px 5% 60px;
    position:relative;
}

.runway__inner {
    background:#fff;
    border-radius:6px;
    padding:190px 0 1px;
    position:relative;
}

.img-runway-title {
    width:94%;
    position:absolute;
    top:84px;
    z-index:2;
}

.runway-01,
.runway-02,
.runway-03 {
    padding:0 5%;
    position:relative;
    margin-bottom:40px;
}

.runway-01 .img-runway-icon-01 {
  position:absolute;
  width:18%;
  top:-30px;
  right:0;
  z-index:2;
}

.runway-01 .star-01 {
    position:absolute;
    top:-15px;
    left:-15px;
    z-index:2;
    width:55px;
    animation:zoom01 1.7s infinite;
}

.runway-01 .star-02 {
    position:absolute;
    top:55%;
    right:-15px;
    z-index:2;
    width:55px;
    animation:zoom01 1.7s infinite;
}


.runway-02 .img-runway-icon-02 {
  position:absolute;
  width:18%;
  top:-30px;
  left:0;
  z-index:2;
}

.runway-02 .star-01 {
    position:absolute;
    top:-15px;
    left:-15px;
    z-index:2;
    width:55px;
    animation:zoom01 1.7s infinite;
}

.runway-02 .star-02 {
    position:absolute;
    top:55%;
    right:-15px;
    z-index:2;
    width:55px;
    animation:zoom01 1.7s infinite;
}

.runway-03 .img-runway-icon-03 {
  position:absolute;
  width:18%;
  top:-30px;
  right:0;
  z-index:2;
}

.runway-03 .star-01 {
    position:absolute;
    top:-15px;
    left:-15px;
    z-index:2;
    width:55px;
    animation:zoom01 1.7s infinite;
}

.runway-03 .star-02 {
    position:absolute;
    top:42%;
    right:-15px;
    z-index:2;
    width:55px;
    animation:zoom01 1.7s infinite;
}

.img-runway-parts-02 {
    position:absolute;
    bottom:-70px;
    left:-56px;
    width:160px;
    z-index:2;
}

@keyframes zoom01 {
    0% {
        transform:scale(1.0);
    }
    50% {
        transform:scale(1.2);
    }
    100% {
        transform:scale(1.0);
    }
}


.entry {
    padding:60px 0;
    text-align:center;
}

.entry__inner {
    padding:0 5%;
}

.entry__list {
    display:flex;
    flex-direction:column;
    gap:16px;
    padding-top:24px;
}

.btn-offer-01 {
    width:92%;
    margin:30px auto 0;
}

.access {
    padding:60px 0;
    text-align:center;
    background:#5099E8;
    position:relative;
}

.access__inner {
    padding:0 5%;
}

.access_map {
    border-radius:8px;
    overflow:hidden;
    height:300px;
    margin:24px 0;
}

.img-access-parts-01 {
    position:absolute;
    top:-20px;
    right:-56px;
    width:120px;
    z-index:2;
}

.img-access-parts-02 {
    position:absolute;
    bottom:-60px;
    left:-20px;
    width:100px;
    z-index:2;
}

.abouttgc {
    position:relative;
    padding:80px 0;
    text-align:center;
}

.abouttgc:before {
    display:block;
    background:#F7F7F7;
    width:70%;
    position:absolute;
    top:0;
    right:0;
    content:'';
    height:100%;
}

.abouttgc__inner {
    position:relative;
    z-index:2;
}

.img-abouttgc-01 {
    width:100%;
    padding:0 20%;
    margin:40px auto 32px;
    display:block;
}

.img-abouttgc-02 {
    width:100%;
    padding:0 5%;
    margin:0 auto 24px;
    display:block;
}

.img-abouttgc-03 {
    width:100%;
    padding:0 8%;
    margin:0 auto 24px;
    display:block;
}

.img-abouttgc-04 {
    width:100%;
    padding:0 5%;
    margin:0 auto 24px;
    display:block;
}

.img-abouttgc-05 {
    width:100%;
    padding:0 5%;
    margin:0 auto 24px;
    display:block;
}

.img-abouttgc-06 {
    padding:0 5%;
}

.chance {
    padding:80px 0 60px;
    position:relative;

}

.chance__inner {
    padding: 0 5%;
    position:relative;
}

.chance-01,
.chance-02,
.chance-03 {
    margin-bottom:54px;
}

.chance-01 p,
.chance-02 p,
.chance-03 {
    margin:8px 0;
}

.f-pink {
    color:var(--color-pink-01);
}

.dream {
    position:relative;
    padding-bottom:60px;
}

.dream__inner {
    position:relative;
    text-align:center;
    padding:36px 4%;
}

.img-dream-01 {
    width:50%;
    margin-bottom:10px;
}

.dream__txt_01 {
    font-size:2.2rem;
    font-weight:bold;
    margin-bottom:8px;
    line-height:1.4;
}

.dream__txt_02 {
    font-size:1.7rem;
    font-weight:600;
    line-height:1.8;
}

.img-dream-parts-01 {
    position:absolute;
    bottom:-52px;
    right:-20px;
    width:120px;
    z-index:2;
}




.faq {
    padding:60px 0;
    text-align:center;
    background:#9482F3;
    position:relative;
}

.faq__inner {
    padding:0 5%;
    position:relative;
}

.faq__list {
    display:flex;
    flex-direction:column;
    gap:32px;
    padding-top:24px;
}



















.ft {
  padding:40px 6% 24px;
  font-size:1.1rem;
  background:#fff;
}

.ft a {
  text-decoration:none;
  transition:.4s;
  color:#000;
}

.ft a:hover {
  color:#ccc;
}

.ft__company {
  text-align:center;
  font-size:1.2rem;
  letter-spacing:0px;
  color:#fff;
  background:#000;
  font-weight:400;
  margin-bottom:8px;
  width:32%;
  margin:0 auto 16px;
  padding:2px 0;
}


.ftLogo {
  width:75%;
  text-align:center;
  padding:10px 18% 18px;
  margin:10px auto 0;
}



.ft__list {
  display:flex;
  justify-content:center;
  gap:16px;
  padding:16px 0;
  border-top:1px solid #ccc;
}

.ft__copy {
  text-align:center;
  font-size:1rem;

}


.gheader,
.gheaderLower {
  height:0;
  overflow:hidden;
}

@media only screen and (max-width: 896px) {

  
.gheader {
    width: 100%;
    height:auto;
    background:#fff;
    position: fixed;
    top:-1px;
    left: 0;
    opacity: 0;

    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index:5;
    box-shadow: 0px 3px 8px -5px #b0b0b0;
}

.gheaderLower {
    width: 100%;
    height:auto;
    background:#fff;
    position: fixed;
    top:-1px;
    left: 0;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index:5;
    box-shadow: 0px 3px 8px -5px #b0b0b0;
}

.gheader__inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 8px 8px 12px;
}

.gheader__inner h1 {
  padding:4px 0;
  width:15%;
}

.gheader__inner a.gheader__btn {
  display:block;
  width:40%;
}

}



@media only screen and (max-width: 480px) {
.gheader__inner {

  padding:8px;
}
  
.gheader__inner h1 {
  width:20%;
  padding:2px 0 0 0;
  margin-top:-3px;
}

.gheader__inner a.gheader__btn {
  width:58%;
}
}


/*
sideNav ********/
.sideNav {
  width:27vw;
  position:fixed;
  top:64px;
  left:16px;
}

.sideNav h1 {
  width:190px;
}
.sideNav__logo {

  margin-bottom:32px;
}

.sideNav__qr {
  width:114px;
}

.sideNav__list {
  margin-bottom:32px;
}

.sideNav__list li {
  margin-bottom:3vh;
}



.sideNav a {
  transition:.4s;
  display:block;
  padding:2px 10px;
  font-weight:500;
  letter-spacing:1px;
  font-size:1.35vw;
  line-height:1.5;
  text-decoration:none;
  color:#fff;
  transition:1s;
}

.sideNav a:hover {
  color:#ff0;
}




@media only screen and (max-width: 896px) {
.sideNav {
  display:none !important;
}

}



@media only screen and (max-width: 480px) {
.sideNav {
  display:none;
}
}


/*
特定商取引法に基づく表記 *************/

.lower__title {
  text-align:center;
  font-size:1.8rem;
  padding:80px 0 48px;
  font-weight:700;
  margin-bottom:32px;
  letter-spacing:2px;
  background:#000;
  color:#fff;
}

@media only screen and (max-width: 480px) {
.lower__title {
  padding:100px 0 48px;
}
}



.lower__title:after {
  content: attr(data-en);
  font-size:1.1rem;
  display:block;
  letter-spacing:2px;
}

.summary__item {
  margin-bottom:24px;
}

.summary__item dt {
  font-size:1.5rem;
  font-weight:bold;
  border-bottom:1px solid #ccc;
  margin-bottom:6px;
  padding-bottom:6px;
}

.summary__item dd {
  font-size:1.3rem;
}

.lower__body {
  padding:0 6%;
  font-size:1.3rem;
}

.red-midashi {
  color:var(--color-blue-01);
  font-weight:600;
  font-size:1.4rem;
}


.normal__list {
  margin:0;
}

.normal__list li {
  position: relative;
  padding-left: 1.4rem;

}

.normal__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  font-size: 1.4rem;
}


.normal__list-02 {
  margin:0;
}

.normal__list-02 li {
  position: relative;

}

.normal__list-02 li::before {
  content: "";
  position: absolute;
  left: 0;
  font-size: 1.4rem;
}

.ppheading {
  background:#000;
  color:#fff;
  padding:12px 10px;
  letter-spacing:1px;
  font-size:1.5rem;
  line-height:1;
  margin-bottom:16px;
}


/*
エントリー受付中 *************/
.entryMessage {
  width:100%;
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  display: none;

  font-weight:700;
}

.entryMessage-logo {
  width:240px;
  text-align:center;
  margin:0 auto 10px;
  animation:flash 1.5s infinite;
}
/*
@media only screen and (max-width: 896px) {
.entryMessage-logo {
  width:40%;
}
}

@media only screen and (max-width: 480px) {
.entryMessage-logo {
  width:66%;
}
}
*/
.entryMessage h2 {
  /* font-size:1.6rem;
  letter-spacing:2px;
  font-weight:600; */
}

@keyframes flash {
  0%{
    opacity:1;
  }
  50%{
    opacity:0.5;
  }
  0%{
    opacity:1;
  }
}









/*
アニメーション **********/

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
    transition: opacity 1.5s ease, transform 1.5s ease, filter 1.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-30px);
    filter: blur(10px);
    transition: opacity 1s ease, transform 1s ease, filter 1.5s ease
}

.fade-in-down.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}


.fade-in-zoom {
    opacity: 0;
    transform: scale(0);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-zoom.visible {
    opacity: 1;
    transform: scale(1);
}


.fade-in-R {
    opacity: 0;
    transform: translateX(30px);
    filter: blur(10px);
    transition: opacity 1s ease, transform 1s ease, filter 1.5s ease
}

.fade-in-R.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}


.fade-in-L {
    opacity: 0;
    transform: translateX(-30px);
    filter: blur(10px);
    transition: opacity 1s ease, transform 1s ease, filter 1.5s ease;
}

.fade-in-L.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.fade-in-blur {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 1.5s ease, filter 1.5s ease;
}

.fade-in-blur.visible {
    opacity: 1;
    filter: blur(0);
}


/*右から左*/

@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  position:relative;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 50s infinite linear both;
}

.dream .scroll-infinity__list--left {
  animation: infinity-scroll-left 50s infinite linear both;
}


.scroll-infinity__item {
  width: 380px;
  margin-right:10px;
}

.dream .scroll-infinity__item {
  width: 220px;
  margin-right:8px;
}


.scroll-infinity__item>img {
  width: 100%;
}

/*左から右*/
@keyframes infinity-scroll-right {
from {
  transform: translateX(-100%);
}
  to {
  transform: translateX(0%);
}
}
.scroll-infinity__list--right{
  animation :infinity-scroll-right 50s infinite linear both;
}


.dream  .scroll-infinity__list--right {
  animation :infinity-scroll-right 50s infinite linear both;
}










/*
form parts **********/

.formBlock {
  padding:0 5%;
}

table.base-01 {
  width: 100%;
}

table.base-01 th {
  width: 100%;
  padding:10px 0 8px;
  display: block;
  text-align: left;
  border-top:none;
  border-bottom: none;
  font-weight: 500;
}

table.base-01 td {
  width: 100%;
  padding:14px 0 0 0;
  border-top:1px solid #ccc;
  border-bottom:none;
  display: block;
  margin-bottom:7px;
}

/*form parts*/
.send-btn {
  width: 50%;
  display: block;
  margin:0 auto;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  /* -webkit-appearance: button; */
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
}

input[type=radio] {
  display:inline-block;
}

.wpcf7-list-item {
  width:auto !important;
  padding-bottom:10px !important;
}

.wpcf7-list-item { display: block; float: left; width: 80%; }
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  font-size:1.6rem;
  padding: 13px 5px;
  width:100%;
 background:#fff;
 border:1px solid #ccc;
}

input[type="text"].nenrei-txt {
  width:200px;
  margin-right:5px;
}

input[type="text"].tel-numtxt,
input[type="email"].tel-numtxt {
  width:100%;
}


input[type="submit"].wpcf7-confirm,
input[type="submit"].wpcf7-submit,
.wpcf7-back { 
  background:#05C756;
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  margin: 16px auto 0 auto;
  /* padding: 18px 0; */
  background:url(/wp-content/themes/tgckidsclub/imgs/bg-sendbtn.webp) no-repeat 0 0 / contain;
  text-align: center;
  width:340px;
  height:70px;
  /* font-size:1.5rem; */
  transition:.6s;
  font-size:0;
  /* border-radius:4px;
  border-right:3px solid #02A245;
  border-bottom:3px solid #02A245; */
}

input[type="submit"].wpcf7-confirm:hover,
input[type="submit"].wpcf7-submit:hover {
  /* opacity:.5; */
}


input[type="button"].wpcf7-confirm,
input[type="button"].wpcf7-submit,
input[type="button"].wpcf7-form-control { 
  background:#555;
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size:1.6rem;
  margin: 30px auto 0;
  padding: 20px 0;
  text-align: center;
  width: 80%;
}

input[type=checkbox], input[type=radio] {
    transform: scale(1.4);
    margin: 0 5px 0 0;
}

select {
  width:60%;
  /* width: 200px; */
  padding:14px 3px 14px 5px;
  /* border-radius: 0px; */
  -webkit-appearance: none;
  appearance: none;
  position:relative;
    border: 1px solid #ccc;
    position:relative;
  background-color:#fff;
  background-image: url(/wp-content/themes/tgckidsclub/imgs/bg-contact-arrow-bottom.png);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 13px 13px;
  font-size:1.5rem;
  color:#000;
  border-radius:0;
  }

::placeholder {
  font-size: 1.2rem;
  line-height:1.5;
  color:#bbb;
}

.required {
  color:#fff;
  background:#f1911a;
  display:inline-block;
  padding:5px 6px;
  font-size:1rem;
  line-height:1;
  border-radius:4px;
  transform:translateY(-2px);
  margin-left:4px;
}

.nini {
  color:#fff;
  background:#aaa;
  display:inline-block;
  padding:5px 6px;
  font-size:1rem;
  line-height:1;
  border-radius:4px;
  transform:translateY(-2px);
  margin-left:4px;
}


  .wpcf7-checkbox {
    position:relative;
    display: block;
}

.wpcf7-not-valid-tip {
  display: block;
  font-size:1.2rem !important;
}


.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    line-height: 1.4;
}

.f-furigana {
  font-size:1.1rem;
  letter-spacing:-1px;
  margin-left:-3px;
}

.form-half {
display:flex;
justify-content:space-between;
gap:10px;
}

.form-sex {
display:flex;
justify-content:space-between;
/*gap:4px; */
}

.nenrei-01,
.nenrei-02,
.nenrei-03 {
width:90px;
  position:relative;
}

.form-sex li {
  position: relative;
  display: inline-block;

}

.form-sex li .wpcf7-not-valid-tip {
  display:none;
}

.err {
  color: #dc3232;
  font-size:1.2rem;
}

span.unit {
  padding-left:4px;
}

/*
.form-sex li.nenrei-01 .select-wrap::after {
  content: "年";
  margin-left: 4px;
  font-size: 1rem;
  color: #000;
}

.form-sex li.nenrei-02 .select-wrap::after {
  content: "月";
  margin-left: 4px;
  font-size: 1rem;
  color: #000;
}

.form-sex li.nenrei-03 .select-wrap::after {
  content: "日";
  margin-left: 4px;
  font-size: 1rem;
  color: #000;
}
*/


/*
.form-sex li.nenrei-01::after {
  content: "年";
  margin-left: 4px;
}

.form-sex .nenrei-02::after {
  content: "月";
  margin-left: 4px;
}

.form-sex .nenrei-03::after {
  content: "日";
  margin-left: 4px;
}

.form-sex li {
  position: relative;
  display: inline-block;
}

*/



.kibou-school {
  width:100px;

}


.wpcf7-list-item {
  display: inline-block;
  margin: 0 1em 0 0 !important;
}

.wpcf7 form .wpcf7-response-output {
  margin-top:0 !important;
}


.wpcf7-list-item {
    display: inline-block;
    margin: 0 !important;
    padding-bottom:0 !important;
}

span.sx001 input + span,
span.genre001 input + span {
    font-size: 0;
}

span.sx001 input,
span.genre001 input {
    display: none;
}

span.sx001,
span.genre001 {
    padding: 0 0 0 0;
    margin: 0;
}

span.sx001 .wpcf7-list-item:nth-of-type(1) .wpcf7-list-item-label:after {
    content: url(/wp-content/themes/tgckidsclub/imgs/ck-sx01-01.jpg);
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    width: 100px;
    height: auto;
    padding: 0 auto;
    margin: -10px 0px 0px -15px;
}

span.sx001 .wpcf7-list-item:nth-of-type(2) .wpcf7-list-item-label:after {
    content: url(/wp-content/themes/tgckidsclub/imgs/ck-sx02-01.jpg);
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    width: 100px;
    height: auto;
    padding: 0 auto;
    margin: -10px 0px 0px -15px;
}

span.sx001 .wpcf7-list-item:nth-of-type(3) .wpcf7-list-item-label:after {
    content: url(/wp-content/themes/tgckidsclub/imgs/ck-sx03-01.jpg);
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    width: 100px;
    height: auto;
    padding: 0 auto;
    margin: -10px 0px 0px -15px;
}

span.sx001 .wpcf7-list-item input + .wpcf7-list-item-label:after,
span.genre001 .wpcf7-list-item input + .wpcf7-list-item-label:after {
    opacity: 0.4;
}

span.sx001 .wpcf7-list-item input:checked + .wpcf7-list-item-label:after,
span.genre001 .wpcf7-list-item input:checked + .wpcf7-list-item-label:after {
    opacity: 1;
}

span.genre001 .wpcf7-list-item:nth-of-type(1) .wpcf7-list-item-label:after {
    content: url(/wp-content/themes/tgckidsclub/imgs/ck-sx01-01.jpg);
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    width: 95px;
    height: auto;
    padding: 0 auto;
    margin: -10px 8px 0px -15px;
}

span.genre001 .wpcf7-list-item:nth-of-type(2) .wpcf7-list-item-label:after {
    content: url(/wp-content/themes/tgckidsclub/imgs/ck-sx02-01.jpg);
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
      width: 95px;
    height: auto;
    padding: 0 auto;
    margin: -10px 8px 0px -15px;
}

span.genre001 .wpcf7-list-item:nth-of-type(3) .wpcf7-list-item-label:after {
    content: url(/wp-content/themes/tgckidsclub/imgs/ck-sx03-01.jpg);
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    width: 95px;
    height: auto;
    padding: 0 auto;
    margin: -10px 8px 0px -15px;
}

.kidssex .wpcf7-not-valid-tip {
  clear:both !important;
  transform: translateY(-6px);
}

/*
送信完了ページ **********/
.thanks__hdLogo {
  display:block;
  width:66%;
  margin:0 auto 4px;
  transform:translateY(-20px);
}


.thanks__title {
  background:var(--color-blue-01) !important;
  color:#fff;
  margin-bottom:32px;
  padding:56px 0 56px !important;
} 

.thanks__title:before {
  color:#fff !important;
}

.thanks-line__txt--big {
  background:#000;
  color:#fff;

  font-size:1.7rem;
  font-weight:600;
  line-height:1;
  padding:12px 0 14px;
  margin:8px auto 24px;
  display:block;
  text-align:center;
  letter-spacing:0.5px;
}

.thanks__body {
  padding:0 4%;
}

.send-after__txt {
  font-size:1rem;
  font-weight:400;
  text-align:center;
}


@keyframes imganime {
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.05);
  }
  100%{
    transform:scale(1);
  }
}

.line-imganime {
  animation:imganime 3s infinite linear;

}

.f-red {
  color:#C8102E;
}

.thanks-line__txt--warning {
  text-align:center;
  margin-top:16px;
}

.thanks__contact-address {
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.thanks__contact-address img {
  width:24%;
  display:block;
  margin:0 auto 8px;
}

.thanks__contact-address .txt {
  font-size:1.7rem;
  font-weight:600;
}








/*
padding parts **********/
.pb32 {
  padding-bottom:32px;
}



/*
margin parts **********/

.mtb8 {
  margin:8px 0;
}

.mtb4 {
  margin:4px 0;
}

.mb0 {
  margin-bottom:0 !important;
}

.mb4 {
  margin-bottom:4px;
}

.mb8 {
  margin-bottom:8px;
}

.mb16 {
  margin-bottom:16px;
}

.mb24 {
  margin-bottom:24px;
}

.mb32 {
  margin-bottom:32px;
}

.mt8 {
  margin-top:8px;
}

.mt16 {
  margin-top:16px;
}

.mt24 {
  margin-top:24px;
}

.mt32 {
  margin-top:32px;
}

.mt40 {
  margin-top:40px;
}


/*
other parts **********/
.img-block {
  display:block;
  vertical-align:bottom;
}

.bg-gary {
  background:var(--color-gray-01);
}

.txt-c {
  text-align:center;
}


.grecaptcha-badge { visibility: hidden; }
/*
PC block --------------------------------------------*/
.i_p_b {display: block !important;}
.i_t_b {display: none !important;}
.i_s_b {display: none !important;}
.i_pt_b {display: block !important;}
.i_ts_b {display: none !important;}
.dis-none {display:none !important;}

