@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Zen+Kaku+Gothic+New&family=Zen+Old+Mincho&display=swap');
.eb-garamond-regular {
	font-family: "EB Garamond", serif;
	font-weight: 300;
	font-style: normal;
}
.zen-kaku-gothic-new-regular {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 300;
	font-style: normal;
}
.zen-old-mincho-regular {
	font-family: "Zen Old Mincho", serif;
	font-weight: 300;
	font-style: normal;
}

body {
	/* background-image: url('../img/bg.jpg');
	background-attachment: fixed;
	background-size: 100% cover;
	background-position: center; */
	background-color: #FAFAFA;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 300;
	font-style: normal;
	letter-spacing: 0.06em;
}

.PointColor {
	color: #5b0d08;
}

/* SP */
@media screen and (max-width: 750px) {
	body,p {
		font-size: 4vw;
		line-height: 1.5;
	}
	.pcOnly {display: none;}
	.spOnly {display: block;}
}
/* PC */
@media screen and (min-width: 751px) {
	body,p {
		font-size: 20px;
	}
	.pcOnly {display: block;}
	.spOnly {display: none;}
}

div.lp-wrapper {
	max-width: 750px;
	overflow: hidden;
}
.lp-wrapper p {
	margin: 0;
}
ul,ul li {
	list-style: none;
	margin: 0;
	padding: 0;
}
strong {
  font-weight: bold;
  -webkit-text-stroke: 0.5px currentColor;
  paint-order: stroke fill;
}



/* -----------------------------
	title style
----------------------------- */

/* SP */
@media screen and (max-width: 750px) {
	.concept_ttl_02,
	.feature_box01_02,
	.product_box01_txt01,
	.product_box01_txt04,
	.product_box02_R_txt01,
	.product_box03_L_txt01,
	.product_box04_R_txt01,
	.howto_txt02,
	.product_box05_txt01,
	.product_box05_txt04,
	.product_box06_R_txt01,
	.product_box07_L_txt01,
	.product_box08_R_txt01,
	.qa_ttl,
	.shoplist_ttl,
	.news_ttl {
		font-size: 7vw;
	}
}

/* PC */
@media screen and (min-width: 751px) {
	.concept_ttl_02 {
		font-size: 38px;
	}
	.feature_box01_02 {
		font-size: 38px;
	}
	.product_box01_txt01,
	.product_box05_txt01 {
		font-size: 48px;
	}
	.product_box01_txt04,
	.product_box05_txt04 {
		font-size: 42px;
	}
	.product_box02_R_txt01,
	.product_box03_L_txt01,
	.product_box04_R_txt01,
	.product_box06_R_txt01,
	.product_box07_L_txt01,
	.product_box08_R_txt01 {
		font-size: 30px;
	}
	.howto_txt02 {
		font-size: 35px;
	}
	.qa_ttl,
	.shoplist_ttl,
	.news_ttl {
		font-size: 56px;
	}
}




/* -----------------------------
	ページスクロール アニメーション
----------------------------- */
/* 上から下に */
.fadeInBottom {
	opacity: 0;
	transform: translateY(-50px);/* 50が控えめ、100がはっきり */
	transition: all 1s;
}
/* 左から右へ */
.fadeInLeft {
	opacity: 0;
	transform: translateX(-50px); /* 左に100pxずらしておく */
	transition: all 1s;
}
/* 右から左へ */
.fadeInRight {
	opacity: 0;
	transform: translateX(50px); /* 右に100pxずらしておく */
	transition: all 1s;
}
/* アニメーション実行時に付与する共通クラス */
.fadeInAnime {
	opacity: 1 !important;
	transform: translate(0, 0) !important; /* 上下左右どこからでも(0,0)に戻す */
}

/* -----------------------------
	背景アニメーション
----------------------------- */
.decorated-block {
	position: relative;
	overflow: hidden;
}
.bg-decoration {
	position: absolute;
	width: 53%;
	z-index: 1;
	opacity: 0;
	transition: all 1.5s ease-out;
}
.product_box02 .bg-decoration,
.product_box06 .bg-decoration {
	top: 27%;
	height: 30%;
}
.product_box03 .bg-decoration,
.product_box07 .bg-decoration {
	top: 27%;
	height: 30%;
}
.product_box04 .bg-decoration,
.product_box08 .bg-decoration {
	top: 27%;
	height: 30%;
}
.howto .bg-decoration {
  top: 0%;
  height: 30%;
}
/* 左から出る場合 */
.bg-decoration.is-left {
	left: 0;
	transform: translateX(-100%);
}
/* 右から出る場合 */
.bg-decoration.is-right {
	right: 0; /* 右端に固定 */
	transform: translateX(100%); /* 右の外側に隠す */
}
/* --- 色のパターン（必要に応じて増設） --- */
.bg-decoration.type-pink { background-color: rgba(244, 237, 233, 0.6); }
.bg-decoration.type-yellow { background-color: rgba(239, 241, 234, 0.6); }
.bg-decoration.type-purple { background-color: rgba(246, 244, 250, 0.6); }
.bg-decoration.type-blue { background-color: rgba(239, 245, 247, 0.6); }
.bg-decoration.type-gray { background-color: rgba(233, 235, 231, 0.4); }
/* --- 実行時（JSで .fadeInAnime がついた時） --- */
.bg-decoration.fadeInAnime {
	opacity: 1;
	transform: translateX(0); /* 左右どちらも定位置(0)に戻る */
}
/* コンテンツレイヤー */
.decorated-block_inner {
	position: relative;
	z-index: 2;
}

