@charset"utf-8"

*{
   box-sizing: border-box;
   min-height: 0;
   min-width: 0;
}

body{
  font-family: "游ゴシック","Yu Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gthic Pro",sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #4b7c58;
  background-image: url("../images/bg.jpg");
  background-size: cover;
}
p{
  font-family: "游ゴシック","Yu Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gthic Pro",sans-serif;
  font-size: 14px;
  color: #4b7c58;
}
h3{
  font-family: "Huiji";
  font-size: 26px;
}
h4{
  font-size: 18px;
}
a:link, a:visited, a:hover, a:active {
  color: #434343;
}
.br::before{
  content: "\A";
  white-space: pre;
}

/* header */
/* 固定ヘッダー */
.scroll_header {
  width: 100%;
  height: 60px;
  z-index: 10;
  background-color: rgba(37,94,52,0.9);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
}
.scroll_header .logo{
  margin: 0 0 0 5%;
}
.scroll_header .logo img{
  width: 90px;
}
#nav_toggle{
  margin: 0;
  width: 30px;
  height: 25px;
  z-index: 1000;
  position: fixed;
  top: 20px;
  right: 5%;
  cursor: pointer;
}
#nav_toggle>div{
  position: relative;
  width: 100%;
  height: 100%;
}
#nav_toggle span{
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ced3d4;
  position: absolute;
  left: 0;
  transition: transform .6s ease-in-out, top .5s ease;
}
#nav_toggle span:nth-child(1){
  top: 0;
}
#nav_toggle span:nth-child(2){
  top: 10px;
}
#nav_toggle span:nth-child(3){
  top: 20px;
}
.open #nav_toggle span:nth-child(1){
  transform: rotate(45deg);
  top: 10px;
}
.open #nav_toggle span:nth-child(2){
  opacity: 0;
}
.open #nav_toggle span:nth-child(3){
  transform: rotate(-45deg);
  top: 10px;
}
.scroll_header .gNavi{
  background-color: rgba(37,94,52,0.9);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 990;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: all .6s ease;
}
.open .gNavi{
  visibility: visible;
  opacity: 1;
}
.scroll_header .main_nav{
  opacity: 0;
  transform: translateY(-200px);
  transition: all .8s ease
}
.open .main_nav{
  opacity: 1;
  transform: translateY(0);
  margin: 0;
  padding: 0;
}
.scroll_header .main_nav a{
  display: block;
  padding: 15px 20px;
  border-top: 1px dashed #ced3d4;
}
.scroll_header .main_nav p{
  margin: 10px;
  font-size: 2rem;
  font-family: "Huiji";
  color: #ced3d4;
}
.scroll_header .main_nav li img{
  width: 50px;
  margin: 10px auto 10px;
}
/* indexのヘッダー */
.index_header{
  width: 100%;
  height: calc(100vh - 100px);
  padding: 200px 0 ;
  margin-bottom: 100px;
  background-image: url("../images/top.png");
  text-align: center;
  background-size: cover;
  background-position: center;
  font-family: "Huiji";
  font-size: 36px;
  color: #4b7c58;
}
.index_header p{
  font-family: "Huiji";
  font-size: 1.5rem;
  color: #4b7c58;
}
.index_header>.logo{
  margin: 0 auto 0;
}
.index_header>.logo img{
  width: 300px;
}
.top_sentence{
  margin: 50px auto 50px;
  display: grid;
  grid-gap: 20px 0px;
  align-items: flex-end;
  justify-content: center;
}
.index_header .top_illust{
  width: 150px;
}
.index_header>.top_sentence p{
  grid-column: 1/3;
}
.index_header>.top_sentence div:nth-child(2) img{
  width: 150px;
  padding: 0 20px;
}
.index_header>.top_sentence div:last-child img{
  width: 150px;
  padding: 0 35px;
}
.index_header .nav_content,
.index_header .instagram_link{
  display: none;
}

