@charset "utf-8";
/* CSS Document */
/*====================================
Reset
====================================*/
html{
	width: 100%;
	font-size: 2.66666vw; /* 画面幅375pxの時1rem=10px */
	font-weight: 400;
}
body{
	min-width: 320px;
	line-height: 1;
	position: relative;
	overflow-x: hidden;
	overflow-wrap: break-word;
	word-wrap: break-word;
	font-family: "Noto Sans JP","メイリオ","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #000;
	background: #FBF9F6;
}
body .body-head-bg-triangle{
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 33rem;
	clip-path: polygon(0 0, 0% 100%, 100% 0);
}

@media print,screen and (min-width: 600px) {
	html{
		font-size: 0.76923vw; /* 画面幅1300pxの時1rem=10px */
	}
	body .body-head-bg-triangle{
		width: 124.9rem;
		height: 99.5rem;
		left: calc((100% - 110rem) / 2 - 45rem);
	}
}
@media print,screen and (min-width: 1300px) {
	html{
		font-size: 10px;
	}
}

img{
	width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a{
	text-decoration: none;
	color:inherit;
}
svg{
	width: 100%;
	height: 100%;
}
a,
input, textarea, button, label, select,
.js--btn-hamburger,
.js--btn-ac, .js--btn-tab,
.js--btn-popup{
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	outline: 0;
}
::selection {
	background: rgba(29, 45, 71, .15);
}

/*====================================
Common
====================================*/
.fw600{
	font-weight: 600;
}
.anchor{
	display: block;
	width: 0;
	height: 0;
	padding-top: 6.6rem;
	margin-top: -6.6rem;
}
.width--cmn,
.width--cmn2{
	margin-left: auto;
	margin-right: auto;
	width: 33.5rem;
}

@media only screen and (max-width: 599px) {
	.disp--pc{
		display: none !important;
	}
}

@media print,screen and (min-width: 600px) {
	.disp--sp{
		display: none !important;
	}
	.anchor{
		padding-top: 6rem;
		margin-top: -6rem;
	}
	.width--cmn{
		width: 110rem;
	}
	.width--cmn2{
		width: 90rem;
	}
}

/* アイコン
--------------------------------------*/
.icon--svg{
	display: block;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-position: center;
	mask-size: contain;
	-webkit-mask-size: contain;
	background: #000;
	transition: background .3s ease;
}
.icon--mail{
	mask-image: url(../img/common/icon-mail.svg);
	-webkit-mask-image: url(../img/common/icon-mail.svg);
}
.icon--tel{
	mask-image: url(../img/common/icon-tel.svg);
	-webkit-mask-image: url(../img/common/icon-tel.svg);
}

/* タイトル
--------------------------------------*/
.sec-pagettl{
	position: relative;
	box-sizing: border-box;
	padding-top: 6.6rem;
}
.sec-pagettl .sec-inner{
	box-sizing: border-box;
	position: relative;
	min-height: 14rem;
	display: flex;
	align-items: center;
}
.sec-pagettl .pagettl{
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1.72;
	color: #fff;
}
.sec-pagettl .pnkz{
	font-size: 1rem;
	line-height: 2;
	text-align: right;
	max-width: 50%;
}
.sec-pagettl .pnkz .txt--line-clamp{
	-webkit-line-clamp: 1;
	max-height: calc(1.93em * 1);
}
.sec-pagettl + section{
	position: relative;
	z-index: 2;
}

@media only screen and (max-width: 599px) {
	.sec-pagettl{
		padding-bottom: 13rem;
	}
	.page--single .sec-pagettl{
		padding-bottom: 0;
	}
	.sec-pagettl .pnkz{
		position: absolute;
		bottom: 0;
		right: 0;
	}
}

@media print,screen and (min-width: 600px) {
	.sec-pagettl{
		padding-top: 6.2rem;
	}
	.sec-pagettl .sec-inner{
		min-height: 34rem;
		justify-content: space-between;
	}
	.sec-pagettl .pagettl{
		font-size: 3.6rem;
	}
	.sec-pagettl .pnkz{
		font-size: 1.3rem;
		display: flex;
	}
	.sec-pagettl .pnkz li:last-child{
		flex: 1;
	}
	.page--single .sec-pagettl .sec-inner{
		min-height: 19.6rem;
		justify-content: flex-end;
		align-items: flex-end;
	}
	.sec-pagettl + section{
		box-sizing: border-box;
		background-color: #FBF9F6;
		padding: 10rem 10rem 0 10rem;
		border-radius: 1rem 1rem 0 0;
	}
}


/* 色
--------------------------------------*/
.c--white{
	color: #fff;
}
.c--black{
	color: #000;
}
.c--gray{
	color: #aeaeae;
}
.c--navy{
	color: #1D2D47;
}
.c--red{
	color: #941414;
}

.bg--white{
	background-color: #fff;
}
.bg--white2{
	background-color: #FBF9F6;
}
.bg--black{
	background-color: #000;
}
.bg--black2{
	background-color: #464646;
}
.bg--gray{
	background-color: #727171;
}
.bg--navy{
	background-color: #1D2D47;
}
.bg--light-navy{
	background-color: #E5E9EF;
}
.bg--ivory{
	background-color: #F5F2EC;
}

/* ホバー
--------------------------------------*/
@media print,screen and (min-width: 600px) {
	.hover--c-white,
	.hover--c-navy{
		transition: color .3s ease;
	}
	a.hover--c-white:hover,
	a:hover .hover--c-white,
	.txt--line-clamp.hover--c-white a:hover,
	.has--child:hover .hover--c-white{
		color: #fff;
	}
	a.hover--c-navy:hover,
	a:hover .hover--c-navy{
		color: #1D2D47;
	}

	.hover--bg-white,
	.hover--bg-gray,
	.hover--bg-navy{
		transition: background .3s ease, color .3s ease;
	}
	a.hover--bg-white:hover,
	a:hover .hover--bg-white{
		background-color: #fff;
	}
	a.hover--bg-gray:hover,
	a:hover .hover--bg-gray{
		background-color: #727171;
	}
	a.hover--bg-navy:hover,
	a:hover .hover--bg-navy{
		background-color: #1D2D47;
	}

	.hover--underline{
		background-position: right bottom;
		background-size: 0 100%;
		background-image: linear-gradient(to bottom, transparent calc(100% - 1px), currentColor 1px);
		background-repeat: no-repeat;
		transition: color .3s ease, background-size 0.6s cubic-bezier(0.19, 1, 0.22, 1);
	}
	a.hover--underline:hover,
	a:hover .hover--underline,
	.has--dd:hover > .hover--underline,
	.js--btn-popup.hover--underline:hover,
	.js--btn-popup:hover .hover--underline{
		background-position: left bottom;
		background-size: 100% 100%;
	}

	.hover--opacity,
	.hover--img-opacity > img{
		transition: opacity .3s ease;
	}
	a.hover--opacity:hover,
	a.hover--img-opacity:hover > img,
	a:hover .hover--img-opacity > img{
		opacity: 0.7;
	}
	.hover--img-zoom{
		position: relative;
	}
	.hover--img-zoom > img{
		transition: transform .3s ease-in-out;
	}
	a.hover--img-zoom:hover > img,
	a:hover .hover--img-zoom > img{
		transform: scale(1.1);
	}
}

/* 画像
--------------------------------------*/
.img--fit img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* IE */
.browser--ie .img--fit{
	position: relative;
	overflow: hidden;
}
.browser--ie .img--fit img{
	width: auto;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.img--posted{
	display: block;
	width: 100%;
	position: relative;
	height: 0;
	overflow: hidden;
	padding-bottom: 75%;
}
.img--posted > img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.img--dummy{
	background-color: #fff;
}
.img--dummy .logo{
	position: absolute;
	width: 23.9rem;
	height: 3.7rem;
	left: calc((100% - 23.9rem) / 2);
	top: calc((100% - 3.7rem) / 2);
}

/* テキスト
--------------------------------------*/
div.txt--i,
p.txt--i,
ul.txt--i > li,
li.txt--i{
	padding-left: 1em;
	text-indent: -1em;
}
.txt--u{
	text-decoration: underline;
}
.txt--center{
	text-align: center;
}

@media print,screen and (min-width: 600px) {
	.txt--u:hover{
		text-decoration: none;
	}
}

.txt--cmn{
	font-size: 1.6rem;
	line-height: 1.93;
}
.txt--cmn-p-margin p:not(:first-child){
	margin-top: 1.93em;
}

.txt--line-clamp{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	max-height: calc(1.93em * 2);
	overflow: hidden;
}
.txt--line-clamp a{
	transition: color .3s ease;
}
.txt--line-clamp .hover--underline{
	transition: background-size 1.5s cubic-bezier(0.19, 1, 0.22, 1), color .3s ease;
}


/* iframe処理
--------------------------------------*/
.gmap--wrap{
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-top: 119.4%;
}
.gmap--wrap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.movie--wrap{
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.movie--wrap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*====================================
pagenavi
====================================*/
.wp-pagenavi{
	display: flex;
	justify-content: center;
	margin-top: 8rem;
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .first,
.wp-pagenavi .last{
	box-sizing: border-box;
	height: 3.4rem;
	position: relative;
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend{
	box-sizing: border-box;
	font-size: 1.6rem;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.4rem;
	border: 1px solid #000;
}
.wp-pagenavi .current{
	background-color: #1D2D47;
	border-color: #1D2D47;
	color: #fff;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink{
	width: 1.4rem;
}
.wp-pagenavi .first,
.wp-pagenavi .last{
	width: 2.3rem;
}
.wp-pagenavi .first,
.wp-pagenavi .previouspostslink{
	margin-right: 1rem;
}
.wp-pagenavi .last,
.wp-pagenavi .nextpostslink{
	margin-left: 1rem;
}
.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .nextpostslink:before,
.wp-pagenavi .first:before,
.wp-pagenavi .last:before,
.wp-pagenavi .first:after,
.wp-pagenavi .last:after{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	box-sizing: border-box;
	width: 1.9rem;
	height: 1.9rem;
	border-top: solid 1px #000;
	top: 50%;
}
.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .first:before,
.wp-pagenavi .first:after{
	border-left: solid 1px #000;
}
.wp-pagenavi .nextpostslink:before,
.wp-pagenavi .last:before,
.wp-pagenavi .last:after{
	border-right: solid 1px #000;
}
.wp-pagenavi .previouspostslink:before{
	left: 50%;
	transform: translate(-20%,-50%) rotate(-45deg);
}
.wp-pagenavi .first:before{
	left: 0.5rem;
	transform: translateY(-50%) rotate(-45deg);
}
.wp-pagenavi .first:after{
	right: -0.8rem;
	transform: translateY(-50%) rotate(-45deg);
}
.wp-pagenavi .nextpostslink:before{
	right: 50%;
	transform: translate(20%,-50%) rotate(45deg);
}
.wp-pagenavi .last:before{
	left: -0.8rem;
	transform: translateY(-50%) rotate(45deg);
}
.wp-pagenavi .last:after{
	right: 0.5rem;
	transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 600px) {
	.wp-pagenavi{
		margin-top: 10rem;
	}
	.wp-pagenavi .page,
	.wp-pagenavi .current,
	.wp-pagenavi .extend,
	.wp-pagenavi .previouspostslink,
	.wp-pagenavi .nextpostslink,
	.wp-pagenavi .first,
	.wp-pagenavi .last{
		width: 4rem;
	}
	.wp-pagenavi .page,
	.wp-pagenavi .current,
	.wp-pagenavi .extend{
		margin-left: 1rem;
		margin-right: 1rem;
		height: 4rem;
	}
	.wp-pagenavi .page{
		transition: background .3s ease, color .3s ease, border .3s ease;
	}
	.wp-pagenavi a.page:hover{
		background-color: #1D2D47;
		border-color: #1D2D47;
		color: #fff;
	}
	.wp-pagenavi .first{
		margin-right: 2rem;
	}
	.wp-pagenavi .previouspostslink{
		margin-right: 4rem;
	}
	.wp-pagenavi .last{
		margin-left: 2rem;
	}
	.wp-pagenavi .nextpostslink{
		margin-left: 4rem;
	}
	.wp-pagenavi .previouspostslink:before,
	.wp-pagenavi .nextpostslink:before,
	.wp-pagenavi .first:before,
	.wp-pagenavi .last:before,
	.wp-pagenavi .first:after,
	.wp-pagenavi .last:after{
		transition: border .3s ease;
	}
	.wp-pagenavi .previouspostslink:hover:before,
	.wp-pagenavi .nextpostslink:hover:before,
	.wp-pagenavi .first:hover:before,
	.wp-pagenavi .last:hover:before,
	.wp-pagenavi .first:hover:after,
	.wp-pagenavi .last:hover:after{
		border-color: #1D2D47;
	}
}


/*====================================
parts
===================================*/
.ttl--cmn1,
.ttl--cmn1-border{
	box-sizing: border-box;
	border-radius: 1rem;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.66;
	padding: 1.5rem 2rem;
	margin-bottom: 3rem;
}
.ttl--cmn1{
	color: #fff;
	background-color: #1D2D47;
}
.ttl--cmn1-border{
	border: 1px solid #fff;
	color: #fff;
}
.ttl--cmn2{
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 1.66;
	color: #1d2d47;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #1D2D47;
	margin-bottom: 3rem;
}
.ttl--unique1{
	margin-bottom: 4rem;
	font-size: 2.2rem;
	padding-bottom: 1.5rem;
	color: #1d2d47;
	font-weight: 600;
	position: relative;
	text-align: center;
}
.ttl--unique1:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	width: 4rem;
	height: 0.2rem;
	border-radius: 0.5rem;
	bottom: 0;
	left: calc((100% - 4rem) / 2);
	background-color: #1d2d47;
}

@media print,screen and (min-width: 600px) {
	.ttl--cmn1,
	.ttl--cmn1-border{
		font-size: 2.2rem;
		padding: 1.7rem 3rem;
		margin-bottom: 4rem;
	}
	.ttl--cmn2{
		font-size: 2.2rem;
		margin-bottom: 4rem;
	}
	.ttl--unique1{
		margin-bottom: 6rem;
		font-size: 3rem;
		padding-bottom: 2rem;
	}
}

.btn--cmn1{
	box-sizing: border-box;
	width: 100%;
	min-height: 8rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-size: 1.6rem;
	padding: 0.5rem 2.5rem;
	background-color: #1D2D47;
	color: #fff;
	transition: background .3s ease, color .3s ease;
}
.btn--cmn1:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	width: 0.7rem;
	height: 1rem;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	border-radius: 0.2rem;
	top: calc((100% - 1rem) / 2);
	right: 1.9rem;
	background-color: #fff;
	transition: background .3s ease;
}

@media print,screen and (min-width: 600px) {
	.btn--cmn1:hover{
		background-color: #fff;
		color: #1d2d47;
	}
	.btn--cmn1:hover:before{
		background-color: #1D2D47;
	}
}

.arrow--right{
	width: 3.1rem;
	height: 3.1rem;
	background-color: #1D2D47;
	border: 1px solid #1D2D47;
	border-radius: 100%;
	position: relative;
	transition: background .3s ease;
}
.arrow--right:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	width: 0.7rem;
	height: 1rem;
	border-radius: 0.2rem;
	top: calc((100% - 1rem) / 2);
	left: calc((100% - 0.7rem) / 2);
	background-color: #fff;
	transition: background .3s ease;
}
.link--arrow{
	position: relative;
	display: inline-block;
	font-size: 1.6rem;
	padding-right: 4.1rem;
	min-height: 3.1rem;
	padding-top: calc((3.1rem - 1.6rem) / 2);
	transition: color .3s ease;
}
.link--arrow .arrow--right{
	position: absolute;
	right: 0;
	top: 0;
}

@media print,screen and (min-width: 600px) {
	a.arrow--right:hover,
	a:hover .arrow--right{
		background-color: #fff;
	}
	a.arrow--right:hover:before,
	a:hover .arrow--right:before{
		background-color: #1D2D47;
	}
	a.link--arrow:hover,
	a:hover .link--arrow{
		color: #1D2D47;
	}
}

.table--cmn1{
	box-sizing: border-box;
	width: 100%;
	border-radius: 1rem;
	overflow: hidden;
	background-color: #fff;
}
.table--cmn1 th,
.table--cmn1 td{
	box-sizing: border-box;
	padding: 2rem;
}
.table--cmn1 th{
	background-color: #AEAEAE;
	color: #fff;
}

.table--cmn2-guide-box{
	margin-bottom: 1.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.table--cmn2-guide-box .icon{
	margin-left: 0.3rem;
	width: 3.15rem;
}
.table--cmn2{
	box-sizing: border-box;
	width: 100%;
	border-radius: 1rem;
	overflow: hidden;
	background-color: #fff;
	table-layout: fixed;
}
.table--cmn2 th,
.table--cmn2 td{
	box-sizing: border-box;
	padding: 1.3rem 1.5rem;
	text-align: center;
	vertical-align: middle;
}
.table--cmn2 th:not(:last-child),
.table--cmn2 td:not(:last-child){
	border-right: 0.2rem solid #FBF9F6;
}
.table--cmn2 tr:not(:last-child) th,
.table--cmn2 tr:not(:last-child) td,
.table--cmn2 thead tr:last-child th{
	border-bottom: 0.2rem solid #FBF9F6;
}
.table--cmn2 thead th{
	background-color: #AEAEAE;
	color: #fff;
	padding-top: 2.9rem;
	padding-bottom: 2.9rem;
}
.table--cmn2 tbody th{
	background-color: #E5E9EF;
}

@media only screen and (max-width: 599px) {
	.table--cmn1 th,
	.table--cmn1 td{
		display: block;
	}

	.table--cmn2-wrap-scroll{
		overflow-x: scroll;
		width: 100vw;
		left: calc((100vw - 100%) / 2 * -1);
		position: relative;
	}
	.table--cmn2-wrap-scroll .table--cmn2-wrap-scroll-inner{
		width: 90rem;
		padding: 0 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	.table--cmn1 th,
	.table--cmn1 td{
		vertical-align: middle;
	}
	.table--cmn1 tr:not(:last-child) th,
	.table--cmn1 tr:not(:last-child) td{
		border-bottom: 0.2rem solid #FBF9F6;
	}
	.table--cmn1 th{
		padding: 3rem;
		width: 17.6rem;
	}
	.table--cmn1 td{
		padding: 3rem;
	}
}

.list--article1 .article-card .article-card-inner{
	display: block;
}
.list--article1 .article-card .article-img{
	border-radius: 1rem;
}
.list--article1 .article-card .article-ttl{
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	font-size: 1.8rem;
	line-height: 1.66;
	max-height: calc(1.66em * 2);
}

@media only screen and (max-width: 599px) {
	.list--article1 .article-card:not(:last-child){
		margin-bottom: 4rem;
	}
}

@media print,screen and (min-width: 600px) {
	.list--article1{
		display: flex;
		flex-wrap: wrap;
	}
	.list--article1 .article-card{
		width: calc((100% - 4rem * 2) / 3);
	}
	.list--article1 .article-card:not(:nth-child(3n)){
		margin-right: 4rem;
	}
	.list--article1 .article-card:nth-child(n+4){
		margin-top: 6rem;
	}
}

.list--article2 .article-card:not(:last-child){
	padding-bottom: 3rem;
	border-bottom: 1px solid #DFDAD0;
}
.list--article2 .article-card:not(:first-child){
	padding-top: 3rem;
}
.list--article2 .article-card .article-head{
	display: flex;
	align-items: center;
}
.list--article2 .article-card .article-cat{
	box-sizing: border-box;
	border-radius: 1rem;
	min-width: 7.2rem;
	font-size: 1.3rem;
	padding: 0.9rem;
	margin-right: 1rem;
}
.list--article2 .article-card .article-ttl{
	-webkit-line-clamp: 3;
	max-height: calc(1.93em * 3);
}

@media only screen and (max-width: 599px) {
	.list--article2 .article-card .article-head{
		margin-bottom: 1rem;
	}
}

@media print,screen and (min-width: 600px) {
	.list--article2 .article-card{
		display: flex;
		align-items: center;
	}
	.list--article2 .article-card .article-head{
		margin-right: 2rem;
	}
	.list--article2 .article-card .article-ttl{
		flex: 1;
		-webkit-line-clamp: 1;
		max-height: calc(1.93em * 1);
	}
}

.list--faq .list--faq-item{
	box-sizing: border-box;
	border: 1px solid #DEDEDE;
	border-radius: 1rem;
	padding: 2rem;
}
.list--faq .list--faq-item:not(:last-child){
	margin-bottom: 2rem;
}
.list--faq .list--faq-item .q-box{
	position: relative;
	padding-right: 3rem;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.list--faq .list--faq-item .q-box:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	background-color: #000;
	width: 1.6rem;
	height: 1rem;
	border-radius: 0.2rem;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	right: -0.5rem;
	top: calc((100% - 1rem) / 2);
	transition: transform .3s ease;
}
.list--faq .list--faq-item .q-box.is--open:before{
	transform: rotate(180deg);
}
.list--faq .list--faq-item .q-icon{
	font-size: 1.8rem;
	padding-right: 2rem;
}
.list--faq .list--faq-item .q-txt,
.list--faq .list--faq-item .a-txt{
	flex: 1;
	padding-left: 2rem;
	position: relative;
}
.list--faq .list--faq-item .q-txt:before,
.list--faq .list--faq-item .a-txt:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	width: 1px;
	background-color: #727171;
	left: 0;
}
.list--faq .list--faq-item .q-txt:before{
	height: calc(100% - 0.6rem);
	top: 0.3rem;
}
.list--faq .list--faq-item .a-box{
	margin-top: 2rem;
	border-radius: 1rem;
	padding: 2rem;
	display: flex;
	align-items: flex-start;
}
.list--faq .list--faq-item .a-icon{
	padding-right: 2rem;
	font-size: 2.2rem;
	padding-top: 0.6rem;
}
.list--faq .list--faq-item .a-txt:before{
	top: 0.6rem;
	height: 3rem;
}

@media print,screen and (min-width: 600px) {
	.list--faq .list--faq-item{
		padding: 2rem 3rem 3rem 3rem;
	}
	.list--faq .list--faq-item:not(:last-child){
		margin-bottom: 3rem;
	}
	.list--faq .list--faq-item .q-box:before{
		right: -1.1rem;
	}
	.list--faq .list--faq-item .q-icon{
		font-size: 2.2rem;
		padding-right: 2.6rem;
	}
	.list--faq .list--faq-item .q-txt,
	.list--faq .list--faq-item .a-txt{
		padding-left: 2.6rem;
	}
	.list--faq .list--faq-item .q-txt:before{
		height: 100%;
		top: 0;
	}
	.list--faq .list--faq-item .a-box{
		margin-top: 3rem;
		padding: 3rem;
	}
	.list--faq .list--faq-item .a-icon{
		padding-right: 2.6rem;
	}
}

.parts--mokuji-block{
	box-sizing: border-box;
	padding: 3rem 2rem;
	margin-bottom: 4rem;
	border-radius: 1rem;
}
.parts--mokuji-block .block-ttl{
	line-height: 1;
	font-size: 1.8rem;
	margin-bottom: 2rem;
}
.parts--mokuji-block li:not(:last-child){
	margin-bottom: 1rem;
}

@media only screen and (max-width: 599px) {
	.parts--mokuji-block{
		width: calc(100% - 2rem * 2);
		margin-left: auto;
		margin-right: auto;
	}
}

@media print,screen and (min-width: 600px) {
	.parts--mokuji-block{
		padding: 5rem;
		margin-bottom: 6rem;
	}
	.parts--mokuji-block .block-ttl{
		font-size: 2.2rem;
	}
	.parts--mokuji-block li:not(:last-child){
		margin-bottom: 1.5rem;
	}
}

.single1--article{
	box-sizing: border-box;
	position: relative;
	z-index: 2;
	background-color: #FBF9F6;
	border-radius: 1rem 1rem 0 0;
	padding-top: 5rem;
	padding-bottom: 10rem;
}
.single1--article .single1--head{
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
}
.single1--article .single1--cat{
	box-sizing: border-box;
	border-radius: 1rem;
	min-width: 7.2rem;
	font-size: 1.3rem;
	padding: 0.9rem;
	margin-right: 1rem;
}
.single1--article .single1--time{
	font-size: 1.3rem;
}
.single1--article .single1--ttl{
	font-size: 2.2rem;
	line-height: 1.72;
}
.single1--main-img{
	margin-top: 4rem;
}
.single1--main-img img{
	max-width: 100%;
	width: auto;
	height: auto;
}
.single1--article .single1--content{
	padding-top: 4rem;
}
.single1--article .btn-to-archive{
	margin-top: 8rem;
}

@media only screen and (max-width: 599px) {
	.single1--article .single1--head-container{
		padding: 0 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	.single1--article{
		padding: 10rem 10rem 15rem 10rem;
	}
	.single1--article .single1--ttl{
		font-size: 3.6rem;
	}
	.single1--main-img{
		margin-top: 8rem;
	}
	.single1--article .single1--content{
		padding-top: 6rem;
	}
	.single1--article .btn-to-archive{
		margin: 12rem auto 0 auto;
		width: 33.5rem;
	}
}

/*====================================
form
====================================*/
/* common
--------------------------------------*/
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select,
button{
	appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
	background: none;
	border: none;
	font-family : inherit;
	color: inherit;
	box-sizing: border-box;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea{
	box-sizing: border-box;
	width: 100%;
	background-color: #fff;
	color: #000;
	transition: background .3s ease;
}

/* form--tbl
--------------------------------------*/
.form--tbl input[type="text"],
.form--tbl input[type="tel"],
.form--tbl input[type="email"],
.form--tbl input[type="number"],
.form--tbl textarea{
	border: 1px solid #DEDEDE;
	border-radius: 1rem;
}
.form--tbl input[type="text"],
.form--tbl input[type="tel"],
.form--tbl input[type="email"],
.form--tbl input[type="number"]{
	height: 5rem;
	padding: 0 1rem;
}
.form--tbl input:placeholder-shown,
.form--tbl textarea:placeholder-shown {
	color: #ECECEC;
}
.form--tbl input::-webkit-input-placeholder,
.form--tbl textarea::-webkit-input-placeholder {
	color: #ECECEC;
}
.form--tbl textarea{
	padding: 1rem;
}

/* checkbox radio */
.form--tbl span.wpcf7-list-item{
	margin: 0;
}
.form--tbl .wpcf7-radio,
.form--tbl .wpcf7-checkbox{
	display: block;
	margin-top: -2rem;
	width: calc(100% + 1rem);
}
.form--tbl .wpcf7-radio .wpcf7-list-item,
.form--tbl .wpcf7-checkbox .wpcf7-list-item{
	margin-top: 2rem;
	margin-right: 2rem;
}
.form--tbl .wpcf7-radio input[type="radio"],
.form--tbl .wpcf7-checkbox input[type="checkbox"],
.form--tbl .wpcf7-acceptance input[type="checkbox"]{
	display: none;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label,
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label{
	display: inline-block;
	position: relative;
	padding-left: 3rem;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label:before,
.form--tbl .wpcf7-radio .wpcf7-list-item-label:after,
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label:before,
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label:after,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label:before,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label:after{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	box-sizing: border-box;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label:before,
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label:before,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label:before{
	width: 2rem;
	height: 2rem;
	left: 0;
	top: 0.8rem;
	background-color: #fff;
	border: 1px solid #ECECEC;
	transition: background .2s ease, border .2s ease;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label:before{
	border-radius: 100%;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label:after,
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label:after,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label:after{
	opacity: 0;
	transition: opacity .2s ease;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label:after{
	width: 1rem;
	height: 1rem;
	background-color: #1D2D47;
	left: 0.5rem;
	top: 1.3rem;
	border-radius: 100%;
}
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label:after,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label:after{
	left: 0.6rem;
	width: 0.9rem;
	height: 1.2rem;
	top: 0.9rem;
	transform: rotate(40deg);
	border-bottom: 0.3rem solid #fff;
	border-right: 0.3rem solid #fff;
}
.form--tbl .wpcf7-checkbox input:checked + .wpcf7-list-item-label:before,
.form--tbl .wpcf7-acceptance input:checked + .wpcf7-list-item-label:before{
	background-color: #1D2D47;
	border-color: #1D2D47;
}
.form--tbl .wpcf7-radio input:checked + .wpcf7-list-item-label:after,
.form--tbl .wpcf7-checkbox input:checked + .wpcf7-list-item-label:after,
.form--tbl .wpcf7-acceptance input:checked + .wpcf7-list-item-label:after{
	opacity: 1;
}

@media print,screen and (min-width: 600px) {
	.form--tbl .wpcf7-radio,
	.form--tbl .wpcf7-checkbox{
		margin-top: -1rem;
	}
	.form--tbl .wpcf7-radio .wpcf7-list-item,
	.form--tbl .wpcf7-checkbox .wpcf7-list-item{
		margin-top: 1rem;
	}
}

/* ボタン */
.btn--form{
	position: relative;
	margin: 8rem auto 0 auto;
	pointer-events: none;
	height: 8rem;
	border: 1px solid #1D2D47;
}
.btn--form > p{
	height: 100%;
	width: 100%;
}
.btn--form input{
	outline: none;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance: none;
	background: none;
	border: none;
	padding: 0;
	display: inline-block;
	position: relative;
	text-align: center;
	cursor: pointer;
	line-height: 1;
	z-index: 3;
	box-sizing: border-box;
	width: 100%;
	height: 8rem;
	font-size: 1.6rem;
	letter-spacing: 0.03em;
	pointer-events: auto;
	transition: background .3s ease, color .3s ease, border .3s ease, opacity .3s ease;
}
.btn--form input:not(:hover){
	color: #fff;
}
.btn--form input:disabled{
	opacity: .7;
	pointer-events: none;
}

@media print,screen and (min-width: 600px) {
	.btn--form{
		margin: 12rem auto 0 auto;
		width: 33.5rem;
	}
}

.form--tbl{
	box-sizing: border-box;
	width: 100%;
}
.form--tbl p:not(:last-child){
	margin-bottom: 0;
}
.form--tbl th,
.form--tbl td{
	box-sizing: border-box;
	display: block;
}
.form--tbl th{
	padding-bottom: 1rem;
	color: #1d2d47;
	font-weight: 600;
}
.form--tbl tr:not(:last-child) td{
	padding-bottom: 3rem;
}

.form--tbl .req{
	padding-left: 1rem;
}
.form--tbl .td-block:not(:last-child){
	margin-bottom: 1.5rem;
}
.form--tbl .td-label{
	line-height: 1.2;
	margin-bottom: 1rem;
}
.form--tbl .td-detail-txt:not(:first-child){
	margin-top: 0.5rem;
}
.form--tbl .unit-wrap{
	display: flex;
	align-items: center;
}
.form--tbl .unit-wrap .unit:not(:last-child){
	margin-right: 1rem;
}

@media print,screen and (min-width: 600px) {
	.form--tbl tr:not(:last-child) td{
		padding-bottom: 4rem;
	}
	.form--tbl .td-txt{
		margin-bottom: 1rem;
	}
}

/* response-output */
.wpcf7 form .wpcf7-response-output{
	padding: 2.4rem 2rem;
	border: none !important;
}
.wpcf7 form:not(.sent) .wpcf7-response-output{
	background-color: #980404;
	color: #fff;
}
.wpcf7 .recaptha-caption{
	margin-top: 10rem;
	font-size: 1.3rem;
	line-height: 1.69;
}
.wpcf7 .recaptha-caption a{
	text-decoration: underline;
}
.grecaptcha-badge { visibility: hidden; }
.wpcf7 form.sent .block-lead,
.wpcf7 form.sent .form--tbl,
.wpcf7 form.sent .btn--form,
.wpcf7 form.sent .recaptha-caption,
.wpcf7 form.sent .wpcf7-response-output{
	display: none;
}
.wpcf7 form .sent-thankyou-message{
	display: none;
}
.wpcf7 form.sent .sent-thankyou-message{
	display: block;
	padding: 3rem;
}
.wpcf7 form.sent .sent-thankyou-message .sec-ttl{
	font-size: 1.5em;
	margin-bottom: 3rem;
}

@media print,screen and (min-width: 600px) {
	.wpcf7 form.sent .sent-thankyou-message{
		padding: 6rem;
	}
}

/* unique */
.form--tbl .tr-privacy .td-detail-txt{
	margin-top: 2.5rem;
}
.form--tbl .tr-privacy .privacy-link{
	display: inline-block;
	position: relative;
	padding-left: 3rem;
	padding-right: 2rem;
	font-size: 1.5rem;
}

/*====================================
header
====================================*/
/* hamburger-btn
--------------------------------------*/
.hamburger-btn{
	box-sizing: border-box;
	cursor: pointer;
	position: fixed;
	z-index: 1001;
	width: 4rem;
	height: 4rem;
	top: 2rem;
	right: 2rem;
	border: 1px solid transparent;
	border-radius: 0.8rem;
	transition: border .3s ease, background .3s ease;
}
.hamburger-btn:not(.is--open){
	mix-blend-mode: difference;
}
.hamburger-btn-inner{
	display: block;
	position: absolute;
	width: 2rem;
	height: 2rem;
	top: 1rem;
	right: 0.9rem;
	transition: transform 0.35s ease;
	z-index: 2;
}
.hamburger-btn span{
	position: absolute;
	top: 0;
	right: 0;
	width: 2rem;
	height: 0.2rem;
	background-color: #fff;
	border-radius: 1rem;
	transition: transform 0.35s ease, opacity 0.35s ease, width .3s ease, background .3s ease;
}
.hamburger-btn span:nth-child(2){
	top: 0.8rem;
}
.hamburger-btn span:last-child{
	top: 1.6rem;
}

.hamburger-btn.is--open{
	border-color: #1D2D47;
	background-color: #fff;
}
.hamburger-btn.is--open .hamburger-btn-inner{
	transform: rotate(360deg);
}
.hamburger-btn.is--open span{
	background-color: #1D2D47;
	width: 2.4rem;
	left: calc((100% - 2.4rem) / 2);
	top: calc((100% - 0.2rem) / 2);
}
.hamburger-btn.is--open span:first-child{
	transform: rotate(-45deg);
}
.hamburger-btn.is--open span:nth-child(2){
	opacity: 0;
}
.hamburger-btn.is--open span:last-child{
	transform: rotate(45deg);
}

/* hamburger menu
--------------------------------------*/
#hamburger-menu{
	z-index:1000;
	position: fixed;
	box-sizing: border-box;
	width: 26rem;
	height: 100vh;
	top: 0;
	right: -26rem;
	transition: transform 0.35s ease;
}
#hamburger-menu.is--open{
	transform: translateX(-26rem);
}

#hamburger-menu .menu-inner{
	box-sizing: border-box;
	overflow-y: scroll;
	position: relative;
	width: 100%;
	height: 100%;
}
#hamburger-menu .hamburger-nav-container{
	padding: 8rem 0;
}
#hamburger-menu .hamburger-nav-container .nav-item,
#hamburger-menu .hamburger-nav-container .nav-subitem{
	position: relative;
}
#hamburger-menu .hamburger-nav-container .nav-item:not(:last-child):before,
#hamburger-menu .hamburger-nav-container .nav-subitem:not(:last-child):before,
#hamburger-menu .hamburger-nav-container .nav-item-txt span:before,
#hamburger-menu .hamburger-nav-container .nav-subitem-txt span:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
}
#hamburger-menu .hamburger-nav-container .nav-item:not(:last-child):before,
#hamburger-menu .hamburger-nav-container .nav-subitem:not(:last-child):before{
	height: 1px;
	width: calc(100% - 2rem * 2);
	bottom: 0;
	left: 2rem;
}
#hamburger-menu .hamburger-nav-container .nav-item:not(:last-child):before{
	background-color: #ECECEC;
}
#hamburger-menu .hamburger-nav-container .nav-item-txt,
#hamburger-menu .hamburger-nav-container .nav-subitem-txt{
	box-sizing: border-box;
	position: relative;
	height: 7rem;
	display: flex;
	align-items: center;
}
#hamburger-menu .hamburger-nav-container .nav-item-txt{
	padding: 0 3rem;
	transition: background .3s ease;
}
#hamburger-menu .hamburger-nav-container .nav-item-txt span,
#hamburger-menu .hamburger-nav-container .nav-subitem-txt span{
	position: relative;
	padding-left: 1.5rem;
}
#hamburger-menu .hamburger-nav-container .nav-item-txt span:before,
#hamburger-menu .hamburger-nav-container .nav-subitem-txt span:before{
	width: 0.7rem;
	height: 1rem;
	background-color: #1D2D47;
	left: 0;
	top: calc((100% - 1rem) / 2);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	border-radius: 0.2rem;
	transition: transform .3s ease, background .3s ease;
}
#hamburger-menu .hamburger-nav-container .nav-item.has--dd > .nav-item-txt span:before{
	transform: rotate(90deg);
}
#hamburger-menu .hamburger-nav-container .nav-item-txt.is--open{
	background-color: #1D2D47;
	color: #fff;
}
#hamburger-menu .hamburger-nav-container .nav-item.has--dd >  .nav-item-txt.is--open span:before{
	transform: rotate(-90deg);
	background-color: #fff;
}
#hamburger-menu .hamburger-nav-container .nav-subitem:before{
	background-image: linear-gradient(to right, #ECECEC, #ECECEC 0.5rem, transparent 0.5rem, transparent 1rem);
	background-size: 1rem 1px;
	background-position: left bottom;
	background-repeat: repeat-x;
}
#hamburger-menu .hamburger-nav-container .nav-subitem-txt{
	padding-left: 6.5rem;
	padding-right: 2rem;
}

