@charset "UTF-8";

/*
■ リセット
■ 共通

■ 背景・文字色
■ キービジュアル
■ 導入
■ 商品紹介
■ カルーセル
■ クレジット

■ フッター
■ ページの先頭へ

■ エフェクト

■ 印刷用設定
*/



/* ■ リセット ==================================================================================== */

body { min-width: 320px; margin: 0; padding: 0; }

#Feature_ div, #Feature_ section { margin: 0; color: inherit; word-break: normal; }
#Feature_ h1, #Feature_ h2, #Feature_ h3, #Feature_ h4, #Feature_ h5, #Feature_ p { margin: 0; padding: 0; letter-spacing: inherit; color: inherit; word-break: normal; }
#Feature_ dl, #Feature_ dt, #Feature_ dd { margin: 0; padding: 0; color: inherit; word-break: normal; }
#Feature_ *, #Feature_ *:before, #Feature_ *:after, #Feature_ *::before, #Feature_ *::after { box-sizing: border-box; }
#Feature_ *:focus { outline: none; }
#Feature_ figure, #Feature_ img, #Feature_ picture,#Feature_ video, #Feature_ canvas, #Feature_ svg { display: block; max-width: 100%; height: auto; border: none; vertical-align: bottom; }
#Feature_ form { margin: 0; padding: 0; }
#Feature_ li { list-style-type: none; }
#Feature_ table { width: 100%; border-collapse: collapse; border-spacing: 0; }
#Feature_ strong, #Feature_ em { font-style: normal; }
#Feature_ input, #Feature_ select, #Feature_ textarea, #Feature_ button { border-style: none; font-size: inherit; }
#Feature_ button { cursor: pointer; }
#Feature_ h2 { border: none; }

#Feature_ a:link {
text-decoration: none;
}

#Feature_ a:active {
text-decoration: none;
}

#Feature_ a:visited {
text-decoration: none;
}

#Feature_ a:hover {
text-decoration: none;
}


/* ページ管理用 --------------------------------------------------- */

.pane-contents {
margin-bottom: 0;
padding-bottom: 0;
}

body.page-page .pane-contents {
letter-spacing: inherit;
}

.pane-contents .container {
display: block;
padding-bottom: 0;
}

.pane-main {
margin-bottom: 0;
}

.block-page-freespace--caption {
margin-bottom: 0;
padding-top: 0;
}

.block-page-block--frame {
margin-bottom: 0;
padding: 0;
}

.block-page-block--contents {
display: block;
max-width: 100%;
}

.block-page-block--contents-text {
padding: 0;
}

.block-page-block--contents-body-text-1column {
width: 100%;
margin: 0;
}

.block-page-block--contents-body-text-1column div {
padding: 0;
}

.block-page-block--contents-body-text-1column img {
margin-inline: initial;
}

.block-page-freespace--caption img,
.block-pagecategory-freespace--top img,
.block-pagecategory-freespace--bottom img,
.block-page-block--frame img {
border-radius: inherit;
}

/* JSのZoom処理をリセット */
#Feature_ {
zoom: var(--body-reset-zoom); 
}

@media only screen and (max-width: 767px) {

	/* パンくず調整 */
	.block-topic-path {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	}

}



/* ■ 共通 ==================================================================================== */

/*
フォント
汎用
変数
*/


/* フォント --------------------------------------------------- */

#Feature_ * {
font-family: "Noto Sans JP", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
}

#Feature_ .WF1,
#Feature_ .WF1 * {
font-family: "Oswald", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
}


/* 汎用 --------------------------------------------------- */

@media only screen and (max-width: 767px) {

	#Feature_ .PC {
	display: none !important;
	}

}

@media print, screen and (min-width: 768px) {

	#Feature_ .SP {
	display: none !important;
	}

}

@media (hover: hover) {

	#Feature_ a {
	transition: all 0.2s ease-in-out 0.01s;
	}

	#Feature_ a:hover {
	opacity: 0.7;
	}

}

/* 非アクティブ */
#Feature_ a.Disabled, 
#Feature_ a.Disabled * {
pointer-events: none;
}

#Feature_ .Disabled:hover {
opacity: 1;
}


/* 変数 --------------------------------------------------- */

:root {
--c1: #000;
--c2: #f7f4eb;
--c3: #d0371a;
}



/* ■ 背景・文字色（※変数指定不可） ==================================================================================== */

#Feature_ {
color: #000;
background-color: #fff;
}



/* ■ キービジュアル ==================================================================================== */

#Feature_ .KV_ {
display: flex;
align-items: center;
justify-content: center;
background-color: var(--c1);
}

