/*============================
ヘッダー
============================*/
header {
	transition: transform 0.5s 0.3s;
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	height: 1.20rem;
	display: flex;
	justify-content: space-between;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	min-width: 1100px;
	z-index: 10;
}

@media screen and (max-width: 599px) {
	header {
		height: 0.60rem;
		min-width: auto;
	}
}

/* ヘッダーが上に消える */
header.hide {
/*	transform: translateY(-1.50rem);*/
}

/* スクロールで表示された状態 */
header.scr {}

header .logo {
	width: 2.80rem;
	height: 100%;
	position: relative;
}

@media screen and (max-width: 599px) {
	header .logo {
		width: 1.65rem;
	}
}

header .logo::before {
	content: "";
	width: 100%;
	height: 0.05rem;
	background-color: #33C8E7;
	position: absolute;
	top: 0;
	left: 0;
}

header .logo a {
	display: block;
}

header .logo a:hover {
	opacity: 0.7;
}

header .logo img {
	width: 2.20rem;
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 599px) {
	header .logo img {
		width: 1.20rem;
	}
}

header .nav_wrap {
	padding-right: 1.70rem;
	position: relative;
}

@media screen and (max-width: 599px) {
	header .sp_navi {
		position: absolute;
		top: 0.60rem;
		left: 0;
		background-color: rgba(28, 62, 117, 0.85);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		width: 100%;
		box-sizing: border-box;
		display: none;
	}

	header .sp_navi .glo_navi .link a {
		display: block;
		padding: 0.20rem;
		font-size: 0.16rem;
		color: #FFF;
		text-decoration: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.5);
		position: relative;
	}

	header .sp_navi .glo_navi .link a::after {
		content: "";
		width: 0.16rem;
		height: 0.16rem;
		background-image: url(../common/img/icon_arrow_white.svg);
		background-position: right center;
		background-repeat: no-repeat;
		background-size: contain;
		position: absolute;
		right: 0.20rem;
		top: 50%;
		transform: translateY(-50%);
	}

	header .sp_navi .sub_menu {
		padding: 0.10rem 0 0.20rem;
	}

	header .sp_navi .sub_menu .link a {
		display: block;
		padding: 0.10rem 0.20rem;
		font-size: 0.14rem;
		color: #FFF;
		text-decoration: none;
	}

	header .sp_navi .sub_menu .link a::after {
		content: "";
		width: 0.20rem;
		height: 0.11rem;
		display: inline-block;
		background-image: url(../img/icon_newwin_white.svg);
		background-position: right center;
		background-repeat: no-repeat;
		background-size: contain;
	}
}

/* 上段サブメニュー */
header .nav_wrap .sub_menu {
	padding: 0.26rem 0;
}

header .nav_wrap .sub_menu .list {
	display: flex;
	justify-content: flex-end;
}

header .nav_wrap .sub_menu .list .link {
	padding-left: 0.50rem;
}

header .nav_wrap .sub_menu .list .link:first-child {
	padding-left: 0;
}

header .nav_wrap .sub_menu .list .link a {
	font-size: 0.14rem;
	letter-spacing: 0.075em;
	text-decoration: none;
	color: #4D4D4D;
	position: relative;
	display: block;
}

header .nav_wrap .sub_menu .list .link a:hover {
	opacity: 0.5;
}

header .nav_wrap .sub_menu .list .link a::after {
	content: "";
	width: 0.20rem;
	height: 0.11rem;
	display: inline-block;
	background-image: url(../img/icon_newwin.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
}

/* 下段メインメニュー */
header .nav_wrap .glo_navi .list {
	display: flex;
	justify-content: flex-end;
}

header .nav_wrap .glo_navi .list .link {
	padding-left: 0.40rem;
}

header .nav_wrap .glo_navi .list .link a {
	display: block;
	font-size: 0.18rem;
	letter-spacing: 0.075em;
	color: #000;
	text-decoration: none;
	position: relative;
}

@media screen and (max-width: 1240px) {
	header .nav_wrap .glo_navi .list .link {
		padding-left: 0.25rem;
	}

	header .nav_wrap .glo_navi .list .link a {
		font-size: 0.17rem;
		letter-spacing: 0.05em;
	}
}

header .nav_wrap .glo_navi .list .link a::after {
	position: absolute;
	bottom: -8px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #29abe2;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

header .nav_wrap .glo_navi .list .link a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/* お問い合わせ */
header .nav_wrap .contact_btn {
	width: 1.40rem;
	height: 0.70rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

header .nav_wrap .contact_btn a {
	display: block;
	height: 100%;
	position: relative;
	background-color: #29ABE2;
	color: #FFF;
}

header .nav_wrap .contact_btn a:hover {
	opacity: 0.7;
}

header .nav_wrap .contact_btn a span {
	font-size: 0.15rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	width: 100%;
	display: block;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

header .nav_wrap .contact_btn a span::before {
	content: "";
	width: 0.32rem;
	height: 0.30rem;
	display: block;
	margin: auto;
	background-image: url(../img/icon_mail.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
}

/* SPのみお問い合わせボタン */
@media screen and (max-width: 599px) {
	header .contact_btn {
		position: absolute;
		right: 0.70rem;
		width: 0.60rem;
		height: 0.60rem;
		text-align: center;
	}
	header .contact_btn a {
		display: block;
		position: relative;
		height: 100%;
	}
	header .contact_btn span {
		font-size: 0.10rem;
		font-weight: 700;
		letter-spacing: 0;
		color: #1c3e75;
		text-decoration: none;
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		display: block;
		transform: translateY(-50%);
	}
	header .contact_btn span::before {
		content: "";
		width: 0.28rem;
		height: 0.24rem;
		display: block;
		margin: auto;
		background-image: url(../img/sp_contact_icon.svg);
		background-position: center top;
		background-repeat: no-repeat;
		background-size: contain;
	}
}


/*============================
main
============================*/
main {
	margin-top: 1.20rem;
}

@media screen and (max-width: 599px) {
	main {
		margin-top: 0.60rem;
	}
}

/*============================
MV
============================*/
#mv {
	height: 90vh;
	max-height: 8.00rem;
	min-height: 5.50rem;
	background-image: url(../img/top_mv_pc.jpg);
	background-position: center bottom;
	background-size: cover;
	position: relative;
}

@media screen and (max-width: 599px) {
	#mv {
		max-height: 4.00rem;
		min-height: 4.00rem;
		background-image: url(../img/top_mv_sp.jpg);
	}
}

#mv .in {
	max-width: 16.80rem;
	height: 100%;
}

#mv .catch_wrap {
	position: absolute;
	left: 0.40rem;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 599px) {
	#mv .catch_wrap {
		left: 0.20rem;
		top: 75%;
	}
}

#mv .catch_wrap .text {
	font-size: 0.23rem;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	color: #1C3E75;
	letter-spacing: 0.075em;
	padding-bottom: 0.20rem;
}

@media screen and (max-width: 599px) {
	#mv .catch_wrap .text {
		font-size: 0.15rem;
		padding-bottom: 0.10rem;
	}
}

#mv .catch_wrap .text span {
	background: linear-gradient(transparent 60%, #FCEE21 60%);
}