/* hamburger-layer */
#hamburger-layer{
	position: fixed;
	width: 100vw;
	height: calc(100vh - 6rem);
	top: 6rem;
	left: 0;
	z-index:999;
	pointer-events: none;
	opacity: 0;
	transition: opacity .3s ease;
}
#hamburger-layer.is--open{
	pointer-events: auto;
	opacity: 1;
}

/* header
--------------------------------------*/
header{
	box-sizing: border-box;
	position: absolute;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	padding-top: 2.5rem;
}
.header-inner{
	box-sizing: border-box;
}
.header-logo-container{
	width: 19.4rem;
}
.header-logo-container .logo{
	display: block;
	position: relative;
}
.header-logo-container .logo img{
	transition: opacity .3s ease;
}
.header-logo-container .logo .b{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
}

@media print,screen and (min-width: 600px) {
	header{
		position: fixed;
		padding-top: 3.2rem;
		transition: padding .3s ease, background .3s ease;
	}
	header:before{
		content: '';
		display: block;
		position: absolute;
		pointer-events: none;
		background-color: #fff;
		top: 0;
		left: 0;
		width: 100%;
		height: 0;
		transition: height .3s ease;
	}
	.header-inner{
		position: relative;
		z-index: 2;
		display: flex;
		align-items: center;
		width: calc(110rem + 7rem * 2);
		padding-right: 7rem;
	}
	.header-logo-container{
		width: 23.9rem;
	}
	.header-logo-container .logo .b{
		opacity: 0;
	}
	.header-nav-container{
		flex: 1;
		padding-left: 5rem;
	}
	.header-nav-container .gnav{
		height: 100%;
		display: flex;
		align-items: center;
		line-height: 1;
	}
	.header-nav-container .nav-item{
		display: flex;
		align-items: center;
		position: relative;
	}
	.header-nav-container .nav-item:not(:last-child){
		margin-right: 3rem;
	}
	.header-nav-container .nav-item-txt{
		position: relative;
		color: #fff;
	}
	.header-nav-container .nav-item.has--dd .nav-item-txt{
		cursor: pointer;
	}
	.header-nav-container .nav-item.has--dd .nav-item-txt:before{
		content: '';
		display: block;
		position: absolute;
		pointer-events: none;
		width: 0.7rem;
		height: 0.5rem;
		background-color: #fff;
		clip-path: polygon(0 0, 50% 100%, 100% 0);
		border-radius: 0.1rem;
		bottom: -1.2rem;
		left: calc((100% - 0.7rem) / 2);
		transition: background .3s ease;
	}
	.header-nav-container .nav-sublist-container{
		padding-top: 3rem;
		position: absolute;
		top: 1.1rem;
		overflow: hidden;
		height: 0;
		transition: height .35s ease;
		width: 17.5rem;
		left: calc((100% - 17.5rem) / 2);
	}
	.header-nav-container .nav-item.has--dd:hover .nav-sublist-container{
		height: 13.8rem;
		z-index: 3;
	}
	.header-nav-container .nav-sublist-block{
		border-radius: 1rem;
		padding: 3rem;
	}
	.header-nav-container .nav-subitem:not(:last-child){
		padding-bottom: 1.5rem;
		border-bottom: 1px solid #ECECEC;
	}
	.header-nav-container .nav-subitem:not(:first-child){
		padding-top: 1.5rem;
	}

	.header-contact-container{
		display: flex;
		align-items: center;
	}
	.header-contact-container .box-contact,
	.header-contact-container .box-tel{
		display: flex;
		align-items: center;
	}
	.header-contact-container .box-contact .txt,
	.header-contact-container .box-tel .txt{
		font-size: 2rem;
	}
	.header-contact-container .box-contact{
		margin-right: 3rem;
	}
	.header-contact-container .box-contact .icon{
		width: 1.9rem;
		height: 1.4rem;
		margin-right: 0.4rem;
	}
	.header-contact-container .box-tel .icon{
		width: 1.425rem;
		height: 1.925rem;
		margin-right: 0.4rem;
	}
	
	header.is--scroll{
		padding-top: 1.2rem;
		padding-bottom: 1.1rem;
	}
	header.is--scroll:before{
		height: 100%;
	}
	header.is--scroll .header-logo-container .logo .w{
		opacity: 0;
	}
	header.is--scroll .header-logo-container .logo .b{
		opacity: 1;
	}
	header.is--scroll .header-nav-container .nav-item-txt{
		color: #000;
	}
	header.is--scroll .header-nav-container .nav-item.has--dd .nav-item-txt:before{
		background-color: #000;
	}
}

