@charset "UTF-8";
/*
Theme Name: ヤスダコーポレーションLP用テーマ
Description: ヤスダコーポレーションLPオリジナルテーマ。
Version: 1
*/

:root {
	--color-bg: #000;
	--color-header-bg: linear-gradient(#000, #00000000);
	--color-h-lang-bg: #4D4D4D;
	--color-flow-bg: #C5C3C3;
	--color-font: #fff;
	--color-font-reverse: #000;
	--color-main: #EC6519;
	--color-grad-main__t: linear-gradient(to top, #EC6519, #EC651900);
	--color-grad-main__b: linear-gradient(#EC6519, #EC651900);
	--color-grad-main__l: linear-gradient(to left, #EC6519, #EC651900);
	--color-title-01: #9B9B9B;
	--color-title-01__flow: #000;
	--color-top-retailer__sec-desc: #AEAAA8;
	--fs-base: 16;
	--height-header: 115px;
	--font-ja: YuGothic, 'Yu Gothic', sans-serif;
	--font-en: Aleo, sans-serif;
	--side-margin: 50px;
	--con-w: 1360px;
	--con-w-large: 1660px;
}
@media (max-width: 1120px) {
	:root {
		--height-header: 60px;
	}
}
@media (max-width: 767px) {
	:root {
		--color-title-01__flow: #6E6E6E;
		--fs-base: 14;
		--side-margin: 20px;
	}
}

body {
	background-color: var(--color-bg);
	color: var(--color-font);
	font-size: calc( var(--fs-base) / var(--fs-base) * 1rem );
	padding-top: calc( var(--height-header) + 40px );
	font-family: var(--font-ja);
	font-weight: 400;
	position: relative;
	z-index: 1;
}
body::before {
	content: '';
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url('https://www.yasuda-corporation.com/promotion/wp-content/themes/yasuda-lp/assets/images/back-cover01.png');
	background-repeat: repeat;
	box-sizing: border-box;
	z-index: -1;
}
a:only-child img {
	transition-property: opacity;
	transition-timing-function: ease-in-out;
	transition-duration: .15s;
}
a:only-child:hover > img {
	opacity: .6;
}
img {
	max-width: 100%;
	height: auto;
}
p {
	line-height: 1.8;
}
:where(h2,h3,h4) {
	line-height: 1.4;
}
@media (max-width: 767px) {
	body::before {
		background-image: url('https://www.yasuda-corporation.com/promotion/wp-content/themes/yasuda-lp/assets/images/back-cover01_sp.png');
	}
}



@keyframes kf_scroll_def {
  from {
	  opacity: 0;
	  transform: translateY(40px);
  }
  to {
	  opacity: 1;
	  transform: translateY(0);
  }
}

[data-scroll-action]:not(.custom-action) {
	animation-duration: .5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

[data-scroll-action='true']:not(.custom-action) {
	animation-name: kf_scroll_def;
}
@media (min-width: 768px) {
	[data-scroll-action].sp-action {
		opacity: 1 !important;
		animation-name: unset !important;
	}
}
@media (max-width: 767px) {
	[data-scroll-action].pc-action {
		opacity: 1 !important;
		animation-name: unset !important;
	}
}



.title-01 {
	margin-top: 230px;
	font-size: calc( 20 / var(--fs-base) * 1rem );
	color: var(--color-title-01);
	display: flex;
	align-items: flex-end;
	border-bottom: solid 2px var(--color-main);
	margin-bottom: 80px;
	padding-bottom: 20px;
	position: relative;
}
.title-01::before {
	content: '';
	position: absolute;
	width: 47px;
	border-bottom: solid 2px var(--color-main);
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
.title-01__image {
	margin-right: 30px;
}
@media (min-width: 768px) {
	.pc-none {
		display: none !important;
	}
	.title-01::before {
		opacity: 0;
	}
}
@media (max-width: 767px) {
	.sp-none {
		display: none !important;
	}
	.title-01 {
		border-bottom: none;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		font-size: calc( 15 / var(--fs-base) * 1rem );
		margin-top: 130px;
	}
	.title-01__image {
		margin-right: 0;
		order: 2;
		margin-top: 10px;
	}
}


/*
 * ヘッダー
 */

.header {
	background: var(--color-header-bg);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10000;
	width: 100%;
}
.header__inner {
	display: flex;
}
.h-logo {
	padding-left: 50px;
	align-self: center;
	height: var(--height-header);
	display: flex;
}
.h-logo a {
	display: flex;
	align-items: center;
}
.h-nav {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	margin-right: 50px;
}
.h-nav > nav {
	display: flex;
}
.h-nav .menu {
	display: flex;
	list-style: none;
	gap: 40px;
	font-size: 18px;
}
.h-nav .menu a {
	color: var(--color-font);
	text-decoration: none !important;
	position: relative;
}
.h-nav .menu > li {
	display: flex;
}
.h-nav .menu > li > a {
	height: var(--height-header);
	display: flex;
	align-items: center;
}
.h-nav .menu > li > a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	border-bottom: solid 2px;
	transition: ease-in-out .2s width;
}
.h-nav .menu > li > a:hover::before {
	width: 100%;
}
.h-lang {
	background-color: var(--color-h-lang-bg);
	width: 115px;
	flex-shrink: 0;
}
.h-lang ul {
	display: flex;
	list-style: none;
	font-size: 20px;
	gap: 20px;
	justify-content: center;
	font-style: italic;
}
.h-lang ul li {
	display: flex;
}
.h-lang__sel {
	height: var(--height-header);
	align-items: center;
	color: var(--color-main);
}
.h-lang ul a {
	height: var(--height-header);
	display: flex;
	align-items: center;
	opacity: .5;
}
.h-lang ul a[href="#"] {
	pointer-events: none;
	text-decoration: none;
}
.h-lang ul a:hover {
	opacity: 1;
}
.h-nav-open {
	background-color: var(--color-main);
	width: var(--height-header);
	height: var(--height-header);
	position: relative;
}
.h-nav-open i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	border-bottom: solid 1.5px;
	width: 27px;
}
.h-nav-open i:nth-of-type(1) {
	margin-top: -3px;
}
.h-nav-open i:nth-of-type(2) {
	margin-top: 3px;
}
.h-nav-close {
	width: var(--height-header);
	height: var(--height-header);
	position: absolute;
	right: 0;
	top: 0;
}
.h-nav-close i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transform-origin: top left;
}
.h-nav-close i:nth-of-type(1) {
	border-top: solid 1.5px;
	width: 27px;
	rotate: 45deg;
}
.h-nav-close i:nth-of-type(2) {
	border-right: solid 1.5px;
	height: 27px;
	rotate: 45deg;
}
.h-nav__sp-inner {
	position: fixed;
	z-index: 10001;
	left: 0;
	top: 0;
	background-color: var(--color-main);
	width: 100%;
	padding-bottom: 60px;
	min-height: 100vh;
	opacity: 0;
	visibility: hidden;
	transition-property: opacity, visibility;
	transition-timing-function: ease-out;
	transition-duration: .2s;
}
.wp-menu__global__sp__container {
	padding-top: 80px;
}
.h-nav .wp-menu__global__sp__container .menu {
	flex-direction: column;
	gap: 20px;
}
.h-nav .wp-menu__global__sp__container .menu > li {
	justify-content: center;
}
.h-nav .wp-menu__global__sp__container .menu > li a {
	height: auto !important;
	padding-top: 10px;
	padding-bottom: 10px;
}
@media (min-width: 1601px) {
	[lang="en-US"] .h-nav .menu > li br {
		display: none;
	}
}
@media (min-width: 1121px) {
	.h-nav__sp {
		display: none !important;
	}
}
@media (max-width: 1400px) {
	.h-logo {
		padding-left: 30px;
	}
	.h-logo a {
		width: 130px;
	}
	.h-nav {
		margin-right: 30px;
	}
	.h-nav .menu {
		gap: 30px;
		font-size: 16px;
	}
	.h-lang ul {
		font-size: 18px;
	}
}
@media (max-width: 1120px) {
	body {
		padding-top: 0;
	}
	.h-nav {
		margin-right: 0;
	}
	.h-nav__pc {
		display: none !important;
	}
	.h-nav .menu > li > a::before {
		display: none !important;
	}
	.h-logo a {
		width: 80px;
	}
	.h-lang {
		display: none !important;
	}
	.h-nav-open.active + .h-nav__sp-inner {
		opacity: 1;
		visibility: visible;
	}
}


/*
 * フッター
 */

.footer {
	padding-top: 250px;
	padding-bottom: 20px;
}
.footer__copyright {
	font-size: calc( 12 / var(--fs-base) * 1rem );
	text-align: center;
}



/*
 * 左右装飾
 */

.side-deco::after,
.side-deco::before {
	content: '';
	position: fixed;
	top: 50%;
	margin-top: calc( var(--height-header) * .5 / 2 );
	transform: translateY(-50%);
	height: calc( 100% - var( --height-header ) );
	width: 25px;
	background-image: url('https://www.yasuda-corporation.com/promotion/wp-content/themes/yasuda-lp/assets/images/side-deco01.svg');
	background-repeat: repeat-y;
	background-size: contain;
	/*
	z-index: -1;
	*/
	z-index: 9000;
}
.side-deco::before {
	left: 0;
}
.side-deco::after {
	right: 0;
	scale: -1 1;
}
@media (max-width: 767px) {
	.side-deco::after,
	.side-deco::before {
		height: calc( 100% - var( --height-header ) * 2 );
		margin-top: 0;
		width: 11px;
		opacity: .5;
	}
}



/*
 * 追従お問い合わせ
 */

.fixed-contact {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 9999;
}
.fixed-contact a {
	display: grid;
	place-items: center;
	width: 116px;
	height: 116px;
	background-color: var(--color-font);
}
.fixed-contact a img {
	opacity: 1 !important;
}
@media (max-width: 767px) {
	.fixed-contact a {
		width: 101px;
		height: 101px;
	}
	.fixed-contact a img {
		scale: .9;
	}
}

/*
 * TOP：MV
 */

.mv__inner {
	position: relative;
	overflow: hidden;
	padding-inline: 50px;
}
/*
.mv__inner::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url('https://www.yasuda-corporation.com/promotion/wp-content/themes/yasuda-lp/assets/images/top/mv_cover01.png');
	background-repeat: repeat;
	z-index: 1;
	padding-inline: calc( 50 / 1920 * 100vw );
	box-sizing: border-box;
}
*/
.mv__left {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 50%;
}
.mv__right {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 50%;
}
.mv__right::before {
	content: '';
	position: absolute;
	left: -2.5px;
	top: 0;
	height: 100%;
	width: 5px;
	background-color: var(--color-main);
	z-index: 1;
}
.mv__movie {
	position: relative;
	z-index: -2;
	line-height: 0;
}
.mv__movie video {
	width: 100%;
	height: auto;
	pointer-events: none;
}
.mv__image-text {
	position: absolute;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
}
.mv__left .mv__image-text {
	left: 50px;
}
.mv__right .mv__image-text {
	right: 50px;
}
.mv__image-text img {
	width: auto;
	max-width: none;
	pointer-events: none;
}
.mv__left .mv__image-text img {
	height: calc( 869 / (1920 + 50) * 100vw );
}
.mv__right .mv__image-text img {
	height: calc( 689 / (1920 + 50) * 100vw );
}
.mv__image-deco {
	position: absolute;
	top: 0;
	z-index: 2;
	pointer-events: none;
}
.mv__left .mv__image-deco {
	left: 0;
}
.mv__right .mv__image-deco {
	right: 0;
}
.mv__image-deco img {
	width: auto;
	max-width: none;
	height: calc( 833 / 1920 * 100vw );
}
.mv__right .mv__image-deco img {
	scale: -1 1;
}
@media (max-width: 767px) {
	.mv {
		padding-bottom: 160px;
	}
	.mv__right::before {
		display: none;
	}
	.mv__inner {
		padding-left: 20px;
		padding-right: 20px;
	}
	.mv__right,
	.mv__left {
		height: 49.5%;
		width: 100%;
	}
	.mv__right {
		top: auto;
		bottom: 0;
	}
	.mv__image-text {
		bottom: 0;
		top: auto;
		left: 50% !important;
		transform: translateX(-50%);
	}
	.mv__right .mv__image-text {
		right: auto;
	}
	.mv__left .mv__image-text img {
		width: calc( 347 / (390 + 20) * 100vw );
		height: auto;
	}
	.mv__right .mv__image-text img {
		width: calc( 241 / (390 + 20) * 100vw );
		height: auto;
	}
}



/*
 * TOP：top-first
 */

.top-first {
	overflow-x: hidden;
}
.top-first__inner {
}
.top-first__header {
	position: relative;
	min-height: 760px;
	z-index: 1;
}
[lang="en-US"] .top-first__header {
	min-height: 900px;
	padding-right: var(--side-margin);
	padding-left: var(--side-margin);
}
.top-first__h__box {
	animation-duration: .5s;
	animation-fill-mode: forwards;
	opacity: 0;
}
[data-scroll-action='true'] .top-first__h__box {
	animation-name: kf_scroll_def;
}
.top-first__h__title {
	font-size: calc( 90 / var(--fs-base) * 1rem );
	color: var(--color-main);
	letter-spacing: .14em;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-bottom: 140px;
	margin-top: 300px;
}
[lang="en-US"] .top-first__h__title {
	flex-direction: column;
}
.top-first__h__title i {
	margin-right: 10px;
}
.top-first__h__desc {
	text-align: center;
}
.top-first__h__desc p {
	font-size: calc( 34 / var(--fs-base) * 1rem );
	letter-spacing: .14em;
}
.top-first__h__bg {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	animation-delay: .5s;
	animation-duration: .5s;
	animation-fill-mode: forwards;
	opacity: 0;
}
[data-scroll-action='true'] .top-first__h__bg {
	animation-name: kf_scroll_def;
}
.top-first__h__bg img {
	position: relative;
	top: -200px;
}
[lang="en-US"] .top-first__h__bg img {
	top: -50px;
}
.top-first__share {
	background-image: var(--color-grad-main__l);
	min-height: 422px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 336px;
}
.top-first__share-box {
	max-width: calc( var(--con-w) + var(--side-margin) * 2 );
	margin-inline: auto;
	position: relative;
	width: 100%;
	padding-right: var(--side-margin);
	padding-left: var(--side-margin);
}
.top-first__share-title {
	text-align: center;
	font-size: calc( 22 / var(--fs-base) * 1rem );
	line-height: 1.8;
	padding-top: 50px;
}
[lang="en-US"] .top-first__share-title > img {
	margin-bottom: 20px;
}
.top-first__share-title strong {
	font-family: var(--font-en);
	font-size: calc( 254 / var(--fs-base) * 1rem );
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1;
	font-style: italic;
}
.top-first__share-title strong span {
	font-size-adjust: 0.25;
}
.top-first__share-desc {
	position: absolute;
	left: var(--side-margin);
	top: 50%;
	transform: translateY(-50%);
}
.top-first__share-desc p {
	font-size: 24px;
	line-height: 2.4;
}
.top-first__share-desc p img {
	vertical-align: baseline;
}
.top-first__share-bg {
	position: absolute;
	right: 0;
	top: 0;
	animation-delay: .5s;
}
.top-first__share-bg img {
	position: relative;
	top: -84px;

}
.top-first__map {
	min-height: 1100px;
	padding-top: 210px;
	position: relative;
	padding-right: var(--side-margin);
	padding-left: var(--side-margin);
}
.top-first__map-title {
	position: absolute;
	left: 50%;
	top: 50px;
	transform: translateX(-50%);
	max-width: 1030px;
	width: 100%;
}
.top-first__map-bg {
	text-align: center;
}
@media (max-width: 1500px) {
	.top-first__share-title strong {
		font-size: calc(180 / var(--fs-base) * 1rem);
	}
	.top-first__share {
		flex-direction: column;
		padding-top: 40px;
		margin-bottom: 0;
	}
	.top-first__share-box {
		display: flex;
	}
	[lang="en-US"] .top-first__share-box {
		gap: 20px;
	}
	.top-first__share-desc {
		position: static;
		transform: unset;
		order: -1;
		display: flex;
		flex-direction: column;
		align-items: center;
        justify-content: center;
	}
	.top-first__share-desc p {
		font-size: 20px;
	}
	.top-first__share-title {
		padding-top: 20px;
	}
	.top-first__share-bg {
		top: auto;
		bottom: 0;
	}
	.top-first__share-bg img {
		top: 400px;
	}
	.top-first__map {
		padding-top: 800px;
	}

}
@media (max-width: 1020px) {
	.top-first__map-title img {
		width: calc( 472 / 1020 * 100vw )
	}
	.top-first__h__title {
		font-size: calc( 70 / var(--fs-base) * 1rem );
	}
	.top-first__h__title i {
		width: 80px;
		height: auto;
		margin-right: 0;
	}
}
@media (max-width: 767px) {
	.top-first__header {
		min-height: 0 !important;
		padding-bottom: 70vw;
	}
	.top-first__h__box {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.top-first__h__title {
		margin-top: 0;
		flex-direction: column;
		font-size: calc( 50 / var(--fs-base) * 1rem );
		margin-bottom: 0;
		gap: 30px;
	}
	.top-first__h__title i {
		width: 75px;
		height: auto;
		margin-right: 0;
	}
	.top-first__h__desc {
		order: -1;
		margin-bottom: 60px;
	}
	[lang="en-US"] .top-first__h__desc {
		margin-bottom: 75px;
	}
	.top-first__h__desc p {
		font-size: calc( 22 / var(--fs-base) * 1rem );
	}
	.top-first__h__bg img {
		width: 135%;
		max-width: none !important;
		top: auto !important;
		bottom: -200px;
	}
	.top-first__share {
		background-image: var(--color-grad-main__t);
		padding-bottom: 54vmin;
		padding-top: 0;
	}
	.top-first__share-box {
		flex-direction: column;
		gap: 0 !important;
	}
	.top-first__share-title {
		font-size: 7vmin;
		padding-top: 50px;
	}
	[lang="en-US"] .top-first__share-title > img {
		width: 80%;
	}
	.top-first__share-title strong {
		font-size: 40vmin;
	}
	.top-first__share-desc p {
		font-size: 5.5vmin !important;
	}
	.top-first__map {
		padding-top: 160px;
		min-height: auto;
	}
	.top-first__map-title {
		top: 0;
		text-align: center;
	}
	.top-first__map-bg {
		padding-top: 30vw;
	}
	.top-first__share-bg img {
		top: auto;
		bottom: 0;
	}
}



.top-intro {
	background-image: url('https://www.yasuda-corporation.com/promotion/wp-content/themes/yasuda-lp/assets/images/top/top-intro_bg01.png');
	background-repeat: repeat-y;
	background-position: center top;
}

.top-intro__inner {
	max-width: calc( var(--con-w-large) + var(--side-margin) * 2 );
	margin-inline: auto;
	position: relative;
	width: 100%;
	padding-right: var(--side-margin);
	padding-left: var(--side-margin);
	padding-bottom: 450px;
}
.top-intro__sec {
	padding-top: 710px;
	padding-right: 150px;
	display: grid;
	gap: 60px 90px;
	align-items: flex-start;
	grid-template-columns: 1fr 382px;
	grid-template-rows: auto 1fr;
	grid-template-areas: "media title"
		"media desc";
}
[lang="en-US"] .top-intro__sec {
	grid-template-columns: 1fr 448px;
}
.top-intro__sec + .top-intro__sec {
	padding-top: 490px;
}
[lang="en-US"] .top-intro__sec + .top-intro__sec {
	padding-top: 540px;
}
.top-intro__inner .top-intro__sec:nth-of-type(even) {
	padding-right: 0;
	padding-left: 150px;
	grid-template-columns: 382px 1fr;
	grid-template-areas: "title media"
		"desc media";
}
[lang="en-US"] .top-intro__inner .top-intro__sec:nth-of-type(even) {
	grid-template-columns: 448px 1fr;
}
.top-intro__title {
	font-size: calc( 50 / var(--fs-base) * 1rem );
	line-height: 1.4;
	grid-area: title;
	position: relative;
	grid-area: title;
	white-space: nowrap;
}
.top-intro__title::before {
	position: absolute;
	content: '';
	opacity: .2;
	right: 80px;
	bottom: 100%;
	margin-bottom: 80px;
}
.top-intro__inner .top-intro__sec:nth-of-type(even) .top-intro__title::before {
	right: auto;
	left: 0;
	background-size: contain;
	background-repeat: no-repeat;
}
.top-intro__inner .top-intro__sec:nth-of-type(1) .top-intro__title::before {
	width: 210px;
	height: 154px;
	background-image: url('https://www.yasuda-corporation.com/promotion/wp-content/themes/yasuda-lp/assets/images/top/top-intro_num01.svg');
}
.top-intro__inner .top-intro__sec:nth-of-type(2) .top-intro__title::before {
	width: 240px;
	height: 154px;
	background-image: url('https://www.yasuda-corporation.com/promotion/wp-content/themes/yasuda-lp/assets/images/top/top-intro_num02.svg');
}
.top-intro__inner .top-intro__sec:nth-of-type(3) .top-intro__title::before {
	width: 236px;
	height: 154px;
	background-image: url('https://www.yasuda-corporation.com/promotion/wp-content/themes/yasuda-lp/assets/images/top/top-intro_num03.svg');
}
.top-intro__title strong {
	font-weight: inherit;
	color: var(--color-main);
}
.top-intro__desc {
	grid-area: desc;
}
.top-intro__desc p {
	line-height: 2.4;
}
.top-intro__media {
	grid-area: media;
}
.top-intro__media iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
}
.top-intro__media video {
	width: 100%;
	height: auto;
}
@media (max-width: 1300px) {
	.top-intro {
		background: none;
	}
	.top-intro__inner {
		padding-bottom: 0;
		padding-right: 0;
		padding-left: 0;
	}
	.top-intro__sec {
		padding-top: 340px;
		gap: 40px;
		grid-template-columns: 1fr !important;
		grid-template-rows: auto 1fr auto !important;
		grid-template-areas: "title"
			"desc"
			"media" !important;
		padding-right: 0;
	}
	.top-intro__sec + .top-intro__sec {
		padding-top: 360px !important;
	}
	.top-intro__inner .top-intro__sec:nth-of-type(even) {
		padding-left: 0;
	}
	.top-intro__title {
		font-size: calc(36 / var(--fs-base) * 1rem);
		padding-right: var(--side-margin);
    	padding-left: var(--side-margin);
	}
	.top-intro__title::before {
		right: var(--side-margin) !important;
		left: auto !important;
		margin-bottom: 25px;
		scale: .7;
		transform-origin: right bottom;
	}
	.top-intro__desc {
		padding-right: var(--side-margin);
    	padding-left: var(--side-margin);
	}
}


/*
 * TOP：top-pl
 */

.top-pl {
	margin-top: 350px;
}
.top-pl ul {
	display: flex;
	max-width: calc( var(--con-w) + var(--side-margin) * 2 );
	margin-inline: auto;
	width: 100%;
	padding-right: var(--side-margin);
	padding-left: var(--side-margin);
	font-size: 17px;
	justify-content: space-between;
	align-items: center;
}
.top-pl ul li {
	position: relative;
	padding-left: 108px;
}
.top-pl ul li::before {
	content: '';
	position: absolute;
	left: 82px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 17px;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url('https://www.yasuda-corporation.com/promotion/wp-content/themes/yasuda-lp/assets/images/top/top-nav_list-arrow01.svg');
}
.top-pl ul li::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 82px;
	height: 82px;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url('https://www.yasuda-corporation.com/promotion/wp-content/themes/yasuda-lp/assets/images/top/top-nav_list-sec01.svg');
}
@media (max-width: 1120px) {
	.top-pl {
		margin-top: 200px;
	}
	.top-pl ul {
		flex-wrap: wrap;
		gap: 20px 15px;
		justify-content: center;
		align-items: stretch;
	}
	.top-pl ul li {
		flex-basis: calc(50% - 7.5px);
		flex-shrink: 0;
		padding-left: 0;
		display: flex;
	}
	.top-pl ul li::before {
		display: none !important;
	}
	.top-pl ul li::after {
		display: none !important;
	}
	.top-pl ul li a {
		border: solid 1px var(--color-main);
		display: flex;
		padding: 6px 10px;
		position: relative;
		justify-content: center;
		min-height: 12vmin;
		width: 100%;
        align-items: center;
	}
	.top-pl ul li a::before {
		content: '';
		position: absolute;
		left: 10px;
		top: 50%;
		margin-top: 2px;
		transform: translateY(-50%);
		width: 10px;
		height: 14px;
		background-repeat: no-repeat;
		background-size: contain;
		background-image: url('https://www.yasuda-corporation.com/promotion/wp-content/themes/yasuda-lp/assets/images/top/top-nav_list-arrow01.svg');
	}
}
@media (max-width: 767px) {
	.top-pl ul li {
		font-size: 3.25vw;
	}
}



/*
 * TOP：top-features
 */
.top-features__footer,
.top-features__header,
.top-features__main {
	max-width: calc( var(--con-w) + var(--side-margin) * 2 );
	margin-inline: auto;
	position: relative;
	width: 100%;
	padding-right: var(--side-margin);
	padding-left: var(--side-margin);
}
.top-features__sec-inner {
	display: grid;
	gap: 40px 43px;
	align-items: flex-start;
	grid-template-columns: calc(40% - 43px / 2) calc(60% - 43px / 2);
	grid-template-rows: auto 1fr auto;
	grid-template-areas: "image title"
		"image desc"
		"data data";
}
.top-features__sec + .top-features__sec {
	padding-top: 120px;
	margin-top: 180px;
	border-top: solid 1px;
}
.top-features__sec-title {
	grid-area: title;
	font-size: calc( 50 / var(--fs-base) * 1rem );
	color: var(--color-main);
	margin-bottom: 10px;
}
.top-features__sec-image {
	grid-area: image;
}
.top-features__sec-desc {
	grid-area: desc;
}
.top-features__data {
	grid-area: data;
}
.top-features__data-list.type-image {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 66.5px;
}
.top-features__data-list.type-sec {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 66.5px;
}
.top-features__data-list.type-sec li {
	display: grid;
	gap: 30px 25px;
	align-items: flex-start;
	grid-template-columns: calc(45% - 25px / 2) calc(55% - 25px / 2);
	grid-template-rows: auto 1fr;
	grid-template-areas: "image title"
		"image desc";
}
.top-features__data-list.type-sec .top-features__data-title {
	grid-area: title;
	font-size: calc( 30 / var(--fs-base) * 1rem );
}
.top-features__data-list.type-sec .top-features__data-image {
	grid-area: image;
}
.top-features__data-list.type-sec .top-features__data-image img {
	max-width: none;
	width: 100%;
}
.top-features__data-list.type-sec .top-features__data-desc {
	grid-area: desc;
}
.top-features__data-check {
	margin-top: 20px;
}
.top-features__footer {
	margin-top: 180px;
	padding-top: 115px;
	position: relative;
}
.top-features__footer::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	border-top: solid 1px;
	width: calc(100% - var(--side-margin) * 2);
}
.top-features__innovative-title {
	font-size: calc( 31 / var(--fs-base) * 1rem );
	margin-bottom: 65px;
}
.top-features__innovative-sec {
	display: grid;
	gap: 25px 50px;
	align-items: flex-start;
	grid-template-columns: 40% 60%;
	grid-template-rows: auto 1fr;
	grid-template-areas: "image title"
		"image desc";
}
.top-features__innovative-slider + .top-features__innovative-slider {
	margin-top: 220px;
}
.top-features__innovative .swiper-scrollbar {
	display: none !important;
}
.top-features__innovative .swiper-button-prev,
.top-features__innovative .swiper-button-next {
	margin-top: -95px;
}
.top-features__innovative .swiper-pagination {
	position: static;
	max-width: 363px;
	margin-left: auto;
	margin-right: 0;
	display: flex;
	margin-top: 95px;
}
.top-features__innovative .swiper-pagination .swiper-pagination-bullet {
	width: unset !important;
	height: 2px;
	flex: 1;
	border-radius: 0;
	background: var(--color-font);
	opacity: 1;
	margin: 0;
}
.top-features__innovative .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--color-main);
}
.top-features__innovative .swiper-button-next,
.top-features__innovative .swiper-button-prev {
	width: 34px;
	height: 98px;
}
.top-features__innovative .swiper-button-prev::after {
	scale: -1 1;
}
.top-features__innovative .swiper-button-next::after,
.top-features__innovative .swiper-button-prev::after {
	content: '';
	border: none !important;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url('https://www.yasuda-corporation.com/promotion/wp-content/themes/yasuda-lp/assets/images/top/top-features_innovative-arrow01.svg');
	width: 100%;
	height: 100%;
}
.top-features__innovative-sec {
	padding: 0 160px;
}
.top-features__innovative-sec-title {
	grid-area: title;
	font-size: calc( 50 / var(--fs-base) * 1rem );
	color: var(--color-main);
}
.top-features__innovative-sec-image {
	grid-area: image;
}
.top-features__innovative-sec-image img {
	max-width: 100%;
	width: 100%;
}
.top-features__innovative-sec-desc {
	grid-area: desc;
}
@media (min-width: 1361px) {
	[lang="en-US"] .top-features__sec-title .sp-none br {
		display: none;
	}
	[lang="en-US"] .top-features__sec-title .sp-none img:not(:first-of-type) {
		margin-left: 15px;
	}
}
@media (max-width: 1400px) {
	.top-features__sec-title {
		font-size: calc( 40 / var(--fs-base) * 1rem );
	}
	.top-features__innovative-sec-title {
		font-size: calc( 40 / var(--fs-base) * 1rem );
	}
	.top-features__data-list.type-image {
		gap: 20px;
	}
	.top-features__data-list.type-sec {
		gap: 90px 20px;
	}
}
@media (max-width: 1080px) {
	.top-features__footer {
		padding-left: 0;
		padding-right: 0;
	}
	.top-features__data-list.type-sec .top-features__data-title {
		font-size: calc( 20 / var(--fs-base) * 1rem );
		width: max-content;
		border-bottom: solid 1px;
		justify-self: center;
	}
	.top-features__data-list.type-sec li {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto 1fr;
		grid-template-areas:
			"title"
			"image"
			"desc";
	}
	.top-features__data-list.type-sec .top-features__data-image {
		max-width: none;
		width: 100%;
	}
	.top-features__data-check {
		line-height: 2.4;
	}
	.top-features__data-list.type-sec .top-features__data-desc p {
		line-height: 2.4;
	}
	.top-features__innovative-sec {
		padding-right: 0;
		padding-left: 0;
		/*
		gap: 25px 50px;
		*/
		padding-right: var(--side-margin);
		padding-left: var(--side-margin);
		grid-template-columns: 1fr;
		grid-template-rows: auto 1fr;
		grid-template-areas:
			"title"
			"image"
			"desc";
	}
	.top-features__innovative-title {
		font-size: calc( 25 / var(--fs-base) * 1rem );
		/*
		justify-self: center;
		*/
		text-align: center;
	}
	.top-features__innovative-sec-title {
		font-size: calc( 30 / var(--fs-base) * 1rem );
		justify-self: center;
	}
	[lang="en-US"] .top-features__innovative-sec-title {
		font-size: 6vmin;
	}
	.top-features__innovative .swiper-button-next,
	.top-features__innovative .swiper-button-prev {
		width: 16px;
		height: 46px;
		margin-top: 0;
		top: auto;
		bottom: 0;
	}
	.top-features__innovative .swiper-button-next {
		right: var(--side-margin);
	}
	.top-features__innovative .swiper-button-prev {
		left: auto;
		right: calc(64px + var(--side-margin));
	}
	.top-features__innovative .swiper-pagination {
		margin-left: var(--side-margin);
		margin-right: auto;
		max-width: calc(100% - 16px * 2 - 64px - 16px - var(--side-margin) * 2);
		margin-bottom: 16px;
	}
}
@media (max-width: 767px) {
	.top-features__sec-inner {
		align-items: flex-start;
		grid-template-columns: 1fr;
		grid-template-rows: auto 1fr auto auto;
		grid-template-areas:
			"title"
			"image"
			"desc"
			"data";
	}
	.top-features__sec-title {
		font-size: calc( 31 / var(--fs-base) * 1rem );
		text-align: center;
	}
	.top-features__sec-image img {
		max-width: none;
		width: 100%;
	}
	.top-features__sec-desc p {
		line-height: 2.4;
	}
	.top-features__data {
		margin-top: 60px;
	}
	[lang="en-US"] .top-features__data-list.type-sec .top-features__data-title {
		font-size: 5.5vmin;
	}
	.top-features__data-list.type-sec .top-features__data-image {
		width: 80%;
		margin: 0 auto;
	}
	.top-features__data-list.type-image {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}
	.top-features__data-list.type-sec {
		grid-template-columns: 1fr;
	}
}