#mv .catch_wrap .catch {
	font-size: 0.55rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.35;
	color: #1C3E75;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
	#mv .catch_wrap .catch {
		font-size: 0.33rem;
		letter-spacing: 0.02em;
		text-shadow: 0 0 8px rgba(255, 255, 255, 1);
	}
}

#mv .catch_wrap .catch span {
	font-size: 0.69rem;
	font-family: 'Poppins', sans-serif;
}

@media screen and (max-width: 599px) {
	#mv .catch_wrap .catch span {
		font-size: 0.42rem;
		font-family: 'Poppins', sans-serif;
	}
}

/* アンカーボタン */
#mv .float_btn {
	width: 2.41rem;
	position: absolute;
	right: 0.40rem;
	bottom: -0.40rem;
	z-index: 2;
}

#mv .float_btn a {
	position: relative;
	transition: all 0.3s;
	display: block;
	top: 0;
}

#mv .float_btn a:hover {
	top: 0.10rem;
}

@media screen and (max-width: 599px) {
	.floating_bnr {
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		z-index: 10;
		box-sizing: border-box;
		padding: 0.10rem;
	}
}

/*============================
共通設定
============================*/
/* セクションタイトル */
.sec_title {
	font-size: 0.40rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #1c3e75;
	text-align: center;
	padding-bottom: 0.30rem;
	font-family: 'Zen Kaku Gothic New', sans-serif;
}

@media screen and (max-width: 599px) {
	.sec_title {
		font-size: 0.20rem;
		padding-bottom: 0.20rem;
	}
}

.sec_title span {
	border-bottom: 0.03rem solid #ffdc00;
}

/* タイトル内のロゴ画像 */
.sec_title img {
	width: 3.08rem;
	position: relative;
	top: 0.18rem;
	display: inline-block;
	padding-right: 0.06rem;
}

@media screen and (max-width: 599px) {
	.sec_title img {
		width: 2.00rem;
		top: 0.10rem;
		padding-right: 0.03rem;
	}
}

/* タイトル内の強調表示 */
.sec_title .large {
	font-size: 0.80rem;
	color: #33c8e7;
	font-weight: 700;
}

@media screen and (max-width: 599px) {
	.sec_title .large {
		font-size: 0.44rem;
	}
}

.sec_title .midium {
	font-size: 0.60rem;
	color: #33c8e7;
	font-weight: 700;
}

@media screen and (max-width: 599px) {
	.sec_title .midium {
		font-size: 0.33rem;
	}
}

/* タイトル上部の● */
.sec_title .dot {
	position: relative;
	display: inline-block;
}

.sec_title .dot::before {
	content: "";
	width: 0.06rem;
	height: 0.06rem;
	border-radius: 0.06rem;
	background-color: #33c8e7;
	position: absolute;
	top: -0.12rem;
	left: 50%;
	transform: translateX(-50%);
}

@media screen and (max-width: 599px) {
	.sec_title .dot::before {
		width: 0.04rem;
		height: 0.04rem;
		top: -0.06rem;
	}
}

/* リード文 */
.sec_title + .lead {
	font-size: 0.24rem;
	line-height: 1.83;
	letter-spacing: 0.05em;
	padding-bottom: 0.40rem;
	text-align: center;
	font-family: 'Zen Kaku Gothic New', sans-serif;
}

@media screen and (max-width: 599px) {
	.sec_title + .lead {
		font-size: 0.14rem;
		line-height: 1.71;
		padding-bottom: 0.30rem;
	}
}

/* マーカー */
.marker {
	background: linear-gradient(transparent 70%, #FCEE21 70%);
}

/*============================
現状の塾運営の悩み
============================*/
#introduction {
	padding-top: 1.00rem;
	position: relative;
	font-family: 'Zen Kaku Gothic New', sans-serif;
}

@media screen and (max-width: 599px) {
	#introduction {
		padding-top: 0.50rem;
	}
}

#introduction::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: calc(100% - 3.00rem);
	height: 0.30rem;
	background-image: url(../img/stripe_bg.png);
	background-size: auto 0.63rem;
}

@media screen and (max-width: 599px) {
	#introduction::before {
		width: calc(100% - 0.40rem);
		height: 0.20rem;
		background-size: auto 0.26rem;
	}
}

#introduction::after {
	content: "";
	width: 100%;
	height: 3.74rem;
	background-color: #eaf9fd;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
}

#introduction .nayami_wrap .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#introduction .nayami_wrap .list .detail {
	width: 21.66%;
	border-radius: 0.10rem;
	box-sizing: border-box;
	box-shadow: 0 0 0.10rem rgba(9, 167, 204, 0.4);
	padding: 0.30rem 0 0.25rem;
	text-align: center;
}

@media screen and (max-width: 599px) {
	#introduction .nayami_wrap .list .detail {
		width: 100%;
		text-align: left;
		height: 1.00rem;
		position: relative;
		margin-bottom: 0.20rem;
	}
}

#introduction .nayami_wrap .list .detail .text {
	font-size: 0.20rem;
	font-weight: 700;
	letter-spacing: 0;
	color: #1c3e75;
	line-height: 1.5;
	padding-bottom: 0.10rem;
}

@media screen and (max-width: 599px) {
	#introduction .nayami_wrap .list .detail .text {
		font-size: 0.16rem;
		letter-spacing: 0.05em;
		padding-bottom: 0;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 1.30rem;
	}

	#introduction .nayami_wrap .list .detail:nth-child(even) .text {
		left: 0.40rem;
	}
}

#introduction .nayami_wrap .list .detail .icon {
	width: 1.70rem;
	margin: auto;
}

@media screen and (max-width: 599px) {
	#introduction .nayami_wrap .list .detail .icon {
		width: 1.20rem;
		position: absolute;
		left: 0.10rem;
		bottom: 0;
	}

	#introduction .nayami_wrap .list .detail:nth-child(even) .icon {
		left: auto;
		right: 0.10rem;
	}

	#introduction .nayami_wrap .list .detail:nth-child(even) .icon img {
		display: block;
	}
}

#introduction .catch {
	text-align: center;
	font-size: 0.36rem;
	font-weight: 700;
	color: #1c3e75;
	letter-spacing: 0.05em;
	vertical-align: bottom;
	padding: 0.20rem 0 0.60rem;
}

@media screen and (max-width: 599px) {
	#introduction .catch {
		font-size: 0.20rem;
		padding: 0.20rem 0 0.30rem;
	}
}

#introduction .catch img {
	width: 3.80rem;
	display: inline-block;
	position: relative;
	top: 0.16rem;
	padding-right: 0.06rem;
}

@media screen and (max-width: 599px) {
	#introduction .catch img {
		width: 2.00rem;
		display: block;
		margin: auto;
		position: relative;
		top: 0;
		padding: 0.10rem 0 0.05rem;
		padding-right: 0;
	}
}

#introduction .kaiketsu_wrap .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
	#introduction .kaiketsu_wrap .list {
		margin: 0 -0.20rem;
	}
}

#introduction .kaiketsu_wrap .list .detail {
	width: 21.66%;
	border-radius: 0.10rem;
	box-sizing: border-box;
	box-shadow: 0 0 0.10rem rgba(9, 167, 204, 0.4);
	padding: 0.30rem 0 0.25rem;
	text-align: center;
	background: linear-gradient(to bottom, #3fa9f5 0%, #007fd7 100%);
	color: #FFF;
	position: relative;
}

