@charset "utf-8";

/* ---------------------------------------------------------------------------------------------------- */

@media screen and (min-width: 768px) {
	.header_list_wrap .header_list li.deco a::after {
		content: "";
	}
}

/* ---------------------------------------------------------------------------------------------------- */

.section_1 {
	background-image: url(../img/);
	background-size: cover;
	background-position: 50% 0;
	background-repeat: no-repeat;
}

.section_1 .section_inner {
	padding: 10% 0;
}

.section_1 .inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 48px;
	width: 100%;
	margin: 0 auto;
}

.section_1 .heading_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	width: 90%;
	margin: 0 auto;
}

.section_1 .heading_wrap .heading {}

.section_1 .heading_wrap .heading .main {
	line-height: 1.5;
}

.section_1 .heading_wrap .heading .main::before,
.section_1 .heading_wrap .heading .main::after {
	height: 56px;
}

.section_1 .heading_wrap .heading .main::after {}

.section_1 .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 90%;
	margin: 0 auto;
}

.section_1 .content .item {
	width: 100%;
}

.section_1 .content .item .title {
	width: 100%;
	padding: 12px;
	border: 2px #fe6628 solid;
	text-align: center;
	font-weight: 700;
	color: #fe6628;
}

.section_1 .content .item .img_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.section_1 .content .item .img_wrap .img {
	width: 100%;
}

.section_1 .content .item .point_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.section_1 .content .item .point_wrap .point {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
}

.section_1 .content .item .point_wrap .point .text_1 {
	position: relative;
	padding-left: 24px;
	font-size: 1.25rem;
}

.section_1 .content .item .point_wrap .point .text_1::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, #ffb300 0%, #ffb300 50%, #00255b 50%, #00255b 100%);
}

.section_1 .content .item .btn_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin: 24px auto 0;
}

.section_1 .content .item .btn_wrap .img {
	width: 100%;
}

.section_1 .content .item .btn_wrap .btn {
    position: relative;
    width: 75%;
    padding: 1em 2em 1em 1em;
    border: 2px #00255b solid;
    text-align: center;
    line-height: 1;
    color: #00255b;
	width: 75%;
}

.section_1 .content .item .btn_wrap .btn::before {
	content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 60px;
    height: 2px;
    border-radius: 0 2px 2px 0;
    background-color: #00255b;
    transform: translate(37.5%, -50%);
}

.section_1 .content .item .btn_wrap .btn::after {
	content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    height: 2px;
    border-radius: 0 2px 2px 0;
    background-color: #00255b;
    transform: translate(187.5%, -60%) rotate(60deg);
    transform-origin: calc(100% - 1px) 50%;
}

.section_1 .content .item .table_map_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

.section_1 .content .item .table_map_wrap table {
	width: 100%;
}

.section_1 .content .item .table_map_wrap table tr th,
.section_1 .content .item .table_map_wrap table tr td {
	display: block;
	border: 0;
	border-bottom: 1px #333 solid;
}

.section_1 .content .item .table_map_wrap .map {
	width: 100%;
}

.section_1 .content .item .table_map_wrap .map iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
}

@media screen and (min-width: 768px) {
	.section_1 {}

	.section_1 .section_inner {}

	.section_1 .inner {}

	.section_1 .heading_wrap {}

	.section_1 .heading_wrap .heading {}

	.section_1 .heading_wrap .heading .main {
		line-height: 1;
	}

	.section_1 .heading_wrap .heading .main::before,
	.section_1 .heading_wrap .heading .main::after {
		height: 175%;
	}

	.section_1 .heading_wrap .heading .main::after {}

	.section_1 .content {}

	.section_1 .content .item {}

	.section_1 .content .item .title {}

	.section_1 .content .item .img_wrap {
		flex-direction: row;
	}

	.section_1 .content .item .img_wrap .img {
		width: calc((100% - (12px * 2)) / 3);
	}

	.section_1 .content .item .point_wrap {
		width: 90%;
		margin: 0 auto;
	}

	.section_1 .content .item .point_wrap .point {}

	.section_1 .content .item .point_wrap .point .text_1 {}

	.section_1 .content .item .point_wrap .point .text_1::before {}

	.section_1 .content .item .btn_wrap {
		flex-direction: row;
		width: 75%;
	}

	.section_1 .content .item .btn_wrap .img {}

	.section_1 .content .item .btn_wrap .btn {}

	.section_1 .content .item .btn_wrap .btn::before {}

	.section_1 .content .item .btn_wrap .btn::after {}

	.section_1 .content .item .table_map_wrap {
		flex-direction: row;
		align-items: stretch;
	}

	.section_1 .content .item .table_map_wrap table {
		width: 50%;
	}

	.section_1 .content .item .table_map_wrap table tr th,
	.section_1 .content .item .table_map_wrap table tr td {}

	.section_1 .content .item .table_map_wrap .map {
		flex: 1;
	}

	.section_1 .content .item .table_map_wrap .map iframe {
		aspect-ratio: auto;
	}
}

