@charset "utf-8";

#contentsBlock [id^="sec_"] > .inner > .lead{
	margin-top: 1.5em;
	font-weight: 700;
}

@media screen and (max-width: 768px){
	/* スライダー矢印 */
	.slick-arrow{
		border: none;
		width: 48px;
		height: 48px;
		display: flex;
		justify-content: center;
		align-items: center;
		background: #A2000D;
		border-radius: 50%;
		color: #fff;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		z-index: 10;
	}
	.slick-arrow.slick-prev{
		left: 6px;
	}
	.slick-arrow.slick-next{
		right: 6px;
	}
}

/* ------------------------------------------------------------------------ */

/*  メインビジュアル

/* ------------------------------------------------------------------------ */

#sec_mailVisual{
	background: url("/img/bg_main_illust.webp") no-repeat center / cover;
	position: relative;
	overflow: hidden;
	padding-bottom: 32px;
	height: calc(100vh - 92px);
	min-height: 687px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#sec_mailVisual > .inner{
	max-width: 1758px;
	width: calc(100% - 162px);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 0 66px;
}
#sec_mailVisual > .inner .txtBox{
	text-align: left;
	padding-top: 78px;
	width: 46%;
	position: relative;
	z-index: 10;
}

#sec_mailVisual .txtBox h2{
	font-size: clamp(4.8rem, 3.3vw, 7.3rem);
	font-weight: 900;
	color: #131313;
	line-height: 1.333;
	position: relative;
}
#sec_mailVisual .txtBox h2::before{
	content: "";
	display: block;
	background: url("../img/mv_fukidashi.svg") no-repeat center / contain;
	width: 100px;
	height: 72px;
	position: absolute;
	bottom: calc(100% - 0.25em);
	left: -0.8em;
}
#sec_mailVisual .txtBox p{
	font-size: clamp(0.5rem, 1.05vw, 1.8rem);
	font-weight: 700;
	color: #333333;
	line-height: 1.556;
	margin-top: 1.33332em;
	/*margin-right: 3em;*/
}

#sec_mailVisual .txtBox .btnBox{
	justify-content: flex-start;
	margin-top: 64px;
}
#sec_mailVisual .txtBox .btnBox li{
	max-width: 240px;
	width: 50%;
}
#sec_mailVisual .txtBox .btnBox li + li{
	margin-left: 16px;
}
#sec_mailVisual .txtBox .btnBox li .btnBasic{
	padding: 0 20px;
	font-size: 1.6rem;
	line-height: 1.25;
	height: 64px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

#sec_mailVisual .recordImg{
	position: absolute;
	right: 50px;
	bottom: 80px;
	z-index: 20;
	max-width: 358px;
	width: 25%;
}


/*追従ボタン*/
.btn-tour{
	max-width: 64px;
	width: 100%;
	position: fixed;
	top: 148px;
	right: 0;
	z-index: 50;
}
.btn-tour .btnBasic{
	background: #292B2D;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
	font-size: 1.4rem;
	padding: 14px;
	padding-bottom: 46px;
}
.btn-tour .btnBasic.style2::before{
	top: auto;
	bottom: 0;
	right: auto;
	left: 50%;
	transform: translateX(-50%);
}
.btn-tour .slideArrow.style2 .material-symbols-outlined{
	top: calc(100% - 0.8em);
	right: auto;
	left: 50%;
	-webkit-writing-mode: horizontal-tb;
	-ms-writing-mode: lr-tb;
	writing-mode: horizontal-tb;
}