@media screen and (max-width: 599px) {
	#introduction .kaiketsu_wrap .list .detail {
		width: 2.60rem;
		margin-top: 0.25rem;
		border-radius: 0.10rem;
		box-sizing: border-box;
		box-shadow: 0 0 0.10rem rgba(9, 167, 204, 0.4);
		padding: 0.30rem 0 0.25rem;
		text-align: center;
		background: linear-gradient(to bottom, #3fa9f5 0%, #007fd7 100%);
		color: #FFF;
		position: relative;
	}
}

#introduction .kaiketsu_wrap .list .detail .sub_title {
	position: absolute;
	top: -0.20rem;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}

#introduction .kaiketsu_wrap .list .detail .sub_title span {
	display: inline-block;
	font-size: 0.20rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 0.10rem 0.20rem 0.12rem;
	border-radius: 0.30rem;
	background-color: #1c3e75;
}

@media screen and (max-width: 599px) {
	#introduction .kaiketsu_wrap .list .detail .sub_title span {
		display: inline-block;
		font-size: 0.18rem;
	}
}

#introduction .kaiketsu_wrap .list .detail .title {
	padding-top: 0.10rem;
	font-size: 0.22rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 2;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
	padding-bottom: 0.10rem;
}

@media screen and (max-width: 599px) {
	#introduction .kaiketsu_wrap .list .detail .title {
		padding-top: 0;
		font-size: 0.20rem;
	}
}

#introduction .kaiketsu_wrap .list .detail .title span {
	border-bottom: 0.03rem solid #ffdc00;
}

#introduction .kaiketsu_wrap .list .detail .text {
	font-size: 0.18rem;
	line-height: 1.66;
	font-weight: 700;
}

@media screen and (max-width: 599px) {
	#introduction .kaiketsu_wrap .list .detail .text {
		font-size: 0.16rem;
		line-height: 1.50;
	}
}

#introduction .close_text {
	text-align: center;
	padding: 0.50rem 0 0.80rem;
	font-size: 0.36rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #1c3e75;
}

@media screen and (max-width: 599px) {
	#introduction .close_text {
		padding: 0.40rem 0;
		font-size: 0.22rem;
		line-height: 1.85;
	}
}

/* slick用 */
#introduction .kaiketsu_wrap .slick-list {
	padding: 0.50rem;
}

#introduction .kaiketsu_wrap .slick-slide {
	padding: 0 0.10rem;
	/*	max-width: 2.60rem;*/
}

#introduction .kaiketsu_wrap .slick-dots {
	bottom: -0.20rem;
}

#introduction .kaiketsu_wrap .slick-dots li {
	width: 0.20rem;
	height: 0.06rem;
	margin: 0 0.04rem;
}

#introduction .kaiketsu_wrap .slick-dots li button {
	width: 0.20rem;
	height: 0.06rem;
	border-radius: 0.06rem;
	background-color: #1c3e75;
	padding: 0;
	opacity: 0.3;
	transition: all 0.3s;
}

#introduction .kaiketsu_wrap .slick-dots li.slick-active button {
	opacity: 1;
}

#introduction .kaiketsu_wrap .slick-dots li button::before {
	font-size: 0;
}

/*============================
TwentyMilesとは？
============================*/
#about {
	padding: 0.80rem 0;
	position: relative;
}

@media screen and (max-width: 599px) {
	#about {
		padding: 0.40rem 0;
	}
}

/* 上部の矢印 */
#about::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.40rem 0.45rem 0 0.45rem;
	border-color: #eaf9fd transparent transparent transparent;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

@media screen and (max-width: 599px) {
	#about::before {
		border-width: 0.20rem 0.225rem 0 0.225rem;
	}
}

/* 背景画像 */
#about::after {
	content: "";
	width: 100%;
	height: 100%;
	background-image: url(../img/about_bg.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
}

@media screen and (max-width: 599px) {
	#about::after {
		background-size: auto 5.70rem;
	}
}

#about .intro_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0.20rem 0 0.80rem;
	max-width: 10.00rem;
	margin: auto;
}

@media screen and (max-width: 599px) {
	#about .intro_wrap {
		padding: 0.20rem 0 0.30rem;
	}
}

#about .intro_wrap .ph_wrap {
	width: calc(100% + 0.20rem);
	max-width: 4.30rem;
	position: relative;
	left: -0.10rem;
}

#about .intro_wrap .textbox {
	width: 100%;
	max-width: 5.50rem;
	padding-top: 0.05rem;
}

#about .intro_wrap .textbox .title {
	font-size: 0.24rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.66;
	color: #1c3e75;
	padding-bottom: 0.05rem;
}

@media screen and (max-width: 599px) {
	#about .intro_wrap .textbox .title {
		font-size: 0.18rem;
		text-align: center;
		letter-spacing: 0.02em;
		padding-bottom: 0.10rem;
	}
}

#about .intro_wrap .textbox .text {
	font-size: 0.16rem;
	line-height: 1.91;
	padding-bottom: 0.10rem;
	text-align: justify;
}

@media screen and (max-width: 599px) {
	#about .intro_wrap .textbox .text {
		font-size: 0.14rem;
		padding-bottom: 0.20rem;
	}
}

/* 下部の囲み */
#about .kakomi {
	max-width: 10.00rem;
	margin: auto;
	box-sizing: border-box;
	padding: 0.50rem;
	position: relative;
	background-image: url(../img/stripe_bg.png);
	background-size: auto 0.63rem;
}

@media screen and (max-width: 599px) {
	#about .kakomi {
		padding: 0.40rem 0.25rem;
		background-size: auto 0.30rem;
	}
}

#about .kakomi::before {
	content: "";
	width: calc(100% - 0.20rem);
	height: calc(100% - 0.20rem);
	background-color: #FFF;
	position: absolute;
	top: 0.10rem;
	left: 0.10rem;
	z-index: 0;
}

#about .kakomi .title {
	position: relative;
	font-size: 0.30rem;
	font-weight: 700;
	color: #1c3e75;
	text-align: center;
	padding-bottom: 0.20rem;
}

@media screen and (max-width: 599px) {
	#about .kakomi .title {
		font-size: 0.20rem;
		letter-spacing: 0;
	}
}

#about .kakomi .title::before {
	content: "";
	width: 0.40rem;
	height: 1px;
	display: inline-block;
	background-color: #1c3e75;
	position: relative;
	top: -0.10rem;
	margin-right: 0.10rem;
}

@media screen and (max-width: 599px) {
	#about .kakomi .title::before {
		width: 0.10rem;
		top: -0.06rem;
		margin-right: 0.06rem;
	}
}

#about .kakomi .title::after {
	content: "";
	width: 0.40rem;
	height: 1px;
	display: inline-block;
	background-color: #1c3e75;
	position: relative;
	top: -0.10rem;
	margin-left: 0.10rem;
}

@media screen and (max-width: 599px) {
	#about .kakomi .title::after {
		width: 0.10rem;
		top: -0.06rem;
		margin-left: 0.06rem;
	}
}

