/*
Title: tsugaike LP
Last Updated: 2023-08-10
Author: Minoura
*/

/*----------------------------------------
	全体
----------------------------------------*/

html{
	font-family:'游ゴシック体', 'Yu Gothic', YuGothic,'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ ゴシック',sans-serif;
	font-size:62.5%;
	color: #000;
	-webkit-text-size-adjust:100%;
	line-height:1.5;
}
body{
	font-size:1.4rem;
	font-size: 1.4em;
}
img{ vertical-align: bottom; }
a{
	color:#003a84;
	transition: all 0.4s;
}
a:hover{
	color:#0458c3;
	transition: all 0.4s;
}
#container{
	position: relative;
	overflow: hidden;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	box-shadow: 0 0 50px 0px rgba(0,0,0,0.3);
}
.fixed_bg{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/background.jpg);
	background-size: 100%;
	background-repeat: repeat;
	z-index: -1;
}
/*
.fixed_ribbon_l,
.fixed_ribbon_r{
	position: fixed;
	top: 0;
	background: url("../images/ribbon.png") center top repeat-y;
	background-size: 100%;
	height: 100vh;
	width: 5%;
	max-width: 80px;
	box-shadow: 0 0 8px 0px rgba(0,0,0,0.2);
}
.fixed_ribbon_l{
	left: 0;
}
.fixed_ribbon_r{
	right: 0;
}
*/
.bg_logo{
	position: fixed;
	left: 5%;
	top: 10%;
	width: 20%;
}

@media screen and (max-width: 1049px){

	.bg_logo{
		width: 15%;
	}

}/*END*/

@media screen and (max-width: 899px){

	.bg_logo{
		width: 12%;
	}

}/*END*/

@media screen and (max-width: 849px){

	.bg_logo{
		width: 10%;
	}

}/*END*/

@media screen and (max-width: 799px){

	.bg_logo{
		width: 8%;
	}

}/*END*/

@media screen and (max-width: 749px){

	#container{
		max-width: inherit;
	}
	.bg_logo,
	.fixed_bg,
	.fixed_ribbon_l,
	.fixed_ribbon_r{
		display: none;
	}

}/*END*/

li{ list-style:none; }
.center{ text-align:center; }
.op:hover{
	filter: alpha(opacity=70);
	-moz-opacity:070;
	opacity:0.70;
	transition: all 0.4s;
}
.op{
	transition: all 0.4s;
}
.btn_hover,
.btn_hover_b{
	position: relative;
	display: block;
}
.btn_hover:hover{
	animation:btn_hover 0.6s ease-in-out;
}
@keyframes btn_hover{
	0%{
		margin-top: 0;
	}
	40%{
		margin-top: -10px;
	}
	100%{
		margin-top: 0;
	}
}
.btn_hover_b:hover{
	animation:btn_hover_b 0.6s ease-in-out;
}
@keyframes btn_hover_b{
	0%{
		margin-bottom: 0;
	}
	40%{
		margin-bottom: 10px;
	}
	100%{
		margin-bottom: 0;
	}
}


/*----------------------------------------
	text
----------------------------------------*/

p{ line-height: 1.6; }