/*スクロールダウン*/
.scrolldown1{
	position:absolute;
	bottom: 120px;
	right: 22px;
	height:80px;
	width: 20px;
}
.scrolldown1 span{
	position: absolute;
	left: -10px;
	top: -40px;
	color: #292B2D;
	font-family: "Titillium Web", sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.06px;
	transform: rotate(90deg);
}
.scrolldown1::after{
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 80px;
	background: #292B2D;
	animation: scrollmove 1.2s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes scrollmove{
	0%{
		transform-origin: 0% 0%;
		transform: scale(1, 0);
	}
	50%{
		transform-origin: 0% 0%;
		transform: scale(1, 1);
	}
	50.1% {
		transform-origin: 0% 100%;
		transform: scale(1, 1);
	}
	100%{
		transform-origin: 0% 100%;
		transform: scale(1, 0);
	}
}

.makerSlide_wrap{
	z-index: 21;
}

.makerSlide_wrap > p{
    max-width: 1758px;
    width: calc(100% - 162px);
	margin: 0 auto 8px;
	text-align: left;
	font-size: 1.2rem;
}
.makerLogo li img{
	margin: 0 auto;
	border-radius: 10px;
	width: calc(100% - 10px);
	max-width: 200px;
}


@media screen and (max-width: 1365px){
	#sec_mailVisual{
		height: auto;
		min-height: inherit;
	}
	#sec_mailVisual > .inner,
	.makerSlide_wrap > p{
		max-width: 1220px;
		width: calc(100% - 52px);
	}
	#sec_mailVisual .txtBox p{
	font-size: 1.2vw;
    }
	#sec_mailVisual .txtBox h2{
		font-size: 4.8rem;
	}
    #sec_mailVisual .recordImg{
        right: 20px;
        bottom: 60px;
    }
}
@media screen and (max-width: 1330px){
	.btn-tour{
		display: none;
	}
}
@media screen and (max-width: 1280px){
	#sec_mailVisual > .inner{
		padding-bottom: 5vw;
	}
	#sec_mailVisual .txtBox h2{
		font-size: 3.75vw;
	}
	#sec_mailVisual .txtBox h2::before{
		width: 80px;
		height: 58px;
        bottom: calc(100% + 0.1vw);
		left: -22px;
	}
	#sec_mailVisual .txtBox .btnBox{
		width: 170%;
		margin-top: 5vw;
	}
}
@media screen and (max-width: 767px){
	#sec_mailVisual{
		background-image: url("/img/bg_main_illust_sp.webp");
	}
	#sec_mailVisual > .inner{
		padding: 56px 0 66vw;
		flex-direction: column;
	}
	#sec_mailVisual > .inner .txtBox{
		padding-top: 64px;
		width: 100%;
	}
	#sec_mailVisual .txtBox h2{
		font-size: 3rem;
	}
	#sec_mailVisual .txtBox p{
		font-size: 2.4vw;
		margin-right: 0;
	}
	#sec_mailVisual .txtBox .btnBox{
		position: absolute;
		top: -56px;
		left: -26px;
		width: calc(100% + 52px);
		margin: 0;
	}
	#sec_mailVisual .txtBox .btnBox li{
		max-width: inherit;
		width: 50%;
	}
	#sec_mailVisual .txtBox .btnBox li .btnBasic{
		max-width: inherit;
		font-size: 1.4rem;
		height: 55px;
	}
	#sec_mailVisual .txtBox .btnBox li + li{
		margin: 0;
	}
	#sec_mailVisual .txtBox .btnBox .btnBasic.style2::before{
		content: none;
	}
	
	#sec_mailVisual .recordImg{
		bottom: 80px;
		width: 42%;
		right: -8px;
	}
	.makerSlide_wrap > p,
	.scrolldown1{
		display: none;
	}
}
@media screen and (max-width: 450px){
	#sec_mailVisual .txtBox p{
		font-size: 1.2rem;
	}
	#sec_mailVisual .txtBox p br{
		display: none;
	}
}
@media screen and (max-width: 424px){
	#sec_mailVisual .txtBox h2{
		font-size: 7vw;
	}
}
@media screen and (max-width: 374px){
	#sec_mailVisual .txtBox .btnBox li .btnBasic{
		font-size: 3.8vw;
		padding: 0 10px;
	}
}

/* ------------------------------------------------------------------------ */

/*  製品情報

/* ------------------------------------------------------------------------ */
#sec_productsLead{
	background: url("/img/bg_products.webp") no-repeat center bottom / cover;
}
#contentsBlock #sec_productsLead > .inner{
	padding-top: 120px;
	padding-bottom: 76px;
}