#about .kakomi .text {
	font-size: 0.16rem;
	line-height: 1.83;
	text-align: justify;
	position: relative;
	padding-bottom: 0.40rem;
}

@media screen and (max-width: 599px) {
	#about .kakomi .text {
		font-size: 0.13rem;
		line-height: 1.76;
	}
}

#about .kakomi .text:last-child {
	padding-bottom: 0;
}

#about .kakomi .sub_title {
	position: relative;
	font-size: 0.20rem;
	font-weight: 700;
	color: #1c3e75;
	text-align: center;
	padding-bottom: 0.20rem;
}

@media screen and (max-width: 599px) {
	#about .kakomi .sub_title {
		font-size: 0.16rem;
		line-height: 1.56;
		padding-bottom: 0.10rem;
	}
}


/*============================
選ばれている4つの理由
============================*/
#reason {
	padding: 0.80rem 0;
	position: relative;
}

@media screen and (max-width: 599px) {
	#reason {
		padding: 0.40rem 0 0.20rem;
	}
}

#reason .reason_list_wrap .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#reason .reason_list_wrap .list .detail {
	width: 48.5%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0.50rem 0 0.20rem;
}

@media screen and (max-width: 599px) {
	#reason .reason_list_wrap .list .detail {
		width: 100%;
		padding: 0.25rem 0;
		border-bottom: 1px solid #CCC;
	}

	#reason .reason_list_wrap .list .detail:last-child {
		border-bottom: 0;
	}
}

#reason .reason_list_wrap .list .detail .icon {
	width: 1.60rem;
}

@media screen and (max-width: 599px) {
	#reason .reason_list_wrap .list .detail .icon {
		width: 100%;
		padding-bottom: 0.20rem;
	}

	#reason .reason_list_wrap .list .detail .icon img {
		width: 1.20rem;
		margin: auto;
		display: block;
	}
}

#reason .reason_list_wrap .list .detail .textbox {
	width: calc(100% - 1.85rem);
}

@media screen and (max-width: 599px) {
	#reason .reason_list_wrap .list .detail .textbox {
		width: 100%;
	}
}

#reason .reason_list_wrap .list .detail .textbox .sub_title {
	font-size: 0.18rem;
	font-weight: 700;
	color: #1c3e75;
	padding-bottom: 0.10rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
	#reason .reason_list_wrap .list .detail .textbox .sub_title {
		font-size: 0.18rem;
		text-align: center;
	}
}

#reason .reason_list_wrap .list .detail .textbox .sub_title .dot {
	position: relative;
	display: inline;
}

#reason .reason_list_wrap .list .detail .textbox .sub_title .dot::before {
	content: "";
	width: 0.04rem;
	height: 0.04rem;
	border-radius: 0.06rem;
	background-color: #ffdc00;
	position: absolute;
	top: -0.04rem;
	left: 50%;
	transform: translateX(-50%);
}

#reason .reason_list_wrap .list .detail .textbox .title {
	font-size: 0.30rem;
	font-weight: 700;
	color: #1c3e75;
	letter-spacing: 0.05em;
	padding-bottom: 0.20rem;
}

@media screen and (max-width: 599px) {
	#reason .reason_list_wrap .list .detail .textbox .title {
		font-size: 0.24rem;
		text-align: center;
	}
}

#reason .reason_list_wrap .list .detail .textbox .title sup {
	font-size: 0.12rem;
	position: relative;
	top: -0.06rem;
}

#reason .reason_list_wrap .list .detail .textbox .text {
	font-size: 0.15rem;
	line-height: 1.75;
	letter-spacing: 0.05em;
	text-align: justify;
}

@media screen and (max-width: 599px) {
	#reason .reason_list_wrap .list .detail .textbox .text {
		font-size: 0.14rem;
		line-height: 1.78;
	}
}

#reason .reason_list_wrap .list .detail .textbox .small_text {
	font-size: 0.11rem;
	padding-top: 0.10rem;
	letter-spacing: 0;
}

@media screen and (max-width: 599px) {
	#reason .reason_list_wrap .list .detail .textbox .small_text {
		font-size: 0.10rem;
		line-height: 1.6;
		letter-spacing: 0.05em;
	}
}

/*============================
TwentyMilesの特徴
============================*/
#feature {
	position: relative;
}

#feature .mv {
	height: 4.50rem;
	background-image: url(../img/feature_mv.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

@media screen and (max-width: 599px) {
	#feature .mv {
		height: 2.00rem;
	}
}

#feature .mv .mv_title {
	width: 5.60rem;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 599px) {
	#feature .mv .mv_title {
		width: 2.70rem;
	}
}

#feature .feature_list_wrap {
	padding-top: 0.70rem;
}

@media screen and (max-width: 599px) {
	#feature .feature_list_wrap {
		padding-top: 0.30rem;
	}
}

#feature .feature_list_wrap .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#feature .feature_list_wrap .list .detail {
	padding-bottom: 0.70rem;
	width: 48.4%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
	#feature .feature_list_wrap .list .detail {
		padding-bottom: 0.45rem;
		width: 100%;
	}
}

#feature .feature_list_wrap .list .detail.full {
	width: 100%;
}

#feature .feature_list_wrap .list .detail .icon_wrap {
	width: 1.47rem;
}

@media screen and (max-width: 599px) {
	#feature .feature_list_wrap .list .detail .icon_wrap {
		width: 0.80rem;
		padding-top: 0.05rem;
	}
}

#feature .feature_list_wrap .list .detail.full .icon_wrap {
	width: 100%;
	max-width: 5.50rem;
}

@media screen and (max-width: 599px) {
	#feature .feature_list_wrap .list .detail.full .icon_wrap {
		padding-bottom: 0.20rem;
		padding-top: 0;
	}
}

#feature .feature_list_wrap .list .detail .textbox {
	width: calc(100% - 1.70rem);
}

@media screen and (max-width: 599px) {
	#feature .feature_list_wrap .list .detail .textbox {
		width: 100%;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
}

#feature .feature_list_wrap .list .detail.full .textbox {
	width: 100%;
	max-width: 6.00rem;
}

#feature .feature_list_wrap .list .detail .textbox .num {
	background-image: url(../img/featuer_dot.png);
	background-position: left center;
	background-repeat: repeat-x;
	background-repeat: auto 2px;
}

@media screen and (max-width: 599px) {
	#feature .feature_list_wrap .list .detail .textbox .num {
		width: 100%;
	}
}

#feature .feature_list_wrap .list .detail .textbox .num span {
	background-color: #FFF;
	display: inline-block;
	padding-right: 0.06rem;
}

#feature .feature_list_wrap .list .detail .textbox .num span img {
	height: 0.20rem;
}

#feature .feature_list_wrap .list .detail .textbox .title_box {
	padding: 0.12rem 0;
}

@media screen and (max-width: 599px) {
	#feature .feature_list_wrap .list .detail .textbox .title_box {
		width: 100%;
	}
}

#feature .feature_list_wrap .list .detail .textbox .title_box .sub_title {
	font-size: 0.18rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #1c3e75;
}

@media screen and (max-width: 599px) {
	#feature .feature_list_wrap .list .detail .textbox .title_box .sub_title {
		font-size: 0.14rem;
	}
}

