@charset "utf-8";
/*==================================================
	【サブ】ページ固有のスタイル
==================================================*/
#route .bg::before {
	background: url("../img/bg.jpg") repeat-y center center / 100% auto;
}
#route .box {
	padding: 15px;
	background: #fefefe;
	border: 2px solid #f4f4f4;
	border-radius: 20px;
}
#route .box .in {
	background: #f5f5f5;
	border-radius: 20px;
}
#route .bg .box {
	background: rgba(255,255,255,0.5);
	border-color: #fff;
}
#route .bg .box .in {
	background: #fff;
}
#route .box+.box {
	margin-top: 30px;
}
#route .box p:last-child {
	margin-bottom: 0;
}
#route .box a {
	color: var(--color-secondary);
	text-decoration: underline;
}
#route .box a:hover {
	text-decoration: none;
}
#route .box ul {
	margin-left: 1.5em;
	list-style: disc;
}
#route .box_flex+p {
	margin-top: 1.5em;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	body {
		font-size: 100%;
	}
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#route .box .logo {
		width: 36%;
	}
	#route .box .txt {
		width: 60%;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#route .box {
		padding: 8px;
	}
	#route .box+.box {
		margin-top: 20px;
	}
}
/*--------------------------------------------------
  FAQ
--------------------------------------------------*/
#faq dl {
	border: 1px solid #eee;
}
#faq dl+dl {
	margin-top: 20px;
}
#faq dt,
#faq dd {
	position: relative;
	padding: 15px 20px;
	padding-left: 80px;
	background: #fff;
}
#faq dt::before,
#faq dd::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 100%;
	background: var(--color-primary);
	color: #fff;
	font-size: 35px;
	font-weight: 500;
	font-family: var(--font-sans);
	content: "Q";
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
	justify-content: center;
}
#faq dd::before {
	background: var(--color-secondary);
	content: "A";
}
#faq dt {
	border-bottom: 1px solid #ddd;
	font-size: 110%;
	font-weight: bold;
}
@media only screen and (max-width: 640px){ /* スマホ */
	#faq dt,
	#faq dd {
		padding: 15px;
		padding-left: 55px;
	}
	#faq dt::before,
	#faq dd::before {
		width: 40px;
		font-size: 25px;
	}
}
/*--------------------------------------------------
  コーチ
--------------------------------------------------*/
#coach .box {
	background: rgba(0,45,92,0.8);
	border: none;
}
#coach .box .in {
	background: var(--color-primary);
	border: 1px solid #fff;
	color: #fff;
}
#coach .msg {
	padding: 10px 35px;
	background: rgba(255,255,255,0.2);
	border-radius: 999px;
	font-size: 125%;
	font-weight: bold;
	line-height: 1.5;
}
#coach dl {
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255,255,255,0.4);
}
#coach dl+dl {
	margin-top: 15px;
}
#coach dt {
	font-weight: bold;
}
#coach dd table th {
	padding-right: 1em;
	white-space: nowrap;
	vertical-align: top;
}
#coach dd ul {
	line-height: 1.5;
}
#coach dd ul li+li {
	margin-top: 0.2em;
}
#coach dd ul li span {
	display: inline-block;
	vertical-align: top;
}
#coach dd ul li span:first-child {
	width: 7em;
}
#coach .list_assi {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(3, 31%);
	gap: 0.3em 0;
}
/*名前のみ＿アドバイザリーコーチ*/
#coach .box .only_name {
	align-items: center;
	justify-content: flex-start;
}
#coach .box .only_name h4 {
	margin-bottom: 0;
}
#coach .box .only_name p {
	font-weight: 600;
	font-size: 30px;
	padding-left: 4rem;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#coach .box .photo {
		width: 22%;
	}
	#coach .box .txt {
		width: 72%;
	}
	#coach .box h4+ul {
		width: calc(100% - 350px);
	}
	#coach dl {
		/* フレックス */
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#coach dd {
		width: calc(100% - 6em);
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#coach .box .only_name p {
		font-size: 25px;
	}
	#coach .assistant {
		display: block;
	}
	#coach .box .assistant h4+ul {
		width: 100%;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#coach h4 {
		text-align: center;
	}
	#coach .box .photo {
		width: 60%;
		margin: 0 auto 15px;
	}
	#coach .msg {
		padding: 10px 15px;
		border-radius: 10px;
		font-size: 115%;
	}
	#coach dd ul li span {
		display: block;
	}
	#coach .box .only_name p {
		text-align: center;
		font-size: 20px;
		padding-left: 0;
	}
	#coach .list_assi {
		grid-template-columns: repeat(2, 40%);
	}
}