#sec_productsLead h2,
#sec_productsLead p{
	text-align: left;
	color: #fff;
	text-shadow: 0 3px 20px rgba(0,0,0,0.16),0 3px 20px rgba(0,0,0,0.16);
}
#sec_productsLead h2{
	font-size: 4rem;
	line-height: 1.6;
}
#sec_productsLead p{
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 2;
	margin-top: 1.5em;
	width: calc(100% - 70px);
}
#sec_productsLead p a{
	color: #fff;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.6;
	margin-top: 1.5em;
	text-decoration: underline;
	text-underline-offset: 2px;
}
#sec_productsLead p a::after{
    content: url(../common/img/icon/icon_blank_white.svg);
    vertical-align: text-top;
    margin-left: 3px;
}
#sec_productsLead p a .fa-openwin{
    vertical-align: baseline;
    margin-left: 4px;
}
#sec_productsLead p a:hover{
	text-decoration: none;
}
#sec_productsLead .txtBox{
	width: 60%;
}
#sec_productsLead figure{
	max-width: 400px;
	width: 38%;
}

#contentsBlock #sec_products > .inner{
	padding-top: 39px;
}
#sec_products{
	background: #131313;
}

#sec_products .top-hd .en,
#sec_products .top-hd{
	color: #fff;
}

.catContainer {
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	margin: 64px -8px 0;
}

.catContainer .catBox{
	margin: 0 8px 16px;
	width: calc(100% / 4 - 16px);
	background: #fff;
	min-height: 390px;
}

.catContainer .catBox a{
	text-decoration: none;
}

.catContainer .catBox .product-cat{
	color: #000;
	font-size: 2.2rem;
	font-weight: 700;
	text-align: left;
	padding: 32px 16px;
}
.catContainer .catBox .product-subcat{
	padding: 0 13px 16px;
	text-align: left;
}
.catContainer .catBox .product-subcat > li + li{
	margin-top: 8px;
}
.catContainer .catBox .product-subcat a{
	color: #131313;
	position: relative;
	padding-left: 1em;
	font-weight: 700;
	line-height: 1.2;
	padding-bottom: 3px;
}
.catContainer .catBox .product-subcat a::before{
	content: "";
	display: inline-block;
	width: 3px;
	height: 100%;
	background: #A2000D;
	position: absolute;
	left: 0;
}

.catContainer .catBox .product-subcat a .genericTerm{
	font-size: 1.2rem;
	letter-spacing: -0.2px;
}
.catContainer .catBox .product-subcat a .productName{
	position: relative;
	font-size: 1.8rem
}

.catContainer .catBox .product-subcat a:hover .lineLink::after{
	transform-origin: 0% 50%;
	transform: scaleX(1);
}



#sec_products .btnBasic{
	margin-top: 24px;
}

@media screen and (max-width: 1179px){
	#sec_productsLead h2{
		font-size: 2.2rem;
	}
	#sec_productsLead p{
		width: calc(100% - 20px);
	}
	
	.catContainer .catBox{
		min-height: 280px;
	}
	.catContainer .catBox .product-cat{
		font-size: 1.8rem;
	}
	.catContainer .catBox .product-subcat a{
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 767px){
	#contentsBlock #sec_productsLead > .inner{
		padding-top: 72px;
		padding-bottom: 49px;
	}
	#sec_productsLead .inner > .flex{
		display: block;
	}
	#sec_productsLead .txtBox{
		width: 100%;
	}
	#sec_productsLead h2{
		font-size: 1.8rem;
	}
	#sec_productsLead p{
		font-size: 1.4rem;
		width: 100%;
	}
    #sec_productsLead p a{
        font-size: 1.3rem;
    }
	#sec_productsLead figure{
		margin: 40px auto 0;
		width: 80%;
	}
	.catContainer{
		display: block;
		margin: 20px 0 0;
	}
	.catContainer .catBox{
		min-height: inherit;
		width: 100%;
		margin: 0 0 16px;
	}
	.catContainer .catBox > a{
		display: flex;
		justify-content: flex-start;
		align-items: center;
		width: 100%;
	}
	
	.catContainer .catBox > a figure{
		width: 100px;
		flex-shrink: 0;
		aspect-ratio: 4/3;
	}
	.catContainer .catBox > a figure img{
		width: 100px;
		height: 75px;
		object-fit: cover;
	}
	.catContainer .catBox .product-cat {
		padding: 0 16px;
    }
	.catContainer .catBox .product-subcat{
		padding: 16px;
	}
}



