@charset "UTF-8";
/* CSS Document */

/* media --------------------------  */

/* ===[ Responsive all tablet sizes ]=== */

@media (max-width: 1024px) {

  #allcontents{
      margin: 7em auto 0;
  }

  .main{
    width: 90%;
  }

  /* topbox --------------------------  */
  .topbox {
    position: relative;
    padding: 2em 0.8em;
    margin: 0;
    top: 0;
    border-radius: 3em;
  }

  .gnav{
    display: none;
  }

/* ------------------------------------ */
/* ハンバーガーメニューの線 */
div.menu-wrapper{
  display: flex;
}
.menu-icon {
  width: 30px;
  height: 30px;
  position: fixed; /* ← fixedにして常に左上固定 */
  top: 20px;
  right: 60px;
  cursor: pointer;
  z-index: 3;
  display: inline-block;
}

.menu-icon span {
  display: block;
  height: 4px;
  margin: 6px 0;
  background: #f6f6f6;
  border-radius: 2px;
  transition: 0.4s;
}

/* ハンバーガーがXに変形 */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* オーバーレイ背景 */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 1;
}

#menu-toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー本体（左から出す） */
.menu {
  position: fixed;
  top: 0;
  right: -250px; /* ← 初期位置を左へ */
  width: 250px;
  height: 100%;
  background: #D5206D;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  z-index: 2;
}

#menu-toggle:checked ~ .menu {
  right: 0; /* ← 開いたときは左0へ */
}

.menu ul {
  list-style: none;
  padding: 60px 20px;
}

.menu li {
  margin: 20px 0;
}
.menu li.menu_top_style{
  padding: 0.4em;
  background: #f6f6f6;
  border: 2px solid #D5206D;
  border-radius: 2em;
}
.menu li.menu_top_style a{
  color: #D5206D;
}
.menu li.menu_entry_style{
  padding: 0.4em;
  background: #df8b4d;
  color: #f6f6f6;
  border-radius: 2em;
}
.menu a {
  text-decoration: none;
  color: #f6f6f6;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.menu a:hover {
  color: #931349;
}

header .gnav .menu {
    display: flex; /* 中の要素を横並びにする */
}

header .gnav .menu li {
  list-style: none; /* リストの[・]を消す */
  white-space: nowrap;
	/*font-family: 'Kaisei Opti', serif;*/
	font-size: 16px;
	background: #f6f6f6;
	color: #D5206D;
	padding: 0.4em 0.7em;
  margin: 0;
	text-align: center;
}

header .gnav .menu li:hover{
	background:#df8b4d;
	color: #f6f6f6;
}

header .gnav .menu li:hover a{
	background: #df8b4d;
	color: #f6f6f6;
}

header .gnav .menu li:hover:before {
	background: #D5206D;
	color: #00BCD4;
}

header .gnav .menu li + li {
    margin-left:0; /* メニューそれぞれに間隔をあけるため */
}

header .gnav .menu li:first-child{
  padding-left:1em;
  border-radius: 1em 0 0 1em;
}
header .gnav .menu li:last-child{
  background: #df8b4d;
  padding-right:1em;
  border-radius:0 1em 1em 0;
}
header .gnav .menu li:last-child a{
  color: #f6f6f6;
}

  /* section#headernav_entry{
  }

  section#headernav_entry p{

  } */
  section#headernav_entry img{
    width:150px;
  }
  section#headernav_entry:active img {
  transition: transform 1s;
  transform: rotate(360deg);
  }
  .soudankai {
    margin: 0;
    padding: 0;
  }

  div#top_img img {
    display: none;
    margin: 0;
    padding: 0;
  }

  #top_topix {
    width:90%;
  }
  #top_topix p{
    font-size: 14px;
  }
  h1.schedule-list{
    font-size: 3em;
  }

  section.day_2{
    width: 80%;
  }


  /* timeschedule --------------------------  */

  #timeschedule {
  	width:90%;
    margin:0 auto;
  }

/* event_area ------------------------------  */

#overview div.overview_area{
  width: 80%;
  margin: 0 auto;
  display: block;
}
#overview section.overview_content{
  width: 50%;
}

