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




header.mobile {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(18px * 6);
  z-index: 99999999999;
  -webkit-transition: .3s;
  transition: .3s;
}

header.mobile .logo {
  display: inline-block;
  position: relative;
  top: 18px;
  left: 25px;
  width: calc(240px / 2);
}

header.mobile .logo a {
  display: block;
}

header.mobile .logo img {
  width: calc(240px / 2);
  height: auto;
}

header.mobile .headerNav {
  position: fixed;
  right: -100%;
  /* これで隠れる */
  top: 0;
  width: 100%;
  /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 10px;
  background-color: #FFF;
  -webkit-transition: all .6s;
  transition: all .6s;
  z-index: 200;
  overflow-y: auto;
  /* メニューが多くなったらスクロールできるように */
  opacity: 0;
}

header.mobile .headerNav .btn--reservation {
  width: 240px;
}

header.mobile .headerNav .nav__block {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

header.mobile .headerNav .nav__block li {
  text-align: center;
  padding: 0 14px;
}

header.mobile .headerNav .nav__block li a {
  letter-spacing: .15rem;
  display: block;
  padding: 12px 0;
  font-weight: 700;
  border-bottom: 1px solid lightern(#B8AC14, 30%);
  text-decoration: none;
}

header.mobile .headerNav .nav__block--access {
  text-align: center;
}

header.mobile .headerNav .nav__block--access .logo--access {
  width: 140px;
  height: auto;
  margin-bottom: 16px;
}

.hamburger {
  position: absolute;
  right: 25px;
  top: 22px;
  width: 30px;
  /* クリックしやすいようにちゃんと幅を指定する */
  height: 18px;
  /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 300;
}

.hamburger__line {
  position: absolute;
  left: 0;
  width: 30px;
  height: 4px;
  background-color: #000;
  -webkit-transition: all .6s;
  transition: all .6s;
}

.hamburger__line--1 {
  top: 0;
}

.hamburger__line--2 {
  top: 8px;
}

.hamburger__line--3 {
  top: 16px;
}

.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .6s;
  transition: all .6s;
  cursor: pointer;
}

/* 表示された時用のCSS */
.nav-open header.mobile .headerNav {
  right: 0;
  opacity: 1;
}

.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}

.nav-open .hamburger__line--1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
}

.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}

.nav-open .hamburger__line--3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
}



@media (min-width: 940px) {
  header.mobile {
    display: none;
  }
  header.pc {
    display: block;
    width: 940px;
    margin: 24px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header.pc .logo {
    width: 240px;
    height: auto;
  }
  header.pc .logo img {
    width: 100%;
  }
  header.pc .nav__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  header.pc .nav__block li {
    text-align: right;
  }
  header.pc .nav__block li + li {
    margin-left: 36px;
  }
  header.pc .nav__block li a {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: .15rem;
  }
  header.pc .nav__block li a.active {
    color: #B8AC14;
  }
  header.pc .nav__block li a:hover {
    background: none;
    opacity: 1;
    color: #B8AC14;
  }
  header.pc .nav__block--1 {
    margin-bottom: 24px;
  }
  header.pc .nav__block--2 {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 24px;
  }
  header.pc .nav__block--2 li a {
    font-size: 1.1rem;
  }
  header.pc .nav__block--2 li .btn--reservation {
    width: 197px;
    font-size: 1.5rem;
  }
}






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

.sp{
	display:block !important;
	}

.pc{
	display:none !important;
	}

.nav_pc{
	display:none;
	}

.pc_nav{
	}

.news dl{
	width:95%;
	margin:0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}

.news dl dt{
	font-size:1.2rem;
	color:#ed1c24;
	width:20%;
	}

.news dl dd{
	width:80%;
	font-size:1.2rem;
	margin-bottom:2%;
	}

.news dl dd a{
	text-decoration:underline;
	}

.induction_nav{
	width:85%;
	margin:2% auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom:10%;
	}

.induction_nav div{
	width:100%;
	border-radius:5px;
	margin-bottom:2%;
	padding:0.5% 1% 1.5% 1%;
	}

.induction_midashi{
	font-size:1.3rem;
	font-weight: 500;
	letter-spacing:-0.05em;
	line-height:140%;
	}

.induction_box div{
	font-size:1.2rem;
	text-align:center;
	color:#FFFFFF;
	letter-spacing:-0.05em;
	line-height:130%;
	font-weight: 500;
	}

.induction_box div span{
	font-size:1.0rem;
	font-weight: 500;
	line-height:130%;
	}

.midashi_box_02{
	width:95%;
	margin:0 auto;
	position:relative;
	}

.midashi_box_02 img{
	width:75px;
	position:absolute;
	top:5px;
	left:0px;
	}

.top_midashi_01{
	text-align:center;
	font-size:3.0rem;
	font-weight: 700;
	color:#ed1c24;
	letter-spacing:-0.05em;
	border-bottom:#ed1c24 4px solid;
	border-top:#ed1c24 4px solid;
	line-height:110%;
	padding-left:25px;
	padding-top:1%;
	padding-bottom:1%;
	}

.sentyaku_box{
	width:100%;
	position: inherit;
	top: auto;
	right: auto;
	margin:0 auto;
	margin-top:2%;
	line-height:100%;
	}

.sentyaku_midashi{
	text-align:center;
	font-size:2.5rem;
	font-weight: 500;
	line-height:100%;
	color:#ffff00;
	margin-bottom:10px;
	}

.setnyaku_copy{
	color:#FFFFFF;
	font-weight: 500;
		-webkit-writing-mode:horizontal-tb;
	-ms-writing-mode:lr-tb;
	writing-mode:horizontal-tb;
	font-size:1.2rem;
	line-height:80%;
	margin-left:10px;
	text-align:center;
	letter-spacing:-0.01em;
	}


.present_box{
	width:80% !important;
	position: inherit;
	top: auto;
	right: auto;
	border-radius:20px;
	margin:0px auto 0 auto;
	background:#FFFF0C;
	color:#E5001C;
	border:#E5001C 3px solid;
	text-align:center;
	font-size:2.0rem;
	font-weight:bold;
	padding:1% 1.5%;
	line-height:140%;
	}


.maincontents_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width:95%;
	margin:5px auto 30px auto;
	}

