@charset "utf-8";
/*================================
ここから全サイズ適用
================================*/



/*------------------------------
.u-〇〇 …… 下層ページ固有のclass名

lower.cssにあるclass名と被らないよう
接頭文字として "u-" を付けてます。
uniqueの略。
------------------------------*/

.body {
	background: var(--theme-color01);
}


/*================================
メインビジュアル
===============================*/
.main-visual {
	position: relative;
	z-index: 1;
	/*
	background-image: url(../img/mv_bg_type01.jpg);
	background-position: top center;
	background-size: auto 54rem;
	background-repeat: no-repeat;
	*/
	background-color: var(--theme-color01);
	padding-top: 17rem;
	padding-bottom: 4rem;
}
.main-visual .inner {
	max-width: calc(1200px + 14rem);
}
.mv_title {}
.mv_title_en {
	position: relative;
	z-index: 1;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	font-family: 'Viga', sans-serif;
	font-size: 12rem;
	font-weight: 400;
	text-align: center;
	line-height: 1;
	color: #82e1ec;
	word-wrap: break-word;
}
.mv_title_en::before {
	position: absolute;
	z-index: 1;
	content: "";
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	background: var(--accent-color);
	background: radial-gradient(circle, var(--accent-color) 2px,transparent 1px)top left/8px 6px repeat-x;
	height: 6px;
	width: 9rem;
}
.mv_title_jp {
	font-size: 2.2rem;
	text-align: center;
	line-height: 1.2;
	letter-spacing: 0.05em;
	color: #fff;
}


/*================================
テーブル
===============================*/
.u-entry_table {
	width: 100%;
}
.u-entry_table tr {
	border-bottom: 1px solid #eee;
}
.u-entry_table tr:nth-child(odd) {
	/*background: var(--theme-color02);*/
}
.u-entry_table th {
	width: 30%;
	padding: 30px 10px;
}
.u-entry_table .th_title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--theme-color01);
}
.u-entry_table th .small {
	font-size: 1.5rem;
}
.u-entry_table td {
	padding: 30px 10px;
	vertical-align: middle;
}
.u-required {
	display: inline-block;
	padding: 0.2em 0.6em;
	background: #f48713;
	font-size: 1.5rem;
	text-align: center;
	line-height: 1;
	color: #fff;
}
.u-entry_table .syubetsu {}
.u-entry_table .syubetsu .first {
	margin: 0;
}
.u-entry_table textarea {
	width: 100%;
}

/*================================
入力項目
===============================*/
input {}
input[type="text"] {}
input[type="email"] {}
input[type="tel"] {}
textarea {}
select {}
/*お名前*/
.your-name_sei {}
.your-name_mei {}
.your-name_sei input {}
.your-name_mei input {}
/*お名前（カナ）*/
.your-name_sei_kana {}
.your-name_mei_kana {}
.your-name_sei_kana input {}
.your-name_mei_kana input {}
/*生年月日*/
.birthday {
	font-size: 1.8rem;
}
/*送信ボタン*/
.submit-btn {
	font-size: 1.8rem;
}

/*================================
TABLET横 1080px～0px
================================*/
@media (max-width: 1080px) {}


/*================================
TABLET縦 834px～0px
================================*/
@media (max-width: 834px) {

	/*================================
	メインビジュアル
	===============================*/

	/*================================
	テーブル
	===============================*/
	.u-entry_table {}
	.u-entry_table tr {}
	.u-entry_table th {}
	.u-entry_table td {}


}


/*================================
SP表示 667px～0px
================================*/
@media (max-width: 667px) {

	/*================================
	メインビジュアル
	===============================*/
	.main-visual {}
	.main-visual::before {}
	.main-visual .inner {}
	.mv_title {}
	.mv_title_en {
		font-size: 5rem;
	}
	.mv_title_jp {}

	/*================================
	テーブル
	===============================*/
	.u-entry_table {}
	.u-entry_table tr {}
	.u-entry_table th {
		display: block;
		width: 100%;
		padding: 20px 0 10px;
	}
	.u-entry_table .th_title {
		display: inline-block;
	}
	.u-entry_table th .small {
		display: inline-block;
		font-size: 1.6rem;
	}
	.u-entry_table td {
		display: block;
		width: 100%;
		padding: 10px 0 20px;
	}
	.u-required {
		font-size: 1.6rem;
	}
	
	/*================================
	入力項目
	===============================*/
	input {}
	input[type="text"],
	input[type="email"],
	input[type="tel"] {
		width: 100%;
	}
	textarea {
		width: 100%;
	}
	select {
		font-size: 2rem;
	}
	/*お名前*/
	.your-name_sei {}
	.your-name_mei {}
	.your-name_sei input {}
	.your-name_mei input {}
	/*お名前（カナ）*/
	.your-name_sei_kana {}
	.your-name_mei_kana {}
	.your-name_sei_kana input {}
	.your-name_mei_kana input {}
	/*生年月日*/
	.birthday {}
	/*送信ボタン*/
	.submit-btn {}


}

















