@charset "utf-8";

/*============================
ヘッダー
============================*/
header {
	transition: transform 0.5s 0.3s;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 640px) {
	header {
		/* スマホ用の記述 */
		position: fixed;
		width: 100%;
		height: 0.6rem;
		background: #fff;
		z-index: 5;
	}
}

/* header::after {
	content: '';
	width: 100%;
	height: 1.7rem;
	background: #41261B;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
} */
@media screen and (max-width: 640px) {
	header::after {
		content: none;
	}

	body::after {
		content: '';
		width: 100%;
		height: 1.7rem;
		/* background: #41261B; */
		display: inline-block;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
	}
}

header .in {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media screen and (max-width: 640px) {
	header .in {
		/* display: none; */
		width: 100%;
		padding: 0;
	}
}

header .logo {
	padding-top: 0.10rem;
}
@media screen and (max-width: 640px) {
	header .logo {
		position: absolute;
		left: 0.15rem;
		top: 0.05rem;
		width: 1.50rem;
	}
}


/* ナビゲーション */
header .glo_navi {
	padding: 0.40rem 0;
	/* display: none; */
}
@media screen and (max-width: 640px) {
	header .glo_navi {
		display: none;
		width: 100%;
	}
}

header .glo_navi .list {
	display: flex;
	flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
	header .glo_navi .list {
		background-color: rgba(1, 39, 109,0.8);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		position: absolute;
		top: 0.6rem;
		left: 0;
		box-sizing: border-box;
		padding: 0.30rem 0.2rem 0.50rem;
	}
}

header .glo_navi .list .link {
	padding: 0 0.2rem;
}
@media screen and (max-width: 640px) {
	header .glo_navi .list .link {
		width: 100%;
		text-align: center;
	}
}

header .glo_navi .list .link a {
	text-decoration: none;
	color: #000;
	font-size: 0.16rem;
	letter-spacing: 0.075em;
	position: relative;
}
@media screen and (max-width: 640px) {
	header .glo_navi .list .link a {
		font-size: 0.18rem;
		padding:0.13rem 0;
		display: inline-block;
		color: #fff;
	}
}

header .glo_navi .list .link a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #01276D;
	bottom: -5px;
	transform: scale(0, 1);
	transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
	transition: transform 0.3s;  /*変形の時間*/
}
header .glo_navi .list .link a:hover::after {
	transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
	transform-origin: left top; /*左から右に向かう*/
}





/*============================
フッター
============================*/
footer {
	box-sizing: border-box;
	padding: 1rem 0;
	background-color: #01276D;
}
@media screen and (max-width: 640px) {
	footer {
		padding: 0.5rem 0;
	}
}


footer .box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
@media screen and (max-width: 640px) {
	footer .box .logo {
		width: 2rem;
		margin-bottom: 0.4rem;
	}
}


footer .box .nav {
	display: flex;
	flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
	footer .box .nav {
		margin-left: -0.2rem;
	}
}

footer .box .nav .item {
	box-sizing: border-box;
	padding: 0 0.2rem;
}
@media screen and (max-width: 640px) {
	footer .box .nav .item {
		width: 100%;
		margin-bottom: 0.25rem;
	}
}


footer .box .nav .item a {
	font-size: 0.16rem;
	color: #fff;
	position: relative;

}

footer .box .nav .item a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 0.5px;
	background: #fff;
	bottom: -2px;
	transform: scale(0, 1);
	transform-origin: right top;
	/*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
	transition: transform 0.3s;
	/*変形の時間*/
}

footer .box .nav .item a:hover::after {
	transform: scale(1, 1);
	/*ホバー後、x軸方向に1（相対値）伸長*/
	transform-origin: left top;
	/*左から右に向かう*/
}

/* コピーライト */
.copyright {
	font-size: 0.12rem;
	text-align: center;
	padding: 0.30rem 0;
	display: block;
	line-height: 1.5;
}
@media screen and (max-width: 640px) {
	.copyright {
		padding: 0.20rem 0;
	}
}