/* -----------------------------
	ぼやけるアニメーション
----------------------------- */
@keyframes blurInOnly {
  0% {
    filter: blur(20px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.fade-blur-text {
	opacity: 0;
	filter: blur(20px);
	transform: none !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	top: auto !important;
	bottom: auto !important;
}
.blurInAnime {
	animation: blurInOnly 3s linear forwards !important;
	transform: none !important;
}


/* -----------------------------
	header
----------------------------- */
.header {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 750px;
	height: 80px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
	background-color: transparent;
	z-index: 100;
}
.fv { 
	position: relative;
	top: 0;
	z-index: 0;
}

/* ★ ヘッダーが透過する時、ハンバーガー線も自然に変化 */
.drawer_open span,
.drawer_open span::before,
.drawer_open span::after {
	background: #333;
	transition: background 0.3s;
}
.header.scrolled .drawer_open span,
.header.scrolled .drawer_open span::before,
.header.scrolled .drawer_open span::after {
	background: #000;
}
/* ★ チェックボックスを完全非表示 */
#drawer_input {
	display: none;
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

/* PC */
@media screen and (min-width: 751px) {
	.header {
		width: 750px;
		margin: 0 auto;
		padding: 0;
	}
}

/* SP */
@media screen and (max-width: 750px) {
	.header {
		width: 100%;
		padding: 0;
	}
}


/* -----------------------------
	hamburger menu
----------------------------- */
.nav-wrapper {
	position: absolute;
	margin: 0 auto;
	width: 750px;
	top: 15px;
	right: 20px;
}

/* ハンバーガーアイコン */
.drawer_open {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 10px;
	top: 5px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 101;
}
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
	content: '';
	display: block;
	height: 2px;
	width: 30px;
	background: #000;
	position: absolute;
	transition: 0.4s;
}
.drawer_open span:before { bottom: 10px; }
.drawer_open span:after { top: 10px; }
#drawer_input:checked ~ .drawer_open span { background: transparent; }
#drawer_input:checked ~ .drawer_open span:before { bottom: 0; transform: rotate(45deg); background: #000; }
#drawer_input:checked ~ .drawer_open span:after { top: 0; transform: rotate(-45deg); background: #000; }

/* メニュー本体 */
.nav_content {
	position: fixed;
	top: 0;
	right: -100vw; /* ← ★ 完全に画面外へ。750pxではなく画面幅ベース */
	width: 750px;
	height: 100vh;
	background: rgba(255,255,255,1);
	padding: 80px 0;
	text-align: center;
	transition: right 0.5s ease;
	z-index: 99;
}
/* 開く時だけ中央にスライドイン */
#drawer_input:checked ~ .nav_content {
  right: calc(50% - 375px); /* ★ 中央750px範囲の右端に出現 */
}

/* スマホ */
@media screen and (max-width: 750px) {
	.header {
		width: 100%;
		height: 80px;
		left: 0;
		transform: none;
		justify-content: flex-end;
		padding-right: 20px;
	}
	.nav_content {
		right: -100vw; /* ★ 初期は完全非表示 */
		width: 100vw;
	}
	#drawer_input:checked ~ .nav_content {
		left: 0;
	}
}

/* 背景オーバーレイ */
.nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.2);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 98;
}
/* 開いた時だけ表示 */
#drawer_input:checked ~ .nav-overlay {
	opacity: 1;
	pointer-events: auto;
}

/* メニュー内装飾 */
p.menu_btn {
  padding: 20px 0;
  margin: 30px 10%;;
  border: 1px solid #4d5f7a;
}

.nav_list {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}
.nav_item {
  padding: 3px 8%;
}
.nav_item a,
.nav_item span {
  display: block;
  padding: 10px 0;
  text-decoration: none;
}
.nav_item.item a {
	padding-left: 1em;
}

/* -----------------------------
	concept
----------------------------- */
#concept {
	background-color: #fff;
}
.concept_ttl {
	text-align: center;
}
.concept_ttl_01 {}
.concept_ttl_01 span {
	font-family: "Zen Old Mincho", serif;
	letter-spacing: 0.2em;
	color: #fff;
	background-color: #303b4c;
}
.concept_ttl_02 {
	font-family: "Zen Old Mincho", serif;
	letter-spacing: 0.2em;
}
.concept_txt {
	background-image: url('../img/sec_a1_02.png');
	background-position: 0 bottom;
	background-repeat: no-repeat;
	background-size: 100%;
}
.concept_txt_01 {
	line-height: 1.8;
	text-align: center;
}
.concept_boxL {
	float: left;
	width: 40%;
}
.concept_boxR {
	float: right;
	width: 60%;
}
p.concept_boxR_ttl {
	font-family: "EB Garamond", serif;
	color: #1a1f1d;
}
p.concept_boxR_txt {
	color: #767772;
}
p.concept_boxR_txtSub {
	color: #9c9d97;
}

