@charset "utf-8";

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

.fv {
	position: relative;
	height: 240px;
	background-color: #D0F5FD;
	overflow: hidden;
}

.fv .section_inner {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
}

.fv .section_container {
	position: relative;
	width: 100%;
	height: 100%;
}

.fv_text {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: max-content;
	height: max-content;
	margin: 0;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
}

.fv_text > * {
	display: block;
}

.fv_text > *:nth-of-type(1) {
	font-size: 0.5em;
	color: #009AB7;
}

.fv_text > *:nth-of-type(2) {
	font-size: 1em;
}

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

@media screen and (min-width: 1280px) {
	.fv {
		height: 360px;
	}
}

@media screen and (min-width: 1440px) {
	.fv_text {
		font-size: 3rem;
	}
}

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

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

.section {
	width: 100%;
	margin: 0;
	padding: 0;
}

.section_inner {
	width: 100%;
	padding: 20% 0;
}

@media screen and (min-width: 768px) {
	.section_inner {
		padding: 10% 0;
	}
}

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

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

.section_1 {
	position: relative;
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 20%, rgba(208, 245, 253, 1));
}

.section_1 .deco {
	position: absolute;
	top: 30%;
	right: 0;
	width: 25%;
}

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

.section_1 .section_container {}

.section_1 .section_container_inner {}

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

.section_1 .text_1 {
	text-align: center;
	font-weight: 500;
}

.section_1 .text_2 {
	text-align: left;
	font-weight: 500;
}

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

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

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

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

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

.form {}

.radio label {
	display: block;
}

.form_area {
    width: 100%;
    margin: 0 auto 0;
}

.tbl-form {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

th,
td {
    display: block;
    padding: 1em 0;
    border: 0;
    font-weight: 500;
}

th {}

td {
	padding-top: 0;
}

.tbl-form .th_border {
    /* border-top: 1px #87DBFF solid; */
}

.must {
	margin-left: 4px;
	padding: 2px 4px;
	background-color: #E91515;
    color: #fff;
}

.address {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
}

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

.address_1 input {
	width: 25%;
}

/* ↓ ラジオボタン ↓ */

.radio td {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 12px;
}

.radio label {
    position: relative;
    cursor: pointer;
    padding-left: 1.5rem;
}

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

.radio label::before {
    background-color: #fff;
    border: 1px solid #364246;
    width: 1em;
    height: 1em;
    left: 5px;
}

.radio label::after {
    background-color: #364246;
    opacity: 0;
    width: 0.6em;
    height: 0.6em;
    left: 0.525em;
}

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

.radio_telmail label::before,
.radio_telmail label::after {
    border-radius: 50%;
}

.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;
}

/* ↑ ラジオボタン ↑ */

.input-text {
    width: 100%;
    min-height: 2em;
    padding: 0.5em;
    border: 1px #B5B5B5 solid;
    border-radius: 5px;
    background-color: #fff;
}

.textarea {
    width: 100%;
    min-height: 5em;
    padding: 0.5em;
    border: 1px #B5B5B5 solid;
    border-radius: 5px;
    background-color: #fff;
}

.textarea_2 {
    min-height: 0;
}

.form_submit_btn {
    display: block;
    margin: 10% auto 0;
}

.input-button {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto 0;
    padding: 1em 0;
    background: #0ED2F7;
	border-radius: 50px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

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

    th,
    td {
        padding: 1em 0;
    }

    th {
        vertical-align: middle;
    }

	td {
		padding-top: 0;
	}

	.radio td {
		flex-direction: row;
	}

	.th_border {}

    .td_border {}

    .tbl-form .any {
        vertical-align: top;
    }

    .form_submit_btn {
        width: 50%;
		margin: 5% auto 0;
    }
}

@media screen and (min-width: 1280px) {
    .form {
		width: 60%;
		margin: 0 auto 0;
	}
}

@media screen and (min-width: 1440px) {
    .form_text {
        font-size: 1rem;
    }

    .tbl-form th,
    .tbl-form td {
        /* font-size: 1.2rem; */
    }

    .radio label {
        padding-left: 2rem;
    }

    .radio label::after {
        left: 0.5em;
    }

	.form_submit_btn {
		width: 30%;
	}

	.input-button {
		font-size: 1.2rem;
	}
}

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