#Feature_ .KV_Mds {
opacity: 0;
animation-name: fadeIn;
animation-duration: 3s;
animation-timing-function: ease-out;
animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#Feature_ .KV_Photo img {
width: 100%;
}

#Feature_ .KV_Copyright {
text-align: right;
}

@media only screen and (max-width: 767px) {

	#Feature_ .KV_ {
	padding: 9% 0 13%;
	}

	#Feature_ .KV_Mds {
	width: 70%;
	}

}

@media print, screen and (min-width: 768px) {

	#Feature_ .KV_ {
	padding: 3% 0 4%;
	}

	#Feature_ .KV_Mds {
	width: 55%;
	}

}



/* ■ 導入 ==================================================================================== */

#Feature_ .Intro_ {
background-color: var(--c2);
}

#Feature_ .Intro_Mds {
line-height: 1;
font-weight: 600;
letter-spacing: 0.05em;
text-align: center;
}

@media only screen and (max-width: 767px) {

	#Feature_ .Intro_ {
	padding: 15% 0 17%;
	}

	#Feature_ .Intro_Mds {
	font-size: 35px;
	}

	#Feature_ .Intro_LeadUnit {
	margin-top: 7%;
	padding: 0 11%;
	}

	#Feature_ .Intro_Lead {
	margin-top: 4%;
	font-size: 14px;
	line-height: 2;
	}

}

@media print, screen and (min-width: 768px) {

	#Feature_ .Intro_ {
	padding: 6% 0 8%;
	}

	#Feature_ .Intro_Mds {
	font-size: 60px;
	}

	#Feature_ .Intro_LeadUnit {
	max-width: 950px;
	margin: 4% auto 0;
	padding: 0 40px;
	}

	#Feature_ .Intro_Lead {
	margin-top: 3%;
	font-size: 16px;
	line-height: 2.2;
	}

}



/* ■ 商品紹介 ==================================================================================== */

#Feature_ .Item_Wrap:nth-of-type(odd) .Item_Catch,
#Feature_ .Item_Wrap:nth-of-type(odd) .Item_Name {
text-align: right;
}

#Feature_ .Item_Catch img,
#Feature_ .Item_Name img {
display: inline-block;
object-fit: contain;
}

#Feature_ .Item_Photo {
position: relative;
}

#Feature_ .Item_Photo img {
width: 100%;
}

#Feature_ .Item_Detail_Price {
display: flex;
align-items: center;
font-weight: 600;
letter-spacing: 0.05em;
}

#Feature_ .Item_Detail_Buy a {
display: flex;
align-items: center;
justify-content: center;
background-color: var(--c1);
}

@media only screen and (max-width: 767px) {

	#Feature_ .Item_Wrap {
	padding-top: 6%;
	}

	#Feature_ .Item_Wrap:nth-of-type(odd) {
	background: linear-gradient(to bottom, var(--c1) 0%, var(--c1) 25%, #fff 25%, #fff 100%);
	}

	#Feature_ .Item_Wrap:nth-of-type(even) {
	margin-top: 10%;
	padding-bottom: 18%;
	background: linear-gradient(to bottom, #fff 0%, #fff 26%, var(--c2) 26%, var(--c2) 100%);
	}

	#Feature_ .Item_Catch,
	#Feature_ .Item_Name {
	padding: 0 5%;
	}

	#Feature_ .Item_Catch {
	margin-bottom: 4%;
	}

	#Feature_ .Item_Catch img {
	height: 10px;
	}

	#Feature_ .Item_Name img {
	height: 42px;
	}

	#Feature_ .Item_Wrap:nth-of-type(2) .Item_Name img {
	height: 100px;
	}

	#Feature_ .Item_Wrap:nth-of-type(1) .Item_Photo_Wrap {
	padding: 12% 15% 0;
	}

	#Feature_ .Item_Wrap:nth-of-type(2) .Item_Photo_Wrap {
	padding: 6% 12% 0;
	}

	#Feature_ .Item_Wrap:nth-of-type(3) .Item_Photo_Wrap {
	padding: 6% 15% 0;
	}

	#Feature_ .Item_Wrap:nth-of-type(4) .Item_Photo_Wrap {
	padding: 8% 15% 0;
	}

	#Feature_ .swiper-slide {
    padding: 0 10px;
	}

	#Feature_ .Item_Detail {
	padding: 18% 15% 0;
	}

	#Feature_ .Item_Detail_Price {
	justify-content: center;
	margin-top: 7%;
	font-size: 16px;
	}

	#Feature_ .Item_Detail_Price small {
	margin-left: 5px;
	font-size: 12px;
	}

	#Feature_ .Item_Detail_Buy {
	display: flex;
	justify-content: center;
	margin-top: 5%;
	}

	#Feature_ .Item_Detail_Buy a {
	width: 170px;
	height: 34px;
	padding-right: 2px;
	padding-bottom: 1px;
	}

	#Feature_ .Item_Detail_Buy a img {
	width: 55px;
	}

}