/*===============================
footer
===============================*/
footer{
	padding: 6rem 0;
}
.footer-contact-container{
	border-radius: 1rem;
	position: relative;
	overflow: hidden;
	background-color: #121D2E;
	padding: 4rem 2rem;
}
.footer-contact-container:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	background-color: #060A10;
	border-radius: 44%;
	width: 146.8rem;
	height: 77.4rem;
	left: -5.4rem;
	top: 3.4rem;
}
.footer-contact-container > *{
	position: relative;
	z-index: 2;
}
.footer-contact-container .block-ttl{
	font-size: 2.2rem;
	position: relative;
}
.footer-contact-container .block-ttl:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	background-color: #fff;
	width: 6rem;
	height: 1px;
}
.footer-contact-container .box-tel .el-tel,
.footer-contact-container .box-contact .item-contact{
	display: flex;
	align-items: center;
}
.footer-contact-container .box-tel .el-tel .icon{
	width: 2.15rem;
	height: 2.95rem;
	margin-right: 0.4rem;
	margin-top: 0.3rem;
}
.footer-contact-container .box-tel .el-tel .txt{
	font-size: 2.8rem;
}
.footer-contact-container .box-tel .item-txt{
	font-size: 1.3rem;
	margin-top: 0.7rem;
}
.footer-contact-container .box-contact .icon{
	width: 2.85rem;
	height: 2.15rem;
	margin-right: 0.4rem;
}
.footer-contact-container .box-contact .txt{
	font-size: 2.2rem;
}
.footer-contact-container .box-contact .arrow{
	margin-left: 1rem;
}