/*============================
共通
============================*/
/* フォント */
.lato {
	font-family: 'Lato', sans-serif;
}

.title {
	font-size: 0.48rem;
	font-weight: 300;
	color: #01276D;
	text-align: center;
	margin-bottom: 0.35rem;
}
@media screen and (max-width: 640px) {
	.title {
		font-size: 0.28rem;
		margin-bottom: 0.25rem;
	}
}


/*============================
MV
============================*/
#mv .ph_wrap {
	width: 100%;
	height: 7rem;
}
@media screen and (max-width: 640px) {
	#mv .ph_wrap {
		height: 3rem;
	}
}


#mv .ph_wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/*============================
リード
============================*/
#top_lead {
	margin-top: 0.7rem;
}


#top_lead .text {
	font-size: 0.16rem;
	text-align: center;
	max-width: 6.5rem;
	width: 100%;
	margin: auto;
	line-height: 2;
}
@media screen and (max-width: 640px) {
	#top_lead .text {
		text-align: left;
	}
}


/*============================
SERVICE
============================*/
#service {
	padding: 1.3rem 0 0.8rem;
}
@media screen and (max-width: 640px) {
	#service {
		padding: 0.8rem 0 0;
	}
}

#service .title {
	margin-bottom: 0.5rem;
}
@media screen and (max-width: 640px) {
	#service .title {
		margin-bottom: 0.3rem;
	}
}

#service .lead {
	font-size: 0.18rem;
	text-align: center;
	line-height: 2;
	font-weight: 300;
	margin-bottom: 0.8rem;
}
@media screen and (max-width: 640px) {
	#service .lead {
		font-size: 0.15rem;
	}
}


#service .cont_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 1rem;
}

#service .cont_wrap:nth-child(odd) {
	flex-flow: row-reverse;
}
@media screen and (max-width: 640px) {
	#service .cont_wrap:nth-child(odd) {
		flex-flow: column;
	}
}


#service .cont_wrap .ph_wrap {
	width: 50%;
	height: 4.4rem;
	object-fit: cover;
	padding-right: 0.20rem;
	box-sizing: border-box;
	position: relative;
}
@media screen and (max-width: 640px) {
	#service .cont_wrap .ph_wrap {
		width:100%;
		height: 2.5rem;
		padding-right: 0;
	}
}


#service .cont_wrap:nth-child(odd) .ph_wrap {
	padding-right: 0;
	padding-left: 0.20rem;
}
@media screen and (max-width: 640px) {
	#service .cont_wrap:nth-child(odd) .ph_wrap {
		padding-left: 0;
	}
}


#service .cont_wrap .ph_wrap::after {
	content: '';
	width: calc(100% - 0.20rem);
	height: 4.4rem;
	background: #E7EAF1;
	position: absolute;
	bottom: -0.20rem;
	right: -0rem;
	z-index: -1;
}
@media screen and (max-width: 640px) {
	#service .cont_wrap .ph_wrap::after {
		height: 2.5rem;
		width: 100%;
		right: -0.1rem;
		top: 0.1rem;
	}
}

#service .cont_wrap:nth-child(odd) .ph_wrap::after {
	right: -0.2rem;
}
@media screen and (max-width: 640px) {
	#service .cont_wrap:nth-child(odd) .ph_wrap::after {
		right: -0.1rem;
	}
}


#service .cont_wrap .ph_wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#service .cont_wrap .text_wrap {
	width: 50%;
	box-sizing: border-box;
	padding-left: 0.40rem;
}
@media screen and (max-width: 640px) {
	#service .cont_wrap .text_wrap {
		width: 100%;
		padding-left: 0.2rem;
	}
}


#service .cont_wrap:nth-child(odd) .text_wrap {
	padding-left: 0;
	orphans: 0.40rem;
}