/*
 * TOP：top-high-precision
 */

.top-high-precision__inner {
	max-width: calc( var(--con-w) + var(--side-margin) * 2 );
	margin-inline: auto;
	position: relative;
	width: 100%;
	padding-right: var(--side-margin);
	padding-left: var(--side-margin);
}
.top-high-precision__sec-inner {
	display: grid;
	gap: 45px 80px;
	align-items: flex-start;
	grid-template-columns: calc(40% - 80px / 2) calc(60% - 80px / 2);
	grid-template-rows: auto 1fr;
	grid-template-areas: "image title"
		"image desc";
}
.top-high-precision__sec-title {
	grid-area: title;
	font-size: calc( 50 / var(--fs-base) * 1rem );
}
.top-high-precision__sec-title strong {
	font-weight: inherit;
	color: var(--color-main);
}
.top-high-precision__sec-image {
	grid-area: image;
}
.top-high-precision__sec-desc {
	grid-area: desc;
}
.top-high-precision__sec-desc p {
	line-height: 2.4;
}
@media (max-width: 1400px) {
	.top-high-precision__sec-title {
		font-size: calc( 40 / var(--fs-base) * 1rem );
	}
}
@media (max-width: 767px) {
	.top-high-precision__sec-inner {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto 1fr;
		grid-template-areas:
			"title"
			"image"
			"desc";
	}
	.top-high-precision__sec-title {
		font-size: calc(32 / var(--fs-base) * 1rem);
		text-align: center;
	}
	[lang="en-US"] .top-high-precision__sec-title {
		font-size: 6.5vmin;
		text-align: left;
	}
	.top-high-precision__sec-image img {
		max-width: none;
		width: 100%;
	}
}