.footer-logo-container{
	margin-top: 6rem;
}
.footer-logo-block .box-logo .item-logo{
	margin-bottom: 2rem;
}
.footer-logo-block .box-logo .item-logo .logo{
	display: block;
	width: 31.6rem;
}
.footer-logo-block .box-logo .item-txt{
	font-size: 1.3rem;
	line-height: 1.69;
}
.footer-logo-block .box-txt{
	box-sizing: border-box;
	border: 1px solid #616C7F;
	border-radius: 0.5rem;
	padding: 2rem 2.5rem 2rem 3.2rem;
	font-size: 1.3rem;
	line-height: 1.69;
	margin-top: 4rem;
}
.footer-nav-block .box-copyright{
	margin-top: 4rem;
	font-size: 1rem;
}

@media only screen and (max-width: 599px) {
	.footer-contact-container .block-ttl{
		padding-bottom: 2.3rem;
		text-align: center;
		margin-bottom: 2rem;
	}
	.footer-contact-container .block-ttl:before{
		bottom: 0;
		left: calc((100% - 6rem) / 2);
	}
	.footer-contact-container .box-tel .item-tel,
	.footer-contact-container .box-contact{
		display: flex;
		justify-content: center;
	}
	.footer-contact-container .box-contact{
		margin-top: 4rem;
	}

	.footer-nav-block .box-copyright{
		text-align: center;
	}
}

@media print,screen and (min-width: 600px) {
	footer{
		padding: 10rem 0;
	}
	.footer-contact-container{
		padding: 6rem 3rem 4.5rem 3rem;
		display: flex;
		justify-content: center;
	}
	.footer-contact-container:before{
		border-radius: 50%;
	}
	.footer-contact-container:before{
		left: 36.6rem;
		top: -5.4rem;
	}
	.footer-contact-container .block-ttl{
		font-size: 3rem;
		padding-right: 6rem;
		padding-top: 1.8rem;
	}
	.footer-contact-container .block-ttl:before{
		right: 0;
		top: 0;
		width: 1px;
		height: calc(100% - 1.2rem);
	}
	.footer-contact-container .block-txt{
		padding-left: 6rem;
		padding-top: 1.6rem;
		display: flex;
	}
	.footer-contact-container .box-tel{
		margin-right: 5rem;
	}
	.footer-contact-container .box-tel .el-tel{
		pointer-events: none;
	}
	.footer-contact-container .box-tel .el-tel .icon{
		margin-right: 0.6rem;
		margin-top: 0.2rem;
	}
	.footer-contact-container .box-tel .el-tel .txt{
		font-size: 3.6rem;
	}
	.footer-contact-container .box-tel .item-txt{
		padding-left: 1.4rem;
		margin-top: 1rem;
	}
	.footer-contact-container .box-contact .icon{
		margin-right: 1rem;
	}
	.footer-contact-container .box-contact .txt{
		font-size: 3rem;
	}

	.footer-logo-container{
		margin-top: 10rem;
		display: flex;
		justify-content: space-between;
	}
	.footer-logo-block .box-txt{
		margin-top: 7rem;
		padding: 1.8rem;
		width: 31.2rem;
	}

	.footer-nav-block{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.footer-nav-block .box-nav{
		display: flex;
		line-height: 1;
	}
	.footer-nav-block .nav-list:not(:last-child){
		margin-right: 7rem;
	}
	.footer-nav-block .nav-item:not(:last-child){
		margin-bottom: 2.7rem;
	}
	.footer-nav-block .nav-item-txt{
		padding-left: 1.5rem;
		position: relative;
		display: inline-block;
	}
	.footer-nav-block a.nav-item-txt:before{
		content: '';
		display: block;
		position: absolute;
		pointer-events: none;
		width: 0.7rem;
		height: 1rem;
		background-color: #fff;
		left: 0;
		top: calc((100% - 1rem) / 2);
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		border-radius: 0.2rem;
	}
	.footer-nav-block .box-copyright{
		text-align: right;
	}
}

/*====================================
top
====================================*/
#top .wrap--sec-main{
	position: relative;
	overflow: hidden;
}
#top .sec-main{
	position: relative;
	margin-top: 8.1rem;
}
#top .sec-main .container-catch .catch{
	font-size: 2.5rem;
	line-height: 1.76;
}
#top .sec-main .container-catch .box-txt{
	margin-top: 2rem;
}

@media only screen and (max-width: 599px) {
	body.page--top .body-head-bg-triangle{
		width: 30rem;
		height: 24rem;
	}
	#top .sec-main .container-catch{
		padding-top: 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	#top .wrap--sec-main > .bg-triangle{
		position: absolute;
		pointer-events: none;
		clip-path: polygon(0 50%, 100% 100%, 100% 0);
		width: 95.5rem;
		height: 159.6rem;
		left: calc((100% - 110rem) / 2 + 59.5rem);
		top: 19.7rem;
	}
	#top .sec-main{
		margin-top: 10rem;
		height: 60rem;
		width: 100%;
		background: url(../img/top/main-img1-pc.jpg) no-repeat center center;
	}
	#top .sec-main .container-catch{
		position: absolute;
		left: calc((100% - 110rem) / 2);
		bottom: 7rem;
		color: #fff !important;
	}
	#top .sec-main .container-catch .catch{
		font-size: 4rem;
		line-height: 1.6;
	}
	#top .sec-main .container-catch .box-txt{
		font-size: 1.8rem;
		line-height: 1.88;
	}
	#top .sec-main .container-scroll{
		position: absolute;
		right: 3rem;
		top: 15rem;
	}
}

/* service
--------------------------------------*/
#top .ttl--top1{
	position: relative;
	font-size: 2.2rem;
	padding: 0.4rem 0 0.4rem 1.6rem;
}
#top .ttl--top1:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	left: 0;
	top: 0;
	width: 0.6rem;
	height: 100%;
	border-radius: 0.3rem;
	background-color: #1D2D47;
}

#top .sec-service{
	position: relative;
	padding-top: 10.2rem;
	padding-bottom: 8rem;
}
#top .sec-service .bg-triangle{
	position: absolute;
	pointer-events: none;
	right: 0;
	clip-path: polygon(0 50%, 100% 100%, 100% 0);
	width: 12rem;
	height: 20rem;
	top: 1.4rem;
}
#top .sec-service .sec-inner{
	position: relative;
	z-index: 2;
}
#top .sec-service .container-service:not(:last-child){
	margin-bottom: 5.2rem;
}
#top .sec-service .container-service .container-ttl{
	margin-bottom: 2rem;
}
#top .sec-service .service-block{
	box-sizing: border-box;
	border: 1px solid #ECECEC;
	border-radius: 1rem;
	padding: 2.3rem 2.5rem;
}
#top .sec-service .service-block .sub-txt{
	font-size: 1.3rem;
	margin-bottom: 1.2rem;
}
#top .sec-service .service-block .txt{
	font-size: 1.8rem;
}
#top .sec-service .service-block .box-img{
	width: 7rem;
	height: 7rem;
}