@media print, screen and (min-width: 768px) {

	#Feature_ .Item_Wrap {
	padding-top: 6%;
	}

	#Feature_ .Item_Wrap:nth-of-type(odd) {
	background: linear-gradient(to bottom, var(--c1) 0%, var(--c1) 48%, #fff 48%, #fff 100%);
	}

	#Feature_ .Item_Wrap:nth-of-type(even) {
	margin-top: 2%;
	padding-bottom: 10%;
	background: linear-gradient(to bottom, #fff 0%, #fff 40%, var(--c2) 40%, var(--c2) 100%);
	}

	#Feature_ .Item_ {
	max-width: 1130px;
	margin: 0 auto;
	padding: 0 40px;
	}

	#Feature_ .Item_Name {
	margin-top: 2%;
	}

	#Feature_ .Item_Catch img {
	height: 20px;
	}

	#Feature_ .Item_Name img {
	height: 79px;
	}

	#Feature_ .Item_Unit {
	display: flex;
	padding-top: 4%;
	}

	#Feature_ .Item_Photo_Wrap {
	width: 56%;
	padding: 0 2%;
	}

	#Feature_ .Item_Wrap:nth-of-type(2) .Item_Photo_Wrap {
	padding: 0;
	}

	#Feature_ .Item_Wrap:nth-of-type(even) .Item_Photo_Wrap {
	order: 2;
	}

	#Feature_ .swiper-slide {
    padding: 0 10px;
	}

	#Feature_ .Item_Detail {
	width: 44%;
	}

	#Feature_ .Item_Wrap:nth-of-type(odd) .Item_Detail {
	padding-left: 6%;
	}

	#Feature_ .Item_Wrap:nth-of-type(even) .Item_Detail {
	padding-right: 6%;
	}

	#Feature_ .Item_Detail_Price {
	margin-top: 6%;
	font-size: 22px;
	}

	#Feature_ .Item_Detail_Price small {
	margin-left: 5px;
	font-size: 16px;
	}

	#Feature_ .Item_Detail_Buy {
	margin-top: 4%;
	}

	#Feature_ .Item_Detail_Buy a {
	width: 200px;
	height: 40px;
	padding-right: 2px;
	padding-bottom: 1px;
	}

	#Feature_ .Item_Detail_Buy a img {
	width: 70px;
	}

}

@media (hover: hover) {

	#Feature_ .Item_Detail_Buy a:hover {
	background-color: var(--c3);
	opacity: 1;
	}

}



/* ■ カルーセル ==================================================================================== */

/* ページネーション	 */
#Feature_ .swiper-pagination {
display: flex;
justify-content: center;
}

#Feature_ .swiper-pagination-bullet {
display: block;
border-radius: inherit;
background-color: #e4e4e4;
opacity: 1;
cursor: pointer;
}

#Feature_ .swiper-pagination-bullet-active {
background-color: var(--c1);
}

@media only screen and (max-width: 767px) {

	/* ページネーション	 */
	#Feature_ .swiper-pagination {
	bottom: -25px;
	}

	#Feature_ .swiper-pagination-bullet {
	width: 30px;
	height: 4px;
	margin: 0 2px;
	}

	/* 左右ボタン */
	#Feature_ .swiper-button-prev,
	#Feature_ .swiper-button-next {
	display: none;
	}

}

@media print, screen and (min-width: 768px) {

	/* ページネーション	 */
	#Feature_ .swiper-pagination {
	bottom: -35px;
	}

	#Feature_ .swiper-pagination-bullet {
	width: 46px;
	height: 5px;
	margin: 0 4px;
	}

	/* 左右ボタン */
	#Feature_ .swiper-button-prev {
	left: -40px;
	}

	#Feature_ .Item_Wrap:nth-of-type(2) .swiper-button-prev {
	left: -20px;
	}

	#Feature_ .swiper-button-prev::after {
	font-size: 35px;
	}

	#Feature_ .swiper-button-next {
	right: -30px;
	}

	#Feature_ .Item_Wrap:nth-of-type(2) .swiper-button-next {
	right: -3px;
	}

	#Feature_ .swiper-button-next::after {
	font-size: 35px;
	}

}