#feature .feature_list_wrap .list .detail .textbox .title_box .title {
	font-size: 0.24rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #1c3e75;
	line-height: 1.41;
}

@media screen and (max-width: 599px) {
	#feature .feature_list_wrap .list .detail .textbox .title_box .title {
		font-size: 0.20rem;
		line-height: 1.40;
	}
}

#feature .feature_list_wrap .list .detail.full .textbox .title_box .title {
	padding: 0.10rem 0;
}

#feature .feature_list_wrap .list .detail .textbox .text {
	font-size: 0.15rem;
	line-height: 1.86;
	letter-spacing: 0.05em;
	text-align: justify;
}

@media screen and (max-width: 599px) {
	#feature .feature_list_wrap .list .detail .textbox .text {
		width: calc(100% - 0.95rem);
		font-size: 0.13rem;
	}

	#feature .feature_list_wrap .list .detail.full .textbox .text {
		width: 100%;
		font-size: 0.14rem;
	}
}

#feature .feature_list_wrap .list .detail .textbox .point_wrap {
	padding: 0.06rem 0;
}

@media screen and (max-width: 599px) {
	#feature .feature_list_wrap .list .detail .textbox .point_wrap {
		padding: 0.10rem 0 0;
	}
}

#feature .feature_list_wrap .list .detail .textbox .point_wrap .point_list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	line-height: 1.45;
}

@media screen and (max-width: 599px) {
	#feature .feature_list_wrap .list .detail .textbox .point_wrap .point_list {
		align-items: baseline;
	}
}

#feature .feature_list_wrap .list .detail .textbox .point_wrap .point_list .point_title {
	width: 1.30rem;
	font-family: 'Poppins', sans-serif;
	font-size: 0.22rem;
	font-weight: 700;
	color: #f15a24;
}

@media screen and (max-width: 599px) {
	#feature .feature_list_wrap .list .detail .textbox .point_wrap .point_list .point_title {
		width: 1.05rem;
		font-size: 0.19rem;
	}
}

#feature .feature_list_wrap .list .detail .textbox .point_wrap .point_list .point_title span::before {
	content: "";
	width: 0.26rem;
	height: 0.18rem;
	display: inline-block;
	background-image: url(../img/feature_list_icon.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
}

@media screen and (max-width: 599px) {
	#feature .feature_list_wrap .list .detail .textbox .point_wrap .point_list .point_title span::before {
		width: 0.20rem;
		height: 0.14rem;
	}
}

#feature .feature_list_wrap .list .detail .textbox .point_wrap .point_list .point_text {
	width: calc(100% - 1.30rem);
	font-size: 0.15rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
	#feature .feature_list_wrap .list .detail .textbox .point_wrap .point_list .point_text {
		width: calc(100% - 1.05rem);
		font-size: 0.14rem;
		padding-bottom: 0.10rem;
		position: relative;
		top: -0.02rem;
	}
}


/*============================
ご利用をいただくまでの流れ
============================*/
#flow {
	padding: 0.80rem 0;
	background-color: #eaf9fd;
	background-image: url(../img/price_bg.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: relative;
}

@media screen and (max-width: 599px) {
	#flow {
		padding: 0.40rem 0;
	}
}

@media screen and (max-width: 599px) {
	#flow .sec_title {
		line-height: 2;
	}
}

#flow .flow_wrap {
	max-width: 10.00rem;
	margin: auto;
}

#flow .flow_wrap .flow_box {
	position: relative;
	background-color: #33c8e7;
	margin-bottom: 0.45rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .flow_box {
		margin-bottom: 0.36rem;
	}
}

#flow .flow_wrap .flow_box:last-child {
	background-color: #1c3e75;
}

#flow .flow_wrap .flow_box::before {
	content: "";
	width: 6.20rem;
	height: calc(100% - 2px);
	background-color: #FFF;
	position: absolute;
	right: 1px;
	top: 1px;
	z-index: 0;
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .flow_box::before {
		content: none;
	}
}

#flow .flow_wrap .flow_box::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.20rem 0.25rem 0 0.25rem;
	border-color: #ffe732 transparent transparent transparent;
	position: absolute;
	left: 50%;
	bottom: -0.32rem;
	transform: translateX(-50%);
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .flow_box::after {
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0.14rem 0.175rem 0 0.175rem;
		border-color: #ffe732 transparent transparent transparent;
		position: absolute;
		left: 50%;
		bottom: -0.25rem;
		transform: translateX(-50%);
	}
}

#flow .flow_wrap .flow_box:last-child::after {
	content: none;
}

#flow .flow_wrap .flow_box .flow_num {
	width: 1.00rem;
	text-align: center;
	position: relative;
	font-family: 'Poppins', sans-serif;
	color: #FFF;
	font-size: 0.40rem;
	letter-spacing: 0.05em;
	padding: 0.15rem 0;
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .flow_box .flow_num {
		width: 0.65rem;
		font-size: 0.27rem;
		padding: 0.10rem 0;
	}
}

#flow .flow_wrap .flow_box .flow_num span {
	display: block;
	font-size: 0.18rem;
	font-weight: 600;
	padding-bottom: 0.10rem;
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .flow_box .flow_num span {
		font-size: 0.12rem;
		padding-bottom: 0.06rem;
	}
}

#flow .flow_wrap .flow_box .flow_num::after {
	content: "";
	width: 1px;
	height: calc(100% - 0.40rem);
	background-color: #FFF;
	position: absolute;
	top: 0.20rem;
	right: 0;
	z-index: 1;
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .flow_box .flow_num::after {
		height: calc(100% - 0.20rem);
		top: 0.10rem;
	}
}

#flow .flow_wrap .flow_box .flow_title {
	width: 2.70rem;
	font-size: 0.26rem;
	font-weight: 700;
	letter-spacing: 0;
	color: #FFF;
	padding-left: 0.25rem;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .flow_box .flow_title {
		width: calc(100% - 0.65rem);
		font-size: 0.20rem;
		padding-left: 0.20rem;
		letter-spacing: 0.05em;
	}
}

#flow .flow_wrap .flow_box .flow_text {
	width: 6.20rem;
	box-sizing: border-box;
	padding: 0.05rem 0.20rem 0.10rem;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .flow_box .flow_text {
		width: 100%;
		background-color: #FFF;
		border: 1px solid #33c8e7;
		padding: 0.10rem;
	}

	#flow .flow_wrap .flow_box:last-child .flow_text {
		border: 1px solid #1c3e75;
	}
}

#flow .flow_wrap .flow_box .flow_text .text {
	font-size: 0.16rem;
	line-height: 1.81;
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .flow_box .flow_text .text {
		font-size: 0.14rem;
		line-height: 1.78;
	}
}

#flow .flow_wrap .flow_box .flow_text .list .text {
	font-size: 0.13rem;
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .flow_box .flow_text .list .text {
		font-size: 0.12rem;
		text-indent: -0.12rem;
		margin-left: 0.12rem;
	}
}

/* 料金プラン */
#flow .price_wrap {
	max-width: 10.00rem;
	margin: auto;
	background-image: url(../img/stripe_bg.png);
	background-size: auto 0.63rem;
	position: relative;
}

