@charset "utf-8";
* {
	margin: 0px;
	padding: 0px;
	list-style: none;
	font-family: "Zen Kaku Gothic New", serif;
	-webkit-appearance: none;
	box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, input, textarea {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: normal;
	vertical-align:baseline;
}
article, footer, aside, figure, figcaption, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
	list-style-type: none;
}

body {
	width: 100%;
	font-size: 19px;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	color: #000;
	line-height: 1;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
a {
	text-decoration: none;
	color: #000;
	outline: none;
	transition: all 0.3s ease;
}
a img {
	transition: all 0.3s ease;
}
a:hover ,
a:hover img {
	opacity: 0.8;
}
a:focus {
	outline: none;
}
a img {
	border: none;
}
img {
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 860px) {
	body {
		min-width: 100%;
	}
}

.first_view {
	position: relative;
}

.top_visual {
	width: 100%;
}
.top_visual img {
	width: 100%;
	display: block;
}

@media screen and (min-width: 861px) {
	.section_recommend {
		background: url("../img/bg_01.png") no-repeat;
		background-size: 100%;
	}
	.section_choose {
		background: url("../img/bg_02.png") no-repeat;
		background-size: 100%;
	}
	.section_info {
		background: url("../img/bg_03.png") no-repeat;
		background-size: 100%;
	}
}

h2 {
	font-family: "Zen Kaku Gothic Antique", serif;
	font-size: 46px;
	font-weight: 900;
	color: #1D4899;
	text-align: center;
	margin-bottom: 60px;
}
h2 span {
	padding-top: 60px;
	display: block;
}

.tab_area {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto 14px;
	display: flex;
	justify-content: space-between;
	cursor: pointer;
}
.tab_area .tab {
	width: 48%;
	font-family: "Zen Kaku Gothic Antique", serif;
	font-size: 36px;
	font-weight: 700;
	color: #1C4899;
	background-color: #fff;
	text-align: center;
	border-width: 4px;
	border-style: solid solid none solid;
	border-color: #1C4899;
	border-radius: 10px 10px 0 0;
	padding: 24px 0;
	display: flex;
	justify-content: center;
}
.tab.active {
	color: #fff;
	background-color: #1C4899;
	position: relative;
}
.tab.active::after {
	content: "";
	width: calc(100% + 8px);
	height: 14px;
	background-color: #1C4899;
	position: absolute;
	left: -4px;
	bottom: -14px;
}
.panel_area {
	color: #fff;
	background-color: #1C4899;
	padding: 66px 0 90px;
}
.panel {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	display: none;
	opacity: 0;
}
.panel.active {
	display: block;
	animation-name: fadeIn;
	animation-fill-mode: forwards;
	animation-duration: 1s;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.section_recommend .panel_area h3 {
	font-family: "Zen Kaku Gothic Antique", serif;
	font-weight: 900;
	font-size: 50px;
	text-align: center;
	margin-bottom: 45px;
}
.panel_flex {
	display: flex;
}
.recommend_txt * {
	font-family: "Zen Kaku Gothic Antique", serif;
}
.recommend_txt {
	margin-left: 80px;
}
.recommend_txt .txt_under {
	text-decoration: underline;
}
.recommend_txt .point_txt li {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 22px;
}
.recommend_txt .point_txt li span {
	color: #73D9EA;
}

.btn_wrap a {
	display: block;
	position: relative;
}

.btn_wrap img {
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.4));
}
.recommend_txt .btn_wrap {
	margin-top: 50px;
}
.recommend_txt .btn_wrap li:first-child {
	margin-bottom: 14px;
}
.check_wrap {
	margin-top: 40px;
}
.check_wrap img {
	filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
}
.br_pc {
	display: block;
}
.br_sp {
	display: none;
}
@media screen and (max-width: 860px) {
	h2 {
		font-size: 20px;
		margin-bottom: 60px;
	}
	h2 span {
		padding-top: 70px;
	}
	h2 span.star {
		margin-bottom: 25px;
		padding-top: 70px;
	}
	.tab_area {
		margin: 0 auto;
	}
	.tab_area .tab {
		width: 49%;
		font-size: 20px;
		padding: 14px 0;
	}
	.tab.active {
		color: #fff;
		background-color: #1C4899;
		position: relative;
	}
	.tab.active::after {
		content: none
	}
	.panel_area {
		padding: 50px 0 20px;
	}
	.section_recommend .panel_area h3 {
		font-size: 20px;
		margin-bottom: 50px;
	}
	.panel_flex {
		justify-content: center;
		flex-wrap: wrap;
	}
	.recommend_txt {
		margin-top: 40px;
		margin-left: 0;
	}
	.recommend_txt p {
		font-size: 17px;
		margin-bottom: 40px;
	}
	.recommend_txt .point_txt li {
		font-size: 24px;
	}
	.btn_wrap {
		text-align: center;
	}
	.recommend_txt .btn_wrap li:first-child {
		margin-bottom: 10px;
	}
	.br_pc {
		display: none;
	}
	.br_sp {
		display: block;
	}
}