/* index以外のヘッダー */
.other_header{
  width: 100%;
  height: calc(100vh - 150px);
  padding: 100px 0 0;
  background-image: url("../images/top.png");
  text-align: center;
  background-size: cover;
  background-position: bottom;
  font-family: "Huiji";
  font-size: 36px;
  color: #4b7c58;
}
.other_header p{
  font-family: "Huiji";
  font-size: 36px;
  color: #4b7c58;
}
.other_header>.top_sentence{
  margin: 100px auto 0;
  display: grid;
  grid-gap: 30px 0px;
}
.other_header .top_illust{
  width: 150px;
}
.other_header .logo{
  grid-column: 1/3;
}
.other_header .logo img{
  width: 300px;
}
.other_header>.top_sentence div:nth-child(2) img{
  width: 150px;
  padding: 0 20px;
}
.other_header>.top_sentence div:last-child img{
  width: 150px;
  padding: 0 35px;
}
.other_header .main_nav{
  display: none;
}

/* index以外共通 */
.page_title{
  margin: 0 5%;
  padding-top: 50px;
  text-align: center;
  color: #4b7c58;
}



/* 各コンテンツ共通 */
.page_title h2{
  padding-bottom: 50px;
  font-family: "Huiji";
  font-size: 28px;
}
.page_title p{
  font-size: 16px;
}
.contents{
  width: 90%;
  max-width: 500px;
  margin: 200px auto 0;
}
.contentl , .contentr{
  margin-top: 280px;
  position: relative;
}
.contentc{
  margin-top: 100px;
  position: relative;
}
.container{
  width: 100%;
  padding: 50px 5%;
  text-align: center;
  border: 2px #4b7c58 dashed;
  border-radius: 50px;
  background-image: url("../images/contents_bg.png");
  position: relative;
}
.contentl .container,
.contentr .container,
.contentc .container{
  margin: 0 auto 0;
}
.contentl .container::before,
.contentr .container::before{
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-image: url("../images/greenbg.png");
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
}
.contentl>.scrollin::before{
  animation-name: leftslide;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.contentr>.scrollin::before{
  animation-name: rightslide;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.container h3{
  padding: 0 20px;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../images/bg.jpg");
  border-radius: 10%;
  white-space: nowrap;
}
/* ボタン */
.button{
  width: 100px;
  height: 100px;
  background-color: #4b7c58;
  border-radius: 50%;
  border: 2px #4b7c58 solid;
  transition: all ease 0.1s;
}
.button:hover{
  width: 100px;
  height: 100px;
  background-color: #dae6cd;
  transition: all ease 0.3s;
}
.button p{
  color: #ced3d4;
  line-height: 100px;
  transition: all ease 0.1s;
  font-family: "Huiji";
  font-size: 18px;
}
.button p:hover{
  color: #4b7c58;
  line-height: 100px;
  transition: all ease 0.3s;
}
.container>.button{
  position: absolute;
  right: -20px;
  bottom: -30px;
  text-align: center;
}


/* 足跡 */
#aboutus_consept>.title_inner::before,
#aboutus_consept>.title_inner::after,
.contentl::before,
.contentl::after,
.contentr::before,
.contentr::after,
.eventcontent::before,
.eventcontent::after{
  content: "";
  width: 70px;
  height: 70px;
  background-image: url("../images/step.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  opacity: 0;
}
#aboutus_consept>.scrollin::after,
#aboutus_consept>.scrollin::before,
.contents>.scrollin::after,
.contents>.scrollin::before,
#event>.scrollin::after,
#event>.scrollin::before{
  opacity: 1;
  transition: 1s ease;
}
#aboutus_consept>.title_inner::before{
  top: 0px;
  right: 35%;
  transform: rotate(-25deg);
}
#aboutus_consept>.title_inner::after{
  top: 200px;
  right: 40%;
}
.contentl::before{
  top: -250px;
  left: 30%;
}
.contentl::after{
  top: -120px;
  left: 20%;
  transform: rotate(-30deg);
}
.contentr::before{
  top: -250px;
  right: 30%;
  transform: rotate(-30deg);
}
.contentr::after{
  top: -120px;
  right: 20%;
}
.eventcontent::before{
  top: -320px;
  right: 50%;
  transform: rotate(-30deg);
}
.eventcontent::after{
  top: -220px;
  right: 30%;
  transform: rotate(-10deg);
}


