@charset "UTF-8";
/* CSS Document */
/* @media (min-width: 768px) and (max-width: 1229px) { */

/* } */
/*セクション間余白----------------------------------------------------------- */
section {
	padding: 75px 0;
}

/*色関連----------------------------------------------------------- */
.bg_cl1 {background-color: #eeeef5;}
.bg_cl2 {background-color: #f3f2f2;}
.cl_base {color: #ff00cc;}
.cl_main {color: #ef3300;}
.cl_accent {color: #4265a1;}
.cl_white {color: #fff;}

/*リンク色----------------------------------------------------------- */
a:link,a:visited {color: inherit;}

/*Page Top----------------------------------------------------------- */
.pagetop a {
	background-color: #0068b7;
	filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.3));
}

/*header----------------------------------------------------------- */
.header {
	width: 100%;
	height: 100px;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 9999999;
	background: #fff;
}
.header_inner {
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_img {
}
/* 画像を入れる場合は削除 */
.header_img p {
	width: fit-content;
}
.header_drawer {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	cursor: pointer;
}
.header_drawer span {
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #000;
}
.header_drawer span:nth-child(1) {
	top: 2px;
}
.header_drawer span:nth-child(2) {
	top: 13px;
}
.header_drawer span:nth-child(3) {
	top: 24px;
}
.header_drawer.is-open span {
	transition: all .3s ease 0s;
}
.header_drawer.is-open span:nth-child(1) {
	top: 50%;
	transform: rotate(-45deg);
}
.header_drawer.is-open span:nth-child(2) {
	display: none;
}
.header_drawer.is-open span:nth-child(3) {
	top: 50%;
	transform: rotate(45deg);
}
.header_menus {
	display: flex;
	align-items: center;
	gap: 15px;
}
.header_menu {
	display: flex;
	align-items: center;
	gap: 15px;
}
/* .header_menus.is-open {
	display: flex;
} */
.header_link {
	position: relative;
}
.header_link a {
	padding: 15px;
}
.header_acc-wrap {
	position: absolute;
	top: 80px;
    left: 50%;
    transform: translateX(-50%);
	display: none;
	background: #FFF;
	z-index: 10;
}
.header_acc-link {
	width: max-content;
	display: block;
}
.header_btn a {
	padding: 8px 30px;
	background-image: -moz-linear-gradient( 0deg, rgb(237,139,2) 0%, rgb(235,168,14) 100%);
	background-image: -webkit-linear-gradient( 0deg, rgb(237,139,2) 0%, rgb(235,168,14) 100%);
	background-image: -ms-linear-gradient( 0deg, rgb(237,139,2) 0%, rgb(235,168,14) 100%);
	color: #fff;
	border-radius: 25px;
}
.header_btn a i {
	padding-right: 10px;
}

/*MV----------------------------------------------------------- */
.mv {
	background: url(../img/pc_fv_bg.png) no-repeat center bottom/cover;
}

/*CTA----------------------------------------------------------- */
.cta {
	overflow: hidden;
}
.cta_wrap {
	position: relative;
	margin-right: -6%;
}
.cta_btn {
	position: absolute;
	bottom: 10%;
	left: 7%;
}
.cta2 {
	background: url(../img/pc_cta_bg.png) no-repeat center bottom/contain;
}

/*sec01----------------------------------------------------------- */


/*sec02----------------------------------------------------------- */
.sec02 {
	background: url(../img/pc_sec02_bg.png) no-repeat center center/cover;
}

/*sec03----------------------------------------------------------- */


/*sec04----------------------------------------------------------- */
.sec04 {
	background: #edf8ff;
}
.sec04 .fx-row-gutter-s {
	margin-top: 0;
	margin-left: 0;
	margin-right: 0;
}
.sec04 .fx-row-gutter-s > [class*="fx-col"] {
	margin-top: 0;
	padding-left: 0;
	padding-right: 0;
}

/*sec05----------------------------------------------------------- */
.sec05 .fx-row {
	margin-top: -45px;
}
.sec05 [class*="fx-col"] {
	margin-top: 45px;
}

/*sec06----------------------------------------------------------- */
.sec06 {
	background: #fafafa;
}
/* more_v1_01 */
.more_v1_01 {
	display: block;
	margin: 0 auto;
	width: 100%;
	line-height: 1;
	padding: 30px 75px 30px 90px;
	background: #edf8ff;
	color: #0068b7;
	font-weight: bold;
	cursor:pointer;
	position: relative;
	font-size: 24px;
	border-radius: 15px;
}
.more_v1_01:not(:first-of-type) {
	margin-top: 30px;
}
.more_v1_01:before {
	position: absolute;
	transition: all .3s;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
	content: "Q";
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 32px;
}
.more_v1_01 span {
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
	transition: all .3s;
}
.more_v1_01 span:before,
.more_v1_01 span:after {
	position: absolute;
	content: "";
	background: #0068b7;
	top: 50%;
	transform: translateY(-50%);
	transition: all .3s;
}
.more_v1_01 span:before {
	width: 30px;
	height: 4px;
}
.more_v1_01 span:after {
	width: 4px;
	height: 30px;
	left: 13px;
}
.more_v1_01.open {
	border-radius: 15px 15px 0 0;
}
.more_v1_01.open span:after {
	transform: translateY(-50%) rotate(90deg);
}
.more_v1_01_close {
	display: none;
	background: #fff;
	padding: 30px 30px 30px 90px;
	position: relative;
	border-radius: 0 0 15px 15px;
}
.more_v1_01_close:before {
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
	content: "A";
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 32px;
	color: #d68513;
}

/*sec07----------------------------------------------------------- */
.sec07 {
	background: url(../img/pc_sec07_bg.png) no-repeat center center/cover;
}
.sec07 .container > p {
	color: #fff;
}
.sec07 .white_box {
	border-radius: 15px;
}

form > ul > li {
	padding: 15px 0;
}

form > ul > li .fx-row > *:first-child {
	padding-top: 12px;
}

.form_head {
	text-align: right;
}

.form_head span {
	display: inline-block;
	font-weight: bold;
}

.haveto {
	background-color: #d68513;
	color: #fff;
	padding: 3px 8px;
	font-weight: bold;
	font-size: 0.8em;
	margin-left: 8px;
}

.any {
	background-color: #0000ff;
	color: #fff;
	padding: 3px 8px;
	font-weight: bold;
	font-size: 0.8em;
}

.input_adjust {
	padding: 12px 16px;
	border-radius: 10px;
	border: 1px solid #ccc;
}

.input_2col {
	display: flex;
	justify-content: space-between;
	padding-right: 30px;
	width: 100%;
}

.input_2col input {
	width: calc(50% - 15px);
}

.input_1col {
	padding-right: 30px;
}

.input_1col input {
	width: 100%;
}

.input_zip_2col input {
	width: 30%;
}

.input_pref {
	width: 50%;
}

.input_select select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	padding: 12px 16px;
}

.input_select select::-ms-expand {
	display: none;
}

.input_select {
	position: relative;
	border-radius: 2px;
	border: 1px solid #ccc;
	border-radius: 10px;
	background: #ffffff;
}

.input_select::before {
	position: absolute;
	top: calc(50% - 3px);
	right: 1em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #000;
	pointer-events: none;
}
.sbm_wrap a {
	display: inline-block;
	text-decoration: underline;
}

@media screen and (min-width: 768px) {
	.fx-col-16-s {
		-ms-flex-preferred-size: 16%;
		flex-basis: 16%;
		max-width: 16%;
		padding-top: 12px;
	}
	.fx-col-54-s {
		-ms-flex-preferred-size: 54%;
		flex-basis: 54%;
		max-width: 54%;
	}
}

.input_tel_3col input {
	width: 30%;
}

.input_tel_3col input:first-child {
	width: 20%;
}

.radio_2col {
	display: flex;
}

.radio_2col label {
	display: flex;
	align-items: center;
	padding: 12px 0;
}

.radio_2col label:first-child {
	padding-right: 30px;
}

.radio_2col span {
	padding-left: 10px;
}

.radio_1col > label {
	width: 100%;
	display: flex;
	align-items: center;
	padding: 12px 0;
}

.radio_1col span {
	padding-left: 10px;
}

.date_2col {
	display: flex;
	justify-content: space-between;
	padding-right: 30px;
}

.date_2col > * {
	display: block;
	width: calc(50% - 15px);
}

.input_date {
	position: relative;
}

.input_date:before {
	position: absolute;
	content: "\f073";
	font-family: "Font Awesome 5 Free";
	right: 15px;
}

input[type="date"] {
	position: relative;
}

input[type=date]::-webkit-calendar-picker-indicator {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
}

input[type="date"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

input[type="date"]::-webkit-clear-button {
	-webkit-appearance: none;
}

.check_1col > label {
	width: 100%;
	display: flex;
	align-items: center;
	/* padding: 12px 0; */
}

.check_1col span {
	padding-left: 10px;
}

.select_1col {
	padding-right: 30px;
}

.textarea {
	padding-right: 30px;
}

.textarea textarea {
	width: 100%;
}

.check_agree input {
	height: 20px;
	width: 20px;
}

.check_agree span {
	padding-top: 5px;
}

.sec07 button {
	border: 0;
	background: none;
	margin: 0 auto;
	transition: all .3s;
}
.sec07 button:hover {
	opacity: .7;
}


/*Footer----------------------------------------------------------- */
.footer ul {
	display: flex;
	justify-content: center;
}
.footer ul li a {
	display: block;
	padding: 5px 15px;
}