@media screen and (max-width: 430px) {
	.recommend_txt .point_txt li {
		font-size: 20px;
	}
}

h2 .icon_hand {
	margin-bottom: 30px;
}
.contents {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}
.choose_wrap {
	margin-top: 100px;
	position: relative;
	z-index: 1;
}
.choose_wrap::after {
	content: "";
	width: 100%;
	height: 85%;
	background-color: #1C4899;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.list_wrap {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto 90px;
	display: flex;
	justify-content: space-between;
}
.list_wrap li {
	width: 31%;
	color: #fff;
}
.list_wrap li div {
	margin-bottom: 48px;
	box-shadow: 0 0 15px rgba(82,191,216,0.4);
	position: relative;
}
.list_wrap li div img {
	width: 100%;
	display: block;
}
.list_wrap li div span {
	width: 86px;
	margin: auto;
	position: absolute;
	top: -45px;
	left: 0;
	right: 0;
}
.list_wrap li h3 {
	font-family: "Zen Kaku Gothic Antique", serif;
	font-size: 30px;
	font-weight: 900;
	text-align: center;
	line-height: 1.4em;
}
.list_wrap li p {
	line-height: 1.8em;
	margin-top: 30px;
}
.white_box {
	text-align: center;
}
.white_box span {
	font-family: "Zen Kaku Gothic Antique", serif;
	font-size: 35px;
	font-weight: 900;
	color: #1C4899;
	background-color: #fff;
	padding: 22px 40px;
	display: inline-block;
	margin-bottom: 80px;
}

@media screen and (max-width: 860px) {
	h2 .icon_hand {
		margin-bottom: 50px;
	}
	.choose_wrap {
		padding-bottom: 70px;
	}
	.choose_wrap::after {
		height: 95%;
	}
	.list_wrap {
		margin: 0 auto;
		display: block;
	}
	.list_wrap li {
		width: 90%;
		margin: 0 auto 80px;
	}
	.list_wrap li div {
		margin-bottom: 48px;
	}
	.white_box span {
		font-size: 20px;
		line-height: 1.2em;
		margin: 0 5%;
		padding: 16px 0;
		display: block;
	}
}

@media screen and (max-width: 430px) {
	.white_box span {
		font-size: 6.5vw;
	}
}

.table_top {
	margin-bottom: -88px;
	position: relative;
	z-index: -1;
}
.table_top img {
	width: 100%;
}
.table_top h2 {
	width: 73.4%;
	margin: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}
