@charset "utf-8";

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

.section_1 {}

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

.section_1 .wrap {
	gap: 48px;
	width: 90%;
	max-width: 1145px;
	margin: 0 auto;
}

.section_1 .comment {
	text-align: center;
	font-weight: 600;
}

.section_1 .heading_wrap {}

.section_1 .heading_wrap .heading {
	flex-direction: column-reverse;
}

.section_1 .heading_wrap .heading .main {}

.section_1 .heading_wrap .heading .sub {}

.section_1 .content_wrap {
	gap: 24px;
}

.section_1 .content_wrap .content {}

.section_1 .content_wrap .content .item_wrap {}

.section_1 .content_wrap .content .item_wrap .item {}

.section_1 .content_wrap .content .item_wrap .item .text {}

.section_1 .content_wrap .content .item_wrap .item img {}

.section_1 .content_wrap .content_1 .item_wrap .item .text {}

.section_1 .content_wrap .content_2 .item_wrap .item {}

.section_1 .content_wrap .content_1 .item_wrap .item .table_common {
	width: 100%;
}

.section_1 .content_wrap .content_2 .item_wrap .item .btn {
	display: block;
	width: 240px;
	padding: 12px;
	text-align: center;
	background-color: #20386C;
	font-weight: 600;
	color: #ffff;
}

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

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

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

	.section_1 .comment {
		font-size: 1.25rem;
	}

	.section_1 .content_wrap .content_2 .item_wrap .item .btn {
		width: 500px;
		padding: 36px;
		font-size: 2.25rem;
	}
}

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

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

.section_1 .table_common tr td .flex_wrap {
	align-items: flex-start;
}

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

@media screen and (min-width: 1280px) {
	.section_1 .table_common tr th {
		width: 25%;
	}

	.section_1 .table_common tr td {
		width: 75%;
	}
}

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

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

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

.form_area {
	width: 100%;
}

.form {
	width: 100%;
}

.input-text {
	width: 100%;
	padding: 0.5em;
	background-color: #EFEFEF;
}

.textarea {
	width: 100%;
	padding: 0.5em;
	background-color: #EFEFEF;
}

.must {
	margin-left: 12px;
	color: #F6FF00;
}

.radio .flex {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 0px;
	width: 100%;
}

.radio label {
    position: relative;
    display: block;
    cursor: pointer;
    padding-left: 1.5em;
}

.radio label::before,
.radio label::after {
    content: "";
    display: block;
    border-radius: 999px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.radio label::before {
    background-color: #EFEFEF;
    border: 1px solid #9D9D9D;
    width: 1em;
    height: auto;
    aspect-ratio: 1 / 1;
    left: 0;
}

.radio label::after {
    background-color: #9D9D9D;
    opacity: 0;
    width: 0.6em;
    height: auto;
    aspect-ratio: 1 / 1;
    left: 3px;
}

.radio label:has(input[type="radio"]:checked):after {
    opacity: 1;
}

.visually-hidden {
    position: absolute;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
}

.form_submit_btn {
	position: relative;
    display: block;
	width: 240px;
    margin: 24px auto 0;
}

.form_submit_btn::after {
	content: "";
    position: absolute;
	top: 50%;
	right: 5%;
	transform: translate(0, -50%);
	width: auto;
	height: 50%;
	aspect-ratio: 1 / 1;
	background-image: url(../img/);
	background-repeat: no-repeat;
	background-size: contain;
}

.input-button {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto 0;
    padding: 16px;
    background: #20386C;
	/* border-radius: 50px; */
    text-align: center;
    font-weight: 600;
	line-height: 1;
    color: #fff;
    cursor: pointer;
}

@media screen and (min-width: 1280px) {
	th,
	td {
		vertical-align: middle;
	}

	th {
		width: 30%;
		padding: 12px;
	}

	td {
		width: 70%;
		padding: 12px;
		text-align: left;
	}

	.radio .flex {
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		gap: 24px;
	}

	.radio label::after {
		left: 3.5px;
	}

	.input-text {
		text-align: left;
	}

	.textarea {
		height: 180px;
		text-align: left;
	}
}

@media screen and (min-width: 1440px) {
	.radio label::after {
		left: 5px;
	}

	.form_submit_btn {
		width: 500px;
		font-size: 2.25rem;
	}

	.input-button {
		padding: 36px;
	}
}
