@charset "utf-8";
/* CSS Document */

/* base
-----------------------------------------------*/
/* ========== universal reset ========== */
/* ========== base style ========== */

/* common parts
-----------------------------------------------*/
/* ========== text ========== */
/* ========== border ========== */
/* ========== float ========== */
/* ========== display ========== */
/* ========== position ========== */
/* ========== overflow ========== */
/* ========== width ========== */
/* ========== margin ========== */
/* ========== device displaying ========== */
/* ========== animation for ScrollTrigger.min.js  ========== */

/* other style
-----------------------------------------------*/



/* base
-----------------------------------------------*/
/* ========== universal reset ========== */
/**
* html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
* Richard Clark (http://richclarkdesign.com)
* http://cssreset.com
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
button,
input,
select,
textarea,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

nav ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}


/* ========== base style ========== */
* {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	height: 100%;
	min-height: 100%;
	background: #eee;
	color: #000;
	font-size: 3.47vw;
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
	font-weight: 400;
}

@media (min-width:752px) {
	body {
		font-size: 26px;
	}
}

a:link,
a:visited {
	color: #000;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

a:hover,
a:hover img,
button:hover img {
	opacity: 0.80;
	filter: alpha(opacity=80);
}

div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
dt,
dd,
th,
td {
	line-height: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
}

div,
article {
	box-sizing: border-box;
}

ol,
ul {
	list-style: none;
}

img,
video {
	width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

input,
select {
	vertical-align: middle;
}

textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
select {
	-webkit-appearance: none;
	display: inline-block;
	width: 100%;
	padding: 13px 10px;
	background-color: #f5f5f5;
	border: 1px solid #aaa;
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
	font-size: 16px;
	font-weight: 400;
	border-radius: 5px;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
	color: #b5b5b5;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
	color: #b5b5b5;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder,
select::-ms-input-placeholder {
	color: #b5b5b5;
}

textarea {
	resize: vertical;
	height: 9em;
}

label {
	cursor: pointer;
	position: relative;
}

input[type="radio" i],
input[type="checkbox" i] {
	margin: 0 5px 0 0;
}

button {
	cursor: pointer;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-indent: .01px;
	/* Firefox用 */
	text-overflow: "";
	/* Firefox用 */
	background-image: url(../images/common/select_arrow.png);
	background-repeat: no-repeat;
	background-size: 11px 6px;
	background-position: calc(100% - 6px) center;
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/*　IE11,IE10　*/
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
	.formSample select:not(:target) {
		padding-right: 0;
		background-image: none;
	}
}

input[type="submit"] {
	-webkit-appearance: none;
}



/* common parts
-----------------------------------------------*/
/* ========== text ========== */
/* align */
.al_left {
	text-align: left;
}

.al_center {
	text-align: center;
}

.al_right {
	text-align: right;
}

/* size */
.fs10 {
	font-size: 10px;
}

.fs11 {
	font-size: 11px;
}

.fs12 {
	font-size: 12px;
}

.fs13 {
	font-size: 13px;
}

.fs14 {
	font-size: 14px;
}

.fs15 {
	font-size: 15px;
}

.fs16 {
	font-size: 16px;
}

.fs17 {
	font-size: 17px;
}

.fs18 {
	font-size: 18px;
}

@media (max-width:374px) {
	.fs10 {
		font-size: 2.67vw;
	}

	.fs11 {
		font-size: 2.93vw;
	}

	.fs12 {
		font-size: 3.2vw;
	}

	.fs13 {
		font-size: 3.47vw;
	}

	.fs14 {
		font-size: 3.73vw;
	}

	.fs15 {
		font-size: 4vw;
	}

	.fs16 {
		font-size: 4.27vw;
	}

	.fs17 {
		font-size: 4.53vw;
	}

	.fs18 {
		font-size: 4.8vw;
	}
}

/* weight */
.fw400 {
	font-weight: 400 !important;
}

.fw500 {
	font-weight: 500 !important;
}

.fw700 {
	font-weight: 700 !important;
}

/* line height */
.lh130 {
	line-height: 130%;
}

.lh140 {
	line-height: 140%;
}

.lh150 {
	line-height: 150%;
}

.lh160 {
	line-height: 160%;
}

.lh170 {
	line-height: 170%;
}

.lh180 {
	line-height: 180%;
}

.lh190 {
	line-height: 190%;
}

.lh200 {
	line-height: 200%;
}

.lh210 {
	line-height: 210%;
}


/* ========== float ========== */
/* clearfix */
.clearfix:before,
.clearfix:after {
	display: table;
	content: " ";
}

.clearfix:after {
	clear: both;
}

/* float */
.float_left {
	float: left;
}

.float_right {
	float: right;
}


/* ========== display ========== */
.disp_block {
	display: block !important;
}

.disp_iblock {
	display: inline-block !important;
}

.disp_inline {
	display: inline !important;
}

.disp_none {
	display: none;
}

.disp_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}


/* ========== position ========== */
.posi_relative {
	position: relative !important;
}

.posi_absolute {
	position: absolute !important;
}

.posi_fixed {
	position: fixed !important;
}


/* ========== overflow ========== */
.overflow_hidden {
	overflow: hidden !important;
}


/* ========== margin ========== */
/* margin-auto */
.mx_auto {
	margin-left: auto;
	margin-right: auto;
}


/* ========== device displaying ========== */
.sp_none {
	display: none;
}

.sp_only {
	display: block;
}

@media (min-width:750px) {
	.sp_none {
		display: block;
	}

	.sp_only {
		display: none;
	}
}


/* ========== animation for ScrollTrigger.min.js  ========== */
.invisible {
	transition: opacity 1s ease;
	opacity: 0.0;
}

.visible {
	transition: opacity 1s ease;
	opacity: 1.0;
}


/* other style
-----------------------------------------------*/
.allwrapper {
	/* Xscroll bar hidden */
	width: 100%;
	overflow: hidden;
}

.contents {
	width: 100%;
	max-width: 600px;
	background: #fff;
}

.cv01 ul {
	top: 3vw;
	left: 29.5vw;
}

.cv01 li {
	font-weight: 700;
	font-size: 4vw;
	line-height: 145%;
	color: #fff;
}

.cv01 li small {
	font-size: 3vw;
}

@media (min-width:752px) {
	.cv01 ul {
		top: 16px;
		left: 195px;
	}

	.cv01 li {
		font-size: 23px;
	}

	.cv01 li small {
		font-size: 16px;
	}

	.contents {
		border-left: 1px solid #ccc;
		border-right: 1px solid #ccc;
	}
}

.cv01 .btn {
	width: 85vw;
	top: 50vw;
	left: 50%;
	transform: translateX(-50%);
}

@media (min-width:752px) {
	.cv01 .btn {
		width: 498px;
		top: 310px;
		left: 55px;
		transform: translate(0);
	}
}

.cv01_btn-text {
	position: absolute;
	text-align: center;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	font-size: 3vw;
	bottom: 1%;
}

@media (min-width:752px) {
	.cv01_btn-text {
		bottom: 10px;
		font-size: 18px;
	}
}

.sec01 {
	padding-bottom: 12vw;
}

.sec01-p01 {
	top: 48vw;
	left: 0;
	width: 100%;
	font-size: 3.73vw;
	line-height: 192%;
}

.sec01-p02 {
	width: 85.33vw;
	margin-top: 2vw;
	font-size: 3.46vw;
	line-height: 175%;
}

@media (min-width:752px) {
	.sec01 {
		padding-bottom: 90px;
	}

	.sec01-p01 {
		top: 290px;
		font-size: 22px;
	}

	.sec01-p02 {
		width: 85.33%;
		margin-top: 15px;
		font-size: 26px;
	}
}

.sec02 h4 {
	background: #000;
	color: #fff;
	font-size: 5.33vw;
	line-height: 13.33vw;
}

.sec02 h3 {
	left: 0;
	width: 100%;
	font-size: 5.87vw;
	text-align: center;
	line-height: 140%;
	font-weight: 700;
}

.sec02 p {
	line-height: 160%;
}

h3.sec02-t01 {
	top: 30vw;
	font-size: 5.6vw;
}

.sec02-p01 {
	width: 47vw;
	top: 56vw;
	right: 0;
}

h3.sec02-t02 {
	top: 115vw;
}

.sec02-p02 {
	width: 44vw;
	top: 133vw;
	left: 7vw;
}

h3.sec02-t03 {
	top: 191.5vw;
}

.sec02-p03 {
	width: 48.67vw;
	top: 220vw;
	right: 0;
}

h3.sec02-t04 {
	top: 276vw;
	font-size: 5.33vw;
}

.sec02-p04 {
	width: 48.67vw;
	top: 302vw;
	right: 5.5vw;
}

h3.sec02-t05 {
	bottom: 80.67vw;
}

.sec02-p05-01 {
	width: 48.67vw;
	bottom: 26.67vw;
	left: 7.33vw;
}

.sec02-p05-02 {
	width: 87.33vw;
	bottom: 8vw;
	left: 7.33vw;
}

@media (min-width:752px) {
	.sec02 p {
		font-size: 21px;
	}

	.sec02 h4 {
		font-size: 32px;
		line-height: 100px;
	}

	.sec02 h3 {
		font-size: 34px;
	}

	h3.sec02-t01 {
		top: 195px;
		font-size: 32px;
	}

	.sec02-p01 {
		width: 48.67%;
		top: 360px;
	}

	h3.sec02-t02 {
		top: 710px;
	}

	.sec02-p02 {
		width: 48.6%;
		top: 828px;
		left: 8%;
	}

	h3.sec02-t03 {
		top: 1170px;
	}

	.sec02-p03 {
		width: 48.67%;
		top: 1335px;
	}

	h3.sec02-t04 {
		top: 1676px;
		font-size: 30.4px;
	}

	.sec02-p04 {
		width: 48.67%;
		top: 1811px;
		right: 5.5%;
	}

	h3.sec02-t05 {
		bottom: 474px;
	}

	.sec02-p05-01 {
		width: 48.67%;
		bottom: 150px;
		left: 7.33%;
	}

	.sec02-p05-02 {
		width: 87.33%;
		bottom: 40px;
		left: 7.33%;
	}
}

.cv02 .btn {
	width: 76.26vw;
	top: 53vw;
	left: 11.87vw;
}

@media (min-width:752px) {
	.cv02 .btn {
		width: 498px;
		top: 318px;
		left: 55px;
	}
}

.sec03 h3 {
	text-align: center;
	font-size: 4.53vw;
	font-weight: 700;
}

.sec03 p {
	margin-top: 6vw;
	line-height: 190%;
}

.sec03-box01 {
	width: 100%;
	top: 40vw;
	left: 0;
}

.sec03-box01 p {
	width: 74vw;
	margin-left: 17.33vw;
}

.sec03-box02 {
	width: 100%;
	top: 84vw;
	left: 0;
}

.sec03-box02 p {
	width: 74vw;
	margin-left: 17.33vw;
}

.sec03-box03 {
	width: 100%;
	top: 130vw;
	left: 0;
}

.sec03-box03 p {
	width: 83.33vw;
}

@media (min-width:752px) {
	.sec03 h3 {
		font-size: 34px;
	}

	.sec03 p {
		margin-top: 24px;
		font-size: 21px;
	}

	.sec03-box01 {
		top: 236px;
	}

	.sec03-box01 p {
		width: 74%;
		margin-left: 17.33%;
	}

	.sec03-box02 {
		top: 506px;
	}

	.sec03-box02 p {
		width: 74%;
		margin-left: 17.33%;
	}

	.sec03-box03 {
		top: 772px;
	}

	.sec03-box03 p {
		width: 83.33%;
	}
}

.sec04 {
	padding-bottom: 13vw;
	background: #f3f3f3;
}

.sec04 .box {
	width: 86.66vw;
	background: #fff;
	border: 1px solid #000;
}

.sec04 .box_dt {
	background: #000;
	color: #fff;
	text-align: center;
	line-height: 11.33vw;
	font-size: 4vw;
}

.sec04 .box_dd {
	padding: 4.7vw 5.3vw;
	line-height: 170%;
}

.sec04 .box_dd * {
	line-height: 170%;
}

.sec04 .box_dd02 a:link,
.sec04 .box_dd02 a:visited {
	text-decoration: underline;
}

.sec04 .box_dd02 .map {
	width: 100%;
	height: 0;
	margin-top: 5vw;
	padding-top: 90vw;
}

.sec04 .box_dd02 .map iframe {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.sec04 .box_dd04 li,
.sec04 .box_dd06 li,
.sec04 .box_dd08 li {
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 2vw;
	line-height: 140%;
}

.sec04 .box_dd04 li::before,
.sec04 .box_dd06 li::before,
.sec04 .box_dd08 li::before {
	content: "・ ";
}

.sec04 .box_dd04 li:last-child,
.sec04 .box_dd06 li:last-child,
.sec04 .box_dd08 li:last-child {
	margin-bottom: 0;
}

.sec04 .box_dd06 div {
	margin-top: 3vw;
}

@media (min-width:752px) {
	.sec04 {
		padding-bottom: 100px;
	}

	.sec04 .box {
		width: 86.66%;
	}

	.sec04 .box_dt {
		line-height: 60px;
		font-size: 24px;
	}

	.sec04 .box_dd {
		padding: 35px 40px;
		font-size: 17px;
	}

	.sec04 .box_dd02 .map {
		margin-top: 37px;
		padding-top: 675px;
	}

	.sec04 .box_dd04 li,
	.sec04 .box_dd06 li,
	.sec04 .box_dd08 li {
		margin-bottom: 15px;
	}

	.sec04 .box_dd06 div {
		margin-top: 22px;
	}

	.sec04 .fs10 {
		font-size: 17px;
	}
}

.sec05 {
	padding: 13vw 0;
}

.sec05 h4 {
	font-size: 5.7vw;
}

.sec05 .box {
	width: 86.66vw;
}

.sec05 .box_dt {
	margin-top: 7vw;
	font-weight: 700;
	font-size: 4vw;
}

.sec05 .box_dd {
	margin-top: 3vw;
}

.sec05 .box_dt span {
	color: #ff0000;
	font-size: 2.9vw;
}

.sec05 .box_dd.shikaku {
	line-height: 200%;
}

.sec05 .accept {
	margin-top: 7vw;
}

.sec05 .accept a:link,
.sec05 .accept a:visited {
	text-decoration: underline;
}

.btn_submit {
	width: 80vw;
	margin-top: 7vw;
	padding: 4vw 0;
	background: #7dcb1b;
	color: #fff;
	font-weight: 700;
	font-size: 7vw;
	font-family: 'Noto Sans JP', sans-serif;
	border-radius: 7px;
	cursor: pointer;
}

@media (min-width:752px) {
	.sec05 {
		padding: 95px 0;
	}

	.sec05 h4 {
		font-size: 30px;
	}

	.sec05 .box {
		width: 86.66%;
	}

	.sec05 .box_dt {
		margin-top: 50px;
		font-size: 20px;
	}

	.sec05 .box_dd {
		margin-top: 20px;
	}

	.sec05 .box_dd * {
		font-size: 16px;
	}

	.sec05 .box_dt span {
		font-size: 14px;
	}

	.sec05 .accept {
		margin-top: 50px;
		font-size: 16px;
	}

	.btn_submit {
		width: 50%;
		margin-top: 50px;
		padding: 20px 0;
		font-weight: 700;
		font-size: 30px;
		border-radius: 7px;
	}
}

.footer {
	padding: 13vw 0 7vw;
	background: #000;
}

.footer,
.footer * {
	color: #fff !important;
}

.footer a:link,
.footer a:visited {
	text-decoration: underline;
}

.company {
	width: 86vw;
	line-height: 180%;
}

.copyright {
	margin-top: 12vw;
}

@media (min-width:752px) {
	.footer {
		padding: 70px 0 30px;
	}

	.footer,
	.footer * {
		font-size: 14px;
	}

	.company {
		width: 86%;
	}

	.copyright {
		margin-top: 50px;
		font-size: 11px;
	}
}


/* privacy */
.privacy h1 {
	padding: 4.2vw 0 4.6vw;
	background: #000;
	text-align: center;
	color: #fff;
	font-size: 5vw;
}

.privacy_content {
	width: 90vw;
	margin: 8vw auto 0;
	padding-bottom: 13vw;
}

.privacy_content h2 {
	line-height: 170%;
	margin-top: 10vw;
	font-weight: 700;
	font-size: 4vw;
}

.privacy_content p {
	margin-top: 5vw;
	line-height: 170%;
}

.privacy_content ul {
	margin-top: 5vw;
}

.privacy_content li {
	margin-bottom: 1.5vw;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 150%;
}

.privacy_content a:link,
.privacy_content a:visited {
	text-decoration: underline;
}

@media (min-width:752px) {
	.privacy h1 {
		padding: 30px 0 35px;
		font-size: 35px;
	}

	.privacy_content {
		width: 90%;
		margin: 60px auto 0;
		padding-bottom: 100px;
	}

	.privacy_content h2 {
		margin-top: 70px;
		font-size: 22px;
	}

	.privacy_content p {
		margin-top: 30px;
		font-size: 16px;
	}

	.privacy_content ul {
		margin-top: 30px;
	}

	.privacy_content li {
		margin-bottom: 15px;
		font-size: 16px;
	}
}

.sec-interview_title {
	width: 90%;
	margin: 0 auto 45px;
}

.sec-interview_box {
	padding-inline: 6%;
	margin-bottom: 10vw;
}

.sec-interview_box-thum {
	margin-bottom: 16px;
}

.sec-interview_box-tit {
	font-size: 4.6vw;
	font-weight: bold;
	margin-bottom: 3.5vw;
	color: #FF7E38;
	line-height: 1.3;
}

.sec-interview_box-txt {
	font-size: 3.7vw;
	font-weight: 500;
	font-family: "Yu Gothic", "游ゴシック体", YuGothic, "游ゴシック", sans-serif;
	;
	line-height: 1.58;
	padding-left: 5.8%;
}

.sec-interview_box-txt.--first {
	margin-bottom: 6vw;
}

@media (min-width:752px) {
	.sec-interview_box {
		margin-bottom: 60px;
	}

	.sec-interview_box-tit {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.sec-interview_box-txt {
		font-size: 26px;
		padding-left: 36px;
		line-height: 1.7;
	}

	.sec-interview_box-txt.--first {
		margin-bottom: 40px;
	}
}

.m-select_item {
	background: #f5f5f5 url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
	background-size: 8px 10px;
}


.sec02_contents {
	position: relative;
}

.sec02_contents-t01 {
	top: 17vw;
}

.sec02_contents-p01 {
	right: 0;
	top: 50%;
	width: 50%;
	padding-right: 16px;
}

@media (min-width:752px) {
	.sec02_contents-t01 {
		top: 105px;
	}

	.sec02_contents-p01 {
		top: 250px;
	}
}

h3.sec02_contents-t02 {
	top: 15vw;
	font-size: 5vw;
}

.sec02_contents-p02 {
	top: 46%;
	right: 0;
	width: 50%;
	padding-right: 16px;
}

@media (min-width:752px) {
	h3.sec02_contents-t02 {
		top: 105px;
		font-size: 28px;
	}

	.sec02_contents-p02 {
		top: 250px;
	}
}

h3.sec02_contents-t02-2 {
	top: 16vw;
	font-size: 5.5vw;
}

p.sec02_contents-p02-2 {
	top: 35%;
	left: 5%;
	width: 48%;
	font-size: 3.4vw;
}

@media (min-width:752px) {
	h3.sec02_contents-t02-2 {
		top: 105px;
		font-size: 32px;
	}

	p.sec02_contents-p02-2 {
		top: 250px;
		font-size: 19px;
	}
}


.p-faq__title {
	width: 89%;
	margin: 0 auto 48px;
}

.p-faq__list {
	width: 89%;
	margin: 0 auto 72px;
}

.p-faq__item {
	position: relative;
	padding-bottom: 24px;
	margin-bottom: 40px;
}

.p-faq__item::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-image: linear-gradient(to right, #707070 8px, transparent 8px);
	background-size: 10px 1px;
	background-repeat: repeat-x;
	background-position: left bottom;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}

.p-faq__qa {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
}

.p-faq__qa:first-child {
	align-items: center;
}

.p-faq__label {
	max-width: 66px;
	width: 17%;
	display: block;
	flex-shrink: 0;
}

/* .p-faq__label--question {} */

.p-faq__question {
	font-size: 22px;
	line-height: 1.3;
	font-weight: 500;
}

/* .p-faq__label--answer {} */

.p-faq__answer {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.9;
}