.table_bg {
	border-radius: 10px;
	margin: 0 0 15px;
}
.table_wrap table {
	text-align: center;
	border-collapse: collapse;
	white-space: nowrap;
	table-layout: fixed;
	width: 100%;
}
.table_wrap thead th {
	width: 160px;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	background-color: #1C4899;
	border-right: 1px solid #fff;
	padding: 20px 0;
}
.table_wrap thead th:first-child {
	width: 200px;
	border-radius: 5px 0 0 0;
	overflow: hidden;
}
.table_wrap thead th:last-child {
	width: 140px;
	border-right: none;
	border-radius: 0 5px 0 0;
	overflow: hidden;
}
.table_wrap tbody tr {
	border-bottom: 1px solid #1D4899;
}
.table_wrap tbody th {
	font-size: 19px;
	border-right: 1px solid #1D4899;
	padding: 12px;
	background-color: #fff;
}
.table_wrap tbody th p {
	font-weight: 700;
	color: #1C4899;
	margin-top: 6px;
}
.table_wrap tbody th .spacing {
	letter-spacing: -1.4px;
}
.table_wrap tbody th .space {
	margin-top: 2px;
	letter-spacing: -1px;
}
.table_wrap tbody td {
	font-size: 16px;
	color: #000;
	line-height: 1.2em;
	border-left: 1px solid #1D4899;
	vertical-align: top;
	padding: 16px 0 20px;
}

.table_wrap tbody td.mid {
	vertical-align: middle;
}

.table_wrap tbody td:last-child {
	vertical-align: middle;
}
.table_wrap .table_icon {
	margin-bottom: 8px;
}

.table_wrap table p{
	font-size: 16px;
}

@media screen and (max-width: 1100px) and (min-width: 861px) {
	.table_wrap table p,
	.table_wrap table a
	{
		font-size:11px!important;
		line-height: 1.3em!important;
	}
	
	.table_wrap thead th {
		font-size: 13px;
	}
	
	.table_icon img{
		width: 4vw!important;
	}
}

@media screen and (max-width: 860px) {
	.table_top {
		margin-bottom: -68px;
	}
	.table_top h2 {
		width: 90%;
		top: 54%;
	}
	.section_table .panel_area {
		padding: 30px 0 35px;
	}
	.table_bg {
		border-radius: 40px;
		margin: 0;
		padding: 46px 25px 60px;
	}
	.table_wrap thead th {
		width: 100px;
		font-size: 12px;
		padding: 15px 0;
	}
	.table_wrap thead th:first-child {
		width: 160px;
	}
	.table_wrap thead th:last-child {
		width: 130px;
	}
	.table_wrap tbody th {
		font-size: 12px;
		padding: 20px 15px;
	}
	.table_wrap tbody th .space {
		line-height: 1.1em;
	}
	.table_wrap tbody td {
		font-size: 9px;
		padding: 24px 0 18px;
	}
	.table_wrap .table_img {
		width: 80%;
		margin: 0 auto;
	}
	.table_wrap .table_icon {
		width: 30%;
		margin: 0 auto 8px;
	}
	.table_wrap .table_btn {
		width: 50%;
		margin: 0 auto;
	}
	
	.table_wrap table {
		width: 100%;
	}
	
	.table_wrap {
		overflow-x: auto;
		margin-bottom: 15px;
	}
	
	.table_wrap table p{
		font-size: 10px;
		line-height: 1.2em;
	}

}

.table_wrap .table_btn {
	width: 80%;
	margin: 0 auto;
}

.table_wrap .table_btn p{
	font-size: 10px;
	padding-top: 8px;
}

.section_info .panel_area {
	color: #000;
	background-color: transparent;
	padding: 66px 0;
}
.info_bg {
	background-color: #fff;
	margin-bottom: 74px;
	padding: 0 65px 88px;
	box-shadow: 0 0 13px rgba(0,0,0,0.1);
}
.info_wrap {
	margin-bottom: 50px;
}
.info_wrap .info_img img {
	width: 100%;
}
.info_wrap .recommend_txt {
	text-align: center;
	color: #1D4899;
	margin-left: 0;
}
.info_wrap .recommend_txt h3 {
	font-size: 43px;
	font-weight: 900;
	margin: 18px 0 30px;
}
.info_wrap .recommend_txt .line {
	margin-top: 20px;
	margin-bottom: 10px;
}
.line::before {
	content: "";
	width: 100%;
	height: 2px;
	background-color: rgba(29,72,153,0.5);
	border-radius: 50px;
	margin-bottom: 15px;
	display: block;
}
.info_wrap .recommend_txt .line p {
	font-size: 23px;
	font-weight: 900;
	text-align: left;
	line-height: 1.4em;
}
.table_space {
	margin-top: 15px;
}
.section_info .table_wrap th {
	width: 320px !important;
	font-size: 20px;
}
.section_info .table_wrap td {
	font-size: 20px;
	vertical-align: middle;
	padding: 15px 0;
}
.section_info .table_wrap tr td:first-child {
	border-left: none;
}
.point_wrap {
	margin: 25px 0 45px;
}
.point_wrap dl dt {
	color: #fff;
	background-color: #1C4899;
	display: flex;
	justify-content: center;
	align-items: center;
}
.point_wrap dl dd * {
	font-family: "Zen Kaku Gothic Antique", serif;
}
.point_wrap dl dd li:not(:last-child) {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #d7d7d7;
}
.point_wrap dl dd h4 {
	font-size: 32px;
	font-weight: 900;
	color: #1C4899;
	margin-bottom: 18px;
}
.point_wrap dl dd p {
	font-size: 23px;
	font-weight: 700;
	display: inline;
}
.reputation_list {
	margin: 14px 0 50px;
}
.reputation_list li:not(:last-child) {
	margin-bottom: 14px;
}