#top .sec-service .container-service.corporation .block1 .icon{
	mask-image: url(../img/top/service-corporation1-icon.svg);
	-webkit-mask-image: url(../img/top/service-corporation1-icon.svg);
	width: 6.15rem;
	height: 7.198rem;
	margin-right: 0;
	margin-left: auto;
}
#top .sec-service .container-service.corporation .block2 .icon{
	mask-image: url(../img/top/service-corporation2-icon.svg);
	-webkit-mask-image: url(../img/top/service-corporation2-icon.svg);
	width: 5.975rem;
	height: 7.177rem;
	margin: -0.1rem auto 0 auto;
}
#top .sec-service .container-service.corporation .block3 .icon{
	mask-image: url(../img/top/service-corporation3-icon.svg);
	-webkit-mask-image: url(../img/top/service-corporation3-icon.svg);
	width: 7.2rem;
	height: 5.887rem;
	margin-top: 0.5rem;
}
#top .sec-service .container-service.corporation .block4 .icon{
	mask-image: url(../img/top/service-corporation4-icon.svg);
	-webkit-mask-image: url(../img/top/service-corporation4-icon.svg);
	width: 6.937rem;
	height: 7.173rem;
	margin-top: -0.1rem;
}
#top .sec-service .container-service.corporation .block5 .icon{
	mask-image: url(../img/top/service-corporation5-icon.svg);
	-webkit-mask-image: url(../img/top/service-corporation5-icon.svg);
	width: 7.2rem;
	height: 6.676rem;
	margin-top: 0.1rem;
}
#top .sec-service .container-service.corporation .block6 .icon{
	mask-image: url(../img/top/service-corporation6-icon.svg);
	-webkit-mask-image: url(../img/top/service-corporation6-icon.svg);
	width: 7.2rem;
	height: 7.176rem;
	margin-top: -0.1rem;
}
#top .sec-service .container-service.corporation .block7 .icon{
	mask-image: url(../img/top/service-corporation7-icon.svg);
	-webkit-mask-image: url(../img/top/service-corporation7-icon.svg);
	width: 6.85rem;
	height: 7.151rem;
	margin-top: -0.1rem;
}
#top .sec-service .container-service.corporation .block8 .icon{
	mask-image: url(../img/top/service-corporation8-icon.svg);
	-webkit-mask-image: url(../img/top/service-corporation8-icon.svg);
	width: 5.687rem;
	height: 6.975rem;
	margin: 0 auto;
}
#top .sec-service .container-service.corporation .block9 .icon{
	mask-image: url(../img/top/service-corporation9-icon.svg);
	-webkit-mask-image: url(../img/top/service-corporation9-icon.svg);
	width: 5.6rem;
	height: 7rem;
	margin-left: 1rem;
}
#top .sec-service .container-service.individual .block1 .icon{
	mask-image: url(../img/top/service-individual1-icon.svg);
	-webkit-mask-image: url(../img/top/service-individual1-icon.svg);
	width: 8.2rem;
	height: 7.2rem;
	margin-top: -0.1rem;
	margin-left: -0.6rem;
}
#top .sec-service .container-service.individual .block2 .icon{
	mask-image: url(../img/top/service-individual2-icon.svg);
	-webkit-mask-image: url(../img/top/service-individual2-icon.svg);
	width: 6.85rem;
	height: 7.112rem;
	margin: -0.1rem auto 0 auto;
}
#top .sec-service .container-service.individual .block3 .icon{
	mask-image: url(../img/top/service-individual3-icon.svg);
	-webkit-mask-image: url(../img/top/service-individual3-icon.svg);
	width: 6.85rem;
	height: 7.074rem;
	margin-left: 0.1rem;
}

@media only screen and (max-width: 599px) {
	#top .sec-service .service-block{
		display: flex;
		align-items: center;
	}
	#top .sec-service .service-block:not(:last-child){
		margin-bottom: 1rem;
	}
	#top .sec-service .service-block .box-txt{
		flex: 1;
	}
}

@media print,screen and (min-width: 600px) {
	#top .ttl--top1{
		font-size: 3rem;
		padding: 0.3rem 0 0.3rem 2.1rem;
	}

	#top .sec-service{
		padding-top: 8.5rem;
		padding-bottom: 12rem;
	}
	#top .sec-service .container-service:not(:last-child){
		margin-bottom: 7.5rem;
	}
	#top .sec-service .container-service .container-ttl{
		margin-bottom: 3.2rem;
	}
	#top .sec-service .service-list{
		display: flex;
		flex-wrap: wrap;
	}
	#top .sec-service .service-block{
		width: calc((100% - 3.1rem * 2) / 3);
		padding: 3rem;
	}
	#top .sec-service .service-block:not(:nth-child(3n)){
		margin-right: 3.1rem;
	}
	#top .sec-service .service-block:nth-child(n+4){
		margin-top: 3.1rem;
	}
	#top .sec-service .service-block .box-txt{
		text-align: center;
	}
	#top .sec-service .service-block .sub-txt{
		margin-bottom: 1.4rem;
	}
	#top .sec-service .service-block .txt{
		font-size: 2.2rem;
	}
	#top .sec-service .service-block .box-img{
		width: 8rem;
		height: 8rem;
		margin: 2.1rem auto 0 auto;
	}

	#top .sec-service .container-service.corporation .block1 .icon{
		width: 7rem;
		height: 8.2rem;
		margin-top: -0.1rem;
	}
	#top .sec-service .container-service.corporation .block2 .icon{
		width: 6.8rem;
		height: 8.2rem;
	}
	#top .sec-service .container-service.corporation .block3 .icon{
		width: 8.2rem;
		height: 6.7rem;
		margin-top: 0.7rem;
	}
	#top .sec-service .container-service.corporation .block4 .icon{
		width: 7.9rem;
		height: 8.2rem;
	}
	#top .sec-service .container-service.corporation .block5 .icon{
		width: 8.2rem;
		height: 7.601rem;
		margin-top: 0.2rem;
	}
	#top .sec-service .container-service.corporation .block6 .icon{
		width: 8.2rem;
		height: 8.2rem;
	}
	#top .sec-service .container-service.corporation .block7 .icon{
		width: 7.8rem;
		height: 8.2rem;
	}
	#top .sec-service .container-service.corporation .block8 .icon{
		width: 6.5rem;
		height: 8rem;
	}
	#top .sec-service .container-service.corporation .block9 .icon{
		width: 6.4rem;
		height: 8rem;
		margin-left: 1.2rem;
	}
	#top .sec-service .container-service.individual .block1 .icon{
		width: 9.4rem;
		height: 8.2rem;
		margin-left: -0.7rem;
	}
	#top .sec-service .container-service.individual .block2 .icon{
		width: 7.8rem;
		height: 8.1rem;
	}
	#top .sec-service .container-service.individual .block3 .icon{
		width: 7.8rem;
		height: 8.1rem;
		margin: 0 auto;
	}
}

/* strength
--------------------------------------*/
#top .sec-strength{
	padding: 6rem 0;
	position: relative;
}
#top .sec-strength:before{
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 2;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(to bottom, rgba(12, 20, 33, .8) 0%, rgba(24, 37, 59, .5) calc(100% - 14rem), rgba(29, 45, 71, 0) 100%);
}
#top .sec-strength .wrap-video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#top .sec-strength .wrap-video video{
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#top .sec-strength .sec-inner{
	position: relative;
	z-index: 2;
}
#top .sec-strength .sec-ttl{
	margin-bottom: 4rem;
}
#top .sec-strength .sec-ttl:before{
	background-color: #fff;
}
#top .sec-strength .block-catch{
	font-size: 1.8rem;
	line-height: 1.88;
	margin-bottom: 2rem;
}
#top .sec-strength .block-btn{
	margin-top: 4rem;
}

@media only screen and (max-width: 599px) {
}

@media print,screen and (min-width: 600px) {
	#top .sec-strength{
		padding: 10rem 0;
	}
	#top .sec-strength:before{
		background: linear-gradient(to right, rgba(12, 20, 33, .8) 0%, rgba(24, 37, 59, .5) calc((100% - 110rem) / 2 + 87rem), rgba(29, 45, 71, 0) 100%);
	}
	#top .sec-strength .container-strength{
		width: 43rem;
	}
	#top .sec-strength .sec-ttl{
		margin-bottom: 6rem;
	}
	#top .sec-strength .block-catch{
		font-size: 2.2rem;
		line-height: 1.9;
		margin-bottom: 3rem;
	}
	#top .sec-strength .block-btn{
		margin-top: 6rem;
	}
	#top .sec-strength .block-btn .btn{
		width: 33.5rem;
	}
}

/* media
--------------------------------------*/
#top .sec-media{
	padding: 6rem 0;
}
#top .sec-media .sec-ttl{
	margin-bottom: 2rem;
}
#top .sec-media .article-card{
	box-sizing: border-box;
	border: 1px solid #ECECEC;
	border-radius: 1rem;
	padding: 2rem;
	display: flex;
}
#top .sec-media .article-card .article-img-box{
	width: 8.9rem;
}
#top .sec-media .article-card .article-txt-box{
	flex: 1;
	padding-left: 1.5rem;
}
#top .sec-media .article-card .article-ttl{
	font-size: 1.8rem;
	line-height: 1.66;
	margin-bottom: 0.5rem;
}

@media only screen and (max-width: 599px) {
	#top .sec-media .article-card:not(:last-child){
		margin-bottom: 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	#top .sec-media{
		padding: 10rem 0;
	}
	#top .sec-media .sec-ttl{
		margin-bottom: 3rem;
	}
	#top .sec-media .container-article{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#top .sec-media .article-card{
		width: calc((100% - 4rem) / 2);
		padding: 3rem;
	}
	#top .sec-media .article-card:nth-child(n+3){
		margin-top: 3rem;
	}
	#top .sec-media .article-card .article-img-box{
		width: 8.6rem;
	}
	#top .sec-media .article-card .article-txt-box{
		padding-left: 2rem;
	}
}

/* case
--------------------------------------*/
#top .sec-case{
	padding-top: 8.2rem;
}
#top .sec-case .container-ttl{
	margin-bottom: 2rem;
}
#top .sec-case .article-card .article-img-box{
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
}
#top .sec-case .article-card .article-cat{
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 1.3rem;
	padding: 0.9rem 1rem;
	border-radius: 0 1rem 0 0;
}

@media only screen and (max-width: 599px) {
	#top .sec-case .block-archive-link{
		margin-top: 5rem;
	}
}

@media print,screen and (min-width: 600px) {
	#top .sec-case{
		padding-top: 12.5rem;
	}
	#top .sec-case .container-ttl{
		margin-bottom: 3rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
}

/* news
--------------------------------------*/
#top .sec-news{
	padding-top: 8rem;
}
#top .sec-news .container-news{
	box-sizing: border-box;
	border-radius: 1rem;
	padding: 3rem 3rem 5rem 3rem;
}
#top .sec-news .block-ttl{
	margin-bottom: 3rem;
}

@media only screen and (max-width: 599px) {
	#top .sec-news .article-card:not(:last-child){
		padding-bottom: 2rem;
	}
	#top .sec-news .article-card:not(:first-child){
		padding-top: 2rem;
	}
	#top .sec-news .box-archive-link{
		margin-top: 4rem;
	}
}

@media print,screen and (min-width: 600px) {
	#top .sec-news{
		padding-top: 12rem;
	}
	#top .sec-news .container-news{
		padding: 7.5rem 7rem 7rem 7rem;
	}
	#top .sec-news .block-ttl{
		margin-bottom: 4rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
}

/* column
--------------------------------------*/
#top .sec-column{
	padding: 8rem 0;
}
#top .sec-column .link-block{
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 20rem;
}
#top .sec-column .link-block:first-child{
	border-radius: 1rem 1rem 0 0;
}
#top .sec-column .link-block:last-child{
	border-radius: 0 0 1rem 1rem
}
#top .sec-column .link-block:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	z-index: 2;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #000;
	opacity: 0.6;
}
#top .sec-column .link-block .box-txt{
	position: relative;
	z-index: 3;
	font-size: 2.2rem;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
#top .sec-column .link-block .arrow{
	position: absolute;
	z-index: 3;
	bottom: 2rem;
	right: 2rem;
	pointer-events: none;
	background-color: #fff;
}
#top .sec-column .link-block .arrow:before{
	background-color: #1D2D47;
}

@media only screen and (max-width: 599px) {
	#top .sec-column .link-block:not(:last-child){
		margin-bottom: 1rem;
	}
}

