@charset "utf-8";

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

.fv {
	position: relative;
	height: 200px;
	background-image: url(../img/fv_2.png);
	background-size: cover;
	background-position: 75% 0%;
	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: 65%;
	left: 5%;
	transform: translate(0, -50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 4px;
	width: max-content;
	margin: 0;
	font-size: 1.5rem;
	line-height: 1;
	/* letter-spacing: 0.1em; */
}

.fv_text > * {
	display: block;
}

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

.fv_text > *:nth-of-type(2) {
	font-family: "EB Garamond", serif;
	font-style: italic;
	font-size: 0.8em;
	color: #BFA2DB;
}

@media screen and (min-width: 768px) {
	.fv {
		height: auto;
		background-image: none;
	}

	.fv .section_inner {}

	.fv .section_container {}

	.fv_text {}

	.fv_text > * {}

	.fv_text > *:nth-of-type(1) {}

	.fv_text > *:nth-of-type(2) {}
}

@media screen and (min-width: 1280px) {
	.fv_text {
		/* font-size: 2rem; */
	}
}

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

@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 {}

.section_1 .section_inner {
	padding: 0;
}

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

.section_1 .heading_area .heading_1 {
	writing-mode: unset;
}

.section_1 .content {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 10% 0;
	background-color: #F5F5F5;
}

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

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

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

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

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

.form {
	width: 90%;
	margin: 0 auto 0;
}

.form_table {
    width: 100%;
    /* table-layout: fixed; */
    border-collapse: collapse;
}

.form_table th,
.form_table td {
    display: block;
	width: 100%;
	border: 0;
	vertical-align: middle;
	font-weight: 400;
	line-height: 1;
}

.form_table th {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 4px;
	padding-top: 1em;
    /* border-top: 1px #D4E2E8 solid; */
	color: #222222;
}

.form_table .first_line th {
	padding: 0.5em;
    border: 0;
}

.form_table td {
	padding-bottom: 1em;
}

.form_table .first_line td {}

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

.form_table input {
	width: 100%;
	padding: 0.5em;
	border-radius: 8px;
	border: 1px #D8D8D8 solid;
	border-radius: 4px;
	background-color: #fff;
	line-height: 1;
	color: #222222;
}

.form_table .radio input {
	width: auto;
}

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

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

.radio label::before {
    border: 1px solid #222;
	border-radius: 9999px;
    width: 1em;
    height: 1em;
    left: 5px;
}

.radio label::after {
    background-color: #f5f5f5;
	border-radius: 9999px;
    opacity: 0;
    width: 0.5em;
    height: 0.5em;
    left: 0.6em;
}

.radio label:has(input[type="radio"]:checked)::before {
    background-color: #222;
}

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

.form_table .any input {
	height: 5em;
}

.form_table label {
	width: auto;
	color: #222222;
}

.form_table textarea {
	width: 100%;
	padding: 0.5em;
	border-radius: 8px;
	border: 1px #D8D8D8 solid;
    border-radius: 4px;
	background-color: #fff;
	line-height: 1;
	color: #222222;
}

.form_table .flex {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 4px;
	width: 100%;
	margin: 0 auto 0 0;
}

.form_table .must {
	display: inline-block;
	padding: 0.25em 0.5em;
	/* border: 2px #FF4F4F solid; */
	border-radius: 5px;
	color: #fff;
	background-color: #FF4F4F;
}

.form_table .arbitrary {
	display: inline-block;
	padding: 0.25em;
	border: 1px #B6B6B6 solid;
	color: #B6B6B6;
}

.form_table .comment {
	display: block;
	margin-top: 0.5em;
}

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

.form_table .address_num {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	gap: 4px;
	width: 100%;
	margin: 0 auto 0;
}

.form_table .address_num > * {
	display: flex;
	align-items: center;
}

.form_table .address_search {
	padding: 0.5em;
	background-color: #FF8B00;
	font-size: 0.8rem;
	color: #fff;
}

.form_table .address_text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
	margin: 0 auto 0;
}

.form_table .address_text > * {
	width: 100%;
}

.form_data {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 4px;
	width: 100%;
	margin: 0 auto 0;
	font-family: "Noto Sans JP", sans-serif;
}

.form_data .must {
	display: inline-block;
	padding: 0.25em;
	border: 2px #FF8B00 solid;
	border-radius: 5px;
	line-height: 1;
	color: #FF8B00;
}

.form_data .personal_data {
	border-bottom: 1px #052A48 solid;
}

.form_btn {
	position: relative;
	display: block;
	width: fit-content;
    margin: 5% auto 0;
}

.form_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10%;
	transform: translate(0, -50%);
    display: block;
    width: auto;
	height: 1.2rem;
	aspect-ratio: 1 / 1;
	background-image: url(../img/arrow_2.png);
	background-size: contain;
}

.form_btn_input {
	position: relative;
    display: block;
    width: 100%;
    margin: 0 auto 0;
    padding: 1em 5em;
    background: #BFA2DB;
    text-align: center;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
	.form_table th,
	.form_table td {
		display: table-cell;
		font-size: 0.8rem;
	}

	.form_table th {
		width: 25%;
		padding: 1em;
	}

	.form_table .first_line th {
		padding: 1em;
	}

	.form_table .any th {
		vertical-align: top;
	}

	.form_table td {
		width: 75%;
		padding: 1em;
	}

	.form_table .radio {
		position: relative;
	}

	.form_table .radio td {
		position: absolute;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
		gap: 36px;
		border: 0;
		width: 100%;
		height: auto;
	}

	.form_table .radio td > * {
		/* width: calc((100% - (12px * 2)) / 3); */
		width: fit-content;
	}

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

	.form_table .flex {
		flex-direction: row;
		justify-content: flex-start;
		gap: 8px;
		width: fit-content;
		margin: 0;
	}

	.form_table .address_num {
		justify-content: flex-start;
		gap: 12px;
	}

	.form_table .address_search {
		font-size: 1rem;
	}

	.form_data {
		flex-direction: row;
		align-items: center;
		gap: 12px;
		width: max-content;
	}

	.form_btn {
		/* width: 30%; */
	}
}

@media screen and (min-width: 1280px) {
	.form {
		width: 45%;
	}

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

@media screen and (min-width: 1440px) {
	.form {
        width: 55%;
    }

	.form_table .radio td {
		gap: 72px;
	}

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

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

	.form_table th,
	.form_table td {
		font-size: 1.2rem;
	}

	.form_table .flex {
		gap: 12px;
	}

	.form_btn::after {
		height: 1.4rem;
	}

	.form_btn_input {
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 1920px) {
	.form {
        width: 45%;
    }
}

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