p.concept_boxR_txt span.supText {
	font-size: 50%;
	vertical-align: top;
	position: relative;
	top: 0;
}
/* SP */
@media screen and (max-width: 750px) {
	.concept_ttl_01 {
		padding-top: 10vw;
	}
	.concept_ttl_01 span {
		font-size: 2vw;
		padding: 0 1.2em 2px;
	}
	.concept_ttl_02 {
		padding-top: 5vw;
		padding-bottom: 5vw;
	}
	.concept_txt {
		padding-bottom: 11vw;
	}
	.concept_txt_01 {
		padding-bottom: 4vw;
	}
	p.concept_img {
		margin-bottom: 20vw;
	}
	.concept_box {
		padding-bottom: 20vw;
	}
	p.concept_boxR_img {
		margin-bottom: 6vw;
	}
	p.concept_boxR_ttl,
	p.concept_boxR_txt {
		padding-left: 5vw;
		padding-right: 5vw;
		margin-bottom: 2vw;
	}
	p.concept_boxR_ttl {
		font-size: 6vw;
	}
	p.concept_boxR_txt {
		line-height: 1.5em;
		font-size: 3vw;
	}
	p.concept_boxR_txtSub {
		padding-left: 5vw;
		margin-bottom: 5vw;
		font-size: 2.5vw;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	.concept_ttl_01{
		padding-top: 100px;
	}
	.concept_ttl_01 span {
		font-size: 16px;
		padding: 0 16px 2px;
	}
	.concept_ttl_02 {
		line-height: 1.8;
		padding-top: 45px;
		padding-bottom: 45px;
	}
	.concept_txt {
		padding-bottom: 60px;
	}
	.concept_txt_01 {
		padding-bottom: 15px;
	}
	p.concept_img {
		margin-bottom: 100px;
	}
	.concept_box {
		padding-bottom: 100px;
	}
	p.concept_boxR_img {
		margin-bottom: 40px;
	}
	p.concept_boxR_ttl,
	p.concept_boxR_txt {
		padding-left: 50px;
		padding-right: 50px;
		margin-bottom: 15px;
	}
	p.concept_boxR_txtSub {
		padding-left: 50px;
		margin-bottom: 40px;
	}
	p.concept_boxR_ttl {
		font-size: 32px;
	}
	p.concept_boxR_txt {
		font-size: 18px;
		line-height: 1.5em;
	}
	p.concept_boxR_txtSub {
		font-size: 14px;
	}
}

/* SP */
@media screen and (max-width: 750px) {
	.concept_cart {
		background-color: #e9ebe7;
		padding-top: 10vw;
		padding-bottom: 10vw;
		background-image: url('../img/sec_a1_06_bg.png');
		background-position: 50% 10%;
		background-repeat: no-repeat;
		background-size: 50%;
	}
	.concept_cart_box {
		padding-left: 5vw;
		padding-right: 5vw;
	}
	.concept_cart_txt01 {
	}
	.concept_cart_txt01 span {
		color: #fff;
		background-color: #828775;
		border-radius: 1em;
		-webkit-border-radius: 1em;
		-moz-border-radius: 1em;
		padding: 0 1em 2px;
		font-size: 3.5vw;
		line-height: 1;
	}
	.concept_cart_txt02 {
		font-family: "Zen Old Mincho", serif;
		font-size: 9vw;
		margin-bottom: 5vw !important;
	}
	.concept_cart_txt03 {
		font-size: 4vw;
		margin-bottom: 2vw !important;
		padding-bottom: 1vw;
		border-bottom: 1px solid #d3d8c7;
	}
	.concept_cart_txt03 span {
		font-size: 70%;
	}
	.concept_cart_txt04 {
		font-size: 3vw;
		margin-bottom: 2vw !important;
	}
	.concept_cart_txt04 span {
		border: 1px solid #000;
		padding: 0 3vw 2px;
		background-color: #fff;
	}
	.concept_cart_txt05 {
		font-size: 6vw;
		font-family: "Zen Old Mincho", serif;
		margin-bottom: 5vw !important;
		text-align: right;
		line-height: 1.2;
	}
	.concept_cart_txt05 span {
		font-size: 70%;
	}
	.concept_cart_txt06 {
		font-size: 3vw;
		color: #767772;
	}
	.concept_cart_txt07 {
		font-size: 3vw;
		text-align: right;
		margin-bottom: 20vw !important;
	}
	.concept_cart_txt08 {
		font-size: 3vw;
		text-align: right;
	}
	.concept_cart_txt09 {
		font-size: 4vw;
		font-family: "Zen Old Mincho", serif;
		margin-bottom: 5vw !important;
		text-align: right;
	}
	.concept_cart_txt09 span {
		font-size: 70%;
	}
	
	.concept_cart_btn a,
	.concept_cart_btn2 a,
	.concept_cart_btn2 span,
	.concept_cart_btn3 a,
	.concept_cart_btn3 span {
		font-size: 6vw;
		display: block;
		text-align: center;
		color: #fff;
		padding: 5vw;
	}
	.concept_cart_btn a {
		background-color: #303b4c;
	}
	.concept_cart_btn2 a,
	.concept_cart_btn2 span,
	.concept_cart_btn3 a,
	.concept_cart_btn3 span {
		background-color: #9c9d97;
	}
	.concept_cart_btn {
		margin-bottom: 5vw !important;
	}
	.concept_cart_btn2,
	.concept_cart_btn3 {
		margin-bottom: 20vw !important;
	}

}
/* PC */
@media screen and (min-width: 751px) {
	.concept_cart {
		position: relative;
	}
	.concept_cart_btn {
		position: absolute;
		right: 7.5%;
	}
	.concept_cart_btn a {
		display: block;
		text-align: center;
		color: #fff;
		background-color: #303b4c;
	}
	.concept_cart_btn {
		bottom: 50px;
	}
	.concept_cart_btn a {
		width: 330px;
		height: 64px;
		line-height: 64px;
		font-size: 22px;
	}
}

/* -----------------------------
	feature
----------------------------- */
#feature {
	background-color: #fff;
}
/* SP */
@media screen and (max-width: 750px) {
	#feature {
		padding-bottom: 10vw;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	#feature {
		padding-bottom: 100px;
	}
}


/* ============ feature_box01 ============ */