.arrow_box{
    /*width:100%;*/
    margin:80px auto 15px;
    line-height: 125%;
    font-size:22px;
}
/*--voice_area----------------------------  */
div.voice_contents_area{
  width: 90%;
}

/* entry_area ------------------------------  */

  section#button_area{
    flex-direction: column;   /* 縦並び */
    align-items: center;
    width: 100%;
    margin: 0 auto 1em;
  }

  div.entry_contents_area_2{
    width: 85%;
    padding: 1em;
  }

  div.entry_contents_area_2 section#button_area a.btn{
    width: 90%;        /* 横いっぱい */
    margin: 0 0 1em;
    padding: 0.8em;
    font-size: 1.2em;
  }

/* company ------------------------------  */
.company_contents_area {
    padding: 5em 0.5em 0.3em;
  }
  .company p.company_tel{
    white-space: normal;
    padding: 0.5em 0.5em 0.3em;
    line-height: 0.5em;
  }
}

/* ===[ Responsive just mobile portrait ]=== */

@media (max-width: 600px) {

section.day_2 h1.day_2{
  font-size: 180%;
}

}

@media (max-width: 479px) {
/* header ------------------------------  */
/* header {  } */
header h1 img {
    height: auto;
}

.menu-icon {
  right: 30px;
}


.arrow_box{
    position:relative;
	   margin-top: 2px;
    font-size:20px;
}

span.br{
  display: inline-block;
}

/* main ------------------------------  */
.main {
	width:100%;
  color: #333;
	padding: 0;
  position: relative;

}
.day {
	font-size:1.8em;
}

.day_2 {
	font-size:26px;
}

.right {
	width: 100%;
	float:none;
  margin-left: 0px;
	margin-bottom: 20px;
 }



h1.day{
  font-size: 2em;
}

section#headernav_entry img{
  width:120px;
}

    .topbox-index{
      border-radius: 1em;
      padding: 0 0 2em;
      margin: 0 auto;
    }

    .topbox-index > h1.day{
      margin: 1em;
      padding: 0.4em;
      font-size: 1em;
    }

    section.day_2{
      width: 80%;
    }
    section.day_2 img{
      height: 100px;
    }

    section.day_2 h1.day_2{
        font-size: 1em;
        margin:0.4em;
    }
    section.day_2 span.venue {
        font-size: 0.4em;
    }
    section.day_2 button{
      font-size: 0.4em;
      padding: 0.4em 2.5em 0.4em 1.3em;
      position: absolute;
      bottom: -22%;
      right: -4%;
    }

    section.day_2 button::after{
      top: 67%;
      left: 83%;
    }

h1.schedule-list{
  font-size: 2em;
  padding: 1em 0 0;
	color: #d5206d;/*#2CA6E0*/;
}

#top_index_img{
  display: none;
}

h1.day_2 img{
  height: 100px;
}

#top_topix .participate p,#top_topix .entry p {
  font-size: 1em;
}

.topbox p {
font-size: 0.8em;
}

.topbox p > span{
  display: inline-block;
}
.corner2 {
    font-size: 14px;
  	margin-top:5px;
  	margin-bottom:4px;
}

/* video_area ------------------------------  */

#video_area{
  width: 100%;
  padding: 0;
  margin: 3em 0 0;
}
.video_contents_area{
  width: 85%;
  padding: 1em;
}
#video_area h2{
  display: block;
  font-size: 1.5em;
}
#video_area h3{
  font-size:100%;
}
/* .video_contents_area iframe{
} */
/* top_topix ------------------------------  */

#top_topix{
  width:95%;
  padding:0;
  margin:0 auto;
}

/* shikumi ------------------------------  */

#shikumi ul, ol {
  font-size:  14px;
}
.shikumi_kouen{
  font-size: 18px;
}
.shikumi_sub{
  font-size: 14px;
}
.profile {
  font-size:  14px;
}

.point {
    font-size: 1.2em;
    margin: 1em 0;
}
.comments {
	width:100%;
  color: #333;
  text-align: left;
  padding: 1em 0;
  margin: 0em;
}