/* aboutus */
#aboutus_consept{
  margin: 0 5%;
  padding-top: 100px;
  text-align: center;
  color: #4b7c58;
  position: relative;
}
#aboutus_consept .sentence{
  text-align: left;
}

/* 募集メンバー */
.contentl h4{
  line-height: 40px;
}
.coment_container{
  margin: 30px auto;
}
.coment{
  padding: 30px 0 30px 20px;
  font-family: "Huiji";
  background-image: url("../images/comentbg.png");
  background-size: contain;
  background-repeat: no-repeat;
  text-align: left;
}
.coment p{
  font-family: "Huiji";
}
.coment ul{
  list-style: disc inside;
  margin-top: 10px;
}
.coment li{
  padding-top: 15px;
}
.coment_container img{
  width: 270px;
}
#member>.container>p{
  text-align: left;
}


/* 活動場所 */
#playsite .inner{
  text-align: left;
}
#playsite img{
  width: 100%;
}
#playsite>.container>.inner>h4{
  margin-top: 50px;
}
#playsite>.container>.inner>.sentence{
  width: 100%;
  margin: 50px auto 0;
}
#playsite>.container>img{
  width: 70px;
  position: absolute;
  left: 10px;
  top: -50px;
  z-index: 2;
}



/* 参加料金 */
#price>.container p:nth-child(2){
  font-size: 24px;
}
#price img{
  width: 130px;
  position: absolute;
  left: -10px;
  top: -100px;
  z-index: 2;
}



/* 活動時間・頻度 */
#playtime>.container{
  text-align: left;
}
#playtime>.container p:nth-child(2){
  margin-bottom: 30px;
  font-size: 18px;
}
#playtime img{
  width: 100px;
  position: absolute;
  right: -20px;
  top: -100px;
  z-index: 2;
}



/* 練習メニュー */
#menu>.container{
  text-align: left;
}
#menu>.container>.inner{
  width: 600px;
  margin: 80px auto;
}
#menu table{
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
  border-collapse: collapse;
}
#menu th{
  padding-right: 20px;
  border-right: 5px solid #c7d594;
  line-height: 26px;
}
#menu td{
  padding-bottom: 36px;
  padding-left: 20px;
}
#menu tr:last-child td{
  padding-bottom: 0;
}
#menu img{
  width: 90px;
  position: absolute;
  right: 10px;
  bottom: -20px;
  z-index: 2;
}



/* イベント */
#event{
  width: 100%;
  height: 250px;
  background-image: url("../images/greenbg.png");
  margin: 350px auto 0;
}
.eventcontent{
  width: 90%;
  height: 100%;
  margin: 0 auto 0;
  position: relative;
}
.eventcontent>h3{
  border-bottom: 2px #4b7c58 dashed;
  position: absolute;
  left: 50%;
  top: -180px;
  transform: translateX(-50%);
}
.eventcontent>img{
  width: 100%;
  position: absolute;
  left: 50%;
  top: -120px;
  transform: translateX(-50%);
}
.eventcontent>p{
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 20px;
}


/* link */
#link{
  width: 90%;
  margin: 100px auto 50px;
  padding-bottom: 50px;
  text-align: center;
}
#link p{
  margin-top: 20px;
}
.contact_link a{
  display: block;
  margin: 20px auto 0;
  height: 60px;
  width: 200px;
  background: #d8831f;
  border-style: none;
  border-radius: 10px;
}
.contact_link a>p{
  font-family: "Huiji";
  font-size: 26px;
  color: #f8f5e4;
  line-height: 60px;
}
.instagram_link{
  margin-top: 50px;
}
.instagram_link img{
  width: 60px;
  margin-top: 20px;
}




/* Schedule */
#schedule_contents{
  margin-bottom: 50px;
}
#schedule_contents .outer{
  margin: 0 auto;
  text-align: center;
  position: relative;
}
#schedule_contents .outer:not(#schedule_contents .outer:first-child){
  margin: 150px auto 0;
}
#schedule_contents .container{
  width: 90%;
}
#schedule_contents .outer::before{
  content: "";
  width: 100%;
  height: 190px;
  background-image: url("../images/greenbg.png");
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: -1;
}
#schedule_contents .inner p:last-child{
  margin-top: 50px;
}



