@charset "UTF-8";
/* **********************************************
	[ENG]トップページスタイル　スマホのみ
		Header / Footer 
	
	スマホ(max-width: 768px)
	
 ********************************************** */
@media screen and (max-width:768px) {
	/* =================================================
		本文エリア
	 ================================================= */
	#wrapper .contents {
		width: 100%;
		height: auto;
		display: block;
		margin: 0px auto;
		padding: 0px;
		text-align: center;
		background: #fff;
		position: relative;
		z-index: 0;
	}
	.concept-bg-lazy {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		background-position: left -10px bottom;
		background-repeat: no-repeat;
		background-size: 160% auto;
		/* 背景画像はここでは書かない！JSで後からつける */
	}
	#wrapper .contents::after {
		content: "";
		background-color: rgba(255,255,255,0.3);
		width: 100%;
		height: 100%;
		display:block;
		margin: auto;
		padding: 0px;
		position: absolute;
		top: auto;
		bottom: 0px;
		left: 0px;
		right: 0px;
		z-index: -1;
	}
	/* 白ƒ背景 */
	#wrapper .contents_inner {
		width: 100%;
		height: auto;
		display: block;
		margin: 0px auto;
		padding: 0px;
		text-align: center;
		background: #fff;
	}
	/* =================================================
		MV Area（catch/read）
	 ================================================= */
	.mvArea {
		width: 100%;
		height: auto;
		display: block;
		margin: 0px auto 30px;
		padding: 0px;
		text-align: center;
		position: relative;
	}
	.conceptArea h2.catch {
		width: 84%;
		height: auto;
		display: block;
		margin: auto;
		padding: 0px 0px 30px;
		font-size: 29px;
		font-weight: 400;
		font-style: italic;
		line-height: 1.35em;
		letter-spacing: -0.0125em;
		color: #161850;
	}
	.conceptArea h2.catch {
		text-align: left;
		opacity: 0;
		animation: fadeUp 1s ease-out forwards;
	}
	.conceptArea h2.catch .pc {
		display: none;
	}
	@keyframes fadeUp {
		0% {
			opacity: 0;
			transform: translateY(20px);
		}
		100% {
			opacity: 1;
			transform: translateY(0);
		}
	}
	/* =================================================
		MV swiper
	 ================================================= */
	/* 最初は非表示 */
	.mvswiper {
		width: 100%;
		height: auto;
		margin: 0px auto;
		padding: 0px;
		text-align: center;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.4s ease;
	}
	.mvswiper.is-ready {
		opacity: 1;
		visibility: visible;
	}
	.mvswiper .swiper-slide {
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
	}
	.mvswiper .swiper-slide a {
		margin: 0px;
		padding: 0px;
	}
	.mvswiper .swiper-slide img {
		aspect-ratio: 750 / 1090;
		width: 100%;
		height: auto;
		object-fit: cover;
	}
	
	.mvswiper .swiper-slide-active a .swiper-img,
	.mvswiper .swiper-slide-duplicate-active a .swiper-img,
	.mvswiper .swiper-slide-prev a .swiper-img {
		transform: scale(1);
		transition: all 0.7s ease;
	}
	.mvswiper .swiper-slide-active a:hover .swiper-img,
	.mvswiper .swiper-slide-duplicate-active a:hover .swiper-img,
	.mvswiper .swiper-slide-prev a:hover .swiper-img {
		transform: scale(1.02);
	}
	/* カスタマイズ ＞ ページネーション */
	.mvswiper .swiper-horizontal>.swiper-pagination-bullets,
	.mvswiper .swiper-pagination-bullets.swiper-pagination-horizontal,
	.mvswiper .swiper-pagination-custom, .swiper-pagination-fraction {
		width: auto;
		top: var(--swiper-pagination-top, auto);
		bottom: var(--swiper-pagination-bottom, 20px);
		left: auto;
		right: 30px;
	}
	/* カスタマイズ ＞ ページネーションのサイズと色 */
	.mvswiper .swiper-pagination-bullet {
		background-color: #fff;
		height: 10px;
		width: 10px;
	}
	/* 前への矢印 */
	.mvswiper .swiper-button-prev {
		display: block;
		left: 3%;
		transition: all 0.3s ease;
	}
	.mvswiper .swiper-button-prev:before {
		content: '';
		width: 70px;
		height: 70px;
		background: rgba(30, 34, 170,0.35);
		border-radius: 50%;
		position: absolute;
		top: 0;
		bottom: 0;
		left: -45px;
		right: auto;
		margin: auto;
		z-index: 5; /* 前に出す */
		transition: all 0.3s ease;
	}
	.mvswiper .swiper-button-prev:hover:before {
		background: rgba(30, 34, 170,0.75);
	}
	.mvswiper .swiper-button-prev:after {
		content: '';
		width: 16px;
		height: 16px;
		border: 0;
		border-top: solid 2px #fff;
		border-left: solid 2px #fff;
		transform: rotate(-45deg);
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: auto;
		margin: auto;
		z-index: 10; /* 前に出す */
	}
	/* 次への矢印 */
	.mvswiper .swiper-button-next {
		display: block;
		right: 3%;
		transition: all 0.3s ease;
	}
	.mvswiper .swiper-button-next:before {
		content: '';
		width: 70px;
		height: 70px;
		background: rgba(30, 34, 170,0.35);
		border-radius: 50%;
		position: absolute;
		top: 0;
		bottom: 0;
		left: auto;
		right: -45px;
		margin: auto;
		z-index: 5; /* 前に出す */
		transition: all 0.3s ease;
	}
	.mvswiper .swiper-button-next:hover:before {
		background: rgba(30, 34, 170,0.75);
	}
	.mvswiper .swiper-button-next:after {
		content: '';
		width: 16px;
		height: 16px;
		border: 0;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		transform: rotate(45deg);
		position: absolute;
		top: 0;
		bottom: 0;
		left: auto;
		right: 0;
		margin: auto;
		z-index: 10; /* 前に出す */
	}
	.mvswiper .swiper-button-next,
	.mvswiper .swiper-button-prev {
		display: block;
		--swiper-navigation-color: #fff!important;
	}
	/* =================================================
		PRODUCTエリア
	 ================================================= */
	#wrapper .productArea {
		width: 100%;
		height: auto;
		display: block;
		margin: 0px auto 100px;
		padding: 20px 0px 0px;
	}
	/* =================================================
		見出し設定
	 ================================================= */
	/* 見出し */
	.productArea .mds {
		width: 90%;
		height: auto;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		margin: 0px auto;
		padding: 0px;
		text-align: left;
	}
	.productArea .mds h2 {
		width: 100%;
		font-size: 48px;
		font-weight: 500;
		line-height: 60px;
		color: #D33F5E;
		white-space: nowrap;
	}
	/* 一覧リンク */
	.productArea .mds .listlink {
		height: auto;
		display: block;
		margin: 0px 0px 0px auto;
		padding: 0px 0px 0px 0px;
		text-align: right;
		vertical-align: top;
		letter-spacing: 0.0125em;
	}
	.productArea .mds .listlink a {
		width: 155px;
		height: auto;
		display: block;
		margin: 0px;
		padding: 0px 22px 3px 0px;
		text-align: left;
		font-size: 16px;
		font-weight: 400;
		line-height: 1.65em;
		color: #666;
		text-decoration: underline;
		white-space: nowrap;
		position: relative;
		transition: all 0.3s ease;
	}
	.productArea .mds .listlink a::after {
		content: "";
		width: 16px;
		height: 16px;
		display: block;
		margin: auto;
		padding: 0px;
		background-image: url(../../_img/cmn/icn_arrow_maru.png);
		background-position: left center;
		background-repeat: no-repeat;
		background-size: 100% auto;
		border-radius: 12px;
		-webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
		box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
		position: absolute;
		top: 0px;
		bottom: 0px;
		left: auto;
		right: -10px;
		transition: all 0.3s ease;
	}
	.productArea .mds .listlink a:hover {
		opacity: 0.5;
	}
	/* =================================================
		ラインナップ
	 ================================================= */
	/* ラインナップエリア */
	.productArea .lineup {
		width: 100%;
		height: auto;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		flex-wrap: wrap;
		gap: 1px;
		margin: 30px auto 0px;
		padding: 0px;
	}
	.productArea .lineup a {
		flex-grow:1; /* 横幅均等 */
		width: calc(100% / 3.1);
		min-height: 200px;
		text-decoration: none;
		transition: all 0.2s ease;
	}
	.productArea .lineup a:hover {
		opacity: 0.75;
	}
	.productArea .lineup a figure {
		width: 100%;
		height: auto;
		display: block;
		margin: 0px auto 0px;
		padding: 0px 0px 0px;
		position: relative;
	}
	/* ラインナップ商品画像（ズーム） */
	.productArea .lineup a figure .img-zoom {
		width: 100%;
		max-width: 180px;
		height: auto;
		display: block;
		margin: 0px auto;
		padding: 20px 0px 10px;
		overflow: hidden;
		cursor: pointer;
	}
	.productArea .lineup a figure .img-zoom img {
		width: 75%;
		height: auto;
		transition: transform 0.3s ease;
	}
	.productArea .lineup a:hover figure .img-zoom img {
		transform: scale(1.1);
	}
	/* ラインナップのテキスト */
	.productArea .lineup a figure figcaption {
		width: 100%;
		display:block;
		margin: 0px auto 0px;
		padding: 1px 0px;
		background: rgba(197,203,211,0.3);
		text-align: center;
		font-size: 13px;
		font-weight: 400;
		line-height: 1.2em;
		color: #231815;
		transform-origin: top;
	}
	/* ラインナップのロゴsvg */
	.productArea .lineup a figure .logo-svg {
		width: 100%;
		height: 60px;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto 5px;
		background: rgba(255,255,255,0.5);
		transition: all 0.3s ease;
	}
	.productArea .lineup a:hover figure .logo-svg {
		background: rgba(197,203,211,1);
	}
	.logo-svg img {
		width: 120px;
		height: auto;
		display: inline-block;
		transition: all 0.3s ease;
	}
	.productArea .lineup a:hover figure .logo-svg img {
		mix-blend-mode: multiply;
	}
	/* すべての製品からさがすボタン */
	.productArea .viewallbtn {
		width: 80%;
		height: auto;
		display: block;
		margin: 50px auto 50px;
		padding: 0px;
	}
	.productArea .viewallbtn .btn {
		width: 100%;
		height: auto;
		display: block;
		margin: 0px auto;
		padding: 0px;
	}
	/* =================================================
		CONCEPTエリア（背景ゆらゆら）
	 ================================================= */
	#wrapper .conceptArea {
		width: 100%;
		height: auto;
		min-height: 1100px;
		display: block;
		margin: 0px auto 0px;
		padding: 0px 0px 40px;
		background-color: #ecedf8;
		background-image: url(../../_img/en/top/en_top_concept_bg1.svg);
		background-position: center top;
		background-repeat: no-repeat;
		background-size: 500% auto;
		position: relative;
	}
	/* 背景 */
	#wrapper .conceptArea.anim.run {
		animation-name: yurayuraIN, yurayura;	/* １・２回目 */
		animation-duration: 4s, 20s;		/* 各時間 */
		animation-iteration-count: 1, infinite;	/* １回・繰り返し */
		animation-fill-mode: forwards, forwards;	/* 終了時そのまま */
		animation-delay: 0s, 4s;	/* １回目終わってから２回目 */
	}
	@keyframes yurayuraIN {
		0%{
		background-size: 500% auto;
		}
		100%{
		background-size: 300% auto;
		}
	}
	@keyframes yurayura {
		0%{
		background-size: 300% auto;
		background-position: center top;
		}
		20%{
		background-size: 310% auto;
		}
		33%{
		background-size: 315% auto;
		background-position: left top;
		}
		42%{
		background-size: 320% auto;
		}
		56%{
		background-size: 325% auto;
		background-position: center top;
		}
		70%{
		background-size: 315% auto;
		background-position: left top;
		}
		84%{
		background-size: 310% auto;
		background-position: right top;
		}
		100%{
		background-size: 300% auto;
		background-position: center top;
		}
	}
	/* 下のゆらゆら */
	#wrapper .conceptArea::after {
		content: "";
		width: 100%;
		height: 500px;
		display: block;
		margin: auto;
		padding: 0px;
		background-image: url(../../_img/en/top/en_top_concept_bg2.svg);
		background-position: center bottom;
		background-repeat: no-repeat;
		background-size: 300% auto;
		position: absolute;
		top: auto;
		bottom: 0px;
		left: 0px;
		right: 0px;
		z-index: 0;
	}
	/* 背景 */
	#wrapper .conceptArea.anim.run::after {
		animation-name: yurayura2IN, yurayura2;	/* １・２回目 */
		animation-duration: 4s, 20s;		/* 各時間 */
		animation-iteration-count: 1, infinite;	/* １回・繰り返し */
		animation-fill-mode: forwards, forwards;	/* 終了時そのまま */
		animation-delay: 0s, 4s;	/* １回目終わってから２回目 */
	}
	@keyframes yurayura2IN {
		0%{
		background-size: 300% auto;
		}
		100%{
		background-size: 100% auto;
		}
	}
	@keyframes yurayura2 {
		0%{
		background-size: 100% auto;
		background-position: center bottom;
		}
		20%{
		background-size: 150% auto;
		background-position: left bottom;
		}
		33%{
		background-size: 115% auto;
		background-position: right bottom;
		}
		42%{
		background-size: 120% auto;
		background-position: left bottom;
		}
		56%{
		background-size: 175% auto;
		background-position: center bottom;
		}
		70%{
		background-size: 115% auto;
		background-position: right bottom;
		}
		84%{
		background-size: 150% auto;
		background-position: left bottom;
		}
		100%{
		background-size: 100% auto;
		background-position: center bottom;
		}
	}
	/* =================================================
		CONCEPTエリア（コンテンツ）
	 ================================================= */
	.conceptArea .conbody {
		width: 100%;
		height: auto;
		display: block;
		margin: 0px auto;
		padding: 0px;
		position: relative;
		z-index: 1;
	}
	.conbody .column {
		width: 100%;
		height: auto;
		display: block;
		margin: 0px auto;
		padding: 0px;
		text-align: left;
		font-size: 14px;
		font-weight: 400;
		line-height: 1.75em;
		color: #231815;
		text-decoration: none;
	}
	.conbody p {
		width: 84%;
		height: auto;
		display: block;
		margin: 0px auto;
		padding: 0px;
		text-align: left;
		font-size: 18px;
		font-weight: 300;
		line-height: 1.6em;
		color: #444;
		text-decoration: none;
	}
	.conbody img {
		width: 100%;
		height: auto;
		display: block;
		margin: 30px auto;
		padding: 0px;
	}
	.conbody img.pc {
		display: none;
	}
	.conbody img.sp {
		display: block;
	}
	/* =================================================
		リンクボタン
	 ================================================= */
	.linkbtnArea {
		width: 100%;
		height: auto;
		display: block;
		margin: 0px auto 10px;
		padding: 30px 0px 60px;
		position: relative;
	}
	/* すべての製品からさがすボタン */
	.linkbtnArea .viewallbtn {
		width: 80%;
		height: auto;
		display: block;
		margin: 40px auto 0px;
		padding: 0px;
	}
	.linkbtnArea .viewallbtn .btn {
		width: 100%;
		height: auto;
		display: block;
		margin: 0px auto 10px;
		padding: 0px;
	}
	.viewallbtn .btn a {
		width: 100%;
		height: 75px;
		display:block;
		margin: 0px auto;
		padding: 0px 10px 0px 0px;
		border: 2px solid #D33F5E;
		border-radius: 10px;
		text-align: center;
		font-size: 22px;
		font-weight: 400;
		line-height: 3em;
		color: #333;
		text-decoration: none;
		position: relative;
		transition: all 0.2s ease;
	}
	.viewallbtn .btn a:hover {
		color: #D33F5E;
	}
	.viewallbtn .btn a::before {
		content: "";
		background-image: url(../../_img/cmn/icn_arrow_s.png);
		background-position: left center;
		background-repeat: no-repeat;
		background-size: 100% auto;
		width: 9px;
		height: 14px;
		display:block;
		margin: auto;
		padding: 0px;
		position: absolute;
		top: 0px;
		bottom: 0px;
		left: auto;
		right: 30px;
		transition: all 0.2s ease;
	}
	.viewallbtn .btn a:hover::before {
		right: 25px;
	}
}