.comments h2 {
  font-size: 1.2em;
}


.comments h3 {
  font-size: 16px;
  text-align: left;
}


.comments h4 {
  font-size: 14px;
  margin-bottom:12px;
}

.comments p {
	font-size: 14px;
	line-height:1.75em;
	color:#333;
}

.kouentitle {
    font-size: 14px;
    line-height: 1.5em;
	margin-top:20px;
}

.contents_area{
  padding:1em;
}

.corner2 {
	margin-top:10px;
	margin-bottom:10px;
}
section.corner2_area,section.corner2_area_p {
  margin: 0 0 2em;
  padding: 2em 1.2em 1.2em;
}
.contents_area img,.corner2 img,.corner2 img.purple{
  width:90%;
  /*margin: 1em 0 2.2em;*/
}

/* .corner2 span.coener_tag_child,
.corner2 span.coener_tag_child_p{
  display: none;
} */
.kouentitle {
  font-size: 16px;
  margin-top: 40px;
}

.soudancorner {
  font-size: 16px;
}
.cornertitle {
  font-size: 16px;
}

/* timeschedule ------------------------------  */

#timeschedule {
	width:100%;
  padding: 0;
	/*padding: 30px 15px;
	margin-top:50px;
  */
}

#timeschedule h2{
  margin: 1em 0 0 0;
  font-size: 1.8em;
}

#timeschedule div.timetable_area > p {
  font-size: 100%;
}

/* overview ------------------------------  */

#overview div.overview_area{
  width: 90%;
}
#overview div.overview_contents_area_1,
#overview div.overview_contents_area_2{
  display: block;
  flex-wrap: nowrap;
}

#overview section.overview_content{
  width: 100%;
  margin: 3em auto;
}
#overview section.text p{
  min-height: 50px;
}
/* School ------------------------------  */

#school {
  padding: 1em;
}

.school_content_area{
  padding:5em 0 1em;
}
.school td {
  font-size:  14px;
}


/* voice ------------------------------  */
div.voice_contents_area{
  width: 95%;
  padding: 1em 0;
}
div.voice_list{
  padding:1em;
}
.kigaru{
  font-size: 1em;
}


/* reservation_main ------------------------------  */
#reservation_main {
	width:90%;
	padding: 30px 15px ;
	margin-top:50px;
}

.reservation {
	width:90%;
    text-align: left;
	padding-bottom:20px;
	margin-bottom:50px;
}

/* entry ------------------------------  */
div.entry_contents_area{
  width: 90%;
}
div.entry_contents_area_2 section#button_area button{
  margin: 1em auto;
  width: 100%;
}
div.entry_contents_area_2 h2{
  font-size: 1.3em;
}
div.entry_contents_area_2 p{
  font-size: 14px;
  text-align: left;
}
.entry_contents_area h3{
  font-size: 1.2em;
}
.entry_contents_area p{
  font-size: 1em;
  text-align: left;
  width: fit-content;
  margin: 0 auto;
}
.entry_contents_area span.entry_style_1 br{
  display: none;
}

.entry_contents_area span.entry_style_3{
  font-size: 0.7em;
}

section#button_area{
  margin: 0 auto 1em;
  display: block;
}

/* qa-7 ------------------------------  */

.qa-7 {
    font-size: 14px;
}


/* access_area ------------------------------  */

#access_area h3{
  font-size: 16px;
}
#access_area .address p{
  font-size: 14px;
}
#access_area .address ul li, ol li{
  font-size: 14px;
}

section#button_area button{
  font-size: 14px;
}

/* othervenues ------------------------------  */

div.othervenues_contents_area{
  padding: 0 1em 1em;
}

/* company ------------------------------  */

.company {
  border-radius: 3em 3em 0 0;
  padding: 0 1em 4em;
}
.company::before {
    width: 200%;
    left: -50%;
}

/* footer ------------------------------  */

footer { display: block; }






/*h4の装飾ここまで*/

ul.collaborator_name li{
  font-size: 90%;
}
.tokuten p {
	font-size:16px;
}

h2.sub_title{
  font-size: 2em;
}

}