@media screen and (max-width: 599px) {
	#flow .price_wrap {
		background-size: auto 0.36rem;
	}
}

#flow .price_wrap::before {
	content: "";
	width: calc(100% - 0.20rem);
	height: calc(100% - 0.20rem);
	background-color: #FFF;
	position: absolute;
	left: 0.10rem;
	top: 0.10rem;
	z-index: 0;
}

#flow .price_in {
	position: relative;
	z-index: 1;
	padding: 0.60rem;
	text-align: center;
}

@media screen and (max-width: 599px) {
	#flow .price_in {
		padding: 0.30rem;
	}
}


#flow .price_in .price_title {
	font-size: 0.40rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #1c3e75;
	padding-bottom: 0.20rem;
}

@media screen and (max-width: 599px) {
	#flow .price_in .price_title {
		font-size: 0.24rem;
		padding-bottom: 0.15rem;
	}
}

#flow .price_in .price_box {
	padding-bottom: 0.50rem;
}

@media screen and (max-width: 599px) {
	#flow .price_in .price_box {
		padding-bottom: 0.30rem;
	}
}

#flow .price_in .price_box:last-child {
	padding-bottom: 0;
}

#flow .price_in .price_box .title_wrap {
	border-top: 2px solid #1c3e75;
	border-bottom: 2px solid #1c3e75;
	padding: 0.20rem 0;
	margin-bottom: 0.20rem;
}

@media screen and (max-width: 599px) {
	#flow .price_in .price_box .title_wrap {
		padding: 0.10rem 0 0.05rem;
		margin-bottom: 0.10rem;
	}
}

#flow .price_in .price_box .title_wrap .title {
	font-size: 0.30rem;
	font-weight: 700;
	color: #1c3e75;
	letter-spacing: 0.05em;
	padding-bottom: 0.15rem;
}

@media screen and (max-width: 599px) {
	#flow .price_in .price_box .title_wrap .title {
		font-size: 0.20rem;
		padding-bottom: 0.10rem;
	}
}

#flow .price_in .price_box .title_wrap .icon_wrap {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#flow .price_in .price_box .title_wrap .icon_wrap .icon_text {
	font-size: 0.16rem;
	font-weight: 700;
	color: #FFF;
	letter-spacing: 0.05em;
	width: 1.80rem;
	border-radius: 0.05rem;
	line-height: 0;
	padding: 0.14rem 0 0.16rem;
	margin: 0 0.05rem;
}

@media screen and (max-width: 599px) {
	#flow .price_in .price_box .title_wrap .icon_wrap .icon_text {
		font-size: 0.12rem;
		width: 1.20rem;
		border-radius: 0.03rem;
		padding: 0.12rem 0 0.14rem;
		margin: 0 0.05rem 0.05rem;
	}
}

#flow .price_in .price_box .title_wrap .icon_wrap .type01 {
	background-color: #1c3e75;
}

#flow .price_in .price_box .title_wrap .icon_wrap .type02 {
	background-color: #fbb03b;
}

#flow .price_in .price_box .title_wrap .icon_wrap .type03 {
	background-color: #33c8e7;
}

#flow .price_in .price_box .text {
	font-size: 0.18rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
	#flow .price_in .price_box .text {
		font-size: 0.14rem;
		line-height: 1.64;
	}
}

#flow .price_in .price_box .price_img {
	padding: 0.20rem 0;
	max-width: 7.60rem;
	margin: auto;
}

@media screen and (max-width: 599px) {
	#flow .price_in .price_box .price_img {
		padding: 0.10rem 0;
	}
}

#flow .price_in .price_box .list .text {
	font-size: 0.13rem;
	line-height: 1.53;
}

@media screen and (max-width: 599px) {
	#flow .price_in .price_box .list .text {
		font-size: 0.12rem;
		text-indent: -0.12rem;
		margin-left: 0.12rem;
		text-align: left;
		padding-bottom: 0.08rem;
	}
}


/*============================
主な機能
============================*/
#function {
	padding-top: 0.80rem;
}

@media screen and (max-width: 599px) {
	#function {
		padding-top: 0.40rem;
	}
}

#function .function_wrap {
	padding: 0.20rem 0 0.50rem;
	width: 100%;
	max-width: 10.00rem;
	margin: auto;
}

@media screen and (max-width: 599px) {
	#function .function_wrap {
		padding: 0.10rem 0 0.25rem;
	}
}

/* タイトル */
#function .function_wrap .title {
	font-size: 0.24rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 0.15rem;
	position: relative;
	color: #FFF;
}

@media screen and (max-width: 599px) {
	#function .function_wrap .title {
		font-size: 0.18rem;
		padding: 0.12rem;
	}
}

@media screen and (max-width: 599px) {
	#function .function_wrap .title::before {
		content: "";
		width: 0.16rem;
		height: 0.02rem;
		background-color: #FFF;
		position: absolute;
		right: 0.15rem;
		top: 50%;
		transform: translateY(-50%);
	}

	#function .function_wrap .title::after {
		content: "";
		width: 0.02rem;
		height: 0.16rem;
		background-color: #FFF;
		position: absolute;
		right: 0.22rem;
		top: 50%;
		transform: translateY(-50%);
		transition: all 0.3s;
	}

	#function .function_wrap .title.open::after {
		transform: translateY(-50%) rotate(-90deg);
	}
}

#function .function_wrap .title span {
	font-family: 'Poppins', sans-serif;
	font-size: 0.14rem;
	font-weight: 500;
	opacity: 0.6;
	display: inline-block;
	padding-left: 0.10rem;
	position: relative;
	top: -0.04rem;
}

@media screen and (max-width: 599px) {
	#function .function_wrap .title span {
		font-size: 0.12rem;
		top: -0.02rem;
	}
}

#function .function_wrap.teacher .title {
	background-color: #1c3e75;
}

#function .function_wrap.student .title {
	background-color: #00a99d;
}

#function .function_wrap .list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1px;
}

@media screen and (max-width: 599px) {
	#function .function_wrap .list {
		display: none;
	}
}

#function .function_wrap .list .detail {
	background-color: #F2F2F2;
	border: 1px solid #FFF;
	width: calc(100% / 3);
	box-sizing: border-box;
	padding: 0.20rem;
}

@media screen and (max-width: 599px) {
	#function .function_wrap .list .detail {
		width: 100%;
	}
}

#function .function_wrap .list .detail .icon_wrap {
	display: flex;
	align-items: center;
	padding-bottom: 0.15rem;
}

#function .function_wrap .list .detail .icon_wrap .icon img {
	width: auto;
	height: 0.40rem;
	display: block;
}

#function .function_wrap .list .detail .icon_wrap .function_title {
	padding-left: 0.10rem;
	font-size: 0.18rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

#function .function_wrap.teacher .list .detail .icon_wrap .function_title {
	color: #1c3e75;
}

#function .function_wrap.student .list .detail .icon_wrap .function_title {
	color: #00a99d;
}

#function .function_wrap .list .detail .text {
	font-size: 0.135rem;
	letter-spacing: 0.03em;
	line-height: 1.86;
	text-align: justify;
}

#function .function_wrap .list .detail .small_text {
	font-size: 0.12rem;
	font-weight: 700;
	padding-top: 0.06rem;
}