/* ■ クレジット ==================================================================================== */

/*
レイアウト
Intro
Credit
*/

/* レイアウト --------------------------------------------------- */

#Feature_ .About_ {
color: #fff;
background-color: #000;
}

@media only screen and (max-width: 767px) {

	#Feature_ .About_ {
	padding: 14% 11% 14%;
	}

}

@media print, screen and (min-width: 768px) {

	#Feature_ .About_ {
	padding: 7% 12% 8%;
	}

}


/* Intro --------------------------------------------------- */

#Feature_ .About_Intro_Mds,
#Feature_ .About_Intro_Catch {
display: flex;
justify-content: center;
}

#Feature_ .About_Intro_Lead {
letter-spacing: 0.15em;
color: #eae6db;
}

@media only screen and (max-width: 767px) {

	#Feature_ .About_Intro {
	padding-bottom: 14%;
	}

	#Feature_ .About_Intro_Mds img {
	max-width: 173px;
	}

	#Feature_ .About_Intro_Catch {
	margin-top: 8%;
	}

	#Feature_ .About_Intro_Catch img {
	max-width: 280px;
	}

	#Feature_ .About_Intro_LeadUnit {
	margin-top: 8%;
	}

	#Feature_ .About_Intro_Lead {
	margin-top: 6%;
	font-size: 13px;
	line-height: 1.9;
	}

}

@media print, screen and (min-width: 768px) {

	#Feature_ .About_Intro {
	padding-bottom: 6%;
	}

	#Feature_ .About_Intro_Mds img {
	max-width: 274px;
	}

	#Feature_ .About_Intro_Catch {
	margin-top: 3.5%;
	}

	#Feature_ .About_Intro_Catch img {
	max-width: 431px;
	}

	#Feature_ .About_Intro_LeadUnit {
	max-width: 740px;
	margin: 2% auto 0;
	}

	#Feature_ .About_Intro_Lead {
	margin-top: 3%;
	font-size: 14px;
	line-height: 1.9;
	}

}


/* Credit --------------------------------------------------- */

#Feature_ .About_Credit {
border-top: 1px solid #3d3d3d;
}

#Feature_ .About_Credit_Mds {
display: flex;
justify-content: center;
}

#Feature_ .About_Credit_Lead {
letter-spacing: 0.15em;
color: #eae6db;
}

#Feature_ .About_Credit_Copyright {
font-weight: 200;
letter-spacing: 0.15em;
color: #eae6db;
}

@media only screen and (max-width: 767px) {

	#Feature_ .About_Credit {
	padding-top: 14%;
	}

	#Feature_ .About_Credit_Mds img {
	max-width: 225px;
	}

	#Feature_ .About_Credit_Lead {
	margin-top: 10%;
	font-size: 9px;
	line-height: 1.7;
	}

	#Feature_ .About_Credit_Copyright {
	margin-top: 2%;
	font-size: 9px;
	line-height: 1.7;
	}

}

@media print, screen and (min-width: 768px) {

	#Feature_ .About_Credit {
	padding-top: 6%;
	}

	#Feature_ .About_Credit_Mds img {
	max-width: 326px;
	}

	#Feature_ .About_Credit_LeadUnit {
	max-width: 740px;
	margin: 4% auto 0;
	}

	#Feature_ .About_Credit_Lead {
	margin-top: 2%;
	font-size: 12px;
	line-height: 1.7;
	}

	#Feature_ .About_Credit_Copyright {
	margin-top: 2%;
	font-size: 12px;
	line-height: 1.7;
	}

}



/* ■ フッター ==================================================================================== */

#Feature_ .Footer_ {
background-color: #fff;
}

#Feature_ .Footer_Logo {
display: flex;
justify-content: center;
}

#Feature_ .Footer_SNS {
display: flex;
justify-content: center;
align-items: center;
}

#Feature_ .Footer_Copyright {
display: flex;
justify-content: center;
}

@media only screen and (max-width: 767px) {

	#Feature_ .Footer_ {
	padding-top: 50px;
	padding-bottom: 60px;
	}

	#Feature_ .Footer_Logo img {
	width: 120px;
	}

	#Feature_ .Footer_SNS {
	margin-top: 30px;
	}

	#Feature_ .Footer_SNS a {
	margin: 0 15px;
	}

	#Feature_ .Footer_SNS img {
	width: 26px;
	}

	#Feature_ .Footer_Copyright {
	margin-top: 30px;
	font-size: 10px;
	}

}