@media print,screen and (min-width: 600px) {
	#top .sec-column{
		padding: 12rem;
	}
	#top .sec-column .container-link{
		display: flex;
	}
	#top .sec-column .link-block{
		width: calc((100% - 1rem) / 2);
		height: 30rem;
	}
	#top .sec-column .link-block:not(:last-child){
		margin-right: 1rem;
	}
	#top .sec-column .link-block:first-child{
		border-radius: 1rem 0 0 1rem;
	}
	#top .sec-column .link-block:last-child{
		border-radius: 0 1rem 1rem 0;
	}
	#top .sec-column .link-block .box-txt{
		font-size: 3rem;
	}
	#top .sec-column .link-block .arrow{
		bottom: 3rem;
		right: 3rem;
	}
}

/*====================================
page404
====================================*/
#page404 .sec-404{
	padding-bottom: 10rem;
}
#page404 .sec-404 .btn{
	margin-top: 4rem;
}

@media print,screen and (min-width: 600px) {
	#page404 .sec-404{
		padding-bottom: 15rem;
	}
	#page404 .sec-404 .box-txt{
		text-align: center;
	}
	#page404 .sec-404 .btn{
		width: 33.5rem;
		margin: 6rem auto 0 auto;
	}
}

/*====================================
privacy-policy
====================================*/
#privacy-policy .sec-policy{
	padding-bottom: 10rem;
}
#privacy-policy .sec-policy .container-lead{
	margin-bottom: calc(1.93em * 2);
}

@media print,screen and (min-width: 600px) {
	#privacy-policy .sec-policy{
		padding-bottom: 15rem;
	}
}

/*====================================
contact
====================================*/
#contact .sec-contact .contact-block{
	box-sizing: border-box;
	border-radius: 2rem;
	padding: 3rem 2rem 2rem 2rem;
}
#contact .sec-contact .contact-block .block-ttl{
	height: 2.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}
#contact .sec-contact .contact-block .block-ttl .ttl{
	font-size: 2rem;
}

#contact .sec-contact .contact-block.tel .block-ttl .icon{
	width: 1.425rem;
	height: 1.925rem;
	margin-right: 0.5rem;
}
#contact .sec-contact .contact-block.tel .box-txt{
	border-radius: 1rem;
	padding: 2rem;
}
#contact .sec-contact .contact-block.tel .box-txt .txt1{
	line-height: 1;
	margin-bottom: 1.5rem;
}
#contact .sec-contact .contact-block.tel .box-txt .tel{
	font-size: 2.6rem;
}
#contact .sec-contact .contact-block.tel .box-txt .txt2{
	font-size: 1.3rem;
	margin-top: 1.5rem;
}
#contact .sec-contact .contact-block.line .block-ttl .icon{
	width: 2.3rem;
	height: 2.2rem;
	margin-right: 0.4rem;
}
#contact .sec-contact .contact-block.line .box-btn{
	margin-top: 1.4rem;
}
#contact .sec-contact .contact-block.line .box-btn .btn{
	min-height: auto;
	height: 5rem;
	background-color: #fff;
	color: #1D2D47;
}
#contact .sec-contact .contact-block.line .box-btn .btn:before{
	background-color: #1D2D47;
}
#contact .sec-contact .contact-block.mail .block-ttl .icon{
	width: 1.9rem;
	height: 1.4rem;
	margin-right: 0.4rem;
}
#contact .sec-contact .contact-block.mail .box-txt{
	border-radius: 1rem;
	padding: 3.2rem 0;
}

#contact .sec-contact .container-txt{
	margin-top: 2rem;
}

#contact .sec-form{
	padding-top: 6rem;
	padding-bottom: 10rem;
}
#contact .sec-form .block-lead{
	margin-bottom: 3rem;
	color: #1d2d47;
}

@media only screen and (max-width: 599px) {
	#contact .sec-contact .container-contact,
	#contact .sec-contact .container-txt{
		width: 28rem;
		margin-left: auto;
		margin-right: auto;
	}
	#contact .sec-contact .contact-block:not(:last-child){
		margin-bottom: 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	#contact .sec-contact .container-contact{
		display: flex;
	}
	#contact .sec-contact .contact-block{
		width: calc((100% - 3rem * 2) / 3);
	}
	#contact .sec-contact .contact-block:not(:nth-child(3n)){
		margin-right: 3rem;
	}
	#contact .sec-contact .contact-block.tel .box-txt .tel a{
		pointer-events: none;
	}
	#contact .sec-contact .contact-block.line .box-btn .btn:hover{
		background-color: #1D2D47;
		color: #fff;
	}
	#contact .sec-contact .contact-block.line .box-btn .btn:hover:before{
		background-color: #fff;
	}
	#contact .sec-contact .container-txt{
		margin-top: 3rem;
	}
	
	#contact .sec-form{
		padding-top: 10rem;
		padding-bottom: 15rem;
	}
	#contact .sec-form .block-lead{
		margin-bottom: 4rem;
	}
}

/*====================================
company
====================================*/
#company .sec-message{
	padding-bottom: 8rem;
	background: transparent;
}
#company .sec-message .sec-ttl{
	font-size: 2.2rem;
	margin-bottom: 3rem;
}
#company .sec-message .block-name{
	margin-top: 3rem;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}
#company .sec-message .block-name .txt{
	font-size: 1.3rem;
	margin-right: 1.5rem;
}
#company .sec-message .block-name{
	font-size: 2.2rem;
}
#company .sec-message .container-img{
	margin-top: 6rem;
}
#company .sec-message .container-img img{
	border-radius: 1rem;
}

@media only screen and (max-width: 599px) {
	#company .sec-message .container-img .box-img:not(:last-child){
		margin-bottom: 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	#company .sec-message{
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 12rem;
	}
	#company .sec-message .container-message{
		width: 70rem;
	}
	#company .sec-message .sec-ttl{
		font-size: 3.6rem;
		margin-bottom: 5rem;
	}
	#company .sec-message .container-img{
		width: 90em;
		margin-top: 8rem;
		display: flex;
		justify-content: space-between;
	}
	#company .sec-message .container-img .box-img{
		width: calc((100% - 4rem) / 2);
	}
}

#company .sec-profile{
	padding-top: 6rem;
}

@media only screen and (max-width: 599px) {
	#company .sec-profile .tr-tantei-hyousiki td{
		padding: 0.5rem 0;
	}
}

@media print,screen and (min-width: 600px) {
	#company .sec-profile{
		padding-top: 10rem;
	}
	#company .sec-profile table tr:not(:last-child) th,
	#company .sec-profile table tr:not(:last-child) td{
		border-bottom: 0.2rem solid #F5F2EC;
	}
	#company .sec-profile table th{
		padding-left: 4rem;
	}
	#company .sec-profile .wrap-tantei-hyousiki{
		text-align: center;
	}
	#company .sec-profile .wrap-tantei-hyousiki img{
		width: 46rem;
	}
}

#company .sec-access{
	padding-top: 6rem;
	padding-bottom: 12rem;
}
#company .sec-access .container-map{
	overflow: hidden;
	border-radius: 1rem;
}

@media print,screen and (min-width: 600px) {
	#company .sec-access{
		padding-top: 10rem;
		padding-bottom: 15rem;
	}
	#company .sec-access .container-map .gmap--wrap{
		padding-top: 44.44%;
	}
}

/*====================================
strength
====================================*/
#strength .sec-lead{
	background: transparent;
	padding-bottom: 8rem;
}
#strength .sec-lead .sec-ttl{
	font-size: 2.2rem;
	line-height: 1.9;
	margin-bottom: 3rem;
}

@media print,screen and (min-width: 600px) {
	#strength .sec-lead{
		padding-bottom: 12rem;
	}
	#strength .sec-lead .sec-ttl{
		font-size: 3.6rem;
		line-height: 1.77;
		margin-bottom: 5rem;
	}
	#strength .sec-lead .block-txt{
		width: 57.6rem;
		margin-left: auto;
		margin-right: auto;
	}
}

#strength .sec-trust{
	padding: 6rem 0;
}
#strength .sec-trust .container-main .block-img img,
#strength .sec-accuracy .container-main .block-img img,
#strength .sec-data .container-main .block-img img{
	border-radius: 1rem;
}
#strength .sec-trust .container-main .block-txt .catch,
#strength .sec-accuracy .container-main .block-txt .catch,
#strength .sec-data .container-main .block-txt .catch{
	font-size: 1.8rem;
	margin-bottom: 2rem;
}

#strength .sec-trust .container-recommended{
	margin-top: 3rem;
	box-sizing: border-box;
	padding: 3.5rem 3rem 3rem 3rem;
	border-radius: 1rem;
}
#strength .sec-trust .container-recommended .block-ttl{
	margin-bottom: 2rem;
}
#strength .sec-trust .container-recommended .block-ttl .ttl{
	font-size: 1.8rem;
}
#strength .sec-trust .container-recommended .block-img .img,
#strength .sec-trust .container-lineup .img{
	display: block;
}
#strength .sec-trust .container-lineup{
	margin-top: 3rem;
}

@media only screen and (max-width: 599px) {
	#strength .sec-trust .container-main .block-img,
	#strength .sec-accuracy .container-main .block-img,
	#strength .sec-data .container-main .block-img{
		margin-bottom: 3rem;
	}

	#strength .sec-trust .container-recommended .block-ttl .ttl{
		padding-bottom: 1.3rem;
		border-bottom: 1px solid #BCBCBC;
		margin-bottom: 1rem;
	}
	#strength .sec-trust .container-recommended .block-img .img:not(:last-child){
		margin-bottom: 2rem;
	}
	#strength .sec-trust .container-lineup .img:not(:last-child){
		margin-bottom: 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	#strength .sec-trust .container-main,
	#strength .sec-accuracy .container-main,
	#strength .sec-data .container-main{
		display: flex;
	}
	#strength .sec-trust .container-main .block-img,
	#strength .sec-accuracy .container-main .block-img,
	#strength .sec-data .container-main .block-img{
		width: 50.4rem;
	}
	#strength .sec-trust .container-main .block-txt,
	#strength .sec-accuracy .container-main .block-txt,
	#strength .sec-data .container-main .block-txt{
		flex: 1;
	}
	#strength .sec-trust .container-main .block-txt .catch,
	#strength .sec-accuracy .container-main .block-txt .catch,
	#strength .sec-data .container-main .block-txt .catch{
		font-size: 2.6rem;
		margin-bottom: 3rem;
	}

	#strength .sec-trust .container-main .block-img,
	#strength .sec-data .container-main .block-img{
		order: 2;
	}
	#strength .sec-trust .container-main .block-txt,
	#strength .sec-data .container-main .block-txt{
		order: 1;
		padding-right: 4rem;
	}

	#strength .sec-trust{
		padding: 10rem 0;
	}
	#strength .sec-trust .container-recommended{
		padding: 5rem;
	}
	#strength .sec-trust .container-recommended .block-ttl{
		margin-bottom: 3rem;
		display: flex;
		align-items: center;
	}
	#strength .sec-trust .container-recommended .block-ttl .ttl{
		font-size: 2.2rem;
		padding: 0.4rem 2rem 0.4rem 0;
		border-right: 1px solid #BCBCBC;
	}
	#strength .sec-trust .container-recommended .block-ttl .txt{
		padding-left: 2rem;
		flex: 1;
	}
	#strength .sec-trust .container-recommended .block-img{
		display: flex;
		justify-content: space-between;
	}
	#strength .sec-trust .container-recommended .block-img .img{
		width: calc((100% - 2.6rem) / 2);
	}
	#strength .sec-trust .container-lineup{
		display: flex;
		justify-content: space-between;
		margin-top: 6rem;
	}
	#strength .sec-trust .container-lineup .img{
		width: calc((100% - 2.5rem * 2) / 3);
	}
}

#strength .sec-accuracy{
	padding: 8rem 0;
}
#strength .sec-accuracy .container-data{
	margin-top: 3rem;
	box-sizing: border-box;
	padding: 3.5rem 3rem 3rem 3rem;
	border-radius: 1rem;
}
#strength .sec-accuracy .container-data .container-ttl{
	font-size: 1.8rem;
	margin-bottom: 2rem;
}
#strength .sec-accuracy .container-data .data-tbl{
	box-sizing: border-box;
	width: 100%;
	border-radius: 1rem;
	overflow: hidden;
	background-color: #FBF9F6;
}
#strength .sec-accuracy .container-data .block-btm-txt{
	margin-top: 1.5rem;
}