/*============================
よくある質問
============================*/
#faq {
	padding: 0.80rem 0;
}

@media screen and (max-width: 599px) {
	#faq {
		padding: 0.40rem 0;
	}
}

#faq .faq_box {
	padding-top: 0.30rem;
	width: 100%;
	max-width: 10.00rem;
	margin: auto;
}

@media screen and (max-width: 599px) {
	#faq .faq_box {
		padding-top: 0;
		padding-bottom: 0.20rem;
	}
}

#faq .faq_box .faq_title {
	background-color: #33c8e7;
	padding: 0.15rem;
	color: #FFF;
	font-size: 0.20rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 2px;
	position: relative;
	cursor: pointer;
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	#faq .faq_box .faq_title {
		padding: 0.11rem 0.30rem 0.13rem 0.34rem;
		font-size: 0.16rem;
		line-height: 1.25;
	}
}

#faq .faq_box .faq_title:hover {
	opacity: 0.7;
}

/* アコーディオン用のアイコン */
#faq .faq_box .faq_title::before {
	content: "";
	width: 0.16rem;
	height: 0.02rem;
	background-color: #FFF;
	position: absolute;
	right: 0.15rem;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 599px) {
	#faq .faq_box .faq_title::before {
		width: 0.14rem;
	}
}

#faq .faq_box .faq_title::after {
	content: "";
	width: 0.02rem;
	height: 0.16rem;
	background-color: #FFF;
	position: absolute;
	right: 0.22rem;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	#faq .faq_box .faq_title::after {
		height: 0.14rem;
		right: 0.21rem;
	}
}

#faq .faq_box .faq_title.open::after {
	transform: translateY(-50%) rotate(-90deg);
}

#faq .faq_box .faq_title span::before {
	content: "Q.";
	display: inline-block;
	padding-right: 0.06rem;
}

@media screen and (max-width: 599px) {
	#faq .faq_box .faq_title span::before {
		font-weight: 400;
		position: absolute;
		top: 0.10rem;
		left: 0.12rem;
	}
}

#faq .faq_box .faq_text {
	background-color: #F2F2F2;
	padding: 0.20rem;
	padding-left: 0.45rem;
	display: none;
}

@media screen and (max-width: 599px) {
	#faq .faq_box .faq_text {
		padding: 0.10rem;
		padding-left: 0.35rem;
	}
}

#faq .faq_box .faq_text .text {
	font-size: 0.16rem;
	line-height: 1.85;
	letter-spacing: 0.05em;
	position: relative;
}

@media screen and (max-width: 599px) {
	#faq .faq_box .faq_text .text {
		font-size: 0.14rem;
		line-height: 1.78;
	}
}

#faq .faq_box .faq_text .text::before {
	content: "A.";
	color: #33c8e7;
	position: absolute;
	left: -0.28rem;
	top: -0.01rem;
	font-size: 0.18rem;
}

@media screen and (max-width: 599px) {
	#faq .faq_box .faq_text .text::before {
		left: -0.21rem;
		font-size: 0.16rem;
	}
}

#faq .faq_box.open .faq_text {
	display: block;
}

/*============================
お問い合わせ
============================*/
#contact {
	padding: 1.00rem 0;
	background-image: url(../img/contact_bg.jpg);
	background-position: center center;
	background-size: cover;
}

@media screen and (max-width: 599px) {
	#contact {
		padding: 0.20rem;
	}
}

#contact .in {
	background-color: #FFF;
	border-radius: 0.10rem;
	padding: 0.80rem 0.40rem;
}

@media screen and (max-width: 599px) {
	#contact .in {
		padding: 0.30rem 0.20rem;
	}
}

#contact .contact_form {
	width: 100%;
	max-width: 10.00rem;
	margin: auto;
}

#contact .contact_form table {
	width: 100%;
}

#contact .contact_form table.policy_check {
	width: auto;
	margin: auto;
}

#contact .contact_form table.policy_check td {
	width: 3.00rem;
}

#contact .contact_form th {
	width: 3.00rem;
	text-align: left;
	font-size: 0.18rem;
	font-weight: 700;
	position: relative;
	vertical-align: top;
	line-height: 1.85;
	padding-bottom: 0.20rem;
}

@media screen and (max-width: 599px) {
	#contact .contact_form th {
		width: 100%;
		display: block;
		border-bottom: 1px solid #111;
		font-size: 0.16rem;
		padding-bottom: 0.05rem;
	}
}

/* 必須アイコン */
#contact .contact_form th.required::after {
	content: "必須";
	font-size: 0.12rem;
	font-weight: 500;
	color: #FFF;
	background-color: #c1272d;
	line-height: 1;
	padding: 0.04rem 0.08rem;
	position: absolute;
	right: 0.15rem;
	top: 0.08rem;
}

@media screen and (max-width: 599px) {
	#contact .contact_form th.required::after {
		content: "必須";
		font-size: 0.10rem;
		font-weight: 500;
		color: #FFF;
		background-color: #c1272d;
		line-height: 1;
		padding: 0.02rem 0.04rem 0.04rem;
		position: absolute;
		right: 0;
		top: 0.06rem;
	}
}

#contact .contact_form th a {
	color: #33c8e7;
}

#contact .contact_form th a:hover {
	text-decoration: none;
}

#contact .contact_form td {
	font-size: 0.18rem;
	line-height: 1.85;
	padding-bottom: 0.20rem;
}

@media screen and (max-width: 599px) {
	#contact .contact_form td {
		width: 100%;
		display: block;
		font-size: 0.15rem;
		line-height: 1.5;
		padding-top: 0.10rem;
	}

	#contact .contact_form td label {
		display: flex;
		align-items: baseline;
	}

	#contact .contact_form td .list .text {
		padding-bottom: 0.10rem;
	}
}

#contact .contact_form td input[type='radio'] {
	position: relative;
	top: -0.02rem;
}

@media screen and (max-width: 599px) {
	#contact .contact_form td input[type='radio'] {
		top: 0.01rem;
	}
}

#contact .contact_form td input[type='text'] {
	border: 1px solid #CCC;
	border-radius: 0.04rem;
	padding: 0.04rem;
	font-size: 0.16rem;
	box-sizing: border-box;
	background-color: #FFF;
}

#contact .contact_form td .w100 {
	width: 100%;
}

#contact .contact_form td span {
	display: inline-block;
	padding-left: 0.06rem;
}

#contact .contact_form td .ERR {
	color: #c1272d;
	padding-left: 0;
}

#contact .contact_form td textarea {
	width: 100%;
	min-height: 2.00rem;
	border: 1px solid #CCC;
	border-radius: 0.04rem;
	padding: 0.04rem;
	font-size: 0.16rem;
	box-sizing: border-box;
	background-color: #FFF;
	line-height: 1.75;
}

@media screen and (max-width: 599px) {
	#contact .contact_form td textarea {
		min-height: 1.85rem;
	}
}

/* プライバシーポリシー */
#contact .contact_form .policy_wrap {
	border: 1px solid #CCC;
	padding: 0.25rem;
	height: 2.00rem;
	overflow: hidden;
	overflow-y: scroll;
	margin-bottom: 0.30rem;
}