/* Contact */
#contact_title img{
  width: 60px;
  margin-top: 40px;
}
#contact_contents{
  margin-top: 100px;
  background-image: url("../images/greenbg.png");
}
.form{
  padding: 100px 10% 0;
}
.form h3{
  display:inline-block;
  border-bottom: 2px #4b7c58 dashed;
}
.form>p{
  margin-top: 20px;
  font-family: "Huiji";
  font-size: 18px;
}
.form_content{
  margin-top: 60px;
  font-family: "Huiji";
  font-size: 32px;
}
.form_content>label::after{
  content: "*";

}
.radio_select>label{
  display: block;
  padding: 0 0 0 30px;
  font-size: 18px;
  font-family: "游ゴシック","Yu Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gthic Pro",sans-sans-serif;
  position: relative;
}
.radio_select>label::before,
.radio_select>label::after{
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
}
.radio_select>label::before{
  background-image: url("../images/contents_bg.png");
  border: 2px #4b7c58 dashed;
  width: 18px;
  height: 18px;
  top: 3px;
  left: 5px;
}
.radio_select>label::after{
  background-color: #4b7c58;
  opacity: 0;
  width: 10px;
  height: 10px;
  top: 7px;
  left: 9px;
}
input:checked + label::after {
  opacity: 1;
  transition: .3s ease;
}
.visually_hidden{
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
.form_content>label{
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
  cursor: auto;
}
input[type="text"],
input[type="email"],
textarea{
  height: 50px;
  padding: 5px 20px 5px;
  background-image: url("../images/contents_bg.png");
  border: 2px #4b7c58 dashed;
  border-radius: 20px;
  font-size: 16px;
  font-family: "游ゴシック","Yu Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gthic Pro",sans-sans-serif;
}
input[name="name"]{
  width: 100%;
}
input[name="age"]{
  width: 40%;
}
input[name="email"]{
  width: 100%;
}
textarea[name="message"]{
  width: 100%;
  height: 300px;
}
p.form_content{
  text-align: center;
}
input[type="submit"]{
  width: 150px;
  height: 50px;
  padding: 0;
  margin: 0 0 50px;
  font-family: "Huiji";
  font-size: 24px;
  color: #ced3d4;
  background-color: #4b7c58;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}



/* Access */
#access_contents{
  margin-bottom: 50px;
}
#access_contents .outer{
  margin: 0 auto;
  text-align: center;
  position: relative;
}
#access_contents .outer:not(#access_contents .outer:first-child){
  margin: 150px auto 0;
}
#access_contents .container{
  width: 90%;
}
#access_contents .outer::before{
  content: "";
  width: 100%;
  height: 305px;
  background-image: url("../images/greenbg.png");
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: -1;
}
#access_contents .outer:first-child h3{
  top: -39px;
}
.information_inner{
  text-align: left;
}
#access_contents .information img{
  width: 100%;
}
#access_contents .information .information_inner{
  padding: 20px 0 40px;
}
#access_contents .information h4{
  font-size: 18px;
}
#access_contents .information p:not(#access_contents .information p:last-child){
  font-size: 14px;
  padding-bottom: 10px;
}
#access_contents iframe{
  width: 100%;
  height: 180px;
}



/* footer */
footer{
  width: 100%;
  padding: 20px 5%;
  background-color: #4b7c58;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_nav li p{
  font-family: "Huiji";
  font-size: 20px;
  color: #ced3d4;
}
.footer_logo{
  text-align: center;
}
.footer_logo img{
  width: 150px;
}
#copy{
  margin-top: 14px;
  color: #ced3d4;
}

@font-face {
  font-family: 'Huiji';
  src: url('../font/HuiFont29.ttf') format('truetype');
}
@keyframes leftslide {
  0%{
    top: 0;
    left: 0;
    opacity: 0;
  }
  100%{
    top: 50px;
    left: -20px;
    opacity: 1;
  }
}
@keyframes rightslide {
  0%{
    top: 0;
    right: 0;
    opacity: 0;
  }
  100%{
    top: 50px;
    right: -20px;
    opacity: 1;
  }
}