@media print,screen and (min-width: 600px) {
	#strength .sec-accuracy{
		padding: 10rem 0;
	}
	#strength .sec-accuracy .container-main .block-txt{
		padding-left: 5rem;
	}
	#strength .sec-accuracy .container-data{
		margin-top: 6rem;
		padding: 5rem;
	}
	#strength .sec-accuracy .container-data .container-ttl{
		font-size: 2.2rem;
		margin-bottom: 3rem;
	}
	#strength .sec-accuracy .container-data .data-tbl th,
	#strength .sec-accuracy .container-data .data-tbl td{
		padding: 3rem;
	}
	#strength .sec-accuracy .container-data .data-tbl tr:not(:last-child) th,
	#strength .sec-accuracy .container-data .data-tbl tr:not(:last-child) td{
		border-bottom: 0.2rem solid #fff;
	}
	#strength .sec-accuracy .container-data .data-tbl th{
		width: 30rem;
		text-align: center;
	}
	#strength .sec-accuracy .container-data .block-btm-txt{
		margin-top: 2rem;
	}
}

#strength .sec-data{
	padding-top: 6rem;
	padding-bottom: 10rem;
}

@media print,screen and (min-width: 600px) {
	#strength .sec-data{
		padding-top: 10rem;
		padding-bottom: 15rem;
	}
}

/*====================================
column
====================================*/
#column .sec-archive{
	background: transparent;
	padding: 0 0 10rem 0;
}

@media print,screen and (min-width: 600px) {
	#column .sec-archive{
		padding-bottom: 15rem;
	}
}

/*====================================
news
====================================*/
#news .sec-archive{
	padding-bottom: 10rem;
}

@media print,screen and (min-width: 600px) {
	#news .sec-archive{
		padding-bottom: 15rem;
	}
}

/*====================================
case
====================================*/
#case .sec-cat{
	padding-top: 6rem;
}
#case .sec-cat .container-cat{
	display: flex;
	flex-wrap: wrap;
}
#case .sec-cat .container-cat .cat-item{
	background-color: #F5F2EC;
	color: #1d2d47;
	line-height: 1.68;
	width: calc((100% - 1.1rem) / 2);
}
#case .sec-cat .container-cat .cat-item:before{
	background-color: #1d2d47;
	transform: rotate(90deg);
	right: 1.5rem;
}

@media only screen and (max-width: 599px) {
	#case .sec-cat .container-cat{
		justify-content: space-between;
	}
	#case .sec-cat .container-cat .cat-item{
		padding-left: 1.5rem;
		padding-right: 3.8rem;
		text-align: center;
	}
	#case .sec-cat .container-cat .cat-item:nth-child(n+3){
		margin-top: 1.1rem;
	}
}

@media print,screen and (min-width: 600px) {
	#case .sec-cat{
		padding-top: 10rem;
	}
	#case .sec-cat .container-cat .cat-item{
		width: calc((100% - 2rem * 3) / 4);
	}
	#case .sec-cat .container-cat .cat-item:not(:nth-child(4n)){
		margin-right: 2rem;
	}
	#case .sec-cat .container-cat .cat-item:nth-child(n+5){
		margin-top: 2rem;
	}
	#case .sec-cat .container-cat .cat-item:hover{
		background-color: #1D2D47;
		color: #fff;
	}
	#case .sec-cat .container-cat .cat-item:hover:before{
		background-color: #fff;
	}
}

#case .sec-archive{
	padding-top: 6rem;
}
#case .sec-archive:last-child{
	padding-bottom: 10rem;
}

@media print,screen and (min-width: 600px) {
	#case .sec-archive{
		padding-top: 10rem;
	}
	#case .sec-archive:last-child{
		padding-bottom: 15rem;
	}
}

#case.page--single .case--profile-box{
	padding: 3rem 2rem;
	margin-bottom: 4rem;
}
#case.page--single .case--profile-box .case--profile-box-ttl{
	font-size: 1.8rem;
	margin-bottom: 2rem;
}

@media only screen and (max-width: 599px) {
	#case.page--single .case--profile-box{
		width: calc(100% - 2rem * 2);
		margin-left: auto;
		margin-right: auto;
	}
	#case.page--single .case--profile-box li:not(:last-child){
		margin-bottom: 1rem;
	}
}

@media print,screen and (min-width: 600px) {
	#case.page--single .case--profile-box{
		padding: 4rem;
	}
	#case.page--single .case--profile-box .case--profile-box-list{
		display: flex;
	}
	#case.page--single .case--profile-box li:not(:last-child){
		margin-right: 3rem;
	}
}

/*====================================
recruit
====================================*/
#recruit .sec-benefit{
	padding-top: 6rem;
}

@media print,screen and (min-width: 600px) {
	#recruit .sec-overview table th,
	#recruit .sec-benefit table th{
		padding-left: 4rem;
	}
	#recruit .sec-benefit{
		padding-top: 10rem;
	}
}

#recruit .sec-flow{
	padding-top: 6rem;
	padding-bottom: 10rem;
}
#recruit .sec-flow .container-lead{
	margin-bottom: 3rem;
}
#recruit .sec-flow .flow-block{
	box-sizing: border-box;
	padding: 3rem 2rem 3rem 1.5rem;
	border-radius: 1rem;
	position: relative;
}
#recruit .sec-flow .flow-block:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	background-color: #AEAEAE;
	width: 2.6rem;
	height: 1.2rem;
	border-radius: 0.2rem;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	bottom: -3.1rem;
	right: calc((100% - 2.6rem) / 2);
}
#recruit .sec-flow .flow-block .box-txt{
	font-size: 1.8rem;
	line-height: 1.22;
}
#recruit .sec-flow .flow-block .box-txt .small{
	font-size: 1.3rem;
}
#recruit .sec-flow .flow-block .box-img{
	width: 12.9rem;
	height: 8rem;
}
#recruit .sec-flow .flow-block .box-img img{
	width: auto;
	height: auto;
	max-height: 100%;
}
#recruit .sec-flow .container-contact{
	margin-top: 4rem;
	padding: 3rem;
	border-radius: 1rem;
}
#recruit .sec-flow .container-contact .container-ttl{
	font-size: 1.8rem;
}

@media only screen and (max-width: 599px) {
	#recruit .sec-flow .flow-block{
		display: flex;
		align-items: center;
	}
	#recruit .sec-flow .flow-block:not(:last-child){
		margin-bottom: 5rem;
	}
	#recruit .sec-flow .flow-block:last-child:before{
		display: none;
	}
	#recruit .sec-flow .flow-block .box-txt{
		flex: 1;
	}
	#recruit .sec-flow .container-contact .container-ttl{
		margin-bottom: 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	#recruit .sec-flow{
		padding-top: 10rem;
		padding-bottom: 15rem;
	}
	#recruit .sec-flow .container-lead{
		margin-bottom: 4rem;
	}
	#recruit .sec-flow .container-flow{
		display: flex;
		flex-wrap: wrap;
	}
	#recruit .sec-flow .flow-block{
		width: calc((100% - 4.8rem * 3) / 4);
		padding: 2rem 1.5rem 3rem 1.5rem;
	}
	#recruit .sec-flow .flow-block:not(:nth-child(4n)){
		margin-right: 4.8rem;
	}
	#recruit .sec-flow .flow-block:before{
		clip-path: polygon(0 0, 0 100%, 100% 50%);
		width: 1.2rem;
		height: 2.6rem;
		right: -3rem;
		bottom: calc((100% - 2.6rem) / 2);
	}
	#recruit .sec-flow .flow-block:nth-child(4n):before{
		display: none;
	}
	#recruit .sec-flow .flow-block .box-txt{
		min-height: 4.7rem;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		margin-bottom: 2rem;
	}
	#recruit .sec-flow .flow-block .box-img{
		margin-left: auto;
		margin-right: auto;
	}
	#recruit .sec-flow .container-contact{
		margin-top: 6rem;
		display: flex;
		align-items: center;
		padding: 4rem;
	}
	#recruit .sec-flow .container-contact .container-ttl{
		font-size: 2.2rem;
	}
	#recruit .sec-flow .container-contact .block-txt{
		flex: 1;
		padding-left: 3rem;
	}
}

/*====================================
service
====================================*/
#service .wrap--service-page section{
	padding-top: 3rem;
	padding-bottom: 3rem;
}
#service .wrap--service-page > section:first-child{
	padding-top: 0;
}
#service .wrap--service-page > section:last-child{
	padding-bottom: 10rem;
}

#service section.service--bg1,
#service section.service--bg-halftone-black,
#service section.bg--ivory{
	padding-top: 6rem;
	padding-bottom: 6rem;
}
#service .service--bg1{
	background: url(../img/common/service-bg1.jpg) no-repeat center center;
	background-size: cover;
}
#service .wrap--service-page > section + .service--bg1,
#service .wrap--service-page > section + .bg--ivory{
	margin-top: 3rem;
}
#service .service--bg1 + section,
#service .bg--ivory + section{
	margin-top: 3rem;
}
#service .service--bg-halftone-black{
	background-color: rgba(0, 0, 0, .5);
}
#service .service--bg-halftone-navy{
	background-color: rgba(29, 45, 71, .9);
}
#service section.service--bg-halftone-navy{
	padding-top: 4rem;
	padding-bottom: 4rem;
}
#service .service--bg-halftone-navy .service--btn-list .btn{
	background-color: #E5E9EF;
	color: #1d2d47;
}
#service .service--bg-halftone-navy .service--btn-list .btn:before{
	background-color: #1D2D47;
}

#service .service--block{
	border-radius: 1rem;
	padding: 3rem;
}
#service .service--block:not(:first-child){
	margin-top: 4rem;
}
#service .ttl--cmn1 + div.service--block{
	margin-top: 0;
}
#service .service--block:not(:last-child){
	margin-bottom: 4rem;
}
#service .service--block .service--block-ttl{
	font-size: 1.8rem;
	line-height: 1.66;
}
#service .service--block .service--block-ttl:not(:last-child){
	margin-bottom: 2rem;
}

#service .service--border-block{
	box-sizing: border-box;
	border: 1px solid #DEDEDE;
	border-radius: 1rem;
	padding: 2rem;
}
#service .service--border-block:not(:last-child){
	margin-bottom: 3rem;
}
#service .service--border-block:not(:first-child){
	margin-top: 3rem;
}
#service .service--block .service--border-block-ttl{
	font-size: 1.8rem;
	line-height: 1.66;
}
#service .service--block .service--border-block-ttl:not(:last-child){
	margin-bottom: 1rem;
}

#service .service--list1{
	display: flex;
	flex-wrap: wrap;
}
#service .service--list1:not(:last-child){
	margin-bottom: 3rem;
}
#service .service--list1 .service--list1-card{
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 1rem;
	padding: 1rem;
	min-height: 8rem;
	width: calc((100% - 1.1rem) / 2);
}

#service .service--case-list-card{
	box-sizing: border-box;
	border-radius: 1rem;
	padding: 3rem;
}
#service .service--case-list-card:not(:last-child){
	margin-bottom: 3rem;
}
#service .service--case-list-card .container-ttl{
	margin-bottom: 2rem;
}
#service .service--case-list-card .service--case-list-ttl{
	position: relative;
	font-size: 1.8rem;
	line-height: 1.66;
	font-weight: 600;
	padding-top: 0.1rem;
	padding-bottom: 0.1rem;
	color: #1d2d47;
}
#service .service--case-list-card .service--case-list-ttl:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	width: 0.8rem;
	height: 100%;
	top: 0;
	left: -3rem;
	background-color: #1D2D47;
}
#service .service--case-list-card .block-detail{
	display: flex;
}
#service .service--case-list-card .block-detail .detail-box{
	border-radius: 1rem;
	overflow: hidden;
}
#service .service--case-list-card .block-detail .detail-box:not(:last-child){
	margin-right: 1.5rem;
}
#service .service--case-list-card .block-detail .detail-box .item-label,
#service .service--case-list-card .block-detail .detail-box .item-txt{
	box-sizing: border-box;
	padding: 1rem;
}
#service .service--case-list-card .block-flow .box-flow{
	position: relative;
}
#service .service--case-list-card .block-flow .box-flow:not(:last-child):before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	background-color: #DEDEDE;
	width: 3.2rem;
	height: 1.4rem;
	border-radius: 0.2rem;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	bottom: -3.3rem;
	right: calc((100% - 3.2rem) / 2);
}

#service .service--step-list-card{
	box-sizing: border-box;
	position: relative;
}
#service .service--step-list-card:not(:last-child){
	padding-bottom: 3.5rem;
	background-image: linear-gradient(to right, #DEDEDE, #DEDEDE 0.5rem, transparent 0.5rem, transparent 1rem);
	background-size: 1rem 1px;
	background-position: left bottom;
	background-repeat: repeat-x;
}
#service .service--step-list-card:not(:last-child):before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	background-color: #ECECEC;
	width: 3rem;
	height: 1.8rem;
	border-radius: 0.2rem;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	bottom: -0.9rem;
	left: calc((100% - 3rem) / 2);
}
#service .service--step-list-card:not(:first-child){
	padding-top: 3.5rem;
}
#service .service--step-list-card .service--step-list-num{
	box-sizing: border-box;
	font-size: 1.3rem;
	border-radius: 0.5rem;
	min-width: 7rem;
	padding: 0.7rem;
}
#service .service--step-list-card .service--step-list-ttl{
	font-size: 1.8rem;
	line-height: 1.66;
}