#service .cont_wrap .text_wrap .cont_title {
	font-size: 0.38rem;
	font-weight: 300;
	color: #01276D;
	margin-bottom: 0.35rem;
}
@media screen and (max-width: 640px) {
	#service .cont_wrap .text_wrap .cont_title {
		font-size: 0.23rem;
		margin: 0.30rem 0 0.2rem;
		text-align: center;
	}
}


#service .cont_wrap .text_wrap .text {
	font-size: 0.16rem;
	font-weight: 300;
	line-height: 2;
}

#service .cont_wrap .text_wrap .btn {
	width: 2.7rem;
	margin-top: 0.50rem;
}


#service .cont_wrap .text_wrap .btn a {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 0.20rem;
	font-size: 0.16rem;
	font-weight: 300;
	color: #fff;
	text-align: center;
	background: #01276D;
}


/*============================
Other
============================*/
#other {
	padding-top: 0.8rem;
	padding-bottom: 1rem;
	background: #E7EAF1;
}
@media screen and (max-width: 640px) {
	#other {
		padding-bottom: 0.5rem;
	}
}


#other .title {
	margin-bottom: 0.50rem;
}
@media screen and (max-width: 640px) {
	#other .title {
		margin-bottom: 0.30rem;
	}
}


#other .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#other .list .item {
	width: calc(100% / 4 - 0.20rem);
	box-sizing: border-box;
	background: #fff;
	padding-bottom: 0.20rem;
}
@media screen and (max-width: 640px) {
	#other .list .item {
		width: 100%;
		margin-bottom: 0.50rem;
	}
}


#other .list .item .item_title {
	text-align: center;
	margin-top: 0.15rem;
	font-size: 0.16rem;
	line-height: 1.65;
	margin-bottom: 0.10rem;
	min-height: 0.60rem;
}
@media screen and (max-width: 640px) {
	#other .list .item .item_title {
		margin-top: 0.1rem;
		font-size: 0.15rem;
		min-height: auto;
	}
}

/* ボタン */
#other .list .item .btn  {
	width: 100%;
}


#other .list .item .btn a {
	display: block;
    width: 2rem;
    line-height: 0;
    padding: 0.2rem 0;
    font-size: 0.13rem;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    background: #01276D;
    color: #fff;
    margin: auto;
	margin-bottom: 0.10rem;
}
@media screen and (max-width: 640px) {
	#other .list .item .btn a {
	}
}

#other .list .item .btn a::after{
    content: '';
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    display: inline-block;
    width: 5px;
    height: 5px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
}

#other .list .item .btn a:hover {
	opacity: 0.7;
}


/*============================
overview
============================*/
#overview {
	padding-top: 0.8rem;
}


#overview table {
	width: 8.00rem;
	margin: auto;
	border-collapse: collapse;
	margin-top: 0.50rem;
}
@media screen and (max-width: 640px) {
	#overview table {
		width: 100%;
		margin-top: 0.50rem;
	}
}

#overview table tr {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
@media screen and (max-width: 640px) {
	#overview table tr {
		border-top: none;
		border-bottom: none;
	}
}


#overview table th {
	width: 30%;
	font-size: 0.16rem;
	padding: 0.25rem 0.10rem;
	box-sizing: border-box;
	text-align: left;
	line-height: 1.65;
	color: #01276D;
}
@media screen and (max-width: 640px) {
	#overview table th {
		width: 100%;
		display: block;
		font-size: 0.15rem;
		background: #E7EAF1;
		padding: 0.15rem 0.10rem;
	}
	
}


#overview table td {
	width: 70%;
	font-size: 0.16rem;
	padding: 0.25rem 0;
	box-sizing: border-box;
	line-height: 1.65;
}
@media screen and (max-width: 640px) {
	#overview table td {
		width: 100%;
		display: block;
		font-size: 0.15rem;
		padding: 0.15rem 0.10rem;
	}
}