.reverse{
	flex-direction:row;
	}

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

.am{
	width:56px;
	position:absolute;
	top:25px;
	right:0px;
	}

.pm{
	width:56px;
	position:absolute;
	top:25px;
	left: auto;
	right:0px;
	}


.top_midashi_02{
	font-size:3.8rem;
	color:#0075c2;
	font-weight: 700;
	line-height:100%;
	margin-bottom:2%;
	text-align:center;
	}

.top_midashi_02 span{
	font-size:3.0rem;
	color:#0075c2;
	font-weight: 700;
	line-height:100%;
	}

.top_midashi_03{
	font-size:3.8rem;
	color:#f15a24;
	font-weight: 700;
	line-height:100%;
	margin-bottom:2%;
	text-align:center;
	}

.top_midashi_03 span{
	font-size:3.0rem;
	color:#f15a24;
	font-weight: 700;
	line-height:100%;
	}

.center{
	text-align:center;
	}

.youtbe_box{
	width:100%;
	}


.iframe_youtube{
	overflow: hidden;
	height:380px;
	}

.height_control_01{
	height:330px !important;
	}

.contents_btn_list{
	width:95%;
	margin:0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}

.contents_btn_list li{
	margin-bottom:3%;
	}

.contents_btn_list li:nth-of-type(1){
	width:100%;
	}


.contents_btn_list li:nth-of-type(2){
	width:100%;
	}

.contents_btn_list li:nth-of-type(3){
	width:100%;
	}

.contents_btn_list li a{
	display:block;
	text-align:left;
	font-size:2.0rem;
	color:#FFFFFF;
	font-weight: 700;
	padding:1%;
	border-radius:10px;
	position:relative;
	filter:blur(0);
	}

.contents_btn_list li a::after{
	font-family: "Font Awesome 5 Free";
  content: '\f105';
  font-size: 2.0rem;
  font-weight: 900;
  position:absolute;
  top:13px;
  right:2%;
	}

.top_midashi_01_next{
	color:#f15a24;
	border-bottom:#f15a24 4px solid;
	border-top:#f15a24 4px solid;
}
.top_midashi_04{
	font-size:2.6rem;
	color:#39b54a;
	font-weight: 700;
	line-height:120%;
	margin-bottom:2%;
	text-align:center;
	}

.top_midashi_04 span{
	font-size:2.0rem;
	color:#000;
	font-weight: 700;
	margin-bottom:2%;
	}

.schedule{
	width:80%;
	margin:30px auto;
	}

.schedule dt{
	font-size:1.2rem;
	color:#ea5233;
	width:30%;
	font-weight: 700;
	border-bottom:#666666 1px dotted;
	padding-top:2%;
	}

.schedule dd{
	font-size:1.2rem;
	width:70%;
	font-weight: 500;
	line-height:170%;
	border-bottom:#666666 1px dotted;
	padding-bottom:2%;
	padding-top:2%;
	letter-spacing:-0.01em;
	}


/*要素の開閉収納設定*/
/************************************
** トグル表示ボタン カスタマイズ
************************************/
.toggle-wrap_02{
	display:block;
	position: fixed;
	top:0;
	z-index:99999999999;
	width: 100%;
	}