/* ------------------------------------------------------------------------ */

/*  導入事例・業種別ユースケース

/* ------------------------------------------------------------------------ */
#sec_case{
	background: #EFECEC;
}
#sec_case ul{
	align-items: stretch;
	margin-top: 66px;
}
#sec_case ul li{
	text-align: left;
	width: calc(100% / 3 - 28px);
}
#sec_case ul li .youtube{
	overflow: hidden;
	aspect-ratio: 16 / 9;
}
#sec_case ul li .youtube iframe{
	width: 100%;
	height: 100%;
}
#sec_case ul li .youtube img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#sec_case ul li a{
	color: inherit;
	text-decoration: none;
}
#sec_case ul li .labelBox{
	margin-top: 0.8rem;
}
#sec_case ul li .labelBox span{
	font-size: 1.4rem;
}
#sec_case ul li .labelBox .people::before{
	content: "/";
	margin: 0 10px;
}
#sec_case ul li .txtBox .companyName{
	margin-top: 8px;
	font-size: 2rem;
	font-weight: 700;
	/*line-height: 1.7;*/
}
#sec_case ul li .txtBox .companyName .related-link{
	background: linear-gradient(#2D2D2D, #2D2D2D) 0 100%/0 2px no-repeat;
    text-decoration: underline;
    text-underline-offset: 4px;
	transition: none;
	padding-bottom: 0px;
}
#sec_case ul li a:hover .companyName .related-link{
	background-size: 100% 2px;
	text-decoration: none;
	transition: .4s;
}

#sec_case ul li a 
#sec_case ul li .txtBox .txt{
	margin-top: 1em;
}
#sec_case ul li .txtBox .txt{
	margin-top: 8px;
	font-size: 1.6rem;
}

#sec_case .btnBasic{
	margin-top: 40px;
}

@media screen and (max-width: 1179px){
	#sec_case ul li{
		width: calc(100% / 3 - 16px);
	}
}
@media screen and (max-width: 1024px){
	#sec_case ul li{
		width: calc(100% / 3 - 9px);
	}
}
@media screen and (max-width: 767px){
	#sec_case ul{
		display: block;
		margin: 48px auto 0;
	}
	#sec_case ul li{
		width: auto;
		margin: 0 auto;
	}
	#sec_case ul li + li{
		margin-top: 48px;
	}
}


/* ------------------------------------------------------------------------ */

/*  トヨタL＆Fが選ばれる理由

/* ------------------------------------------------------------------------ */
#sec_strengths{
	background: url("/img/bg_strengths.webp") no-repeat center bottom / cover;
}
#sec_strengths ul{
	margin-top: 80px;
	align-items: flex-start;
	align-items: stretch;
}
#sec_strengths ul li{
	background: #fff;
	min-height: 304px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
	width: calc(100% / 4 - 30px);
	box-shadow: 0 20px 30px 0 rgba(0,0,0,0.16);
}

#sec_strengths ul li .num{
	font-family: "Titillium Web", sans-serif;
	width: 49px;
	height: 49px;
	background: #A2000D;
	color: #fff;
	font-size: 2.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -16px;
	right: 16px;
}
#sec_strengths ul li .thumb{
	aspect-ratio: 34 / 21;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-top: 9px;
}
	#sec_strengths ul li.strengths01 .thumb{
		background-image: url("../img/strengths_thumb_01.svg");
	}
	#sec_strengths ul li.strengths02 .thumb{
		background-image: url("../img/strengths_thumb_02.svg");
	}
	#sec_strengths ul li.strengths03 .thumb{
		background-image: url("../img/strengths_thumb_03.svg");
	}
	#sec_strengths ul li.strengths04 .thumb{
		background-image: url("../img/strengths_thumb_04.svg");
	}

#sec_strengths ul li .txtBox{
	padding: 0 16px 16px;
}
#sec_strengths ul li .txtBox h3{
	color: #A2000D;
	font-size: 2rem;
	line-height: 1.2;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#sec_strengths ul li p{
	font-size: 1.6rem;
	font-weight: 500;
	margin-top: 16px;
	word-break: break-word;
	text-align: justify;
}