.text_bold{ font-weight: bold !important; }
.text_normal{ font-weight: normal; }
.text_red{ color: #ff0000; }
.lh_15{ line-height: 1.5; }

.text_white{color: #fff;}

@media print, screen and (min-width: 750px){

	.text_21{ font-size: 2.1rem; }
	.text_16{ font-size: 1.6rem; }

}/*END*/

@media screen and (max-width: 749px){

	.text_21{ font-size: 1.8rem; }
	.text_16{ font-size: 1.5rem; }

}/*END*/

@media screen and (max-width: 479px){

	.text_21{ font-size: 1.6rem; }
	.text_16{ font-size: 1.4rem; }

}/*END*/


/*----------------------------------------
	header
----------------------------------------*/

header{
	position: relative;
}
.menu_btn{
	width: 50px;
	height: 40px;
	position: fixed;
	top: 24px;
	left: 50%;
	cursor: pointer;
	margin-left: 180px;
	z-index: 9999;
}
.menu_btn span{
	display: inline-block;
	width: 100%;
	height: 2px;
	background: #fcff40;
	position: absolute;
	left: 0;
	transition: all 0.5s;
}
.menu_btn span:nth-child(1){
	top: 0;
}
.menu_btn span:nth-child(2){
	top: 50%;
}
.menu_btn span:nth-child(3){
	bottom: 0;
}
.open .menu_btn span{
	background: #fcff40;
}

.open .menu_btn span:nth-child(1){
	transform: rotate(-45deg);
	top: 19px;
}
.open .menu_btn span:nth-child(2){
	opacity: 0;
}
.open .menu_btn span:nth-child(3){
	transform: rotate(45deg);
	bottom: 19px;
}
.drawer{
	position: fixed;
	background: rgba(0, 0, 0, 0.9);
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	color: #fff;
	display: flex;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transform: translateX(100%);
	transition: 0.5s ease-in-out;
	z-index: 50;
}
.drawer ul{
	text-align: center;
	padding-top: 120px;
}
.drawer ul li{
	position: relative;
	transform: translateX(-150px);
	transition: transform 0.5s ease;
	padding-bottom: 25px;
}
.drawer ul li:nth-child(2){ transition-delay: 0.1s; }
.drawer ul li:nth-child(3){ transition-delay: 0.15s; }
.drawer ul li:nth-child(4){ transition-delay: 0.2s; }
.drawer ul li:nth-child(5){ transition-delay: 0.25s; }
.drawer ul li:nth-child(6){ transition-delay: 0.3s; }
.drawer ul li:nth-child(7){ transition-delay: 0.35s; }
.drawer ul li:nth-child(8){ transition-delay: 0.4s; }
.drawer ul li:nth-child(9){ transition-delay: 0.45s; }
.drawer ul li a{
	position: relative;
	transition: all 0.4s;
	display: inline-block;
	font-size: 2rem;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}
.drawer ul li a:before{
	display: inline-block;
	content: "";
	width: 2px;
	height: 20px;
	background: #1a96d5;
	position: absolute;
	left: -12px;
	top: 0;
	transition: all 0.4s;
	opacity: 0;
}
.drawer li a:hover{
	color: #fff;
}
.drawer ul li a:hover:before{
	opacity: 1;
}
.open .drawer{
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
}
.open .drawer ul li{
	transform: translateX(0);
}

@media screen and (max-width: 749px){

	.menu_btn{
		left: auto;
		right: 4.5%;
		width: 40px;
		height: 28px;
		margin-left: auto;
		top: 16px;
	}
	.menu_btn span{
		height: 1px;
	}
	.open .menu_btn span:nth-child(1){ top: 13px; }
	.open .menu_btn span:nth-child(3){ bottom: 13px; }
	.drawer ul{
		padding-top: 50px;
	}
	.drawer ul li{
		transform: translateX(-70px);
	}
	.drawer ul li a{
		font-size: 1.6rem;
	}

}/*END*/


/*----------------------------------------
	contents
----------------------------------------*/

.btn_official,
.btn_reserve,
.btn_studytour,
.btn_wow{
	position: relative;
}
.btn_wow a{
	display: block;
	width: 80%;
	position: absolute;
	left: 50%;
	bottom: 12%;
	transform: translateX(-50%);
}
.btn_studytour a{
	display: block;
	width: 80%;
	position: absolute;
	left: 50%;
	bottom: 8%;
	transform: translateX(-50%);
}
.btn_reserve a{
	display: block;
	width: 80%;
	position: absolute;
	left: 50%;
	bottom: 10%;
	transform: translateX(-50%);
}
.btn_official a{
	display: block;
	width: 80%;
	position: absolute;
	left: 50%;
	bottom: 50%;
	transform: translateX(-50%);
}


/*----------------------------------------
	contact
----------------------------------------*/

.contact_frame{
	background: #d2ecff;
	padding-bottom: 100px;
	font-size: 1.8rem;
}
.contact_frame table{
	line-height: 1.8;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}
.contact_frame th{
	text-align: left;
	padding-bottom: 10px;
	font-size: 2rem;
}
.contact_frame td{
	padding-bottom: 30px;
}
.contact_frame td.pb_0 {
	padding-bottom: 10px;
}
.privacy{
	font-weight: bold;
	font-size: 1.8rem;
}

.complete_text,
.confirm_text{
	width: 88%;
	margin-right: auto;
	margin-left: auto;
	font-weight: bold;
}
@media screen and (max-width: 750px) {
	.contact_frame th{
		font-size: 1.6rem;
	}
	.privacy{
		font-size: 1.6rem;
	}
	.contact_frame{
		font-size: 1.6rem;
	}
}
/*必須・任意ラベル*/
.hissu:after,
.nini:after{
	display: inline-block;
	padding: 6px 8px;
	line-height: 1;
	margin-left: 10px;
	vertical-align: middle;
	border-radius: 3px;
	font-size: 1.8rem;
}
.hissu:after{
	content: "必須";
	display: inline-block;
	background: #e5014f;
	color: #fff;
	vertical-align: 1px;
}
.nini:after{
	content: "任意";
	display: inline-block;
	vertical-align: 1px;
	color: #999;
	border: 1px solid #999;
}

/*error*/
td .error{
	color: #e60012;
	padding: 12px 15px;
	background: #ffdde1;
	margin-top: 15px;
	border-radius: 30px;
	line-height: 1.2;
}
.privacy .error{
	display: inline-block;
	margin-top: 10px;
	color: #e60012;
	padding: 12px 15px;
	background: #ffdde1;
	font-weight: normal;
	border-radius: 30px;
	line-height: 1.2;
	margin-left: 6%;
}

/*btn*/
.btn_back a,
.form_submit a{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 80%;
}

@media screen and (max-width: 749px){

	.contact_frame table{
		width: 86%;
	}
	.hissu:after,
	.nini:after{
		padding: 3px 6px;
		font-size: 1.5rem;
	}

}/*END*/


/*----------------------------------------
	フォーム
----------------------------------------*/

select,
textarea,
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="text"]{
	padding: 16px 4%;
	background: #fff;
	border: 1px solid #fff;
	box-sizing: border-box;
	font-family:'游ゴシック体', 'Yu Gothic', YuGothic,'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ ゴシック',sans-serif;
	-webkit-appearance: none;
	font-size: 1.7rem;
	width: 100%;
}
select:focus{ outline:none; }
textarea:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
input[type="text"]:focus{
	outline:none;
	border: 1px solid #1a96d5;
}
:focus{ outline: none; }

.form1{ width: 250px; }
.form2{ width: 350px; }
.form_all{ width: 100%; }

@media screen and (max-width: 749px){

	select,
	textarea,
	input[type="tel"],
	input[type="email"],
	input[type="url"],
	input[type="text"]{
		font-size: 1.6rem;
		padding: 14px 4%;
	}

}/*END*/


/*----------------------------------------
	radio checkbox
----------------------------------------*/

.radio input[type="radio"],
.check input[type="checkbox"]{
	position: absolute;
	height: 1px;
	width: 1px;
	clip: rect(0, 0, 0, 0);
}
.radio label,
.check label{
	display: block;
	background: #fff;
	position: relative;
	cursor: pointer;
	padding: 10px 0 10px 70px;
	line-height: 2;
	margin-bottom: 10px;
}
.privacy.check label{
	background: none;
	padding: 0 0 0 80px;
}
.radio label:before,
.check label:before{
	position: absolute;
	content: "";
	top: 50%;
	left: 20px;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	background: #fff;
	border: 2px solid #ccc;
	border-radius: 50%;
}
.privacy.check label:before{
	left: 7%;
}
.check label:before{ border-radius: 0; }
.radio label,
.check label{
	margin-left: 0\9;
	padding: 11px\9;
}
.radio label:not(:target),
.check label:not(:target){
	margin-left: 10px\9;
	padding: 11px 0 11px 25px\9;
}
.radio label:before,
.check label:before{
	display: none\9;
}
.radio label:not(:target):before,
.check label:not(:target):before{
	display: inline-block\9;
}
.radio input[type="radio"]:checked + label:after{
	position: absolute;
	content: "";
	top: 50%;
	left: 27px;
	width: 22px;
	height: 22px;
	margin-top: -9px;
	border-radius: 50%;
	background: #e5014f;
}
.check input[type="checkbox"]:checked + label:after{
	content: "";
	position: absolute;
	top: 50%;
	box-sizing: border-box;
	display: block;
	left: 27px;
	width: 22px;
	height: 12px;
	margin-top: -8px;
	border-left: 4px solid #e5014f;
	border-bottom: 4px solid #e5014f;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.check input[type="checkbox"]:checked + label:before{
	background: #fff;
}
.privacy.check input[type="checkbox"]:checked + label:after{
	left: 42px;
}
.radio input[type="radio"]:focus + label:before,
.check input[type="checkbox"]:focus + label:before{
	border-color: #1a96d5;
	box-shadow: 0 0 5px #1a96d5;
}

@media (min-width: 500px) and (max-width: 750px) {
	.privacy.check input[type="checkbox"]:checked + label:after{
		left: 8%;
	}
	.privacy.check label {
    background: none;
    padding: 0 0 0 15%;
}
}
@media screen and (max-width: 499px){

	.radio label,
	.check label{
		padding: 10px 0 10px 46px;
	}
	.privacy.check label{
		padding: 0 0 0 60px;
	}
	.radio label:before,
	.check label:before{
		left: 16px;
		width: 20px;
		height: 20px;
		margin-top: -12px;
	}
	.radio input[type="radio"]:checked + label:after{
		left: 21px;
		width: 14px;
		height: 14px;
		margin-top: -7px;
	}
	.check input[type="checkbox"]:checked + label:after{
		left: 20px;
		width: 20px;
		height: 10px;
		margin-top: -8px;
	}
	.privacy.check input[type="checkbox"]:checked + label:after{
		left: 30px;
	}


}/*END*/


/*----------------------------------------
	footer
----------------------------------------*/

.sp_fixed{
	margin: auto;
	position: fixed;
	left: 0;
	right: 0;
	z-index: 10;
	width: 100%;
	bottom: -200px;
	transition: all 0.4s;
}
.sp_fixed ul{
	width: 100%;
	max-width: 750px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
}
.sp_fixed li{
	width: 50%;
	float: left;
	box-sizing: border-box;
}
.sp_fixed li a{
	display: block;
	text-decoration: none;
}

@media screen and (min-width: 750px){

	.sp_fixed ul{
		max-width: 500px;
	}

}/*END*/


/*----------------------------------------
	カレント表示ナビゲーション
----------------------------------------*/
.target_nav {
	opacity: 0;
	transition: .4s;
	position: fixed;
	z-index: 100;
	top: 50%;
	right: 50%;
	transform: translate(calc(-50% + 300px),-50%);
	z-index: 49;
}
.header__link {
	display: block;
	width: 6px;
	height: 32px;
	background-color: transparent;
	border: 1px solid #999;
	margin-top: 20px;
}
.header__link.is-active {
	background-color: #999;
}
li.header__item {
	position: relative;
}
/*横の文字調整*/
li.header__item:first-child:after {
	content: "1";
	display: block;
	position: absolute;
	top: 50%;
	color: #999;
	transform: translate(200%, -50%);
}
li.header__item:nth-child(2):after {
	content: "2";
	display: block;
	position: absolute;
	top: 50%;
	color: #999;
	transform: translate(200%, -50%);
}
li.header__item:nth-child(3):after {
	content: "3";
	display: block;
	position: absolute;
	top: 50%;
	color: #999;
	transform: translate(200%, -50%);
}
li.header__item:nth-child(4):after {
	content: "4";
	display: block;
	position: absolute;
	top: 50%;
	color: #999;
	transform: translate(200%, -50%);
}
li.header__item:nth-child(5):after {
	content: "5";
	display: block;
	position: absolute;
	top: 50%;
	color: #999;
	transform: translate(200%, -50%);
}
li.header__item:nth-child(6):after {
	content: "6";
	display: block;
	position: absolute;
	top: 50%;
	color: #999;
	transform: translate(200%, -50%);
}
li.header__item:nth-child(7):after {
	content: "7";
	display: block;
	position: absolute;
	top: 50%;
	color: #999;
	transform: translate(200%, -50%);
}
li.header__item:nth-child(8):after {
	content: "予\A約";
	display: block;
	position: absolute;
	top: 50%;
	color: #999;
	transform: translate(90%, -50%);
}

@media screen and (max-width: 768px){
	.target_nav {
		right: 5%;
		transform: translate(0,-50%);
	}
	.header__link {
		width: 4px;
		height: 24px;
		margin-top: 15px;
		border: 1px solid #c8c8c8;
	}
	.header__link.is-active {
		background-color: #c8c8c8;
	}

	/*横の文字調整*/
	li.header__item:first-child:after {
		transform: translate(120%, -50%);
	}
	li.header__item:nth-child(2):after {
		transform: translate(120%, -50%);
	}
	li.header__item:nth-child(3):after {
		transform: translate(120%, -50%);
	}
	li.header__item:nth-child(4):after {
		transform: translate(120%, -50%);
	}
	li.header__item:nth-child(5):after {
		transform: translate(120%, -50%);
	}
	li.header__item:nth-child(6):after {
		transform: translate(120%, -50%);
	}
	li.header__item:nth-child(7):after {
		transform: translate(120%, -50%);
	}
	li.header__item:nth-child(8):after {
		transform: translate(60%, -50%);
	}
}/*END*/