@media only screen and (max-width: 599px) {
	#service .service--list1{
		justify-content: space-between;
	}
	#service .service--list1 .service--list1-card:nth-child(n+3){
		margin-top: 1.1rem;
	}

	#service .service--case-list .service--case-list-ttl{
		margin-bottom: 2rem;
	}
	#service .service--case-list-card .block-detail .detail-box{
		width: calc((100% - 1.5rem) / 2);
	}
	#service .service--case-list-card .block-flow .box-flow:not(:last-child){
		margin-bottom: 5rem;
	}

	#service .service--btn-list .btn:not(:last-child){
		margin-bottom: 2rem;
	}

	#service .service--step-list-card .container-ttl{
		display: flex;
		align-items: center;
		margin-bottom: 1.5rem;
	}
	#service .service--step-list-card .container-ttl .block-num{
		margin-right: 1rem;
	}
	#service .service--step-list-card .container-ttl .block-ttl{
		flex: 1;
	}
}

@media print,screen and (min-width: 600px) {
	#service .wrap--service-page section{
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	#service .wrap--service-page > section:first-child{
		box-sizing: border-box;
		position: relative;
		z-index: 2;
		background-color: #FBF9F6;
		border-radius: 1rem 1rem 0 0;
		padding-top: 10rem;
		padding-right: 10rem;
		padding-left: 10rem;
	}
	#service .wrap--service-page > section:last-child{
		padding-bottom: 15rem;
	}

	#service .wrap--service-page > section + .service--bg1,
	#service .wrap--service-page > section + .bg--ivory{
		margin-top: 5rem;
	}
	#service .service--bg1 + section,
	#service .bg--ivory + section{
		margin-top: 5rem;
	}
	#service section.service--bg-halftone-black,
	#service section.bg--ivory{
		padding-top: 10rem;
		padding-bottom: 10rem;
	}
	#service section.service--bg-halftone-navy{
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
	#service .service--bg-halftone-navy .service--btn-list .btn:hover{
		background-color: #000;
		color: #fff;
	}
	#service .service--bg-halftone-navy .service--btn-list .btn:hover:before{
		background-color: #fff;
	}

	#service .service--block{
		padding: 5rem;
	}
	#service .service--block:not(:first-child){
		margin-top: 6rem;
	}
	#service .service--block:not(:last-child){
		margin-bottom: 6rem;
	}
	#service .service--block .service--block-ttl{
		font-size: 2.6rem;
	}
	#service .service--block .service--block-ttl:not(:last-child){
		margin-bottom: 3rem;
	}

	#service .service--border-block{
		padding: 4rem;
	}
	#service .service--border-block:not(:last-child){
		margin-bottom: 5rem;
	}
	#service .service--border-block:not(:first-child){
		margin-top: 5rem;
	}
	#service .service--block .service--border-block-ttl:not(:last-child){
		margin-bottom: 2rem;
	}

	#service .service--list1:not(:last-child){
		margin-bottom: 4rem;
	}
	#service .service--list1 .service--list1-card{
		width: calc((100% - 2rem * 3) / 4);
	}
	#service .service--list1 .service--list1-card:not(:nth-child(4n)){
		margin-right: 2rem;
	}
	#service .service--list1 .service--list1-card:nth-child(n+5){
		margin-top: 2rem;
	}

	#service .service--case-list-card{
		padding: 4rem;
	}
	#service .service--case-list-card:not(:last-child){
		margin-bottom: 4rem;
	}
	#service .service--case-list-card .container-ttl{
		margin-bottom: 3rem;
		display: flex;
		align-items: center;
	}
	#service .service--case-list-card .container-ttl .block-ttl{
		flex: 1;
		padding-right: 3rem;
	}
	#service .service--case-list-card .service--case-list-ttl{
		font-size: 2.2rem;
		line-height: 1.72;
		padding: 0;
	}
	#service .service--case-list-card .service--case-list-ttl:before{
		left: -4rem;
	}
	#service .service--case-list-card .block-detail .detail-box{
		display: flex;
	}
	#service .service--case-list-card .block-detail .detail-box:not(:last-child){
		margin-right: 2rem;
	}
	#service .service--case-list-card .block-detail .detail-box .item-label,
	#service .service--case-list-card .block-detail .detail-box .item-txt{
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 5rem;
		min-width: 11.5rem;
	}
	#service .service--case-list-card .block-flow{
		display: flex;
		justify-content: space-between;
	}
	#service .service--case-list-card .block-flow .box-flow{
		width: calc((100% - 6rem) / 2);
	}
	#service .service--case-list-card .block-flow .box-flow:not(:last-child):before{
		clip-path: polygon(0 0, 0 100%, 100% 50%);
		width: 1.4rem;
		height: 3.2rem;
		right: -3.7rem;
		bottom: calc((100% - 3.2rem) / 2);
	}

	#service .service--btn-list{
		display: flex;
		flex-wrap: wrap;
	}
	#service .service--btn-list .btn{
		width: calc((100% - 3rem * 2) / 3);
	}
	#service .service--btn-list .btn:not(:nth-child(3n)){
		margin-right: 3rem;
	}
	#service .service--btn-list .btn:nth-child(n+4){
		margin-top: 3rem;
	}

	#service .service--step-list-card{
		display: flex;
		align-items: center;
	}
	#service .service--step-list-card:not(:last-child){
		padding-bottom: 4rem;
	}
	#service .service--step-list-card:not(:last-child):before{
		left: 10.4rem;
	}
	#service .service--step-list-card:not(:first-child){
		padding-top: 4rem;
	}
	#service .service--step-list-card .container-ttl{
		width: 23.8rem;
	}
	#service .service--step-list-card .container-ttl .block-num{
		display: flex;
		justify-content: center;
		margin-bottom: 0.5rem;
	}
	#service .service--step-list-card .container-ttl .block-ttl{
		text-align: center;
	}
	#service .service--step-list-card .service--step-list-ttl{
		font-size: 2.2rem;
	}
	#service .service--step-list-card .container-txt{
		flex: 1;
		padding-left: 1rem;
		padding-right: 2rem;
	}
}

/* unique
--------------------------------------*/
/* cheating-investigation */
#service.page--cheating-investigation .recommended-container{
	margin-bottom: 3rem;
	box-sizing: border-box;
	padding: 3.5rem 3rem 3rem 3rem;
	border-radius: 1rem;
}
#service.page--cheating-investigation .recommended-container .block-ttl{
	margin-bottom: 2rem;
}
#service.page--cheating-investigation .recommended-container .block-ttl .ttl{
	font-size: 1.8rem;
}
#service.page--cheating-investigation .recommended-container .block-img .img{
	display: block;
}

@media only screen and (max-width: 599px) {
	#service.page--cheating-investigation .recommended-container .block-ttl .ttl{
		padding-bottom: 1.3rem;
		border-bottom: 1px solid #BCBCBC;
		margin-bottom: 1rem;
	}
	#service.page--cheating-investigation .recommended-container .block-img .img:not(:last-child){
		margin-bottom: 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	#service.page--cheating-investigation .recommended-container{
		margin-bottom: 6rem;
		padding: 5rem;
	}
	#service.page--cheating-investigation .recommended-container .block-ttl{
		margin-bottom: 3rem;
		display: flex;
		align-items: center;
	}
	#service.page--cheating-investigation .recommended-container .block-ttl .ttl{
		font-size: 2.2rem;
		padding: 0.4rem 2rem 0.4rem 0;
		border-right: 1px solid #BCBCBC;
	}
	#service.page--cheating-investigation .recommended-container .block-ttl .txt{
		padding-left: 2rem;
		flex: 1;
	}
	#service.page--cheating-investigation .recommended-container .block-img{
		display: flex;
		justify-content: space-between;
	}
	#service.page--cheating-investigation .recommended-container .block-img .img{
		width: calc((100% - 2.6rem) / 2);
	}
}

/*====================================
price
====================================*/
#price .sec-lead .container-anchor{
	display: flex;
	flex-wrap: wrap;
	margin-top: 6rem;
}
#price .sec-lead .container-anchor .anchor-item{
	background-color: #F5F2EC;
	color: #1d2d47;
	line-height: 1.68;
	width: calc((100% - 1.1rem) / 2);
}
#price .sec-lead .container-anchor .anchor-item:before{
	background-color: #1d2d47;
	transform: rotate(90deg);
	right: 1.5rem;
}

@media only screen and (max-width: 599px) {
	#price .sec-lead .container-anchor{
		justify-content: space-between;
	}
	#price .sec-lead .container-anchor .anchor-item{
		padding-left: 1.5rem;
		padding-right: 3.8rem;
		text-align: center;
	}
	#price .sec-lead .container-anchor .anchor-item:nth-child(n+3){
		margin-top: 1.1rem;
	}
}

@media print,screen and (min-width: 600px) {
	#price .sec-lead .container-anchor{
		margin-top: 10rem;
	}
	#price .sec-lead .container-anchor .anchor-item{
		width: calc((100% - 2rem * 3) / 4);
	}
	#price .sec-lead .container-anchor .anchor-item:not(:nth-child(4n)){
		margin-right: 2rem;
	}
	#price .sec-lead .container-anchor .anchor-item:nth-child(n+5){
		margin-top: 2rem;
	}
	#price .sec-lead .container-anchor .anchor-item:hover{
		background-color: #1D2D47;
		color: #fff;
	}
	#price .sec-lead .container-anchor .anchor-item:hover:before{
		background-color: #fff;
	}
}

#price .sec-price{
	padding-top: 6rem;
}
#price .sec-price .container:not(:last-child){
	margin-bottom: 4rem;
}
#price .sec-price .container .block:not(:last-child){
	margin-bottom: 2rem;
}
#price .sec-price .container .thumbnail-card{
	box-sizing: border-box;
	display: flex;
	padding: 0.4rem;
	border-radius: 1rem;
}
#price .sec-price .container .thumbnail-card .box-img{
	width: 40.36%;
}
#price .sec-price .container .thumbnail-card .box-img .img{
	width: 100%;
	height: 100%;
	position: relative;
}
#price .sec-price .container .thumbnail-card .box-img .img .logo{
	width: 80%;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#price .sec-price .container .thumbnail-card .box-txt{
	flex: 1;
	position: relative;
	box-sizing: border-box;
	padding: 1.7rem 1.7rem 1.7rem 1rem;
	min-height: 15rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
#price .sec-price .container .thumbnail-card .box-txt .ttl{
	font-size: 2.1rem;
	line-height: 1.52;
	margin-top: 0.5rem;
}
#price .sec-price .container .thumbnail-card .box-txt .arrow--right{
	position: absolute;
	right: 0.6rem;
	bottom: 0.6rem;
	width: 2.3rem;
	height: 2.3rem;
}
#price .sec-price .container .thumbnail-card .box-txt .arrow--right:before{
	width: 0.5rem;
	height: 0.8rem;
	top: calc((100% - 0.8rem) / 2);
	left: calc((100% - 0.5rem) / 2);
}

#price .sec-cancel{
	padding-top: 6rem;
	padding-bottom: 10rem;
}

@media only screen and (max-width: 599px) {
	#price .sec-price .container .thumbnail-card:not(:last-child){
		margin-bottom: 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	#price .sec-price{
		padding-top: 10rem;
	}
	#price .sec-price .container:not(:last-child){
		margin-bottom: 6rem;
	}
	#price .sec-price .container .block:not(:last-child){
		margin-bottom: 4rem;
	}
	#price .sec-price .container .block-thumbnail{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#price .sec-price .container .thumbnail-card{
		width: calc((100% - 2.6rem) / 2);
	}
	#price .sec-price .container .thumbnail-card:nth-child(n+3){
		margin-top: 3rem;
	}
	#price .sec-price .container .thumbnail-card .box-img{
		width: 16.2rem;
	}
	#price .sec-price .container .thumbnail-card:hover .box-img .img .logo{
		transform: translate(-50%, -50%) scale(1.1);
	}
	#price .sec-price .container .thumbnail-card .box-txt{
		padding: 2.2rem 1.6rem 2.2rem 2rem;
	}
	#price .sec-price .table--cmn1 th{
		width: 20rem;
	}

	#price .sec-cancel{
		padding-top: 10rem;
		padding-bottom: 15rem;
	}
}

/*====================================

====================================*/

@media only screen and (max-width: 599px) {
}

@media print,screen and (min-width: 600px) {
}

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