.feature_box01_01 {}
.feature_box01_01 span {
	font-family: "Zen Old Mincho", serif;
	letter-spacing: 0.2em;
	color: #fff;
	background-color: #303b4c;
}
.feature_box01_02 {
	line-height: 1.2;
	font-family: "Zen Old Mincho", serif;
}
.feature_box01_02 span.supText {
	font-size: 28%;
	vertical-align: top;
	position: relative;
	top: 1em;
}
.feature_box01_03 {
	color: #3e403b;
}
.feature_box01_03 span.supText {
	font-size: 62%;
	vertical-align: top;
	position: relative;
	top: 0;
}
.feature_box01_04 {
	color: #9c9d97;
	padding-left: 2em;
	text-indent: -2em;
}
/* SP */
@media screen and (max-width: 750px) {
	.feature_box01 {
		padding-left: 8%;
		padding-right: 8%;
	}
	.feature_box01 {
		padding-bottom: 10vw;
	}
	.feature_box01_01 {
		padding-top: 13vw;
	}
	.feature_box01_01 span {
		font-size: 2vw;
		padding: 0 1.2em 2px;
	}
	.feature_box01_02 {
		padding-top: 8vw;
		letter-spacing: 0.05em;
	}
	.feature_box01_03 {
		padding-top: 8vw;
	}
	.feature_box01_04 {
		padding-top: 3vw;
		font-size: 3vw;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	.feature_box01 {
		padding-left: 7.5%;
		padding-right: 7.5%;
	}
	.feature_box01 {
		padding-bottom: 90px;
	}
	.feature_box01_01 {
		padding-top: 150px;
	}
	.feature_box01_01 span {
		font-size: 16px;
		padding: 0 16px 2px;
	}
	.feature_box01_02 {
		padding-top: 40px;
		line-height: 1.4;
	}
	.feature_box01_03 {
		padding-top: 30px;
		line-height: 1.7;
	}
	.feature_box01_04 {
		padding-top: 15px;
		line-height: 1.5;
		font-size: 14px;
	}
}

/* ============ feature_box02 ============ */
.feature_box02_txt{
	float: left;
	width: 63%;
}
.feature_box02_img{
	float: right;
	width: 37%;
}
.feature_box03_img {
	float: left;
	width: 37.5%;
}
.feature_box03_txt {
	float: right;
	width: 62.5%;
}



/* -----------------------------
	product
----------------------------- */

.product_box01 {
	background-image: url('../img/sec_a2_01_bg.png');
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100%;
}
.product_box01_txt01 {
	font-family: "Zen Old Mincho", serif;
	text-align: center;
	color: #1a1f1d;
}
.product_box01_txt02 {
	font-family: "EB Garamond", serif;
	text-align: center;
	color: #767772;
}
.product_box01_txt03 {
	text-align: center;
}
.product_box01_txt03 span {
	font-family: "EB Garamond", serif;
	background-color: #303b4c;
	padding: 2px 3em;
	color: #fff;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
.product_box01_txt04 {
	font-family: "Zen Old Mincho", serif;
	text-align: center;
	line-height: 1.5;
	color: #1a1f1d;
}
.product_box01_txt05 {
	text-align: center;
	line-height: 1.5;
	color: #30322e;
}
.product_box01_txt06 {
	text-align: center;
	line-height: 1.5;
	color: #9c9d97;
}
/* SP */
@media screen and (max-width: 750px) {
	.product_box01 {
		padding-top: 9vw;
		padding-bottom: 10vw
	}
	.product_box01_txt01 {
		padding-bottom: 3vw;
	}
	.product_box01_txt02 {
		padding-bottom: 2.5vw;
	}
	.product_box01_txt03 {
		font-size: 2vw;
		padding-bottom: 4.5vw;
	}
	.product_box01_txt04 {
		padding-bottom: 4.5vw;
	}
	.product_box01_txt05 {
		padding-bottom: 1.5vw;
	}
	.product_box01_txt06 {
		font-size: 3vw;
	}
	
}
/* PC */
@media screen and (min-width: 751px) {
	.product_box01 {
		padding-top: 70px;
		padding-bottom: 100px;
	}
	.product_box01_txt01 {
		padding-bottom: 16px;
	}
	.product_box01_txt02 {
		font-size: 32px;
		padding-bottom: 16px;
	}
	.product_box01_txt03 {
		padding-bottom: 37px;
	}
	.product_box01_txt03 span {
		font-size: 16px;
		line-height: 16px;
	}
	.product_box01_txt04 {
		padding-bottom: 23px;
	}
	.product_box01_txt05 {
		padding-bottom: 5px;
	}
	.product_box01_txt06 {
		font-size: 14px;
	}
}

.product_box02_L {
	float: left;
	width: 29%;
}

.product_box02_R {
	float: right;
	width: 71%;
}
.product_box02_R_txt01 {
	font-family: "Zen Old Mincho", serif;
	color: #1a1f1d;
}
.product_box02_R_txt02 {
	color: #3e403b;
}
.product_box02_R_txt03 {
	color: #9c9d97;
}
/* SP */
@media screen and (max-width: 750px) {
	.product_box02_L_txt {
		width: 90%;
		padding-left: 20%;
	}
	.product_box02 {
		margin-top: -2vw;
	}
	.product_box02_R_img {
		padding-bottom: 6vw;
	}
	.product_box02_R_txt01 {
		letter-spacing: 0.1em;
		padding-bottom: 2vw;
	}
	.product_box02_R_txt02 {
		letter-spacing: 0.2em;
		padding-right: 7%;
		padding-bottom: 2.4vw;
	}
	.product_box02_R_txt03 {
		font-size: 3vw;
		padding-left: 3em;
		text-indent: -3em;
		padding-right: 5%;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	.product_box02_L_txt {
		width: 53%;
		padding-left: 28%;
	}
	.product_box02 {
		margin-top: -17px;
	}
	.product_box02_R_img {
		padding-bottom: 42px;
	}
	.product_box02_R_txt01 {
		letter-spacing: 0.16em;
		padding-bottom: 17px;
	}
	.product_box02_R_txt02 {
		font-size: 18px;
		letter-spacing: 0.1em;
		line-height: 1.6;
		padding-right: 7%;
		padding-bottom: 22px;
	}
	.product_box02_R_txt03 {
		font-size: 14px;
		line-height: 1.5;
	}
}



.product_box03_R {
	float: right;
	width: 29%;
}
.product_box03_L {
	float: left;
	width: 71%;
}
.product_box03_L_txt01 {
	font-family: "Zen Old Mincho", serif;
	color: #1a1f1d;
}
.product_box03_L_txt02 {
	color: #3e403b;
}
.product_box03_L_txt03 {
	color: #9c9d97;
}
.product_box03_L_txt01 span.supText {
	font-size: 30%;
	vertical-align: top;
	position: relative;
	top: 1em;
}
.product_box02_R_txt02 span.supText,
.product_box03_L_txt02 span.supText {
	font-size: 50%;
	vertical-align: top;
	position: relative;
	top: 1em;
}
/* SP */
@media screen and (max-width: 750px) {
	.product_box03_R_txt {
		width: 50%;
		padding-left: 30%;
	}
	.product_box03 {
		margin-top: -2vw;
	}
	.product_box03_L_img {
		padding-bottom: 6vw;
		padding-top: 2vw;
	}
	.product_box03_L_txt01,
	.product_box03_L_txt02,
	.product_box03_L_txt03 {
		padding-left: 5vw;
	}
	.product_box03_L_txt01 {
		letter-spacing: 0.1em;
		padding-bottom: 2vw;
	}
	.product_box03_L_txt02 {
		letter-spacing: 0.2em;
		padding-right: 2%;
		padding-bottom: 2.4vw;
	}
	.product_box03_L_txt03 {
		font-size: 3vw;
		padding-left: 5em;
		text-indent: -3em;
		padding-right: 5%;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	.product_box03_R_txt {
		width: 28.5%;
		padding-left: 44%;
	}
	.product_box03 {
		margin-top: -16px;
	}
	.product_box03_L_img {
		padding-bottom: 42px;
		padding-top: 16px;
	}
	.product_box03_L_txt01,
	.product_box03_L_txt02,
	.product_box03_L_txt03 {
		padding-left: 40px;
	}
	.product_box03_L_txt01 {
		line-height: 1.5;
		padding-bottom: 17px;
	}
	.product_box03_L_txt02 {
		font-size: 18px;
		letter-spacing: 0.07em;
		line-height: 1.8;
		padding-right: 3%;
		padding-bottom: 12px;
	}
	.product_box03_L_txt03 {
		text-indent: -3em;
		padding-left: 6em !important;
		font-size: 13px;
		line-height: 1.5;
	}
}


.product_box04_L {
	float: left;
	width: 29%;
}

.product_box04_R {
	float: right;
	width: 71%;
}
.product_box04_R_txt01 {
	font-family: "Zen Old Mincho", serif;
	color: #1a1f1d;
}
.product_box04_R_txt02 {
	color: #3e403b;
}
.product_box04_R_txt03 {
	color: #9c9d97;
}
.product_box04_R_txt02 span.supText {
	font-size: 50%;
	vertical-align: top;
	position: relative;
	top: 1em;
}
/* SP */
@media screen and (max-width: 750px) {
	.product_box04_L_txt {
		width: 65%;
		padding-left: 20%;
	}
	.product_box04 {
		margin-top: -2vw;
	}
	.product_box04_R_img {
		padding-bottom: 6vw;
	}
	.product_box04_R_txt01 {
		letter-spacing: 0.1em;
		padding-bottom: 2vw;
	}
	.product_box04_R_txt02 {
		letter-spacing: 0.1em;
		padding-right: 7%;
		padding-bottom: 2.4vw;
	}
	.product_box04_R_txt03 {
		font-size: 3vw;
		padding-left: 3em;
		text-indent: -3em;
		padding-right: 5%;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	.product_box04_L_txt {
		width: 33%;
		padding-left: 35%;
	}
	.product_box04 {
		margin-top: -17px;
		padding-bottom: 150px;
	}
	.product_box04_R_img {
		padding-top: 17px;
		padding-bottom: 42px;
	}
	.product_box04_R_txt01 {
		letter-spacing: 0.16em;
		padding-bottom: 17px;
	}
	.product_box04_R_txt02 {
		font-size: 18px;
		letter-spacing: 0.05em;
		line-height: 1.6;
		padding-right: 6%;
		padding-bottom: 13px;
	}
	.product_box04_R_txt03 {
		font-size: 13px;
		line-height: 1.5;
	}
}



/* -----------------------------
	howto
----------------------------- */
.howto {
	text-align: center;
}
.howtoTtlBox_L {
	float: left;
	width: 50%;
	text-align: left;
}
.howtoTtlBox_R {
	float: right;
	width: 50%;
}
p.howto_txt01 {
	font-family: "EB Garamond", serif;
	color: #767772;
}
p.howto_txt01 span {
	font-size: 60%;
	background-color: #303b4c;
	color: #fff;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
p.howto_txt02 {
	font-family: "Zen Old Mincho", serif;
}

/* SP */
@media screen and (max-width: 750px) {
	p.howto_txt01,
	p.howto_txt02,
	p.howto_txt03{
		padding-left: 8%;
	}
	.howto {
		padding-bottom: 15vw;
	}
	.howto .decorated-block_inner {
		padding-top: 8vw;
		padding-bottom: 5vw;
	}
	p.howto_txt01 {
		font-size: 4.5vw;
		padding-bottom: 3vw;
	}
	p.howto_txt01 span {
		padding: 0 0.5em;
	}
	p.howto_txt02 {
		padding-bottom: 2vw;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	p.howto_txt01,
	p.howto_txt02,
	p.howto_txt03{
		padding-left: 15%;
		line-height: 1.5;
	}
	.howto {
		padding-bottom: 100px;
	}
	.howto .decorated-block_inner {
		padding-top: 70px;
		padding-bottom: 50px;
	}
	p.howto_txt01 {
		font-size: 25px;
		padding-bottom: 15px;
	}
	p.howto_txt01 span {
		padding: 0 10px;
	}
	p.howto_txt02 {
		padding-bottom: 10px;
	}
	p.howto_txt03 {
		font-size: 18px;
	}
}


.howto dl {
	margin: 0;
	padding-left: 5%;
	padding-right: 5%;
}
.howto dl dt {
	float: left;
	width: 30%;
	padding-left: 2.5%;
	padding-right: 2.5%;
}
.howto dl dd {
	float: left;
	width: 59%;
	padding-top: 5%;
	padding-left: 3%;
	padding-right: 3%;
	margin: 0;
	text-align: left;
}
.howto_step {
	font-family: "EB Garamond", serif;
	color: #9c9d97;
	border-bottom: 1px solid #d3d8c7;
}
p.howto_txt04 {
	color: #1a1f1d;
}
/* SP */
@media screen and (max-width: 750px) {
	p.howto_step {
		font-size: 3vw;
		padding-bottom: 1vw;
		margin-bottom: 1vw;
	}
	p.howto_step span {
		font-size: 5vw;
	}
	p.howto_step strong {
		font-size: 4vw;
		padding-left: 10px;
		font-weight: normal;
	}
	.howto02 {
		margin-top: 10vw;
	}
	p.howto_txt04 {
		letter-spacing: 0.1em;
		margin-bottom: 3vw;
	}
	.howto_dot img {
		width: 0.5vw;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	p.howto_step {
		font-size: 16px;
		padding-bottom: 12px;
		margin-bottom: 12px;
	}
	p.howto_step span {
		font-size: 24px;
	}
	p.howto_step strong {
		font-size: 25px;
		padding-left: 10px;
		font-weight: normal;
	}
	.howto02 {
		margin-top: 50px;
	}
	p.howto_txt04 {
		letter-spacing: 0.1em;
		line-height: 1.5;
		margin-bottom: 20px;
	}
	.howto_dot img {
		width: 3px;
	}
}





/* -----------------------------
	product
----------------------------- */
#product {
}
/* SP */
@media screen and (max-width: 750px) {
	#product {
		margin-bottom: 10vw;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	#product {
		margin-bottom: 50px;
	}
}
.product_box05 {
	background-image: url('../img/sec_a3_01_bg.png');
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100%;
}
.product_box05_txt01 {
	font-family: "Zen Old Mincho", serif;
	text-align: center;
	color: #1a1f1d;
}
.product_box05_txt02 {
	font-family: "EB Garamond", serif;
	text-align: center;
	color: #767772;
}
.product_box05_txt03 {
	text-align: center;
}
.product_box05_txt03 span {
	font-family: "EB Garamond", serif;
	background-color: #303b4c;
	padding: 2px 3em;
	color: #fff;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
.product_box05_txt04 {
	font-family: "Zen Old Mincho", serif;
	text-align: center;
	line-height: 1.2;
	color: #1a1f1d;
}
.product_box05_txt05 {
	text-align: center;
	line-height: 1.5;
	color: #30322e;
}

/* SP */
@media screen and (max-width: 750px) {
	.product_box05 {
		padding-top: 9vw;
		padding-bottom: 10vw
	}
	.product_box05_txt01 {
		padding-bottom: 3vw;
	}
	.product_box05_txt02 {
		padding-bottom: 2.5vw;
	}
	.product_box05_txt03 {
		font-size: 2vw;
		padding-bottom: 4.5vw;
	}
	.product_box05_txt04 {
		padding-bottom: 5vw;
	}
	.product_box05_txt05 {
	}
}
/* PC */
@media screen and (min-width: 751px) {
	.product_box05 {
		padding-top: 70px;
		padding-bottom: 100px;
	}
	.product_box05_txt01 {
		padding-bottom: 16px;
	}
	.product_box05_txt02 {
		font-size: 32px;
		padding-bottom: 16px;
	}
	.product_box05_txt03 {
		padding-bottom: 37px;
	}
	.product_box05_txt03 span {
		font-size: 16px;
		line-height: 16px;
	}
	.product_box05_txt04 {
		padding-bottom: 23px;
		line-height: 1.1;
		letter-spacing: 0.01em;
	}
	.product_box05_txt05 {
		line-height: 1.7;
	}
}

/* ============ product_box02 ============ */
.product_box06_L {
	float: left;
	width: 29%;
}
.product_box06_R {
	float: right;
	width: 71%;
}
.product_box06_R_txt01 {
	font-family: "Zen Old Mincho", serif;
	color: #1a1f1d;
}
.product_box06_R_txt02 {
	color: #3e403b;
}
.product_box06_R_txt03 {
	color: #9c9d97;
}
.product_box06_R_txt02 span.supText,
.product_box06_R_txt03 span.supText {
	font-size: 50%;
	vertical-align: top;
	position: relative;
	top: 1em;
}
/* SP */
@media screen and (max-width: 750px) {
	.product_box06_L_txt {
		width: 44%;
		padding-left: 38%;
	}
	.product_box06 {
		margin-top: -2vw;
	}
	.product_box06_R_img {
		padding-bottom: 6vw;
	}
	.product_box06_R_txt01 {
		letter-spacing: 0.1em;
		padding-bottom: 2vw;
	}
	.product_box06_R_txt02 {
		letter-spacing: 0.2em;
		padding-right: 7%;
		padding-bottom: 2.4vw;
	}
	.product_box06_R_txt03 {
		font-size: 3vw;
		padding-left: 3em;
		text-indent: -3em;
		padding-right: 5%;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	.product_box06_L_txt {
		width: 27%;
		padding-left: 45%;
	}
	.product_box06 {
		margin-top: -17px;
	}
	.product_box06_R_img {
		padding-bottom: 42px;
	}
	.product_box06_R_txt01 {
		letter-spacing: 0.16em;
		padding-bottom: 17px;
	}
	.product_box06_R_txt02 {
		font-size: 18px;
		letter-spacing: 0.1em;
		line-height: 1.6;
		padding-right: 7%;
		padding-bottom: 22px;
	}
	.product_box06_R_txt03 {
		font-size: 14px;
		line-height: 1.5;
	}
}

/* ============ product_box03 ============ */
.product_box07_R {
	float: right;
	width: 29%;
}
.product_box07_L {
	float: left;
	width: 71%;
}
.product_box07_L_txt01 {
	font-family: "Zen Old Mincho", serif;
	color: #1a1f1d;
}
.product_box07_L_txt02 {
	color: #3e403b;
}
.product_box07_L_txt03 {
	color: #9c9d97;
}
.product_box07_L_txt01 span.supText {
	font-size: 30%;
	vertical-align: top;
	position: relative;
	top: 1em;
}
.product_box07_L_txt02 span.supText {
	font-size: 50%;
	vertical-align: top;
	position: relative;
	top: 1em;
}
/* SP */
@media screen and (max-width: 750px) {
	.product_box07_R_txt {
		width: 49%;
		padding-left: 38%;
	}
	.product_box07 {
		margin-top: -2vw;
	}
	.product_box07_L_img {
		padding-bottom: 6vw;
		padding-top: 2vw;
	}
	.product_box07_L_txt01,
	.product_box07_L_txt02,
	.product_box07_L_txt03 {
		padding-left: 5vw;
	}
	.product_box07_L_txt01 {
		letter-spacing: 0.1em;
		padding-bottom: 2vw;
	}
	.product_box07_L_txt02 {
		letter-spacing: 0.2em;
		padding-right: 2%;
		padding-bottom: 2.4vw;
	}
	.product_box07_L_txt03 {
		font-size: 3vw;
		padding-left: 5em;
		text-indent: -3em;
		padding-right: 5%;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	.product_box07_R_txt {
		width: 28.5%;
		padding-left: 44%;
	}
	.product_box07 {
		margin-top: -16px;
	}
	.product_box07_L_img {
		padding-bottom: 42px;
		padding-top: 16px;
	}
	.product_box07_L_txt01,
	.product_box07_L_txt02,
	.product_box07_L_txt03 {
		padding-left: 40px;
	}
	.product_box07_L_txt01 {
		letter-spacing: 0.16em;
		padding-bottom: 17px;
	}
	.product_box07_L_txt02 {
		font-size: 18px;
		letter-spacing: 0.07em;
		line-height: 1.8;
		padding-right: 3%;
		padding-bottom: 12px;
	}
	.product_box07_L_txt03 {
		font-size: 13px;
		line-height: 1.5;
	}
}

/* ============ product_box08 ============ */
.product_box08_L {
	float: left;
	width: 29%;
}
.product_box08_R {
	float: right;
	width: 71%;
}
.product_box08_R_txt01 {
	font-family: "Zen Old Mincho", serif;
	color: #1a1f1d;
}
.product_box08_R_txt02 {
	color: #3e403b;
}
.product_box08_R_txt03 {
	color: #9c9d97;
}
.product_box08_R_txt02 span.supText {
	font-size: 50%;
	vertical-align: top;
	position: relative;
	top: 1em;
}
/* SP */
@media screen and (max-width: 750px) {
	.product_box08_L_txt {
		width: 46%;
		padding-left: 38%;
	}
	.product_box08 {
		margin-top: -2vw;
	}
	.product_box08_R_img {
		padding-bottom: 6vw;
	}
	.product_box08_R_txt01 {
		letter-spacing: 0.1em;
		padding-bottom: 2vw;
	}
	.product_box08_R_txt02 {
		letter-spacing: 0.1em;
		padding-right: 7%;
		padding-bottom: 2.4vw;
	}
	.product_box08_R_txt03 {
		font-size: 3vw;
		padding-left: 3em;
		text-indent: -3em;
		padding-right: 5%;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	.product_box08_L_txt {
		width: 28%;
		padding-left: 46%;
	}
	.product_box08 {
		margin-top: -17px;
	}
	.product_box08_R_img {
		padding-top: 17px;
		padding-bottom: 42px;
	}
	.product_box08_R_txt01 {
		letter-spacing: 0.16em;
		padding-bottom: 17px;
	}
	.product_box08_R_txt02 {
		font-size: 18px;
		letter-spacing: 0.05em;
		line-height: 1.6;
		padding-right: 6%;
		padding-bottom: 13px;
	}
	.product_box08_R_txt03 {
		font-size: 13px;
		line-height: 1.5;
	}
}

.product_box10_ttl,
.product_box11_ttl {
	font-family: "Zen Old Mincho", serif;
	position: relative;
	z-index: 2;
	color: #1a1f1d;
}
.product_box10_inner,
.product_box11_inner {
	position: relative;
	z-index: 1;
	color: #3e403b;
}
.product_box10_list li {
	float: left;
	padding-right: 2%;
	padding-bottom: 2%;
	width: 18%;
}
/* SP */
@media screen and (max-width: 750px) {
	.product_box10,
	.product_box11 {
		margin-left: 6%;
		margin-right: 6%;
	}
	.product_box10_ttl,
	.product_box11_ttl {
		font-size: 6vw;
		padding-top: 10vw;
		padding-bottom: 5vw;
		letter-spacing: 0.05em;
	}
	.product_box11_txt {
		letter-spacing: 0.1em;
		padding-bottom: 2vw;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	.product_box10,
	.product_box11 {
		margin-left: 10%;
		margin-right: 10%;
	}
	.product_box11 {
		padding-bottom: 100px;
	}
	.product_box10_ttl,
	.product_box11_ttl {
		font-size: 34px;
		line-height: 1.4;
		padding-top: 100px;
		padding-bottom: 50px;
		letter-spacing: 0.12em;
	}
	.product_box11_txt {
		font-size: 18px;
		line-height: 1.8;
		letter-spacing: 0.12em;
		padding-bottom: 20px;
	}
}


/* -----------------------------
	secA5
----------------------------- */
#cta {
	background-color: #fff;
}

/* ============ secA5_cart ============ */
.secA5_cart {
	position: relative;
}
.secA5_cart_btn1 {
	position: absolute;
	right: 7%;
	bottom: 39.5%;
}
.secA5_cart_btn1 a {
	display: block;
	text-align: center;
	color: #fff;
	background-color: #303b4c;
}
.secA5_cart_btn2 {
	position: absolute;
	left: 8%;
}
.secA5_cart_btn3 {
	position: absolute;
	right: 8%;
}
.secA5_cart_btn2,
.secA5_cart_btn3 {
	bottom: 8.5%;
}
.secA5_cart_btn2 a,
.secA5_cart_btn2 span,
.secA5_cart_btn3 a,
.secA5_cart_btn3 span {
	display: block;
	text-align: center;
	color: #fff;
	background-color: #9c9d97;
}
.secA5_cart_link1 {
	position: absolute;
	right: 7%;
	bottom: 36%;
	text-align: right;
}
.secA5_cart_link2 {
	position: absolute;
	right: 7%;
	bottom: 33%;
	text-align: right;
}
/* SP */
@media screen and (max-width: 750px) {
	.secA5_cart_btn1 a {
		width: 44vw;
		height: 9vw;
		line-height: 9vw;
		font-size: 4vw;
	}
	.secA5_cart_btn2 a,
	.secA5_cart_btn2 span,
	.secA5_cart_btn3 a,
	.secA5_cart_btn3 span {
		width: 39vw;
		height: 7vw;
		line-height: 7vw;
		font-size: 3vw;
	}
	.secA5_cart_link1,
	.secA5_cart_link2 {
		font-size: 2vw;
		letter-spacing: 0.1em;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	.secA5_cart_btn1 a {
		width: 330px;
		height: 64px;
		line-height: 64px;
		font-size: 22px;
	}
	.secA5_cart_btn2 a,
	.secA5_cart_btn2 span,
	.secA5_cart_btn3 a,
	.secA5_cart_btn3 span {
		width: 290px;
		height: 54px;
		line-height: 54px;
		font-size: 22px;
	}
	.secA5_cart_link1,
	.secA5_cart_link2 {
		font-size: 16px;
		letter-spacing: 0.1em;
	}
}



/* -----------------------------
	qa
----------------------------- */
.qa_box03 {
	text-align: center;
}
.qa_ttl {
  font-family: "EB Garamond", serif;
}
.qa_txt1 {
	font-family: "Zen Old Mincho", serif;
	text-align: center;
}
.qa_txt2 {
	font-family: "EB Garamond", serif;
	text-align: center;
	color: #a0a496;
}
/* SP */
@media screen and (max-width: 750px) {
	.qa_ttl {
		letter-spacing: 0.07em;
		padding-bottom: 4vw;
	}
	.qa_txt1 {
		font-size: 5vw;
		padding-bottom: 3vw;
	}
	.qa_txt2 {
		padding-bottom: 5vw;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	.qa_ttl {
		letter-spacing: 0.07em;
		padding-bottom: 45px;
	}
	.qa_txt1 {
		font-size: 28px;
		padding-bottom: 20px;
	}
	.qa_txt2 {
		font-size: 18px;
		padding-bottom: 45px;
	}
}

/* ============ secA5_menu ============ */
.secA5_menu {
	padding-right: 8%;
	padding-left: 8%;
	text-align: left;
}
.secA5_menu input[type="checkbox"].on-off {
	display: none;
}
.secA5_menu-label {
	display: block;
	cursor: pointer;
	position: relative;
	
	background-image: url('../img/ico_q.png');
	background-repeat: no-repeat;
	background-position: 0 50%;
	
	border-bottom: 1px dotted #babcb5;
}
/* 右側のアイコン設定（閉じている時：＋） */
.secA5_menu-label::after {
	content: '＋';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	color: #767772;
}
/* 【開いている時】アイコンを「－」に切り替え */
.secA5_menu input[type="checkbox"].on-off:checked + .secA5_menu-label::after {
	content: '－';
}
/* メニューの初期状態（閉じている） */
.secA5_menu-content {
	transition: all 0.4s ease;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	height: 0;
	opacity: 0;
}
/* 【開いている時】メニューを表示 */
.secA5_menu input[type="checkbox"].on-off:checked + .secA5_menu-label + .secA5_menu-content {
	height: auto;
	opacity: 1;
}
.secA5_menu-content p span.supText {
	font-size: 62%;
	vertical-align: top;
	position: relative;
	top: 0;
}
p.aq_inner_txt01 {
	color: #30322e;
}
p.aq_inner_txt02 {
	color: #9c9d97;
}

p.aq_inner_txt01 span.kome{
		font-size: 0.5em;
		vertical-align: text-top;
}

/* SP */
@media screen and (max-width: 750px) {
	.signature-menu {
		padding-bottom: 10vw;
	}
	.secA5_menu-label {
		background-size: auto 7vw;
		padding: 2vw 4vw 2vw 8vw;
		margin-bottom: 1vw;
	}
	.secA5_menu-label::after {
		font-size: 7vw;
	}
	.secA5_menu input[type="checkbox"].on-off:checked + .secA5_menu-label + .secA5_menu-content {
		padding: 1vw 0;
	}
	p.aq_inner_txt01,
	p.aq_inner_txt02 {
		padding-left: 8vw;
	}
	p.aq_inner_txt01 {
		margin-bottom: 2vw;
	}
	p.aq_inner_txt02 {
		font-size: 3vw;
		padding-left: 4em;
		text-indent: -1em;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	.signature-menu {
		padding-bottom: 50px;
	}
	.secA5_menu-label {
		background-size: auto 55px;
		line-height: 1.5;
		font-size: 24px;
		padding: 15px 40px 25px 65px;
		margin-bottom: 10px;
	}
	.secA5_menu-label::after {
		font-size: 40px;
	}
	.secA5_menu input[type="checkbox"].on-off:checked + .secA5_menu-label + .secA5_menu-content {
		padding: 10px 0;
	}
	p.aq_inner_txt01,
	p.aq_inner_txt02 {
		padding-left: 65px;
	}
	p.aq_inner_txt01 {
		line-height: 1.5;
		margin-bottom: 20px;
	}
	p.aq_inner_txt02 {
		font-size: 13px;
	}
}



/* -----------------------------
	shop list
----------------------------- */
.shoplist_ttl {
  font-family: "EB Garamond", serif;
	text-align: center;
}
.shoplist_txt {
	text-align: center;
}
/* SP */
@media screen and (max-width: 750px) {
	.shoplist {
		padding-top: 20vw;
		padding-bottom: 20vw;
	}
	.shoplist_ttl {
		letter-spacing: 0.07em;
		padding-bottom: 4vw;
	}
	.shoplist_txt {
	}
}
/* PC */
@media screen and (min-width: 751px) {
	.shoplist {
		padding-top: 150px;
		padding-bottom: 150px;
	}
	.shoplist_ttl {
		letter-spacing: 0.07em;
		padding-bottom: 25px;
	}
	.shoplist_txt {
		line-height: 1.5;
	}
}

/* -----------------------------
	news
----------------------------- */
.news {
	padding-right: 8%;
	padding-left: 8%;
}
.news_ttl {
	font-family: "EB Garamond", serif;
	text-align: center;
}
.news_box {
	border-bottom: 1px solid #b2b4ad;
}
.news_day {
	color: #9c9d97;
}
.news_txt {
	color: #30322e;
}
/* SP */
@media screen and (max-width: 750px) {
	.news {
		padding-top: 20vw;
		padding-bottom: 20vw;
	}
	.news_ttl {
		letter-spacing: 0.07em;
		padding-bottom: 4vw;
	}
	.news_day {
		padding-bottom: 1vw;
	}
	.news_txt {
		padding-bottom: 1vw;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	.news {
		padding-top: 150px;
		padding-bottom: 150px;
	}
	.news_ttl {
		letter-spacing: 0.07em;
		padding-bottom: 25px;
	}
	.news_day {
		padding-bottom: 5px;
	}
	.news_txt {
		line-height: 1.5;
		padding-bottom: 5px;
	}
}



/* -----------------------------
	成分 20260402 ここから
----------------------------- */
p.seibun_ttl {
	font-family: "EB Garamond", serif;
	text-align: center;
	letter-spacing: 0.07em;
}
p.seibun_inner {
	color: #30322e;
	line-height: 1.5;
}
.seibun_menu {
	padding-right: 8%;
	padding-left: 8%;
	text-align: left;
}
.seibun_menu input[type="checkbox"].on-off {
	display: none;
}
.seibun_label {
	display: block;
	cursor: pointer;
	position: relative;
	
	border-bottom: 1px dotted #babcb5;
}
.seibun_label::after {
	content: '＋';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	color: #767772;
}
.seibun_menu input[type="checkbox"].on-off:checked + .seibun_label::after {
	content: '－';
}
.seibun_content {
	transition: all 0.4s ease;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	height: 0;
	opacity: 0;
}
.seibun_menu input[type="checkbox"].on-off:checked + .seibun_label + .seibun_content {
	height: auto;
	opacity: 1;
}
.seibun_content p span.supText {
	font-size: 62%;
	vertical-align: top;
	position: relative;
	top: 0;
}
/* SP */
@media screen and (max-width: 750px) {
	.seibun {
		padding-top: 20vw;
		padding-bottom: 20vw;
	}
	p.seibun_ttl {
		padding-bottom: 4vw;
		font-size: 7vw;
	}
	p.seibun_inner {
		margin-bottom: 2vw;
		font-size: 2.5vw;
	}
	/* .seibun_menu {
		padding-bottom: 10vw;
	} */
	.seibun_label {
		padding: 2vw 4vw 2vw 2vw;
		margin-bottom: 1vw;
	}
	.seibun_label::after {
		font-size: 7vw;
	}
	.seibun_menu input[type="checkbox"].on-off:checked + .seibun_label + .seibun_content {
		padding: 1vw 0;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	.seibun {
		padding-top: 150px;
		padding-bottom: 140px;
	}
	p.seibun_ttl {
		padding-bottom: 45px;
		font-size: 56px;
	}
	p.seibun_inner {
		margin-bottom: 20px;
		font-size: 15px;
	}
	/* .seibun_menu {
		padding-bottom: 50px;
	} */
	.seibun_label {
		font-size: 24px;
		padding: 15px 40px 25px 15px;
		margin-bottom: 10px;
	}
	.seibun_label::after {
		font-size: 40px;
	}
	.seibun_menu input[type="checkbox"].on-off:checked + .seibun_label + .seibun_content {
		padding: 10px 0;
	}
}
/* -----------------------------
	成分 20260402 ここまで
----------------------------- */


/* -----------------------------
	footer
----------------------------- */
#footer {
	background-color: #e9ebe7;
	text-align: center;
}
.footer_logo_box {
	padding-right: 8%;
	padding-left: 8%;
}
.footer_logo01 {
	float: left;
	width: 12%;
}
.footer_logo02 {
	float: left;
	width: 12%;
	padding-right:2%;
}
.footer_logo03 {
	float: right;
	width: 10%;
}
/* SP */
@media screen and (max-width: 750px) {
	#footer {
		padding-bottom: 2vw;
	}
	.footer_logo_box {
		padding-top: 5vw;
		padding-bottom: 5vw;
	}
	.footer_link02 {
		font-size: 2.7vw;
		letter-spacing: 0.1em;
		padding-bottom: 5vw;
	}
	.footer_copy {
		font-size: 2vw;
	}
}
/* PC */
@media screen and (min-width: 751px) {
	#footer {
		padding-bottom: 10px;
	}
	.footer_logo_box {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.footer_link02 {
		font-size: 19px;
		letter-spacing: 0.1em;
		padding-bottom: 50px;
	}
	.footer_copy {
		font-size: 15px;
	}
}

/* -----------------------------
	clearfix
----------------------------- */
.cfx:after{
	content: ".";
	display: block;
	height: 0;
	font-size:0;
	clear: both;
	visibility:hidden;
}
.cfx{
	display: inline-block;
} 
/* Hides from IE Mac */
* html .cfx{
	height: 1%;
}
.cfx{
	display:block;
}
/* End Hack */