@media screen and (min-width: 1280px) {
	.section_1 .heading_wrap {
		width: 80%;
	}

	.section_1 .content {
		width: 80%;
	}

	.section_1 .content .item .btn_wrap {
		width: 50%;
	}

	.section_1 .content .item .table_map_wrap table tr th,
	.section_1 .content .item .table_map_wrap table tr td {
		display: table-cell;
	}

	.section_1 .content .item .table_map_wrap table tr th {
		width: 30%;
	}

	.section_1 .content .item .table_map_wrap table tr td {
		width: 70%;
	}
}

@media screen and (min-width: 1440px) {
	.section_1 .inner {
		gap: 72px;
	}

	.section_1 .heading_wrap {
		width: 70%;
	}

	.section_1 .content {
		gap: 48px;
		width: 70%;
	}

	.section_1 .content .item .title {
		font-size: 1.5rem;
	}

	.section_1 .content .item .img_wrap {
		gap: 24px;
	}

	.section_1 .content .item .point_wrap {
		gap: 36px;
	}

	.section_1 .content .item .point_wrap .point .text_1 {
		font-size: 1.5rem;
	}

	.section_1 .content .item .point_wrap .point .text_2 {
		font-size: 1.125rem;
	}

	.section_1 .content .item .btn_wrap {
		margin: 36px auto 0;
	}

	.section_1 .content .item .table_map_wrap {
		gap: 36px;
	}

	.section_1 .content .item .table_map_wrap table tr th,
	.section_1 .content .item .table_map_wrap table tr td {
		font-size: 1.125rem;
	}
}

@media screen and (min-width: 1920px) {
	
}

/* ---------------------------------------------------------------------------------------------------- */

.section_2 {
	background-color: #eeeeee;
}

/* ---------------------------------------------------------------------------------------------------- */

.section_3 {
	background-image: url(../img/);
	background-size: cover;
	background-position: 50% 0;
	background-repeat: no-repeat;
}

.section_3 .section_inner {
	padding: 10% 0;
}

.section_3 .inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 48px;
	width: 100%;
	margin: 0 auto;
}

.section_3 .heading_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	width: 90%;
	margin: 0 auto;
}

.section_3 .heading_wrap .heading {}

.section_3 .heading_wrap .heading .main {
	line-height: 1.5;
}

.section_3 .heading_wrap .heading .main::before,
.section_3 .heading_wrap .heading .main::after {
	height: 56px;
}

.section_3 .heading_wrap .heading .main::after {}

.section_3 .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 90%;
	margin: 0 auto;
}

.section_3 .content .item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 5%;
	border: 1px #fe6628 solid;
}

.section_3 .content .item .img {
	width: 100%;
}

.section_3 .content .item .text_wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
}

.section_3 .content .item .text_wrap .text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 0;
	width: 100%;
}

.section_3 .content .item .text_wrap .text span:nth-of-type(1) {
	font-size: 1.2rem;
}

.section_3 .content .item .text_wrap .text span:nth-of-type(2) {
	font-size: 1rem;
}

@media screen and (min-width: 768px) {
	.section_3 {}

	.section_3 .section_inner {}

	.section_3 .inner {}

	.section_3 .heading_wrap {}

	.section_3 .heading_wrap .heading {}

	.section_3 .heading_wrap .heading .main {
		line-height: 1;
	}

	.section_3 .heading_wrap .heading .main::before,
	.section_3 .heading_wrap .heading .main::after {
		height: 175%;
	}

	.section_3 .heading_wrap .heading .main::after {}

	.section_3 .content {}

	.section_3 .content .item {
		flex-direction: row;
		align-items: flex-start;
		gap: 24px;
		padding: 12px;
	}

	.section_3 .content .item .img {
		width: 40%;
	}

	.section_3 .content .item .text_wrap {
		flex: 1;
		gap: 24px;
	}

	.section_3 .content .item .text_wrap .text {}

	.section_3 .content .item .text_wrap .text span:nth-of-type(1) {}

	.section_3 .content .item .text_wrap .text span:nth-of-type(2) {}
}

@media screen and (min-width: 1280px) {
	.section_3 .heading_wrap {
		width: 80%;
	}

	.section_3 .content {
		width: 80%;
	}
}

@media screen and (min-width: 1440px) {
	.section_3 .inner {
		gap: 72px;
	}

	.section_3 .heading_wrap {
		width: 70%;
	}

	.section_3 .content {
		gap: 72px;
		width: 70%;
	}

	.section_3 .content .item {
		padding: 28px;
	}

	.section_3 .content .item .text_wrap .text span:nth-of-type(1) {
		font-size: 1.5rem;
	}

	.section_3 .content .item .text_wrap .text span:nth-of-type(2) {
		font-size: 1.125rem;
	}
}

@media screen and (min-width: 1920px) {
	
}

/* ---------------------------------------------------------------------------------------------------- */