.toggle-wrap_02 .toggle-button {
cursor: pointer;
padding: 10px;
text-align: center;
margin-bottom: 1em;
font-size:2.5rem;
	font-family: "Font Awesome 5 Free";
  font-weight: 900;
color:#000000;
  position: absolute;
  top:10px;
  right:5px;
}

.toggle-wrap_02 .toggle-button:hover {
}

.toggle-wrap_02 .toggle-button:after {
content: '\f0c9'; /* 閉じている状態のときにラベルの後ろに続く文字 */
}

/*中身を非表示にしておく*/
.toggle-wrap_02 .toggle-content{
height: 0;
padding: 0;
overflow: hidden;
opacity: 0;
transition: 0.6s;
}

/*チェックは見えなくする*/
.toggle-wrap_02 > input[type="checkbox"] {
display: none;
}

.toggle-wrap_02 > input[type="checkbox"]:checked ~ .toggle-button:after {
content: '\f00d'; /* 開いている状態のときにラベルの後ろに続く文字 */
color:#000000;
	z-index:99999999999999;
	position:relative;
}

/*クリックで中身表示*/
.toggle-wrap_02 > input[type="checkbox"]:checked ~ .toggle-content {
display: block;
height: auto;
opacity: 1;
padding: 10px 0;
margin-top:-15px;
}


/*要素の開閉収納設定*/


.main_top{
	width:100%;
	background:url(../index/main_ba.jpg) no-repeat;
	background-size:cover;
	height: auto;
	position:relative;
	}

.main_top h1{
	width:85%;
	position: inherit;
	top: auto;
	left: auto;
	padding:2%;
	}

.main_top h2{
	display:none;
	width:90px;
	position:absolute;
	top:8%;
	right:2%;
	}





.present_box{
	width:95%;
	margin:5px auto;
	background:#FFFF0C;
	color:#E5001C;
	border:#E5001C 3px solid;
	text-align:center;
	font-size:2.0rem;
	font-weight:bold;
	padding:1% 0;
	border-radius:10px;
	}

.daisyugo{
	width:300px;
	margin:20px auto 0 auto;
	}


.honbun_01{
	line-height:140%;
	}
	

.tsuika_box_01{
	background:#FFFFFF;
	border:#DF0010 2px solid;
	border-radius:5px;
	padding:1% 2%;
	margin-top:15px;
	text-align:center;
	width:90%;
	margin:0 auto;
	margin-bottom:10px;
	}


.tsuika_box_01 p{
	font-size:1.3rem;
	font-weight:bold;
	letter-spacing:-0.01em;
	line-height:140%;
	}



.induction_nav div:hover{
	opacity: 0.5;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	transform: rotate(0.001deg);
	}

.induction_nav div p{
	line-height:130%;
	font-size:1.8rem;
	letter-spacing:-0.01em;
	font-weight: 700;
	}

.induction_nav div p span{
	font-size:0.6em;
	}

.induction_nav div a{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    text-indent: 100%; /*テキスト非表示*/
    white-space: nowrap; /*テキスト非表示*/
    overflow: hidden; /*テキスト非表示*/
	}

.induction_nav_01{
	background:url(../index/orange_ba.gif);
	}

.induction_nav_02{
	background: url(../index/orange_ba02.gif);
	}

.induction_nav_03{
	background: url(../index/nav_ba_01.gif);
	}

.induction_nav_04{
	background: url(../index/nav_ba_02.gif);
	}

.induction_nav_05{
	background: url("../index/red_ba.gif");
		color: white;
	}

	.induction_nav_05 p{
		padding-top: 3px;
	}

.pc02{
	display:none !important;
	}

.hamburgernav{
	background:#FFF;
	}

.two_column_control{
	width:100% !important;
	}

.senpai_link_box{
	width:95%;
	margin:20px auto 20px auto;
	}

	.senpai_link_box_02{
	width:95%;
	margin:20px auto 20px auto;
	}

.btn_tsuika{
	width:95%;
	margin:0 auto;
	margin-bottom:50px;
	}

.ban_box_01{
width: 95%;
margin: 3% auto;
text-align: center;
}

.facebook_iframe iframe{
width: 100%;
height: 300px;
}

.facebook_iframe02{
width: 350px;
margin: 0 auto;
}

.yokoku p{
font-size: 2.0rem;
	  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	  letter-spacing:-0.02em;
	  line-height:180%;
	  font-weight: bold;
	  color: #0D54A6;
}


.archive_box{
width: 90%;
margin: 0 auto;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-bottom: 5%;
}

.archive_box div{
width: 100%;
margin-bottom: 4%;
}



.link_01{
width: 95%;
margin: 0 auto;
display: flex;
justify-content: space-between;
margin-bottom: 5%;
}

}

@media screen and (max-width: 420px) {
.youtube_wrap iframe{
	height:240px;
	}

.hidden_box img{
	height:240px;
	}



}