#sec_strengths .btnBasic.slideArrow{
	margin-top: 40px;
}

#sec_strengths .docContainer{
	background-image: none;
}

@media screen and (max-width: 1179px){
	#sec_strengths ul li{
		width: calc(100% / 4 - 10px);
	}
	#sec_strengths ul li .num{
		width: 36px;
		height: 36px;
		font-size: 2rem;
	}
	#sec_strengths ul li p br{
		display: none;
	}
}
@media screen and (max-width: 767px){
	#sec_strengths ul{
		flex-direction: column;
	}
	#sec_strengths ul li{
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		min-height: inherit;
		box-shadow: 0 5px 10px 0 rgba(0,0,0,0.16);
	}
	#sec_strengths ul li + li{
		margin-top: 34px;
		min-height: inherit;
	}
	#sec_strengths ul li .num{
		font-size: 2.4rem;
		width: 48px;
		height: 48px;
		right: auto;
		left: 16px;
	}
	#sec_strengths ul li .thumb{
		width: 120px;
		min-height: 112px;
		flex-shrink: 0;
		margin: 0;
		background-size: cover;
	}
	#sec_strengths ul li .txtBox{
		padding-top: 32px;
		padding-right: 0;
	}
	#sec_strengths ul li .txtBox h3{
		display: block;
		text-align: left;
		height: inherit;
		margin-top: 16px;
	}

}

/* ------------------------------------------------------------------------ */

/*  保守・サポート

/* ------------------------------------------------------------------------ */
#sec_support{
	background: url("/img/bg_support.webp") no-repeat center bottom / cover;
}
#sec_support ul{
	margin-top: 64px;
	align-items: stretch;
}
#sec_support ul li{
	max-width: 402px;
	width: calc(100% / 3 - 1px);
    padding: 0 50px;
	position: relative;
	color: #fff;
}
#sec_support ul li h3{
	font-size: 2rem;
	color: #A2000D;
}
#sec_support ul li h3::before{
	content: "";
	display: block;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 120px;
	margin-bottom: 1.85em;
}
#sec_support ul li.icon-hozen h3::before{
	background-image: url("../img/icon_support_01.svg");
	background-size: 120px 120px;
}
#sec_support ul li.icon-trouble h3::before{
	background-image: url("../img/icon_support_02.svg");
	background-size: 132px 120px;
}
#sec_support ul li.icon-system h3::before{
	background-image: url("../img/icon_support_03.svg");
	background-size: 92px 120px;
}

#sec_support ul li p{
	margin-top: 32px;
	text-align: justify;
	color: #000;
	font-weight: 500;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

#sec_support .btnBasic{
	margin-top: 40px;
}

@media screen and (max-width: 1024px){
	#sec_support ul li{
		padding: 20px;
	}
	#sec_support ul li h3{
		font-size: 1.8rem;
	}
	#sec_support ul li h3::before{
		height: 80px;
	}
	#sec_support ul li.icon-hozen h3::before{
		background-size: 78.55px 80px;
	}
	#sec_support ul li.icon-trouble h3::before{
		background-size: 83.94px 80px;
	}
	#sec_support ul li.icon-system h3::before{
		 background-size: 56px 80px;
	}
	#sec_support ul li p{
		margin-top: 16px;
	}
}
@media screen and (max-width: 767px){
	#sec_support ul{
		display: block;
		margin-top: 20px;
	}
	#sec_support ul li{
		max-width: inherit;
		width: 100%;
	}
	#sec_support ul li + li{
		margin: 1.5px 0 0;
	}
	#sec_support ul li h3{
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	#sec_support ul li h3::before{
		width: 64px;
		flex-shrink: 0;
		margin-bottom: 0;
		margin-right: 16px;
	}
	#sec_support ul li.icon-hozen h3::before {
		background-size: 58.55px 80px;
	}
	#sec_support ul li.icon-trouble h3::before{
		background-size: 64px 80px;
	}
	#sec_support ul li.icon-system h3::before{
		background-size: 46px 80px;
	}
	#sec_support ul li p{
		margin-top: 7.5px;
	}

}

/* ------------------------------------------------------------------------ */