@media screen and (min-width: 861px) {
	.info_wrap {
		justify-content: space-between;
		align-items: flex-end;
	}
	.info_wrap .info_img {
		width: 38.2%;
		order: 0;
	}
	.info_wrap .recommend_txt {
		width: 58.8%;
		order: 1;
	}
	.info_wrap .recommend_txt h3.h3_space {
		letter-spacing: -3px;
	}
	.point_wrap dl {
		display: flex;
	}
	.point_wrap dl dt {
		width: 130px;
		border-radius: 5px 0 0 5px;
		margin-right: 30px;
	}
	.point_wrap dl dd {
		padding: 14px 0;
	}
	.info_btn {
		display: flex;
		justify-content: center;
	}
	.info_btn .btn_wrap:first-child {
		margin-right: 18px;
	}
}

@media screen and (max-width: 860px) {
	.section_info h2 {
		margin-bottom: 0;
		font-size: 7.5vw;
	}
	.section_info h2 span.star {
		margin-bottom: 30px;
		padding-top: 0;
	}
	.section_info .panel_area {
		padding: 24px 0 10px;
	}
	.info_bg {
		margin-bottom: 40px;
		padding: 0 0 60px;
	}
	.info_wrap .recommend_txt {
		width: 100%;
		margin-top: 0;
	}
	.reco_deco {
		margin-top: -10px;
	}
	.info_wrap .recommend_txt h3 {
		line-height: 1.2em;
		letter-spacing: -2px;
		margin: 20px 0 25px;
	}
	.info_wrap .recommend_txt .line {
		margin-top: 34px;
		margin-bottom: 26px;
	}
	.line::before {
		margin-bottom: 30px;
	}
	.reco_star {
		width: 60%;
		max-width: 225px;
		margin: 0 auto;
	}
	.info_wrap .recommend_txt p {
		margin-bottom: 0;
		padding: 0 10%;
	}
	.info_wrap .info_img {
		width: 90%;
		margin: 0 auto;
	}
	.section_info .table_wrap {
		margin: 0 0 0 10%;
		padding-right: 10%;
	}
	.point_wrap {
		width: 90%;
		margin: 60px auto 50px;
	}
	.point_wrap dl dt {
		width: 210px;
		font-size: 20px;
		margin: 0 auto 50px;
		padding: 22px 0 24px;
	}
	.point_wrap dl dd h4 {
		font-size: 24px;
		margin-bottom: 15px;
	}
	.point_wrap dl dd p {
		font-size: 20px;
		line-height: 2em;
		letter-spacing: 1.2px;
		background-repeat: repeat-y;
		background-size: 100% 1.9em;
		display: block;
	}
	.reputation_ttl {
		width: 90%;
		margin: auto;
	}
	.reputation_list {
		width: 90%;
		margin: 20px auto 40px;
	}
	.reputation_list li:not(:last-child) {
		margin-bottom: 20px;
	}
	.info_btn {
		width: 90%;
		text-align: center;
		margin: auto;
	}
	.info_btn .btn_wrap:first-child {
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 430px) {
	.info_wrap .recommend_txt h3 {
		font-size: 36px;
	}
	.info_wrap .recommend_txt .line p {
		font-size: 20px;
		padding: 0 15px;
	}
	.point_wrap dl dd h4 {
		font-size: 22px;
	}
	.point_wrap dl dd p {
		font-size: 18px;
	}
}

.explanation_wrap {
	background: linear-gradient(180deg, #fff 0%, #fff 50%, #1c4899 50%, #1c4899 100%);
}

.explanation_wrap .list_wrap {
	padding-top: 40px;
}
.explanation_wrap .list_wrap li div {
	margin-bottom: 10px;
}
.explanation_wrap .list_wrap li h3 {
	font-size: 28px;
}
.explanation_bottom::before {
	content: "";
	width: 100%;
	padding-top: 10.5%;
	background-image: url("../img/bg_triangle.png");
	background-size: 100% 50%;
	background-repeat: no-repeat;
	display: block;
}
.explanation_bottom h5 {
	font-family: "Zen Kaku Gothic Antique", serif;
	font-size: 46px;
	font-weight: 900;
	text-align: center;
	line-height: 1.4em;
	color: #1D4899;
}
.explanation_bottom .scroll_img {
	width: 80%;
	margin: 70px auto 0;
	overflow-x: auto;
	overflow-y: hidden;
}
.explanation_bottom .scroll_img div {
	width: 1100px;
	margin: 0 auto;
}

@media screen and (max-width: 860px) {
	.explanation_wrap {
		padding-bottom: 60px;
	}
	.explanation_wrap h2 {
		font-size: 25px;
		margin-bottom: 50px;
	}
	.explanation_wrap h2 span {
		margin-bottom: 20px;
	}
	.explanation_wrap .list_wrap {
		padding-top: 0;
	}
	.explanation_wrap .list_wrap li {
		margin: 0 auto 50px;
	}
	.explanation_bottom {
		margin-bottom: 0;
	}
	.explanation_bottom h5 {
		font-size: 7vw;
		line-height: 1.2em;
	}
	.explanation_bottom .scroll_img {
		margin: 40px auto 0;
	}
	.explanation_bottom .scroll_img div {
		width: 943px;
	}
}

@media screen and (max-width: 430px) {
	.explanation_wrap .list_wrap li h3 {
		font-size: 26px;
	}
}

.section_voice {
	padding-top: 0;
}
.section_voice h2 {
	margin-bottom: 100px;
}
.voice_bg {
	box-shadow: 0 0 6px rgba(0,0,0,0.1);
	border-radius: 10px;
	margin-bottom: 40px;
}
.voice_wrap dt ,
.voice_wrap h3 ,
.voice_wrap h3 span {
	font-family: "Zen Kaku Gothic Antique", serif;
	font-weight: 900;
}
.voice_wrap dt {
	font-size: 47px;
	color: #fff;
	background-color: #1D4899;
	text-align: center;
	border-radius: 10px 10px 0 0;
	padding: 22px 0;
}
.voice_wrap h3 {
	font-size: 42px;
	text-align: center;
	margin-bottom: 12px;
}
.voice_wrap h3::after {
	content: "";
	width: 100%;
	height: 2px;
	background-color: rgba(29,72,153,0.5);
	border-radius: 50px;
	margin-top: 25px;
	display: block;
}
.voice_wrap h3 span {
	font-size: 48px;
	color: #FF4C4B;
	display: block;
}
.voice_wrap h3 span::before {
	content: "";
	width: 83px;
	height: 19px;
	background-image: url("../img/icon_triangle.png");
	background-size: 100%;
	background-repeat: no-repeat;
	margin: 16px auto;
	display: block;
}
.voice_wrap dd {
	background-color: #fff;
	border-radius: 0 0 10px 10px;
	padding: 40px 65px 48px;
}
.voice_wrap dd p {
	font-size: 17px;
	line-height: 1.6em;
}

@media screen and (min-width: 861px) {
	.voice_wrap dd {
		display: flex;
		justify-content: space-between;
	}
	.voice_txt {
		width: 65%;
	}
	.voice_img {
		width: 29%;
	}
}

@media screen and (max-width: 860px) {
	.section_voice {
		background: url("../img/bg_sp_01.png");
		background-size: 100%;
		padding-top: 40px;
		padding-bottom: 70px;
	}
	.section_voice h2 {
		margin-bottom: 45px;
	}
	.section_voice h2 span {
		padding-bottom: 20px;
	}
	.voice_wrap dt {
		font-size: 20px;
		padding: 18px 0;
	}
	.voice_wrap dd {
		padding: 35px 5% 30px;
	}
	.voice_wrap h3 {
		font-size: 22px;
		margin-bottom: 15px;
	}
	.voice_wrap h3::after {
		margin-top: 24px;
	}
	.voice_wrap h3 span {
		font-size: 25px;
	}
	.voice_wrap h3 span::before {
		width: 43px;
		height: 10px;
		margin: 10px auto;
	}
	.voice_wrap dd p {
		font-size: 15px;
		line-height: 1.4em;
	}
	.voice_img {
		text-align: center;
		margin-top: 10px;
	}
}

.section_faq {
	background-image: url("../img/bg_faq.png");
	background-color: #1D4899;
	background-size: 100% auto;
	background-repeat: no-repeat;
	padding-bottom: 170px;
}
.section_faq h2 {
	color: #fff;
	margin-bottom: 100px;
}
.faq_wrap .faq_bg {
	background-color: #fff;
	border-radius: 10px;
}
.faq_wrap .faq_bg:not(:last-child) {
	margin-bottom: 28px;
}
.faq_wrap .faq_bg dt span ,
.faq_wrap .faq_bg dd .faq_en {
	font-family: "Zen Kaku Gothic Antique", serif;
	font-size: 23px;
	font-weight: 700;
	color: #1D4899;
}
.faq_wrap .faq_bg dt {
	padding: 35px 40px;
	position: relative;
	cursor: pointer;
}
.faq_wrap .faq_bg dt::after {
	content: "";
	width: 31px;
	height: 31px;
	background-image: url("../img/icon_faq_arrow.png");
	background-size: 100%;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 7%;
	transform: translateY(-50%) rotate(-180deg);
	transition: all 0.2s ease;
}
.faq_wrap .faq_bg dt p ,
.faq_wrap .faq_bg dd p {
	display: flex;
	align-items: center;
}
.faq_wrap .faq_en {
	margin-right: 6px;
}
.faq_wrap .faq_bg dd {
	background-color: rgba(224,236,240,0.3);
	padding: 25px 40px 35px;
	display: none;
}
.faq_wrap .faq_bg dd p {
	font-family: "Noto Sans JP", serif;
	font-size: 16px;
	font-weight: 600;
}
.faq_wrap .faq_bg dt.faq_active::after {
	transform: translateY(-50%) rotate(0deg);
}

@media screen and (max-width: 860px) {
	.section_faq {
		padding-bottom: 50px;
	}
	.section_faq h2 span {
		padding: 40px 0 10px;
	}
	.section_faq h2 {
		margin-bottom: 40px;
	}
	.faq_wrap .faq_bg dt {
		padding: 30px 40px 30px 20px;
	}
	.faq_wrap .faq_bg dt::after {
		width: 18px;
		height: 18px;
		right: 20px;
	}
	.faq_wrap .faq_bg dt .faq_ttl {
		font-size: 20px;
		line-height: 1.2em;
	}
	.faq_wrap .faq_bg dd {
		padding: 30px 20px 34px;
	}
	.faq_wrap .faq_bg dd p {
		font-size: 15px;
		line-height: 1.6em;
		align-items: flex-start;
	}
}

@media screen and (max-width: 430px) {
	.faq_wrap .faq_bg dt .faq_ttl {
		font-size: 18px;
	}
}

.section_interested > h3 {
	font-family: "Zen Kaku Gothic Antique", serif;
	font-size: 46px;
	font-weight: 900;
	color: #1D4899;
	text-align: center;
	margin-top: 100px;
}
.section_interested > h3::after {
	content: url("../img/icon_triangle.png");
	font-size: initial;
	margin: 26px 0 35px;
	display: block;
}
.interested_wrap {
	background-color: #E6E6E6;
	border-radius: 50px;
	box-shadow: 0 0 8px rgba(0,0,0,0.1);
	padding: 16px;
}
.interested_bg {
	background-color: #fff;
	border-radius: 40px;
	padding: 50px 46px;
}
.interested_reco {
	margin-bottom: 20px;
}
.interested_wrap .info_wrap .recommend_txt h3 {
	font-size: 45px;
	margin: 0;
}
.interested_bottom .check_txt li {
	font-family: "Zen Kaku Gothic Antique", serif;
	font-size: 32px;
	font-weight: 900;
	color: #1D4899;
	padding-left: 44px;
	position: relative;
}
.interested_bottom .check_txt li:not(:last-child) {
	margin-bottom: 30px;
}
.interested_bottom .check_txt li::before {
	content: url("../img/icon_check.png");
	width: 31px;
	height: 31px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}
.interested_bottom .btn_wrap li:first-child {
	margin-bottom: 12px;
}

@media screen and (min-width: 861px) {
	.interested_reco {
		display: flex;
		align-items: center;
	}
	.interested_wrap .info_wrap .recommend_txt h3 {
		margin-left: 25px;
	}
	.interested_wrap .info_wrap .info_img {
		width: 36%;
	}
	.interested_wrap .info_btn {
		display: block;
	}
	.interested_wrap .info_btn .btn_wrap:first-child {
		margin-right: 0;
	}
	.interested_bottom {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}

@media screen and (max-width: 860px) {
	.section_interested > h3 {
		font-size: 20px;
		line-height: 1.2em;
		margin-top: 60px;
	}
	.section_interested > h3::after {
		margin: 50px 0 35px;
	}
	.interested_wrap {
		padding: 9px;
	}
	.interested_bg {
		padding: 35px 5% 56px;
	}
	.interested_wrap .info_wrap .recommend_txt h3 {
		font-size: 30px;
		margin-top: 45px;
		margin-bottom: 20px;
	}
	.interested_wrap .recommend_txt p {
		padding: 0 5%;
	}
	.interested_wrap .info_wrap .info_img {
		width: 100%;
	}
	.interested_bottom .check_txt {
		margin-bottom: 60px;
	}
	.interested_bottom .check_txt li {
		font-size: 20px;
	}
	.interested_bottom .check_txt li:not(:last-child) {
		margin-bottom: 40px;
	}
	.interested_bottom .check_txt li::before {
		left: 4px;
	}
}

@media screen and (max-width: 430px) {
	.interested_bottom .check_txt li {
		font-size: 18px;
	}
}

.logo-section {
	width: 100%;
	background-color: #fff;
}

.header-inner {
	margin: 15px auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header-logo {
	width: 20%;
	margin: 0 auto;
}

.header-logo-img {
	max-width: 100%;
	height: auto;
	display: block;
}


footer {
	text-align: center;
	background: #fff;
	padding: 45px;
}

footer ul {
	display: flex;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

footer li {
	margin: 0;
	padding: 0 15px;
	position: relative;
	white-space: nowrap;
}

footer li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 16px;
	width: 1px;
	background-color: white;
}

footer a,
footer a:hover,
footer a:active,
footer a:visited {
	color: #1c4899;
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	footer ul {
		flex-direction: column;
		align-items: center;
		font-size: 80%!important;
	}

	footer li {
		padding: 10px 0;
	}

	footer li::after {
		content: none!important;
	}
}

.table_wrap a.btn{
  display:block;
  padding:12px;
  background:#fff;
  border-radius:20px;
  text-decoration:none;
  box-shadow:0 2px 8px rgba(0,0,0,.30);
  color: #1C4899;
  font-weight: 700;
  font-size: 12px;
  }

.sp_img{ display: none;}

.confidential{ vertical-align: middle!important;}

.top_visual {
 	position: relative;
}
.top_visual .btn{
	position: absolute;
	bottom: 4vw;
	width: 50%;
	left: 25%;
}

.top_visual .btn_sp{
	display: none;
}

@media screen and (max-width: 860px) {
	.table_wrap a.btn{
	  display:block;
	  padding:12px;
	  background:#fff;
	  border-radius:20px;
	  text-decoration:none;
	  box-shadow:0 2px 8px rgba(0,0,0,.30);
	  color: #1C4899;
	  font-weight: 700;
	  margin: 0px;	
	  font-size: 150%;
	  line-height: 1.2em;
	}

.scroll_img.elm{ display: none!important;}
.sp_img {
	display: block;
	margin: 0 auto;
}

.top_visual .btn{display: none!important;}

.top_visual .btn_sp{
	display: inline-block !important;
	position: absolute;
	bottom: 10vw;
	width: 74%;
	left: 13%;
	line-height: 0;
}
}

.div_1 {
	width: 60%
}
.btn_box {
	width: 50%;
}

.div_1 p {
	font-family: "Zen Kaku Gothic Antique", serif;
	font-weight: 900;
	font-size: 50px;
	text-align: left;
	margin-bottom: 45px;
	line-height: 1.2em;
}
@media (max-width: 1100px) {
	.div_1 p {
		font-size: 4.5vw;
	}
}

@media screen and (max-width: 860px) {
	.div_1 p {
		font-size: 8.5vw;
		line-height: 1.3em;
	}
}

.div_1 li {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 22px;
	padding-left: 32px;
}
.div_1 li { position: relative;}
.div_1 li span {
	color: #73D9EA;
	position: absolute;
	left: 0;
	top:0,5em;
}

.head_tx { margin-bottom: 30px;}
.head_tx .sp{ display: none;}

.panel_flex.info_wrap{
	color: #1d4899;
}


@media screen and (max-width: 860px) {
	.div_1 ,
	.btn_box{ width: 100%}
	
	.div_1 { margin-bottom: 15px;}
	.div_1 p{
				text-align: left;
		}
	
	.panel_flex.info_wrap .div_1 p{
			font-size: 40px;
			text-align: left;
	}
	
	
	.head_tx .sp{ display: block;}
	.head_tx .pc{ display: none;}

}


a.btn p {
	position: absolute;
	font-size: clamp(28px, 3.2vw, 61px);
	line-height: 1em;
	top: clamp(20px, 3.3vw, 64px);
	right: clamp(40px, 7.5vw, 143px);
	font-weight: bold;
	letter-spacing: clamp(1px, 0.26vw, 5px);
	color: white;
}

a.btn_sp p {
	position: absolute;
	font-size: clamp(18px, 4.5vw, 37px);
	line-height: 1em;
	top: clamp(16px, 5vw, 41px);
	right: clamp(28px, 10.5vw, 87px);
	font-weight: bold;
	letter-spacing: clamp(1px, 0.36vw, 3px);
	color: white;
}

.btn_text_wrap{ position: relative;}

.btn_text_wrap p {
	position: absolute;
	font-size: 30px;
	line-height: 1em;
	top: 23px;
	right: 55px;
	font-weight: bold;
	letter-spacing: 2px;
	color: white;
}

@media screen and (max-width: 1160px) {
	.btn_text_wrap p {
		position: absolute;
		font-size: clamp(18px, 2.6vw, 30px);
		line-height: 1em;
		top: clamp(12px, 2vw, 23px);
		right: clamp(20px, 4.7vw, 55px);
		font-weight: bold;
		letter-spacing: clamp(1px, 0.17vw, 2px);
		color: white;
	}
}

@media screen and (max-width: 860px) {
	.btn_text_wrap p {
		position: absolute;
		font-size: 26px;
		line-height: 1em;
		top: 25px;
		left: 183px;
		font-weight: bold;
		letter-spacing: 2px;
		color: white;
	}
}

@media screen and (max-width: 560px) {
	.btn_text_wrap p {
		position: absolute;
		font-size: clamp(16px, 5.5vw, 26px);
		line-height: 1em;
		top: clamp(12px, 3.5vw, 25px);
		left: clamp(100px, 32vw, 183px);
		font-weight: bold;
		letter-spacing: clamp(1px, 0.5vw, 2px);
		color: white;
	}

}


.attn{ 
	font-size: 10px;
	line-height: 1.5em;
}