@charset "utf-8";

html{
  font-size: 62.5%;
}
body{
  margin: 0 auto;
  background-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

.index header h1{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  height: 85vh;
}
.index header h1 img{
  display: block;
  width: 100%;
  margin-top: -5%;
  filter: drop-shadow(0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.3));
}

/* toggleメニュー */
.btn{
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 999;
  cursor: pointer;
}
.btn span{
  display: block;
  height: 2px;
  width: 30px;
  margin-bottom: 6px;
  background-color: #fff;
  transition: 0.5s;
}
.btn.active{
  position: fixed;
}
.btn.active span:nth-child(1){
  transform: rotate(45deg) translate(5.5px,5.5px);
}
.btn.active span:nth-child(2){
  opacity: 0;
}
.btn.active span:nth-child(3){
  transform: rotate(-45deg) translate(5.5px,-5.5px);
}
.glonav{
  background-color: rgba(0, 0, 0, 0.6);
  width: 50%;
  height: 100vh;
  display: grid;
  place-items: center;
  position: fixed;
  top: 0;
  right: -100%;
  transition: 0.5s;
  z-index: 998;
}
.glonav.active{
  right: 0;
  top: 0;
}
.glonav ul li{
  font-size: 2.2rem;
  line-height: 62px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  transition-duration: 0.5s;
}
.glonav ul li a{
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glonav ul li a img{
  padding-left: 15px;
}
/* toggleメニューここまで */

/* fadein */
.fadein{
  opacity: 0;
  z-index: 2;
  transform: translate(0, 30px);
  transition: all 0.6s;
}
.fadein.active{
  opacity: 1;
  transform: translate(0, 0);
}

/* h2共通 */
h2{
  font-size: 48px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}

/* About Usここから */
.background-top{
  background-image: url(../images/background-top.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size:100% auto;
  transform: translateY(1px);
}

.aboutus{
  max-width: 880px;
  margin: 0 auto;
}
.aboutus h2{
  padding: 48px 0;
  text-align: center;
}
.aboutus p{
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.4;
}
.aboutus p span{
  text-transform: uppercase;
}

/* 共通リンクボタン */
a.button{
  display: block;
  width: 162px;
  margin: 24px 0 0 auto;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
}
a.button span{
  padding-right: 1em;
  transition-duration: 0.5s;
}
a.button img{
  transition-duration: 0.5s;
}
/* 共通リンクボタンここまで */
.aboutus{
  max-width: 860px;
  margin: 0 auto;
}
.aboutus figure{
  padding: 96px 0 192px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aboutus figure img{
  width: calc(100% / 3);
}

/* For Beginners、For Kidsここから */
.beginners-kids section{
  background-color: #f5f4e4;
  padding-bottom: 96px;
}
.beginners-kids section:last-child{
  padding-bottom: 48px;
}
.beginners-kids section h2{
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 12px;
  padding-top: 1px;
}
.beginners-kids section h2 span{
  display: block;
  background-image: url(../images/hold02.svg);
  background-repeat: no-repeat;
  background-position: 5.75em;
}
.beginners-kids section:last-child h2 span{
  background-image: url(../images/hold01.svg);
  background-repeat: no-repeat;
  background-position: 3.5em;
}
.beginners-kids section .forkids-container{
  max-width: 1100px;
  margin: 0 auto 10px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border: 4px solid #000;
  box-shadow: 6px 10px 0 #fffb33;
}
.beginners-kids section:last-child .forkids-container{
  box-shadow: 6px 10px 0 #ff5a19;
} 
.beginners-kids section .forkids-container .p-text{
  max-width: 548px;
  width: calc(100%- 458px);
  text-transform: uppercase;
}
.beginners-kids section .forkids-container .p-text p.title{
  font-size: 2.4rem;
  line-height: 36px;
  font-weight: bold;
}
.beginners-kids section .forkids-container .p-text p.text{
  margin-top: 24px;
  font-size: 1.6rem;
  line-height: 2.4;
  text-align: justify;
}

.beginners-kids section .forkids-container .p-text p.dusty{
  position: relative;
}
.beginners-kids section .forkids-container .p-text p.dusty img{
  position: absolute;
  top: -70px;
  left: 250px;
  z-index: 999;
}
.beginners-kids section .forkids-container .p-text:last-child p.dusty img{
  top: -33px;
  left: 0;
}
.beginners-kids section .forkids-container .p-photo{
  width: 410px;
  align-self: center;
}
.beginners-kids section .forkids-container .p-photo img{
  border: 4px solid #000;
  display: block;
  width: 100%;
  height: auto;
}

.background-bottom{
  background-image: url(../images/background-bottom.svg);
  background-repeat: no-repeat;
  background-position:top;
  background-size: 100% auto;
  height: 240px;
  transform: translateY(-1px);
}

/* Instagramここから */
.instagram{
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 192px;
}
.instagram h2 span{
  display: block;
  background-image: url(../images/hold04.svg);
  background-repeat: no-repeat;
  background-position: 4.3em;
}
.instagram p.text{
  padding-top: 24px;
  font-size: 1.6rem;
  line-height: 2.4;
  text-align: justify;
}
.instagram p.text span{
  text-transform: uppercase;
}

.insta-wrapper{
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
}
.insta-icon{
  width: 210px;
  justify-items: center;
}
.insta-icon p.username{
  margin: 16px auto 0;
  text-align: center;
  font-size: 2rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.insta-icon a.icon{
  display: block;
  width: 150px;
  margin: 0 auto;
  border: 1px solid #000;
  border-radius: 150px;
}
.insta-icon a.icon img{
  display: block;
  width: 85%;
  margin: 0 auto;
}
.insta-icon a.button{
  margin: 24px auto 0 auto;
}

/* Instagram埋め込み */
ul.insta_list,ul.instashop_list{
  width: calc(100% - 250px);
  display: grid;
  gap:20px;
  grid-template-columns: repeat(8,250px);
  grid-template-rows: 250px;
  overflow-y: scroll;
}
::-webkit-scrollbar{
  height: 10px;
  width: 15px;
}
::-webkit-scrollbar-thumb{
  background: #000;
  border-radius: 5px;
}
::-webkit-scrollbar-track{
  background: none;
}
ul.insta_list li,ul.instashop_list li{
  border: 3px solid #000;
}
ul.insta_list li img ,ul.instashop_list li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Accessここから */
.background{
  background-color: #f5f4e4;
}
.access-map{
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 0 96px;
  display: flex;
  justify-content: space-between;
  background-color: #f5f4e4;
}
.access-map h2 span{
  display: block;
  background-image: url(../images/hold03.svg);
  background-repeat: no-repeat;
  background-position: 3em;
}
.access-map a.button{
  margin: 24px auto 0 0;
}
.access-map section{
width: calc(100% - 848px);
margin: auto auto auto 0;
}
.access-map figure{
  width: 848px;
}
.access-map figure img{
  display: block;
  width: 100%;
  height: auto;
  border: 4px solid #000;
}

/* Footerここから */
footer{
  background-color: #000;
  color: #fff;
}
footer .f-flex{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
footer .f-flex .address{
  width: 170px;
  margin: 24px 0;
}
footer .f-flex .address a{
  transition-duration: 0.5s;
}
footer .f-flex .address address{
  margin-top: 20px;
  font-size: 1.3rem;
  line-height: 1.7;
  text-transform: uppercase;
  text-align: center;
}
footer .f-flex nav{
  width: calc(100% - 170px);
  margin-top: 48px;
}
footer .f-flex nav ul{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
footer .f-flex nav ul li{
  margin-right: 48px;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 29px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  transition-duration: 0.5s;
}
footer .f-flex nav ul li a{
  display: flex;
  align-items: center;
}
footer .f-flex nav ul li span{
  padding-right: 15px;
}
footer .f-flex nav ul li:last-child{
  margin: 0;
}
footer hr{
  height: 1px;
  border: none;
  background-color: #fff;
}
footer small{
  display: block;
  text-align: center;
  font-size: 1.3rem;
  font-family: 'Oswald', sans-serif;
  line-height: 96px;
  text-transform: uppercase;
}
.pagetop{
  position: relative;
}
.pagetop a{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 62px;
  right: 50px;
  transition-duration: 0.5s;
  cursor: pointer;
}
.pagetop a span{
  display: block;
  font-size: 1.8rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}
.pagetop a img{
  display: block;
  padding-top: 2em;
  transition-duration: 0.5s;
}

/*---------- 以下、下層ページ ----------*/
/*---------- About ----------*/
/* header */
.about header,.price header,.school header,.access header{
  height: 240px;
  background-image: url(../images/dj.jpg);
  background-position: top;
  }
.about header h1,.price header h1,.school header h1,.access header h1{
    padding: 10px 0 0 50px;
  }
.about header p,.price header p,.school header p,.access header p{
  font-size: 72px;
  letter-spacing: 0.04em;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000,
  -1px 1px 0 #000, 1px -1px 0 #000,
  0px 1px 0 #000, 0 -1px 0 #000,
  -1px 0 0 #000, 1px 0 0 #000;
}
/* the stone session tokyo */
.tsstokyo{
  max-width: 1100px;
  margin: 0 auto;
}
.tsstokyo h2{
  padding: 96px 0 48px 0;
  text-align: center;
  text-transform: uppercase;
}
.tsstokyo .slider img{
  display: block;
  width: 100%;
  height: auto;
}
.tsstokyo p{
max-width: 1100px;
margin: 0 auto;
padding-top: 24px;
font-size: 1.6rem;
line-height: 2.4;
text-align: center;
text-transform: uppercase;
}

/* lattest sports */
.lattestsports{
  max-width: 1100px;
  margin: 0 auto;
  padding: 192px 0;
}
.lattestsports h2{
  padding-bottom: 48px;
  text-align: center;
  text-transform: uppercase;
}
.lattestsports h2 span{
  display: block;
  background-image: url(../images/hold06.svg);
  background-repeat: no-repeat;
  background-position: calc(50% + 4.6em) center;
}
section.text h3{
  font-size: 2.4rem;
  text-align: center;
}
section.text p{
  padding: 24px 0;
  font-size: 1.6rem;
  line-height: 2.4;
  text-align: center;
  text-transform: uppercase;
}
section.text .lattest-flex{
  display: flex;
  justify-content: space-between;
}
section.text .lattest-flex p{
  width: 527px;
}
section.text .lattest-flex p img{
  border: 4px solid #000;
  display: block;
  width: 100%;
  height: auto;
}
.lattest-flex ul{
  width: calc(100% - 575px);
  text-transform: uppercase;
}
.lattest-flex ul li{
  padding: 16px 0;
  font-size: 1.6rem;
  line-height: 30px;
  background-image : linear-gradient(to right, #000 5px, transparent 5px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: bottom;
}
section.text .lattest-flex ul li:last-child{
  background-image: none;
}
section.text .lattest-flex ul li em{
  font-size: 2.4rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}
section.text .lattest-flex ul li span{
  text-transform: lowercase;
}

/* gallery */
.gallery{
  background-color: #f5f4e4;
  padding-bottom: 96px;
}
.gallery h2{
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 48px;
  text-align: center;
}
.gallery h2 span{
  display: block;
  background-image: url(../images/hold07.svg);
  background-repeat: no-repeat;
  background-position: calc(50% + 3em);
  background-size: 12%;
}
.gallery ul{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gallery ul li{
  width: 360px;
  margin-bottom: 4px;
}
.gallery ul li img{
  border: 3px solid #000;
  display: block;
  width: 100%;
  height: auto;
}

/*---------- Price ----------*/
.price-text{
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 48px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.4;
}
.member{
  max-width: 1100px;
  margin: 0 auto;
}
.member h2{
  padding: 48px 0 24px 0;
  text-align: center;
}
.member table{
  width: 700px;
  table-layout: fixed;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  border: 4px solid #000;
  box-shadow: 6px 10px 0 #770dff;
}
.member table span{
  font-size: 1.2rem;
  font-weight: normal;
}
.member table tr{
  border: 2px solid #000;
}
.member table th{
  font-weight: bold;
}
.member table tr th,.member table tr td{
  height: 50px;
  border: 2px solid #000;
}
.member table tr td{
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}
.member:last-child{
  padding-bottom: 192px;
}
.member:last-child table{
  box-shadow: 6px 10px 0 #00ffd4;
}

/* Try Bouldering */
.try-bouldering{
  background-color: #f5f4e4;
  padding-bottom: 96px;
}
.try-bouldering h2{
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1px;
  text-align: center;
}
.try-bouldering h2 span{
  display: block;
  background-image: url(../images/hold08.svg);
  background-repeat: no-repeat;
  background-position: calc(50% + 4em);
}
.try-bouldering p.lead-text{
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 0;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.4;
}
.try-bouldering .step1-4{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.try-bouldering .step1-4 section{
  width: calc((100% - 93px) / 4);
}
.try-bouldering .step1-4 section h3{
  text-align: center;
  color: #ff5a19;
  font-size: 2rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}
.try-bouldering .step1-4 section figure img{
  border: 3px solid #000;
}
.try-bouldering .step1-4 .step-arrow{
  width: 31px;
  background-image: url(../images/arrow_r.svg);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center 45%;
}
.try-bouldering .step1-4 section figure figcaption{
  font-size: 1.3rem;
  text-align: justify;
}
.trial-example{
  max-width: 700px;
  margin: 48px auto 0;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border: 4px solid #000;
  box-shadow: 6px 10px 0 #fffb33;
}
.trial-example h3{
  padding-bottom: 6px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff5a19;
  text-align: center;
}
.trial-example .trial-fee-ex{
  width: 50%;
  padding: 12px;
  background-image: linear-gradient(to bottom, #000 5px, transparent 5px);
  background-size: 1px 10px;
  background-repeat: repeat-y; 
  background-position: right top;
 }
.trial-example .trial-fee-ex table{
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 auto;
}
.trial-example .trial-fee-ex table th{
  padding-right: 3em;
  text-align: left;
  font-weight: bold;
}
.trial-example .trial-fee-ex table td{
  text-align: right;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}
.trial-example .trial-fee-ex table tr:last-child td{
  border-top: 2px solid #000;
}
.trial-example .trial-belongings{
  width: 50%;
  padding: 12px;
  text-align: center;
  font-size: 1.3rem;
}
.trial-example .trial-belongings ul{
  list-style: disc inside;
  display: inline-block;
}
.trial-example .trial-belongings li{
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
}
.trial-example .trial-belongings li span{
  font-weight: normal;
  font-size: 1.3rem;
}

/*---------- School ----------*/
/* kids Bouldering School */
.kids-bouldering-school h2{
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 96px 0 48px;
  text-align: center;
  background-image: url(../images/dustydab-school.svg);
  background-repeat: no-repeat;
  background-size: 20%;
  background-position: left center;
}
.school-flex{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.school-flex section{
  width: calc((100% - 96px) / 3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: center;
}
.school-flex h3{
  font-size: 2.4rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}
.school-flex section p.wall{
  display: inline-block;
  padding: 0 1em;
  text-align: center;
  font-size: 1.8rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: #fff;
  background-color: #ff5a19;
  border-radius: 8px;
}
.school-flex section:nth-child(3) p.wall{
  background-color: #000;
}
.school-flex section .school-detail{
  width: 100%;
  padding: 24px;
  border: 4px solid #000;
  box-shadow: 6px 10px 0 #fffb33;
}
.school-flex section:nth-child(2) .school-detail{
  box-shadow: 6px 10px 0 #00ffd4;
}
.school-flex section:nth-child(3) .school-detail{
  box-shadow: 6px 10px 0 #770dff
}
.school-flex section .school-detail img{
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  border: 3px solid #000;
}
.school-flex section .school-detail dl{
  margin-top: 12px;
  font-size: 1.6rem;
  line-height: 1.8;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.school-flex section .school-detail dl dt{
  width: calc(30% - 0.5em);
  font-weight: bold;

}
.school-flex section .school-detail dl dd{
  width: calc(70% - 0.5em);

}
section.school-price{
  width: 500px;
  margin: 48px auto 0;
  padding: 12px;
  border: 4px solid #000;
  box-shadow: 6px 10px 0 #ff5a19;
  text-align: center;
}
section.school-price h3{
  font-size: 1.6rem;
}
section.school-price h3 span{
  font-weight: bold;
  padding-right: 1em;
}
section.school-price p{
  font-size: 1.3rem;
}
.kids-bouldering-school p.school-text{
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 0 144px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.4;
}
.kids-bouldering-school p.school-text span{
  text-transform: uppercase;
}

/* Kids Trial Lesson */
.kids-trial-lesson{
  background-color: #f5f4e4;
  padding-bottom: 96px;
}
.kids-trial-lesson h2{
  text-align: center;
  padding-top: 1px;
}
.kids-trial-lesson h2 span{
  display: block;
  background-image: url(../images/hold09.svg);
  background-repeat: no-repeat;
  background-position: calc(50% + 4.5em) bottom;
}
.kids-trial-lesson p.trial-lead-text{
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 0;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.4;
}
.kids-trial-lesson p.trial-lead-text span{
  text-transform: uppercase;
}
.trial-flex{
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px;
  background-color: #fff;
  border: 4px solid #000;
  box-shadow: 6px 10px 0 #ff5a19;
  display: flex;
  justify-content: space-between;
}
.trial-flex section{
  width: calc(100% - 424px);
}
.trial-flex section h3{
  font-size: 2.4rem;
}
.trial-flex section p{
  padding-top: 12px;
  font-size: 1.6rem;
  line-height: 2.4;
}
.trial-flex section table{
  margin-top: 24px;
  font-size: 1.6rem;
  line-height: 1.8;
}
.trial-flex section table th{
  font-weight: bold;
  vertical-align: top;
  padding-right: 2em;
}
.trial-flex .trial-img{
  width: 400px;
}
.trial-flex .trial-img img{
border: 4px solid #000;
}

/*---------- Access ----------*/
/* How to get to TSS TOKYO */
.howto{
  padding-bottom: 144px;
}
.howto h2{
  padding: 96px 0 48px;
  text-align: center;
}
.howto h2 span{
  text-transform: uppercase;
}
.howto p{
  max-width: 1100px;
  margin: 0 auto;
}
.howto p img{
  border: 4px solid #000;
  display: block;
  width: 100%;
  height: auto;
}
.howto dl{
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
}
.howto dl dt{
  margin-top: 24px;
  padding-left: 50px;
  font-size: 2.4rem;
  font-weight: bold;
  background-image: url(../images/icon-train.svg);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: left center;
}

.howto dl dd{
  padding-left: 50px;
  font-size: 1.6rem;
  line-height: 2.4;
}
.howto dl dt.bike{
  background-image: url(../images/icon-bike.svg);
}
.howto dl dt.car{
  background-image: url(../images/icon-car.svg);
}
/* TSS Information */
.information{
  background-color: #f5f4e4;
}
.information h2{
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1px;
  padding-bottom: 24px;
}
.information h2 span{
  display: block;
  background-image: url(../images/hold05.svg);
  background-repeat: no-repeat;
  background-position: 6.3em;
}
.information dl{
  max-width: 1100px;
  margin: 0 auto;
}
.information dl .info-flex{
  display: flex;
  padding: 24px 0;
  background-image : linear-gradient(to right, #000 5px, transparent 5px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: top;
}
.information dl .info-flex dt{
  width: 200px;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 500;
}
.information dl .info-flex .info-dd{
  width: calc(100% - 200px);
  font-size: 1.6rem;
  line-height: 2.4;
}
.information dl .info-flex .info-dd dd span.week{
  margin-right: 2em;
}
.information dl .info-flex .info-dd dd:first-child span.week{
  margin-right: 4em;
}
.information dl .info-flex .info-dd span.address-uppercase{
  text-transform: uppercase;
}

.googlemap{
  background-color: #f5f4e4;
  padding-bottom: 96px;
}
.googlemap .map-sec{
  width: 1100px;
  margin: 0 auto;
}
.googlemap .map-sec .map-iframe{
  width: 900px;
  height: 458px;
  margin: 0 0 0 auto;
  border: 4px solid #000;
}
.googlemap .map-sec .map-iframe iframe{
  width: 100%;
}


/*---------- 以下、@mediaの記述 ----------*/
/* hover */
@media (hover:hover){
  a.button:hover span{
    opacity: 0.5;
  }
  footer .f-flex .address a:hover{
    opacity: 0.5;
  }
  footer .f-flex nav ul li:hover{
    opacity: 0.5;
  }
  a.button:hover img{
    transform: translateX(10px);
    opacity: 0.5;
    }

  .pagetop a:hover{
    opacity: 0.5;
  }
  .pagetop a:hover img{
    transform: translateY(-10px);
    opacity: 0.5;
  }
}

/*---------- max-width:1279px ----------*/
@media screen and (max-width:1279px){
  .index header{
    height: auto;
    padding: 50px 20px;
  }
  .index header h1{
    height: calc(85vh - 100px);
  }
  .aboutus{
    width: 90%;
  }
  .beginners-kids section h2{
    width: 90%;
  }
  .beginners-kids section .forkids-container{
    width: 90%;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
  }
  .beginners-kids section .forkids-container .p-text p.title{
    margin-top: 24px;
  }
  .beginners-kids section .forkids-container .p-text{
    width: 100%;
    max-width: none;
    order: 1;
  }
  .beginners-kids section .forkids-container .p-photo{
    width: 100%;
    order: 0;
  }
  .beginners-kids section .forkids-container .p-text p.dusty img{
    top: -70px;
    left: 300px;
  }
  .beginners-kids section .forkids-container .p-text:last-child p.dusty img{
    top: -70px;
    left: 50px;
  }
  .instagram{
    width: 90%;
  }
  .access-map{
    width: 90%;
    flex-wrap: wrap;
  }
  .access-map section{
    width: 100%;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
  .access-map h2{
    width: calc(100% - 192px);
    background-size: 9%;
  }
  .access-map a.button{
    margin: 0;
  }
  .access-map figure{
    width: 100%;
  }
  footer .f-flex{
    width: 90%;
  }
  footer .f-flex nav ul{
    flex-wrap: wrap;
    padding: 0 48px;
  }
  footer .f-flex nav ul li{
    width: 40%;
    margin: 0 0 24px;
  }
  .pagetop a{
    bottom: 65px;
    right: 50px;
  }
  .tsstokyo{
    width: 90%;
  }
  .lattestsports{
    width: 90%;
  }
  section.text .lattest-flex p{
    width: calc(50% - 20px);
  }
  .lattest-flex ul{
    width: calc(50% - 20px);
  }
  .gallery ul{
    width: 90%;
  }
  .gallery ul li{
    width: calc(50% - 4px);
    margin-bottom: 2px;
  }
  .price-text{
    width: 90%;
  }
  .member{
    width: 90%;
  }
  .try-bouldering h2{
    width: 90%;
  }
  .try-bouldering p.lead-text{
    width: 90%;
  }
  .try-bouldering .step1-4{
    width: 90%;
  }
  .try-bouldering .step1-4 section figure img{
    display: block;
    width: 100%;
    height: auto;
  }
  .try-bouldering .step1-4 .step-arrow{
    background-size: 20px;
    background-position: 65% 40%;
  }
  .trial-example{
    width: 90%;
  }

  .kids-bouldering-school h2{
    width: 90%;
  }
  .school-flex{
    width: 90%;
  }
  .school-flex section .school-detail dl{
    font-size: 1.2rem;
  }
  .school-flex section .school-detail dl dt{
    width: calc(35% - 0.5em);
  }
  .school-flex section .school-detail dl dd{
    width: calc(65% - 0.5em);
  }
  section.school-price p{
    font-size: 1.2rem;
  }
  .kids-bouldering-school p.school-text{
    width: 90%;
  }
  .kids-trial-lesson h2 span{
    background-position: 74% 22%;
  }
  .kids-trial-lesson p.trial-lead-text{
    width: 90%;
  }
  .trial-flex{
    width: 90%;
    flex-wrap: wrap;
  }
  .trial-flex section{
    width: 100%;
    order: 1;
  }
  .trial-flex section h3{
    padding-top: 24px;
  }
  .trial-flex .trial-img{
    width: 100%;
    order: 0;
  }
  .trial-flex .trial-img img{
    display: block;
    width: 100%;
    height: auto;
  }

  .howto p{
    width: 90%;
  }
  .howto dl{
    width: 90%;
  }
  .information h2{
    width: 90%;
  }
  .information dl{
    width: 90%;
  }
  .googlemap .map-sec{
    width: 90%;
  }
  .googlemap .map-sec .map-iframe{
    width: 80%;
  }

}

/*---------- max-width:912px ----------*/
@media screen and (max-width:912px){
  .try-bouldering .step1-4 .step-arrow{
    background-position: 65% 37%;
  }
  .kids-trial-lesson h2 span{
    background-position: calc(50% + 4.6em) bottom;
    }

}

/*---------- max-width:768px ----------*/
@media screen and (max-width:768px){
  .beginners-kids section .forkids-container .p-text p.dusty img{
    top: -70px;
    left: 100px;
  }
  .lattest-flex ul li{
    font-size: 1.4rem;
  }
  .gallery h2 span{
    background-position: calc(50% + 2.5em) center;
  }
  .member table{
    width: 90%;
}
  .try-bouldering .step1-4 .step-arrow{
    background-position: 65% 40%;
}
  .try-bouldering .step1-4 section figure figcaption{
    font-size: 1rem;
}

.kids-bouldering-school h2{
  background-position: left 30%;
}
.school-scroll{
  overflow-y: scroll;
}
.school-scroll::-webkit-scrollbar{
  display: none;
}
.school-flex{
  max-width: none;
  width: 820px;
  padding: 0 5% 10px 5%;
}

.googlemap .map-sec .map-iframe{
  width: 100%;
  height: 400px;
}
.googlemap .map-sec .map-iframe iframe{
  height: 100%;
}
}

/*---------- max-width:540px ----------*/
@media screen and (max-width:540px){
  .index header{
    padding: 20px 20px;
  }
  .glonav{
    width: 100%;
  }
  .btn{
    top: 30px;
    right: 30px;
  }
  h2{
    font-size: 32px;
  }
  .aboutus h2{
    padding: 24px 0;
  }
  .aboutus p{
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: justify;

  }
  a.button{
    width: 144px;
    margin: 24px 0 0 auto;
    line-height: 37px;
    font-size: 1.5rem;
  }
  .aboutus figure{
    padding: 12px 0 48px;
    justify-content: space-between;
  }
  .aboutus figure img{
    width: calc((100% / 3) - 20px);
  }
  .aboutus figure img:nth-child(2){
    width: 20%;
  }
  .beginners-kids section{
    padding-bottom: 48px;
  }
  .beginners-kids section .forkids-container .p-text p.title{
    font-size: 1.8rem;
    line-height: 27px;
  }
  .beginners-kids section .forkids-container .p-text p.text{
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .beginners-kids section .forkids-container .p-text p.dusty img{
    height: 80px;
  }
  .beginners-kids section .forkids-container{
    padding: 24px;
  }
  .beginners-kids section .forkids-container .p-text p.dusty img{
    top: -54px;
    left: 30px;
  }
  .beginners-kids section .forkids-container .p-text:last-child p.dusty img{
    top: -54px;
    left: -40px;
  }
  .instagram p.text{
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .background-bottom{
    height: 48px;
  }
  .instagram{
    padding-bottom: 72px;
  }

  .insta-wrapper{
    margin-top: 24px;
    flex-wrap: wrap;
  }
  .insta-icon{
    width: 100%;
    max-width: none;
    margin-bottom: 24px;
    display: flex;
  }
  .insta-icon a.icon{
    width: 100px;
    height: 100px;
    border-radius: 100px;
  }
  .insta-icon a.icon img{
    height: auto;
    margin: 15px auto 0;
  }
  .insta-icon div{
    width: calc(100% - 100px);
  }
  .insta-icon p.username{
    margin-left: 20px;
    font-size: 1.5rem;
    text-align: left;
  }
  .insta-icon a.button{
    margin: 6px auto 0 20px;
  }
  ul.insta_list,ul.instashop_list{
    width: 100%;
    grid-template-columns: repeat(8,165px);
    grid-template-rows: 165px;
    gap: 10px;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
  }
  ::-webkit-scrollbar{
    display: none;
  }
  .access-map{
    padding: 24px 0 48px;
  }
  .access-map h2 span{
    background-position: 2.7em;
  }
  footer .f-flex{
    margin: 0 auto 12px;
  }
  footer .f-flex .address{
    width: 50%;
    margin: 0;
  }
  footer .f-flex .address p{
    text-align: center;
  }
  footer .f-flex .address a img{
    width: 120px;
  }
  footer .f-flex .address address{
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.2;
  }
  footer .f-flex nav{
    width: 50%;
    margin-top: 24px;
  }
  footer .f-flex nav ul{
    padding: 0;
  }
  footer .f-flex nav ul li{
    width: 100%;
    margin: 0 0 12px;
    font-size: 1.4rem;
    line-height: 21px;
  }
  footer .f-flex nav ul li a{
    justify-content: center;
  }
  footer small{
    font-size: 1rem;
    line-height: 48px;
  }
  .pagetop a{
    bottom: 93px;
    right: 20px;
  }
  .pagetop a span{
    font-size: 1.3rem;
  }
  .about header h1,.price header h1,.school header h1,.access header h1{
    padding-left: 20px;
  }
  .about header p,.price header p,.school header p,.access header p{
    font-size: 54px;
  }
  .tsstokyo h2{
    padding: 48px 0 24px 0;
  }
  .tsstokyo p{
    padding-top: 0;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: justify;
  }
  .lattestsports{
    padding: 96px 0;
  }
  .lattestsports h2{
    padding-bottom: 24px;
  }
  .lattestsports h2 span{
    background-position: calc(50% + 4.25em);
    background-size: 13%;
  }
  section.text h3{
    font-size: 1.6rem;
  }
  section.text p{
    padding: 12px 0;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: justify;
  }
  section.text .lattest-flex{
    flex-wrap: wrap;
  }
  section.text .lattest-flex p{
    width: 100%;
  }
  .lattest-flex ul{
    width: 100%;
    text-align: center;
  }
  .lattest-flex ul li{
    padding: 8px 0;
    font-size: 1.2rem;
    line-height: 23px;
  }
  section.text .lattest-flex ul li em{
    font-size: 2rem;
  }
  .gallery{
    padding-bottom: 48px;
  }
  .gallery h2{
    padding-bottom: 24px;
  }
  .gallery h2 span{
    background-position: calc(50% + 2.7em);
    background-size: 15%;
  }
  .price-text{
    padding-top: 24px;
    text-align: justify;
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .member h2{
    padding: 24px 0 24px 0;
  }
  .member table{
    font-size: 1.2rem;
  }
  .member table span{
    font-size: 1rem;
  }
  .member:last-child{
    padding-bottom: 96px;
  }
  .try-bouldering{
    padding-bottom: 48px;
  }
  .try-bouldering p.lead-text{
    padding: 24px 0;
    text-align: justify;
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .try-bouldering .step1-4{
    flex-wrap: wrap;
  }
  .try-bouldering .step1-4 section{
  width: 100%;
  }
  .try-bouldering .step1-4 section h3{
    text-align: left;
  }
  .try-bouldering .step1-4 section figure{
    display: flex;
    justify-content: space-between;
  }
  .try-bouldering .step1-4 section figure img{
    width: calc(50% - 6px);
  }
  .try-bouldering .step1-4 section figure figcaption{
    width: calc(50% - 6px);
    }
    .try-bouldering .step1-4 .step-arrow{
      display: none;
    }
  .trial-example{
    flex-wrap: wrap;
    }
  .trial-example h3{
    font-size: 1.6rem;
    }
  .trial-example .trial-fee-ex{
    width: 100%;
    background-image : linear-gradient(to right, #000 5px, transparent 5px);
    background-size: 10px 1px;
    background-repeat: repeat-x;
    background-position: bottom;
    }
    .trial-example .trial-fee-ex table{
      font-size: 1.3rem;
    }
  .trial-example .trial-belongings{
    width: 100%;
    }
    .trial-example .trial-belongings li{
      font-size: 1.3rem;
    }

  .kids-bouldering-school h2{
    padding: 48px 0 24px;
    background-position: left 15%;
  }
  .school-flex section{
    width: calc((100% - 48px) / 3);
  }
  .school-flex section .school-detail{
    padding: 12px;
  }
  section.school-price{
    width: 300px;
    margin: 24px auto 0;
  }
  section.school-price h3{
    font-size: 1.4rem;
  }
  section.school-price p{
    font-size: 1rem;
  }
  .kids-bouldering-school p.school-text{
    padding: 48px 0 96px;
    text-align: justify;
    font-size: 1.2rem;
    line-height: 1.8;
  }
.kids-trial-lesson h2 span{
  background-position: calc(50% + 4.4em) bottom;
  }
  .kids-trial-lesson{
    padding-bottom: 48px;
  }
  .kids-trial-lesson p.trial-lead-text{
    padding: 24px 0;
    text-align: justify;
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .trial-flex{
    padding: 24px;
  }
  .trial-flex section h3{
    font-size: 1.8rem;
  }
  .trial-flex section p{
    padding-top: 12px;
    font-size: 1.2rem;
  }
  .trial-flex section table{
    margin-top: 24px;
    font-size: 1.2rem;
    line-height: 1.8;
    table-layout: fixed;
  }
  .trial-flex section table th{
    width: 4em;
  }

  .howto{
    padding-bottom: 96px;
  }
  .howto h2{
    padding: 48px 0 24px;
  }
  .howto dl dt{
    font-size: 1.8rem;
  }
  .howto dl dd{
    font-size: 1.2rem;
  }
  .information dl .info-flex dt{
    width: 100px;
    font-size: 1.8rem;
  }
  .information dl .info-flex .info-dd{
    width: calc(100% - 100px);
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .googlemap{
    padding-bottom: 48px;
  }
  .googlemap .map-sec .map-iframe{
    height: 300px;
  }
}