/*  導入までのプロセス

/* ------------------------------------------------------------------------ */
#sec_process{
	background: #EFECEC;
}
#sec_process .stepContainer{
	display: grid;
	margin-top: 64px;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows: 36px 1fr;
	gap: 10px;
	grid-template-areas:"label1 label1 label1 label2 label2 label3 label3"
	"step1 step2 step3 step4 step5 step6 step7";
}

#sec_process .stepContainer .stepLabel.label1{
	grid-column: 1 / 4;
}
#sec_process .stepContainer .stepLabel.label2{
	grid-column: 4 / 6;
}
#sec_process .stepContainer .stepLabel.label3{
	grid-column: 6 / 8;
}
#sec_process .stepContainer .stepDetail.step1{
	grid-column: 1;
	grid-row: 2 / 3;
}
#sec_process .stepContainer .stepDetail.step2{
	grid-column: 2;
	grid-row: 2 / 3;
}
#sec_process .stepContainer .stepDetail.step3{
	grid-column: 3;
	grid-row: 2 / 3;
}
#sec_process .stepContainer .stepDetail.step4{
	grid-column: 4;
	grid-row: 2 / 3;
}
#sec_process .stepContainer .stepDetail.step5{
	grid-column: 5;
	grid-row: 2 / 3;
}
#sec_process .stepContainer .stepDetail.step6{
	grid-column: 6;
	grid-row: 2 / 3;
}
#sec_process .stepContainer .stepDetail.step7{
	grid-column: 7;
	grid-row: 2 / 3;
}


#sec_process .stepContainer .stepLabel{
	background: #A2000D;
	border-radius: 5px;
	text-align: center;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 36px;
	padding: 0 10px;
}
#sec_process .stepContainer li{
	text-align: left;
	position: relative;
}
#sec_process .stepContainer .stepBox{
	padding: 16px 8px 50px;
	background: #fff;
	height: 100%;
	position: relative;
}
#sec_process .stepContainer .stepBox .note{
	display: block;
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0;
	color: #131313;
	margin-bottom: 11.5px;
}

#sec_process .stepContainer .stepNum{
	font-family: "Titillium Web", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	display: inline-block;
	background: #A2000D;
	color: #fff;
	border-radius: 14px;
	padding: 2px 8px;
}

#sec_process .stepContainer .stepBox h3{
	color: #A2000D;
	margin-top: 0.8889em;
	letter-spacing: 0;
	min-height: 54px;
}
#sec_process .stepContainer .step2 .stepBox h3{
	min-height: inherit;
}
#sec_process .stepContainer .stepBox .txt{
	font-size: 1.4rem;
	font-weight: 700;
	margin-top: 1.5em;
	text-align: justify;
}

#sec_process .stepContainer li .stepBox::after{
	content: "";
	display: block;
	width: 100px;
	height: 100px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
}
#sec_process .stepContainer li.step1 .stepBox::after{
	background-image: url("../img/icon_process_01.svg");
}

#sec_process .stepContainer li.step2 .stepBox::after{
	background-image: url("../img/icon_process_02.svg");
}
	#sec_process .stepContainer li.step2::before{
		content: "";
		display: block;
		width: calc(100% - 10px);
		height: 4px;
		background: #BEBEBE;
		margin: 10px 0;
	}
	#sec_process .stepContainer li.step2::after{
		content: "";
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 7px solid transparent;
		border-bottom: 7px solid transparent;
		border-left: 20px solid #bebebe;
		border-right: 0;
		position: absolute;
		top: 5px;
		right: 0;
	}
	#sec_process .stepContainer li.step2 .stepBox{
		height: calc(100% - 24px);
	}

#sec_process .stepContainer li.step3 .stepBox::after{
	background-image: url("../img/icon_process_03.svg");
}

#sec_process .stepContainer li.step4 .stepBox::after{
	background-image: url("../img/icon_process_04.svg");
}

#sec_process .stepContainer li.step5 .stepBox::after{
	background-image: url("../img/icon_process_05.svg");
}

#sec_process .stepContainer li.step6 .stepBox::after{
	background-image: url("../img/icon_process_06.svg");
}