#overview .ph_wrap {
	margin-top: 1.5rem;
	width: 100%;
}
@media screen and (max-width: 640px) {
	#overview .ph_wrap {
		margin-top: 0.8rem;
		width: 100%;
		height: 3rem;
	}
	#overview .ph_wrap img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}


/*============================
contact
============================*/
#contact {
	padding: 1rem 0;
	background: #E7EAF1;
}
@media screen and (max-width: 640px) {
	#contact {
		padding: 0.8rem 0;
	}
}


#contact .lead {
	font-size: 0.16rem;
	text-align: center;
	line-height: 1.65;
}

#contact .downlord_link {
	text-align: center;
	margin-top: 0.4rem;
	margin-bottom: 0.8rem;
}

#contact .downlord_link h3 {
	font-size: 0.25rem;
	font-weight: 300;
	color: #01276D;
	margin-bottom: 0.15rem;
	position: relative;
}
@media screen and (max-width: 640px) {
	#contact .downlord_link h3 {
		font-size: 0.18rem;
	}
}

#contact .downlord_link h3 span {
	position: relative;
}

#contact .downlord_link h3 span::before {
	width: 0.3rem;
	height: 1px;
	content: '';
	background-color: #01276D;
	position: absolute;
	left: -0.4rem;
	top: 0.23rem;
}
@media screen and (max-width: 640px) {
	#contact .downlord_link h3 span::before {
		top: 0.15rem;
	}
}


#contact .downlord_link h3 span::after {
	width: 0.3rem;
	height: 1px;
	content: '';
	background-color: #01276D;
	position: absolute;
	right: -0.4rem;
	top: 0.23rem;
}
@media screen and (max-width: 640px) {
	#contact .downlord_link h3 span::after {
		top: 0.15rem;
	}
}

#contact .downlord_link li {
	margin-bottom: 0.2rem;
}


#contact .downlord_link a {
	font-size: 0.16rem;
	color: #01276D;
	text-decoration: underline;
}
@media screen and (max-width: 640px) {
	#contact .downlord_link a {
		font-size: 0.15rem;
	}
}


#contact .downlord_link a:hover {
	opacity: 0.7;
}

/* フォーム全体 */
.form_table {
	box-sizing: border-box;
	width: 8rem;
	margin: auto;
	border-top: 1px solid #01276D;
	border-bottom: 1px solid #01276D;
	padding: 0.30rem 0;

}

@media screen and (max-width: 640px) {
	.form_table {
		width: 100%;
	}
}

.form_table table {
	width: 6rem;
	margin: auto;
	border-collapse: collapse;
	font-size: 0.16rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
	.form_table table {
		border-top: 0;
		table-layout: fixed;
		word-break: break-all;
		word-wrap: break-all;
		width: 100%;
	}
}


.form_table table .title {
	text-align: left;
	vertical-align: top;
	line-height: 1.45;
	font-size: 0.15rem;
	display: block;
	margin-bottom: 0rem;
}

@media screen and (max-width: 599px) {
	.form_table table .title {
		width: 100%;
		display: block;
		border-bottom: none;
		/* background: rgba(95, 193, 170, 0.1); */
		/* padding: 0.13rem; */
		box-sizing: border-box;
	}
}


.form_table table .text {
	padding: 0.15rem 0;
	display: block;
	margin-bottom: 0.15rem;

}

@media screen and (max-width: 599px) {
	.form_table table .text {
		display: block;
		width: 100%;
		border-bottom: none;
		margin-bottom: 0.15rem;
	}
}


/* フォーム（text） */
.form_table table .text input[type="text"] {
	background-color: #F0F0F0;
	font-size: 0.16rem;
	padding: 0.06rem;
	border: 1px solid #707070;
	box-sizing: border-box;
}

/* フォーム（tel） */
.form_table table .text input[type="tel"] {
	background-color: #F0F0F0;
	font-size: 0.16rem;
	padding: 0.06rem;
	border: 1px solid #707070;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	.form_table table .text input[type="tel"] {
		font-size: 0.14rem;
	}
}