/*
 * TOP：top-option
 */

.top-option {
	margin-top: 260px;
}
.top-option__inner {
	max-width: calc( var(--con-w) + var(--side-margin) * 2 );
	margin-inline: auto;
	position: relative;
	width: 100%;
	padding-right: var(--side-margin);
	padding-left: var(--side-margin);
}
.top-option__catch-title {
	font-size: calc( 40 / var(--fs-base) * 1rem );
}
.top-option__catch-desc {
	margin-top: 40px;
}
.top-option__main {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 100px 0;
	margin-top: 110px;
}
.top-option__sec {
	animation-duration: .5s;
	animation-fill-mode: forwards;
	opacity: 0;
}
[data-scroll-action='true'] .top-option__sec {
	animation-name: kf_scroll_def;
}
.top-option__sec-inner {
	flex-basis: 50%;
	flex-shrink: 0;
	padding-right: 40px;
	display: grid;
	gap: 20px 16px;
	align-items: flex-start;
	grid-template-columns: 307px 1fr;
	grid-template-rows: auto 1fr;
	grid-template-areas: "image title"
		"image desc";
}
.top-option__sec-title {
	grid-area: title;
	font-size: calc( 32 / var(--fs-base) * 1rem );
	color: var(--color-main);
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}
.top-option__sec-title small {
	font-size: calc( 24 / var(--fs-base) * 1rem );
}
.top-option__sec-image {
	grid-area: image;
}
.top-option__sec-desc {
	grid-area: desc;
}
@media (max-width: 1400px) {
	.top-option__sec-title {
		font-size: calc( 26 / var(--fs-base) * 1rem );
	}
	.top-option__sec-title small {
		font-size: calc( 22 / var(--fs-base) * 1rem );
	}
	.top-option__main {
		gap: 110px 40px;
	}
	.top-option__main {
		grid-template-columns: repeat(1, 1fr);
	}
}
@media (max-width: 767px) {
	.top-option__catch-title {
		font-size: calc(29 / var(--fs-base) * 1rem);
		text-align: center;
	}
	[lang="en-US"] .top-option__catch-title {
		font-size: 6.5vmin;
        text-align: left;
	}
	.top-option__sec-title {
		align-items: center;
		text-align: center;
	}
	[lang="en-US"] .top-option__sec-title {
		font-size: 6.5vmin;
	}
	.top-option__sec-inner {
		padding-right: 0;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto 1fr;
		grid-template-areas:
			"title"
			"image"
			"desc";
	}
}