@media screen and (max-width: 599px) {
	#contact .contact_form .policy_wrap {
		padding: 0.20rem;
		height: 1.50rem;
	}
}

#contact .contact_form .policy_wrap .policy_title {
	font-size: 0.20rem;
	font-weight: 700;
	padding-bottom: 0.10rem;
	border-bottom: 1px solid #111;
	margin-bottom: 0.15rem;
}

@media screen and (max-width: 599px) {
	#contact .contact_form .policy_wrap .policy_title {
		font-size: 0.18rem;
		margin-bottom: 0.10rem;
	}
}

#contact .contact_form .policy_wrap .text {
	font-size: 0.14rem;
	line-height: 2;
	letter-spacing: 0.02em;
	text-align: justify;
}

@media screen and (max-width: 599px) {
	#contact .contact_form .policy_wrap .text {
		font-size: 0.13rem;
		line-height: 1.83;
	}
}

#contact .contact_form .policy_wrap .policy_sub_title {
	font-size: 0.18rem;
	font-weight: 700;
	padding-bottom: 0.10rem;
	margin-top: 0.30rem;
}

@media screen and (max-width: 599px) {
	#contact .contact_form .policy_wrap .policy_sub_title {
		font-size: 0.16rem;
		margin-top: 0.30rem;
	}
}

#contact .submit_btn {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding-top: 0.20rem;
}

#contact .submit_btn .text {
	width: 100%;
	text-align: center;
	padding-bottom: 0.15rem;
	font-size: 0.16rem;
	line-height: 1.75;
}

@media screen and (max-width: 599px) {
	#contact .submit_btn .text {
		font-size: 0.14rem;
		text-align: left;
	}
}

#contact .submit_btn .btn {
	width: 100%;
	max-width: 3.50rem;
	padding: 0.10rem;
}

@media screen and (max-width: 599px) {
	#contact .submit_btn .btn {
		max-width: 100%;
		box-sizing: border-box;
		padding: 0.10rem 0;
	}
}

#contact .submit_btn .btn .submit {
	display: block;
	border: 0;
	border-radius: 0.10rem;
	text-align: center;
	font-size: 0.20rem;
	font-weight: 700;
	color: #FFF;
	transition: all 0.3s;
	cursor: pointer;
	background-color: #29abe2;
	position: relative;
	width: 100%;
	line-height: 0;
	padding: 0.29rem 0 0.31rem;
}

@media screen and (max-width: 599px) {
	#contact .submit_btn .btn .submit {
		font-size: 0.16rem;
		padding: 0.22rem 0 0.24rem;
		appearance: none;
		-webkit-appearance: none;
	}
}

#contact .submit_btn .btn .submit:hover {
	opacity: 0.7;
}

#contact .submit_btn .btn .submit::after {
	content: "";
	width: 0.16rem;
	height: 0.10rem;
	background-image: url(../img/link_arrow_white.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 0.15rem;
	top: 50%;
	transform: translateY(-50%);
}

#contact .submit_btn .btn .reset {
	display: block;
	border: 0;
	border-radius: 0.10rem;
	text-align: center;
	font-size: 0.20rem;
	font-weight: 700;
	color: #FFF;
	transition: all 0.3s;
	cursor: pointer;
	background-color: #999;
	position: relative;
	width: 100%;
	line-height: 0;
	padding: 0.29rem 0 0.31rem;
}

@media screen and (max-width: 599px) {
	#contact .submit_btn .btn .reset {
		font-size: 0.16rem;
		padding: 0.22rem 0 0.24rem;
		appearance: none;
		-webkit-appearance: none;
	}
}

#contact .submit_btn .btn .reset:hover {
	opacity: 0.7;
}

/* 送信完了 */
#contact .thanks_text {
	text-align: center;
	padding: 0.30rem 0 0.50rem;
	font-size: 0.16rem;
	line-height: 2;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
	#contact .thanks_text {
		text-align: left;
		padding: 0 0 0.50rem;
		font-size: 0.15rem;
	}
}

#contact .back_btn {
	width: 100%;
	max-width: 3.50rem;
	margin: auto;
}

#contact .back_btn a {
	display: block;
	font-size: 0.20rem;
	letter-spacing: 0.10em;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	line-height: 0;
	background-color: #1c3e75;
	padding: 0.29rem 0 0.31rem;
	position: relative;
	border-radius: 0.10rem;
	color: #FFF;
}

@media screen and (max-width: 599px) {
	#contact .back_btn a {
		font-size: 0.16rem;
		padding: 0.22rem 0 0.26rem;
	}
}

#contact .back_btn a:hover {
	background-color: #29abe2;
}

#contact .back_btn a::before {
	content: "";
	width: 0.30rem;
	height: 0.10rem;
	position: absolute;
	left: 0.15rem;
	top: 48%;
	transform: translateY(-50%);
	background-image: url(../img/link_arrow_white_rev.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all 0.3s;
}

#contact .back_btn a:hover::before {
	left: 0.10rem;
}

/*============================
運営会社
============================*/
.glance_wrap {
	padding: 0.40rem 0;
	text-align: center;
}

@media screen and (max-width: 599px) {
	.glance_wrap {
		padding: 0.30rem 0;
	}
}

.glance_wrap .text {
	font-size: 0.18rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding-bottom: 0.15rem;
}

@media screen and (max-width: 599px) {
	.glance_wrap .text {
		font-size: 0.15rem;
		padding-bottom: 0.10rem;
	}
}

.glance_wrap .logo {
	max-width: 2.30rem;
	margin: auto;
}

@media screen and (max-width: 599px) {
	.glance_wrap .logo {
		max-width: 1.80rem;
	}
}

.glance_wrap .logo a:hover {
	opacity: 0.5;
}


/*============================
フッター
============================*/
footer {
	background-color: #F2F2F2;
	position: relative;
	padding: 0.60rem 0;
}

@media screen and (max-width: 599px) {
	footer {
		padding: 0.30rem 0 0;
	}
}

footer .address_wrap {
	padding-bottom: 0.25rem;
	display: flex;
	align-items: center;
}

@media screen and (max-width: 599px) {
	footer .address_wrap {
		display: block;
	}
}

footer .address_wrap .logo {
	width: 2.20rem;
	padding-right: 0.20rem;
}

@media screen and (max-width: 599px) {
	footer .address_wrap .logo {
		width: 2.00rem;
		padding-right: 0;
		padding-bottom: 0.20rem;
		margin: auto;
	}
}

footer .address_wrap .address {
	font-size: 0.14rem;
	line-height: 1.71;
}

@media screen and (max-width: 599px) {
	footer .address_wrap .address {
		font-size: 0.13rem;
		text-align: center;
	}
}

footer .copyright {
	font-family: 'Poppins', sans-serif;
	font-size: 0.12rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
	footer .copyright {
		font-size: 0.10rem;
		padding-bottom: 0.30rem;
		text-align: center;
	}
}

footer .footer_ph {
	width: 48%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	background-image: url(../img/footer_ph_pc.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media screen and (max-width: 599px) {
	footer .footer_ph {
		width: 100%;
		height: 1.20rem;
		position: relative;
		right: 0;
		top: 0;
		z-index: 1;
		background-image: url(../img/footer_ph_sp.jpg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
	}
}