#sec_process .stepContainer li.step7 .stepBox::after{
	background-image: url("../img/icon_process_07.svg");
}

@media screen and (max-width: 1179px){
	#contentsBlock #sec_process > .inner{
		padding-bottom: 100px;
	}
	#sec_process .stepContainer .stepLabel{
		font-size: 1.6rem;
	}
	#sec_process .stepContainer{
		margin-top: 20px;
	}
	#sec_process .stepContainer .stepBox h3{
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 1023px){
	#sec_process .stepContainer{
		grid-template-columns: 30px 1fr;
		grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
		gap: 8px;
		margin-top: 20px;
	}
	#sec_process .stepContainer .stepLabel{
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		text-align: center;
		padding: 10px 0;
		line-height: 30px;
		letter-spacing: 0.06em;
	}
	#sec_process .stepContainer .stepLabel.label1{
		grid-column: 1;
		grid-row: 1 / 4;
	}
	#sec_process .stepContainer .stepLabel.label2{
		grid-column: 1;
		grid-row: 4 / 6;
	}
	#sec_process .stepContainer .stepLabel.label3{
		grid-column: 1;
		grid-row: 6 / 8;
	}
	#sec_process .stepContainer .stepDetail.step1{
		grid-column: 2/8;
		grid-row: 1;
	}
	#sec_process .stepContainer .stepDetail.step2{
		grid-column: 2/8;
		grid-row: 2;
	}
	#sec_process .stepContainer .stepDetail.step3{
		grid-column: 2/8;
		grid-row: 3;
	}
	#sec_process .stepContainer .stepDetail.step4{
		grid-column: 2/8;
		grid-row: 4;
	}
	#sec_process .stepContainer .stepDetail.step5{
		grid-column: 2/8;
		grid-row: 5;
	}
	#sec_process .stepContainer .stepDetail.step6{
		grid-column: 2/8;
		grid-row: 6;
	}
	#sec_process .stepContainer .stepDetail.step7{
		grid-column: 2/8;
		grid-row: 7;
	}
	
	#sec_process .stepContainer li .stepBox{
		padding: 16px;
	}
	#sec_process .stepContainer li .stepBox::after{
		top: 16px;
		right: 16px;
		bottom: auto;
		left: auto;
		transform: translateX(0);
		width: 80px;
		height: 80px;
	}
	#sec_process .stepContainer li.step2{
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
	}
	#sec_process .stepContainer li.step2::before{
		width: 4px;
		height: calc(100% - 10px);
		background: #BEBEBE;
		margin: 0 10px;
	}
	#sec_process .stepContainer li.step2::after{
		border-top: 20px solid #bebebe;
		border-right: 7px solid transparent;
		border-bottom: 0;
		border-left: 7px solid transparent;
		position: absolute;
		top: auto;
		right: auto;
		left: 5px;
		bottom: 0;
	}
	#sec_process .stepContainer li.step2 .stepBox{
		width: 100%;
		height: 100%;
	}
	#sec_process .stepContainer .stepBox h3{
		font-size: 1.6rem;
		min-height: auto;
	}
	#sec_process .stepContainer .stepBox h3 br{
		display: none;
	}
	#sec_process .stepContainer .stepBox .txt{
		margin-top: 16px;
	}
}
@media screen and (max-width: 767px){
	#sec_process .stepContainer .stepBox h3{
		margin-top: 10px;
	}
	#sec_process .stepContainer .stepBox h3 span{
		margin-bottom: 8px;
	}
}
@media screen and (max-width: 360px){
	#sec_process .stepContainer li .stepBox::after{
		top: 6px;
		right: 6px;
		width: 54px;
		height: 54px;
	}
}

/* ------------------------------------------------------------------------ */

/*  column

/* ------------------------------------------------------------------------ */
#sec_column{
	background: url("/img/bg_column.webp") no-repeat center bottom / cover;
}
#sec_column .top-hd,
#sec_column .top-hd .en{
	color: #fff;
}