/*
 * TOP：top-maintenance
 */

.top-maintenance {
	margin-top: 260px;
}
.top-maintenance__inner {
	max-width: calc( var(--con-w) + var(--side-margin) * 2 );
	margin-inline: auto;
	position: relative;
	width: 100%;
}
.top-maintenance__header {
	padding-right: var(--side-margin);
	padding-left: var(--side-margin);
}
.top-maintenance__main {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.top-maintenance__sec {
	flex-basis: 50%;
	flex-shrink: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 60px;
	padding-right: 60px;
	padding-left: 60px;
}
.top-maintenance__sec > * {
	width: 100%;
}
.top-maintenance__sec-title {
	font-size: calc( 50 / var(--fs-base) * 1rem );
	color: var(--color-main);
	text-align: center;
}
.top-maintenance__sec-desc {
	padding-right: var(--side-margin);
	padding-left: var(--side-margin);
}
.top-maintenance__sec-image {
	text-align: center;
	margin-bottom: 20px;
	order: -1;
	height: 140px;
	display: grid;
	place-items: center;
}
@media (min-width: 1081px) {
	[lang="en-US"] .top-maintenance__sec-title {
		min-height: 2.9em;
	}
}
@media (max-width: 1400px) {
	.top-maintenance__sec {
		padding-right: 30px;
    	padding-left: 30px;
	}
	.top-maintenance__sec-title {
		font-size: calc( 40 / var(--fs-base) * 1rem );
	}
}
@media (max-width: 1080px) {
	.top-maintenance__main {
		gap: 130px;
	}
	.top-maintenance__sec {
		flex-basis: 100%;
		padding-right: 0;
		padding-left: 0;
	}
}
@media (max-width: 767px) {
	.top-maintenance__inner {
		padding-right: var(--side-margin);
		padding-left: var(--side-margin);
	}
	.top-maintenance__sec-title {
		font-size: calc( 29 / var(--fs-base) * 1rem );
	}
	.top-maintenance__sec-desc {
		padding-right: 0;
		padding-left: 0;
	}
}


/*
 * TOP：top-retailer
 */

.top-retailer {
	margin-bottom: 230px;
}
.top-retailer__inner {
	max-width: calc( var(--con-w) + var(--side-margin) * 2 );
	margin-inline: auto;
	position: relative;
	width: 100%;
	padding-right: var(--side-margin);
	padding-left: var(--side-margin);
}
.top-retailer__sec + .top-retailer__sec {
	margin-top: 190px;
}
.top-retailer__sec-head {
	display: flex;
	gap: 30px;
}
.top-retailer__sec-title {
	flex-shrink: 0;
	font-size: calc( 40 / var(--fs-base) * 1rem );
}
.top-retailer__sec-desc {
	color: var(--color-top-retailer__sec-desc);
	margin-top: calc( 20 / var(--fs-base) * 1rem );
}
.top-retailer__data {
	margin-left: 10px;
	padding-left: 116px;
	border-left: solid 1px;
	margin-top: 70px;
}
.top-retailer__data.type-japan {
	display: grid;
	grid-template-columns: repeat(auto-fill, 450px);
	gap: 50px 110px;
}
.top-retailer__data.type-japan .top-retailer__data-title {
	font-size: calc( 32 / var(--fs-base) * 1rem );
	padding: 20px 10px;
	border: solid 1px;
	text-align: center;
	letter-spacing: .2em;
}
[lang="en-US"] .top-retailer__data.type-japan .top-retailer__data-title {
	letter-spacing: 0;
}
.top-retailer__data.type-japan .top-retailer__data-item-title {
	color: var(--color-main);
	margin-top: 40px;
	font-size: calc( 30 / var(--fs-base) * 1rem );
}
[lang="en-US"] .top-retailer__data.type-japan .top-retailer__data-item-title {
	text-align: center;
}
.top-retailer__data.type-japan .top-retailer__data-item-desc {
	margin-top: 30px;
}
[lang="en-US"] .top-retailer__data.type-japan .top-retailer__data-item-desc {
	text-align: center;
}
.top-retailer__data.type-foreign .top-retailer__data-box {
	display: grid;
	grid-template-columns: 214px 1fr;
}
[lang="en-US"]  .top-retailer__data.type-foreign .top-retailer__data-box {
	grid-template-columns: 336px 1fr;
}
.top-retailer__data.type-foreign .top-retailer__data-box + .top-retailer__data-box {
	margin-top: 85px;
}
.top-retailer__data.type-foreign .top-retailer__data-item {
	display: grid;
	grid-template-columns: 479px 1fr;
}
.top-retailer__data.type-foreign .top-retailer__data-item {
	display: grid;
	grid-template-columns: 479px 1fr;
}
.top-retailer__data.type-foreign .top-retailer__data-title {
	font-size: calc( 30 / var(--fs-base) * 1rem );
}
.top-retailer__data.type-foreign .top-retailer__data-item-title {
	font-size: calc( 30 / var(--fs-base) * 1rem );
	color: var(--color-main);
}
.top-retailer__data.type-foreign .top-retailer__data-item + .top-retailer__data-item {
	margin-top: 30px;
}
@media (min-width: 1401px) {
	[lang="en-US"] .top-retailer__sec-title br {
		display: none;
	}
}
@media (max-width: 1400px) {
	.top-retailer__sec-title {
		font-size: calc( 40 / var(--fs-base) * 1rem );
	}
	.top-retailer__data.type-japan {
		grid-template-columns: 1fr;
	}
	[lang="en-US"]  .top-retailer__data.type-foreign .top-retailer__data-box {
		grid-template-columns: 260px 1fr;
	}
	.top-retailer__data.type-japan .top-retailer__data-title {
		max-width: 80%;
		margin-inline: auto;
		padding: 10px 10px;
	}
	.top-retailer__data.type-japan .top-retailer__data-item-desc {
		text-align: center;
	}
	.top-retailer__data.type-japan .top-retailer__data-item-title {
		text-align: center;
	}
	.top-retailer__data.type-foreign .top-retailer__data-item {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
@media (max-width: 767px) {
	.top-retailer__sec-head {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	.top-retailer__sec-title {
		font-size: calc(29 / var(--fs-base) * 1rem);
	}
	[lang="en-US"] .top-retailer__sec-title {
		text-align: center;
	}
	.top-retailer__sec-desc {
		margin-top: 0;
	}
	.top-retailer__data {
		border-left: none;
		padding-left: 0;
		margin-left: 0;
	}
	.top-retailer__data.type-japan .top-retailer__data-title {
		font-size: calc(17 / var(--fs-base) * 1rem);
	}
	.top-retailer__data.type-japan .top-retailer__data-item-title {
		font-size: calc(19 / var(--fs-base) * 1rem);
	}
	.top-retailer__data.type-japan .top-retailer__data-item-desc p {
		font-size: 3.75vmin;
	}
	.top-retailer__data.type-foreign .top-retailer__data-title {
		text-align: center;
	}
	.top-retailer__data.type-foreign .top-retailer__data-box {
		grid-template-columns: 1fr !important;
		gap: 20px;
	}
	.top-retailer__data.type-foreign .top-retailer__data-item-title {
		font-size: calc(19 / var(--fs-base) * 1rem);
		text-align: center;
	}
	.top-retailer__data.type-foreign .top-retailer__data-item-desc {
		display: flex;
		justify-content: center;
	}
}



/*
 * TOP：top-flow
 */

.top-flow {
	background-color: var(--color-flow-bg);
	padding-top: 450px;
	padding-bottom: 450px;
	clip-path: polygon(0 0, 100% calc( 450 / 1920 * 100vw ), 100% calc( 100% - 450 / 1920 * 100vw ), 0 100%);
	min-height: 2000px;
	position: relative;
	color: var(--color-font-reverse);
}
.top-flow::before {
	content: '';
	position: absolute;
	right: 100px;
	top: 50%;
	transform: translateY(-50%);
	height: 962px;
	width:250px;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url('https://www.yasuda-corporation.com/promotion/wp-content/themes/yasuda-lp/assets/images/top/top-flow_deco01.svg');
	opacity: .05;
}
.top-flow__inner {
	max-width: calc( var(--con-w) + var(--side-margin) * 2 );
	margin-inline: auto;
	position: relative;
	width: 100%;
	padding-right: var(--side-margin);
	padding-left: var(--side-margin);
}
.top-flow .title-01 {
	color: var(--color-title-01__flow) !important;
	margin-top: 0 !important;
}
.top-flow__list {
	display: grid;
	grid-template-columns: repeat(auto-fill, 340px);
	gap: 140px 0;
}
.top-flow__list > li {
	position: relative;
	animation-duration: .5s;
	animation-fill-mode: forwards;
	opacity: 0;
}
.top-flow__list[data-scroll-action='true'] > li {
	animation-name: kf_scroll_def;
}
.top-flow__list > li:not(:last-of-type)::before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
	height: 98px;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url('https://www.yasuda-corporation.com/promotion/wp-content/themes/yasuda-lp/assets/images/top/top-flow_list-arrow01.svg');
}
.top-flow__list dl {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
.top-flow__list-title {
	height: 90px;
	font-size: calc( 28 / var(--fs-base) * 1rem );
	margin-top: 40px;
	text-align: center;
}
.top-flow__list-image {
	order: -1;
	height: 100px;
	display: grid;
	place-items: center;
}
.top-flow__list-desc p {
	font-size: calc( 13 / var(--fs-base) * 1rem );
	text-align: center;
}
@media (min-width: 768px) {
.top-flow .title-01 {
	padding-bottom: 0 !important;
	border-bottom: none !important;
}
}
@media (max-width: 1200px) {
	.top-flow::before {
		display: none;
	}
	.top-flow .custom-none {
		display: none !important;
	}
	.top-flow__main {
		max-width: 600px;
		margin-inline: auto;
	}
	.top-flow__inner {
		padding-top: 0;
		padding-bottom: 0;
	}
	.top-flow__list {
		grid-template-columns: 1fr;
		gap: 88px 0;
	}
	.top-flow__list > li {
		padding-bottom: 44px;
	}
	.top-flow__list > li:not(:last-of-type)::before {
		top: 100%;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		width: 19px;
    	height: 62px;
		rotate: 90deg;
	}
	.top-flow__list dl {
		display: grid;
		grid-template-columns: 96px 1fr;
		grid-template-rows: auto 1fr;
		grid-template-areas: "image title"
			"image desc";
		justify-content: flex-start;
		gap: 25px 0;
	}
	.top-flow__list-title {
		grid-area: title;
		margin-top: 0;
		height: unset;
		font-size: calc( 24 / var(--fs-base) * 1rem );
		font-weight: 400;
		text-align: left;
	}
	.top-flow__list-image {
		grid-area: image;
		order: unset;
		place-items: unset;
		align-items: flex-start;
	}
	.top-flow__list-image img {
		scale: .8;
		transform: translateX(calc(-50% + 40px)) translateY(-50%);
		transform-origin: center top;
	}
	.top-flow__list-desc {
		grid-area: desc;
	}
	.top-flow__list-desc p {
		text-align: left;
	}
}
@media (max-width: 780px) {
	.top-flow {
		padding-top: 25vw;
		padding-bottom: 25vw;
		clip-path: polygon(0 0, 100% 25vw, 100% calc( 100% - 25vw ), 0 100%);
		min-height: 0;
	}
	.top-flow__inner {
		padding-top: 120px;
		padding-bottom: 150px;
	}
}




/*
 * TOP：top-contact
 */

.top-contact {
	padding-top: 80px;
}
.top-contact__inner {
	max-width: calc( var(--con-w) + var(--side-margin) * 2 );
	margin-inline: auto;
	position: relative;
	width: 100%;
	padding-right: var(--side-margin);
	padding-left: var(--side-margin);
}
.top-contact__title {
	font-size: calc( 20 / var(--fs-base) * 1rem );
}
.top-contact__title-image {
	margin-bottom: 15px;
}
.top-contact__main {
	margin-top: 95px;
	display: flex;
	align-items: flex-start;
}
.top-contact__tel {
	flex-grow: 1;
}
.top-contact__tel a {
	display: block;
}
.top-contact__links {
	max-width: 455px;
	width: 100%;
	flex-shrink: 0;
}
.top-contact__links li + li {
	margin-top: 40px;
}
.top-contact__links li {
	display: block;
	max-width: 454px;
	font-size: calc( 21 / var(--fs-base) * 1rem );
	text-align: center;
}
.top-contact__links li a {
	border: solid 2px var(--color-main);
	display: block;
	padding: 40px 10px;
	transition-property: background-color, color;
	transition-timing-function: ease-in-out;
	transition-duration: .2s;
}
.top-contact__links li a:hover {
	background-color: var(--color-main);
	color: var(--color-font);
}
@media (min-width: 768px) {
	.top-contact__title-image {
		display: inline-block;
		width: 100%;
	}
}
@media (max-width: 1120px) {
	.top-contact__main {
		flex-wrap: wrap;
		flex-direction: column;
		align-items: center;
		gap: 94px;
	}
	.top-contact__tel {
		flex-basis: 100%;
		max-width: 90%;
	}
	.top-contact__links {
		max-width: 90%;
	}
	.top-contact__links li {
		margin-inline: auto;
	}
}
@media (max-width: 767px) {
	.top-contact__links li {
		font-size: calc( 16 / var(--fs-base) * 1rem );
	}
	.top-contact__title {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		font-size: calc( 15 / var(--fs-base) * 1rem );
		position: relative;
	}
	.top-contact__title::before {
		content: '';
		position: absolute;
		width: 47px;
		border-bottom: solid 2px var(--color-main);
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
	}
	.top-contact__title-image  {
		margin-right: 0;
		order: 2;
		margin-top: 10px;
	}
}






/*
 * JS：js-custom-movie
 */
.js-custom-movie {
	position: relative;
	z-index: 1;
	overflow: hidden;
	line-height: 0;
}
.js-custom-movie__control {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	z-index: 2;
}
.js-custom-movie__control::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .3;
	transition-property: opacity;
	transition-timing-function: ease-in-out;
	transition-duration: .15s;
	z-index: 3;
}
.js-custom-movie__control-icon {
	width: calc( 280 / 1920 * 100vw );
	max-width: 280px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 4;
}
.js-custom-movie__control-icon li {
	line-height: 1;
}
.js-custom-movie__control-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 4;
	margin-top: calc(239 / 1.5 / 1920 * 100vw);
}
.js-custom-movie__play .js-custom-movie__control-text {
	width: calc( 239 / 1920 * 100vw );
	max-width: 239px;
}
.js-custom-movie__control[data-status="start"] li:not(.js-custom-movie__play) {
	display: none;
}
.js-custom-movie__control[data-status="end"] li:not(.js-custom-movie__play) {
	display: none;
}
.js-custom-movie__control[data-status="play"]::before {
	opacity: 0;
}
.js-custom-movie__control[data-status="play"] li {
	display: none;
}
.js-custom-movie__control[data-status="pause"] li:not(.js-custom-movie__pause) {
	display: none;
}
.js-custom-movie__bg {
	position: absolute;
	left: 0;
	top: 0;
	display: none;
}
.js-custom-movie__control[data-status="end"] + video + .js-custom-movie__bg {
	display: block;
}
.js-custom-movie__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 1300px) {
	.top-intro .js-custom-movie__control-icon {
		width: calc( 280 / 1300 * 100vw );
		max-width: none;
	}
	.top-intro .js-custom-movie__play .js-custom-movie__control-text {
		width: calc( 239 / 1300 * 100vw );
		max-width: none;
	}
	.top-intro .js-custom-movie__control-text {
		margin-top: calc(239 / 1.5 / 1300 * 100vw);
	}
}
@media (max-width: 767px) {
	.top-intro .js-custom-movie__control-icon {
		width: calc( 82 / 390 * 100vw );
		max-width: none;
	}
	.top-intro .js-custom-movie__play .js-custom-movie__control-text {
		width: calc( 61 / 390 * 100vw );
		max-width: none;
	}
	.top-intro .js-custom-movie__control-text {
		margin-top: calc(82 / 1.75 / 390 * 100vw);
	}
}