/* フォーム（mail） */
.form_table table .text input[type="email"] {
	background-color: #F0F0F0;
	font-size: 0.16rem;
	padding: 0.06rem;
	border: 1px solid #707070;
	box-sizing: border-box;
}



/* 幅40% */
.form_table table .text .w40 {
	width: 40%;
}

/* 幅100% */
.form_table table .text .w100 {
	width: 100%;
}

/* フォーム（textarea） */
.form_table table .text textarea {
	background-color: #F0F0F0;
	font-size: 0.16rem;
	padding: 0.06rem;
	border: 1px solid #707070;
	box-sizing: border-box;
	width: 100%;
	min-height: 2.50rem;
}

/* フォーム（radio） */
.form_table table .text .radio_list {
	display: flex;
	flex-wrap: wrap;
}

.form_table table .text .radio_list .mwform-radio-field {
	width: 31%;
	padding: 0.07rem 0;
}

@media screen and (max-width: 599px) {
	.form_table table .text .radio_list .mwform-radio-field {
		width: 50%;
	}
}


.form_table table .text .radio_list .radio input {
	position: relative;
	top: -0.02rem;
	display: inline-block;
	margin-right: 0.06rem;
	width: 0.14rem;
	height: 0.14rem;
}

.mw_wp_form .horizontal-item+.horizontal-item {
	margin-left: 0 !important;
}

/* radioボタンの次に来るtextの場合 */
.form_table table .text .radio_list+input[type="text"] {
	margin-top: 0.05rem;
}

/* フォーム（select） */
.form_table table .text select {
	background-color: #F0F0F0;
	font-size: 0.16rem;
	padding: 0.06rem;
	border: 1px solid #707070;
	box-sizing: border-box;
	width: 50%;
}

/* 送信ボタンエリア */
.form_table .submit_btn_wrap .btn_list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

/* ボタン共通 */
.form_table .submit_btn_wrap .btn_list .btn {
	width: 100%;
	max-width: 3.00rem;
	margin: 0 0.15rem;
	position: relative;
}

.form_table .submit_btn_wrap .btn_list .btn input {
	display: block;
	width: 100%;
	line-height: 0;
	padding: 0.29rem 0 0.31rem;
	font-size: 0.18rem;
	font-weight: 700;
	text-align: center;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
}

/* 送信ボタン */
.form_table .submit_btn_wrap .btn_list .btn.submit input {
	border: none;
	background-color: #01276D;
	color: #fff;
}

.form_table .submit_btn_wrap .btn_list .btn.submit:hover input {
	background-color: #fff;
	color: #01276D;
}

.form_table .submit_btn_wrap .btn_list .btn.submit::after {
	content: "";
	width: 0.12rem;
	height: 0.12rem;
	background-image: url(../img/common/btn_arrow_green.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0.15rem;
	transform: translateY(-50%);
	transition: all 0.3s;
}

.form_table .submit_btn_wrap .btn_list .btn.submit:hover::after {
	background-image: url(../img/common/btn_arrow_white.svg);
	right: 0.12rem;
}

/* 戻るボタン */
.form_table .submit_btn_wrap .btn_list .btn.back input {
	border: 1px solid #999;
	background-color: #DDD;
	color: #666;
}

.form_table .submit_btn_wrap .btn_list .btn.back:hover input {
	background-color: #999;
	color: #FFF;
}

.form_table .submit_btn_wrap .btn_list .btn.back::after {
	content: "";
	width: 0.12rem;
	height: 0.12rem;
	background-image: url(../img/common/btn_arrow_grey_rev.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0.15rem;
	transform: translateY(-50%);
	transition: all 0.3s;
}

.form_table .submit_btn_wrap .btn_list .btn.back:hover::after {
	background-image: url(../img/common/btn_arrow_white_rev.svg);
	left: 0.12rem;
}