#sec_column ul{
	align-items: stretch;
	margin-top: 50px;
}
#sec_column ul li{
	background: #fff;
	width: calc(100% / 3 - 28px);
}
#sec_column ul li a{
	text-decoration: none;
	color: #000;
	text-align: left;
}
#sec_column ul li figure{
	overflow: hidden;
	aspect-ratio: 16 / 9;
}
#sec_column ul li figure img{
	transition: 0.4s;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#sec_column ul li a:hover figure img{
	transform: scale(1.1);
}
#sec_column ul li .dateBox{
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	max-width: 272px;
	margin-top: -16px;
	position: relative;
	z-index: 1;
}
#sec_column ul li .dateBox span{
	width: 50%;
	color: #fff;
	font-size: 1.4rem;
	font-family: "Titillium Web", sans-serif;
	font-weight: 600;
	letter-spacing: 0.1em;
	padding: 4px 16px 5px;
}
#sec_column ul li .dateBox .date{
	background: #A2000D;
}
#sec_column ul li .dateBox .label{
	background: #333;
}

#sec_column ul li .txtBox{
	padding: 16px 20px 37px;
}
#sec_column ul li .txtBox h3{
	font-size: 1.8rem;
	line-height: 1.5;
	margin-bottom: 16px;
}
#sec_column ul li .txtBox p{
	font-size: 1.4rem;
	font-weight: 500;
}
#sec_column .btnBasic{
	margin-top: 40px;
}
@media screen and (max-width: 1179px){
	#sec_column ul li{
		width: calc(100% / 3 - 12px);
	}
}
@media screen and (max-width: 768px){
	#sec_column ul{
		margin: 48px -16px 0;
	}
	#sec_column ul li{
		margin: 0 12px;
	}
	#sec_column ul li .txtBox h3{
		font-size: 1.6rem;
	}
}


/* ------------------------------------------------------------------------ */

/*  よくあるご質問

/* ------------------------------------------------------------------------ */
#sec_faq{
	background: url("/img/bg_faq.webp") no-repeat center top / cover;
}




/* ------------------------------------------------------------------------ */

/*  お知らせ

/* ------------------------------------------------------------------------ */
#contentsBlock #sec_news > .inner{
	align-items: flex-start;
}
#sec_news .ttlBox{
	width: 240px;
}
#sec_news .top-hd{
	text-align: left;
}

#sec_news .btnBasic{
	background: #333333;
	margin-top: 40px;
}
#sec_news .btnBasic:hover{
	background: #131313;
}

.infoContainer{
	max-width: 920px;
	width: calc(100% - 240px);
	margin-left: 48px;
}
.infoContainer dl{
	padding: 24px 0;
	border-top: solid 1px #BEBEBE;
}
.infoContainer dl:last-child{
	border-bottom: solid 1px #BEBEBE;
}
.infoContainer dl::after{
	content: "";
	display: block;
	clear: both;
}
.infoContainer dt{
	float: left;
	text-align: left;
}

.infoContainer dt .date{
	font-size: 1.4rem;
	font-family: "Titillium Web", sans-serif;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #333;
}
.infoContainer dt .label{
	margin-left: 16px;
	min-width: 112px;
	background: #F7F7F7;
	border: solid 1px #C1C1C1;
	border-radius: 3px;
	color: #333;
	font-size: 1.3rem;
	font-weight: 500;
	display: inline-block;
	text-align: center;
	padding: 4px;
}

.infoContainer dd{
	padding-left: 227px;
	text-align: left;
}
.infoContainer dd a{
	text-decoration: none;
	color: #000;
	font-size: 1.6rem;
	font-weight: 400;
}


@media screen and (max-width: 1023px){
	.infoContainer{
		margin-left: 28px;
	}
	.infoContainer dl{
		padding: 18px 0;
	}
}
@media screen and (max-width: 767px){
	#contentsBlock #sec_news > .inner{
		display: block;
		padding-bottom: 62px;
	}
	#sec_news .ttlBox{
		width: 100%;
	}
	#sec_news .top-hd{
		text-align: center;
	}
	.infoContainer{
		width: 100%;
		margin: 20px auto 0;
	}
	.infoContainer dl{
		padding: 16px 0;
	}
	.infoContainer dt{
		float: none;
	}
	.infoContainer dd{
		padding-top: 8px;
		padding-left: 0;
	}
	.infoContainer dd a{
		font-size: 1.6rem;
		font-weight: 500;
	}
}