@media print, screen and (min-width: 768px) {

	#Feature_ .Footer_ {
	padding-top: 80px;
	padding-bottom: 80px;
	}

	#Feature_ .Top_Wrapping_ .Footer_ {
	margin-left: -60px;
	margin-right: -60px;
	}

	#Feature_ .Footer_Logo img {
	width: 140px;
	}

	#Feature_ .Footer_SNS {
	margin-top: 30px;
	}

	#Feature_ .Footer_SNS a {
	margin: 0 15px;
	}

	#Feature_ .Footer_SNS img {
	width: 26px;
	}

	#Feature_ .Footer_Copyright {
	margin-top: 30px;
	font-size: 10px;
	}

}



/* ■ ページの先頭へ ==================================================================================== */

#Feature_ #PageTop {
display: none;
position: fixed;
z-index: 10000;
opacity: 0.8;
}

@media only screen and (max-width: 767px) {

	#Feature_ #PageTop {
	bottom: 15px;
	right: 15px;
	width: 40px;
	}

}

@media print, screen and (min-width: 768px) {

	#Feature_ #PageTop {
	bottom: 30px;
	right: 30px;
	width: 60px;
	}
	
}



/* ■ エフェクト ==================================================================================== */

/* マスクワイプ_LR_1 */
#Feature_ .MaskWipe_LR_1_Target {
mask-image: linear-gradient(270deg, transparent 50%, black 50%);
mask-size: 200% 100%;
mask-position: 100% 0%;
}

#Feature_ .MaskWipe_LR_1_On {
animation: MaskWipe_LR_1_On 1.25s forwards ease;
}

@keyframes MaskWipe_LR_1_On {
	from {
		mask-position: 100% 0%;
	}
	to {
		mask-position: 0% 0%;
	}
}

/* マスクワイプ_LR_2 */
#Feature_ .MaskWipe_LR_2_Target {
mask-image: linear-gradient(270deg, transparent 50%, black 50%);
mask-size: 200% 100%;
mask-position: 100% 0%;
}

#Feature_ .MaskWipe_LR_2_On {
animation: MaskWipe_LR_2_On 0.75s forwards ease;
animation-delay: 0.75s;
}

@keyframes MaskWipe_LR_2_On {
	from {
		mask-position: 100% 0%;
	}
	to {
		mask-position: 0% 0%;
	}
}

/* マスクワイプ_LR_3 */
#Feature_ .MaskWipe_LR_3_Target {
mask-image: linear-gradient(270deg, transparent 50%, black 50%);
mask-size: 200% 100%;
mask-position: 100% 0%;
}

#Feature_ .MaskWipe_LR_3_On {
animation: MaskWipe_LR_3_On 1.5s forwards ease;
animation-delay: 0.75s;
}

@keyframes MaskWipe_LR_3_On {
	from {
		mask-position: 100% 0%;
	}
	to {
		mask-position: 0% 0%;
	}
}

/* マスクワイプ_RL_1 */
#Feature_ .MaskWipe_RL_1_Target {
mask-image: linear-gradient(90deg, transparent 50%, black 50%);
mask-size: 200% 100%;
}

#Feature_ .MaskWipe_RL_1_On {
animation: MaskWipe_RL_1_On 1.25s forwards ease;
}

@keyframes MaskWipe_RL_1_On {
	from {
		mask-position: 0% 0%;
	}
	to {
		mask-position: 100% 0%;
	}
}

/* マスクワイプ_RL_2 */
#Feature_ .MaskWipe_RL_2_Target {
mask-image: linear-gradient(90deg, transparent 50%, black 50%);
mask-size: 200% 100%;
}

#Feature_ .MaskWipe_RL_2_On {
animation: MaskWipe_RL_2_On 0.75s forwards ease;
animation-delay: 0.75s;
}

@keyframes MaskWipe_RL_2_On {
	from {
		mask-position: 0% 0%;
	}
	to {
		mask-position: 100% 0%;
	}
}

/* マスクワイプ_RL_3 */
#Feature_ .MaskWipe_RL_3_Target {
mask-image: linear-gradient(90deg, transparent 50%, black 50%);
mask-size: 200% 100%;
}

#Feature_ .MaskWipe_RL_3_On {
animation: MaskWipe_RL_3_On 1.5s forwards ease;
animation-delay: 0.75s;
}

@keyframes MaskWipe_RL_3_On {
	from {
		mask-position: 0% 0%;
	}
	to {
		mask-position: 100% 0%;
	}
}



/* ■ 印刷用設定 ==================================================================================== */

@media print {

}



