@charset "utf-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

dd {
    display: block;
    margin-inline-start: 0;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

body {
	line-height:1;
    margin: 0;
    padding: 0;
}

html { line-height: 0;}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}

nav ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

a,
a:visited{
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
    text-decoration: none;
    color: #fff;
}

a:hover,
a:active {
    color: #fff;
}

a:hover {
	opacity: 0.6;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}


del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

input, select {
	vertical-align:middle;
}

li,ul {
	list-style: none;
}


/*****************

clearfix

*****************/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	min-height: 1%;
}

/* Hides from IE-mac */
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */



/***********   COMMON settng ***********/
html {font-size: 17px;}
body {
    font-family: 'Jost', 'Noto Sans JP', '游ゴシック体', 'YuGothic', 'Yu Gothic medium', 'Hiragino Sans', 'Meiryo', sans-serif;
	font-size: 17px;
    line-height: 2.0;
	text-align: left;
    background: #f5f2e8;
    -webkit-text-size-adjust: 100%;
	color: #000;
	line-break: strict;
}

.pc_disp {display: block;}
.sp_disp {display: none;}
.pc_img {display: inline-block;}
.sp_img {display: none;}


.left { float: left;}
.right { float: right;}

img {
	width: 100%;
	height:auto;
	line-height: 0;
	vertical-align: middle;
}
main {
	margin: 0;
}

section {
	margin: auto;
	padding: 80px 0;
}

.inner_box-M {
	max-width: 1100px;
	width: 85%;
	margin: auto;
}
.inner_box-S {
	max-width: 1000px;
	width: 85%;
	margin: auto;
}




/***********   ANNIMATION settng ***********/

.fadein_lead {
    opacity : 0;
    transform : translate(0, 0);
    transition : all 1500ms;
    }
 
.fadein_lead.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }

/* 上下フェードイン設定 */

.fadein {
    opacity : 0;
    transform : translate(0, 20px);
    transition : all 1200ms;
    }
 
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }

/* 上下ぬるりと表示設定 */

.fadein_ttl {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 500ms;
    }
 
.fadein_ttl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }
 
/* キャッチコピー */
.fv .slide-in {
	overflow: hidden;
	display: block;
}

.fv .slide-in_inner {
	display: block;

}

.fv .topAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.fv .slideAnimeTopBottom {
	animation-name:slideTextY100;
	animation-duration:1.2s;
	animation-delay: 0.5s;
	animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes slideTextY100 {
  from {
	transform: translateY(-100%); /*要素を左の枠外に移動*/
	opacity: 0;
  }
  to {
	transform: translateY(0);/*要素を元の位置に移動*/
	opacity: 1;
  }
}
.fv .slideAnimeBottomTop {
	animation-name:slideTextY-100;
	animation-duration:1.2s;
	animation-delay: 0.5s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes slideTextY-100 {
  from {
  transform: translateY(100%);/*要素を右の枠外に移動*/
  opacity: 0;
  }
  to {
  transform: translateY(0);/*要素を元の位置に移動*/
  opacity: 1;
  }
}


/* ポンとフェードインするアニメーション */

.reason-img {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.reason-img.active {
  opacity: 1;
  transform: translateY(0);
}

.reason_item1,.reason_item2,.reason_item3,.reason_item4,.reason_item5 {
  opacity: 0;
  transform: scale(0.6);
}

/* ポンッと出るアニメーション */
@keyframes popUp {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* アクティブ時に順番に遅延アニメ */
.reason-img.active .reason_item1 { animation: popUp 0.6s ease forwards 0.2s; }
.reason-img.active .reason_item2 { animation: popUp 0.6s ease forwards 1.2s; }
.reason-img.active .reason_item3 { animation: popUp 0.6s ease forwards 2.2s; }
.reason-img.active .reason_item4 { animation: popUp 0.6s ease forwards 3.2s; }
.reason-img.active .reason_item5 { animation: popUp 0.6s ease forwards 4.2s; }


/* ポンとフェードインするアニメーション */

.fact_box-img1,.fact_box-img2 {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.fact_box-img1.active, .fact_box-img2.active {
  opacity: 1;
  transform: translateY(0);
}

.tryptophan-item1,.tryptophan-item2,.tryptophan-item3,
.quercetin-item1, .quercetin-item2, .quercetin-item3 {
  opacity: 0;
  transform: scale(0.6);
}

@keyframes popUp2 {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* アクティブ時に順番に遅延アニメ */
.fact_box-img1.active .tryptophan-item1 { animation: popUp2 0.6s ease forwards 0.2s; }
.fact_box-img1.active .tryptophan-item2 { animation: popUp2 0.6s ease forwards 1.2s; }
.fact_box-img1.active .tryptophan-item3 { animation: popUp2 0.6s ease forwards 2.2s; }

.fact_box-img2.active .quercetin-item1 { animation: popUp2 0.6s ease forwards 0.2s; }
.fact_box-img2.active .quercetin-item2 { animation: popUp2 0.6s ease forwards 1.2s; }
.fact_box-img2.active .quercetin-item3 { animation: popUp2 0.6s ease forwards 2.2s; }


/* スライドインするアニメ */

.slide-in {
	overflow: hidden;
	display: inline-block;
}

.slide-in_inner {
	display: inline-block;
}

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:0.7s;
  animation-fill-mode:forwards;
    opacity: 0;
    opacity: 0;
}
@keyframes slideTextX100 {
  from {
  transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name:slideTextX-100;
  animation-duration:0.7s;
  animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX-100 {
  from {
  transform: translateX(100%);/*要素を右の枠外に移動*/
  opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
  opacity: 1;
  }
}


/***********   TEXT SETTING ***********/

.txt-XL {font-size: 2.6rem; line-height: 1.3;}
.txt-L {font-size: 2.0rem; line-height: 1.5;}
.txt-M {font-size: 1.3rem; line-height: 1.5;}
.txt-S {font-size: 0.7rem;}
.txt-cnt { text-align: center; }
.txt-right { text-align: right; display: block;}

.white { color:#fff; }
.green { color:#004d0c; }
.brown { color:#d6a56a; }

.mincho { font-family: "Shippori Mincho", serif; }

strong { font-weight:700; }


/*********** TITLE SETTING ***********/

.ttl_box-green, .ttl_box-brown {
	margin-bottom: 2.0em;
}
.ttl_box-green .fixbox, .ttl_box-brown .fixbox {
	overflow: hidden;
}
.ttl_box-green .en, .ttl_box-brown .en {
	position: relative;
	color: #417b5e;
	padding:0 0 0 50px;
	font-size: 20px;
	font-weight: 700;
}
.ttl_box-brown .en {
	color: #d6a56a;
}
.ttl_box-green .en:before, .ttl_box-brown .en:before{
	position: absolute;
	content: "";
	width: 40px;
	height: 1px;
	background: #417b5e;
	top: 1.0em;
	left: 0;
}
.ttl_box-brown .en:before {
	background: #d6a56a;
}

.ttl_box-green h2, .ttl_box-brown h2 {
	font-family: "Shippori Mincho", serif;
	font-size: 45px;
	font-weight: 400;
	line-height: 1.5;
}
.ttl_box-brown h2 {
	color: #fff;
}

h3 {
	font-family: "Shippori Mincho", serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0;
}



/*********** OBJECT SETTING ***********/

.bg_white { background:#fff; }

.col2_box,.col3_box {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.col3_box {
	justify-content:flex-start;
}
.col2_box li {
	width: 48%;
	margin: 0 0 50px 0;
}
.col3_box li {
	width:calc(100% / 3);
}

.img_box {
	width: 100%;
	border-radius: 40px;
	overflow: hidden;
}
.txt_box p {
	margin-top:1.0em;
}

/*********** HEADER ***********/

.h-logo {
	position: absolute;
	width: 145px;
	top: 20px;
	left: 35px;
	z-index: 9999;
}
.h-cv {
	position: fixed;
	width: 120px;
	top: 35px;
	right: 30px;
	z-index: 9999;
}

/*********** KV SETTING ***********/

.fv {
	position: relative;
	width: 100%;
}
.fv-video {
	width: 80%;
	margin: 50px auto 0;
}
.fv-video video {
	width: 100%;
}
.fv .fv-cc {
	position: absolute;
	width: 115px;
	top: 40px;
	left: 330px;
}
.fv .fv-scroll {
	position: absolute;
	width: 190px;
	top: 420px;
	right: 20px;
}
.fv .fv-scroll img:first-child {
	position: relative;
}
.fv .fv-scroll img:last-child {
	position: absolute;
	top: 0;
	left: 0;
	animation: rotation 15s linear infinite;
}
.fv .fv-en {
	position: absolute;
	width: 68%;
	bottom: -30px;
	left: 0;
	right: 0;
	margin: auto;
}

.lead_anime_box {
	font-size:35px;
	color: #417b5e;
	margin: 1.5em auto;
	font-weight: 600;
	letter-spacing: 0.05em;
}

/* アニメーション */
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


@media screen and (max-width: 1280px) {
	
.fv-video {
	width: 85%;
	margin: 70px auto 0;
}
.fv-video video {
	width: 100%;
}
.fv .fv-cc {
	position: absolute;
	width: 100px;
	top: 25px;
	left: 280px;
}
.fv .fv-scroll {
	position: absolute;
	width: 150px;
	top: 350px;
	right: 20px;
}
.fv .fv-scroll img:first-child {
	position: relative;
}
.fv .fv-scroll img:last-child {
	position: absolute;
	top: 0;
	left: 0;
	animation: rotation 15s linear infinite;
}
.fv .fv-en {
	position: absolute;
	width: 68%;
	bottom: -30px;
	left: 0;
	right: 0;
	margin: auto;
}
	
}


/*********** MESSAGE ***********/

.message_box {
	position: relative;
}
.message_box .message_box-img {
	position: absolute;
    width: 800px;
    top: 0;
    right: 50%;
    margin: 0 0 0 -750px;
}
.message_box .message_box-cont {
	width: 655px;
	margin: 0 0 0 auto;
}
.message_box .txt_box p {
	position: relative;
	line-height: 2.3;
}


/*********** ABOUT ***********/

.about {
	padding-bottom: 0;
}

.about .article_box h3 {
	margin: 1.0em auto 0.3em;
}
.about .col2_box li .img_box {
	width: 90%;
	margin: auto;
}
.about .col2_box li .img_box img {
	margin: 25px auto;
}
.about .bg_area-feature {
	width: 100%;
	height: 140px;
	background: url("../images/bg_area-feature.png") no-repeat center / 100% 140px;
}


/*********** FEATURE ***********/

.feature {
	position: relative;
	background: #619068;
	padding-bottom: 0;
}
.feature_box-lead {
	text-align: center;
	margin: 1.5em auto 4.0em;
}
.feature_box-lead-label {
	color: #ffc47e;
}
.feature_box-lead-label span {
	display: inline-block;
	padding: 0 1.0em;
	margin: 1.0em 0.3em;
	background: #508558;
	border-radius: 30px;
}

.reason-img {
	position: relative;
	padding: 0 0 80px 0;
}
.reason-img .main {
	max-width: 750px;
	width: 80%;
	margin: auto;
}
.reason-img .reason-icon1 {
	position: absolute;
	width: 215px;
	top: 100px;
	left: 60px;
}
.reason-img .reason-icon2 {
	position: absolute;
	width: 215px;
	bottom: 35px;
	left: 20px;
}
.reason-img .reason-icon3 {
	position: absolute;
	width: 215px;
	top: 100px;
	right: 40px;
}
.reason-img .reason-icon4 {
	position: absolute;
	width: 215px;
	bottom: 35px;
	right: 20px;
}
.reason-img .reason-icon5 {
	position: absolute;
	width: 215px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.slider {
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}
.slider div {
	display: block;
	width: 210px; /* 画像サイズ */
	height: auto;
	padding: 50px 0;
}
.slider div:nth-child(2n) {
	margin-top: 70px;
}

.bx-wrapper, .bx-viewport {
	max-width: 100% !important;
	width: 100% !important;
}

.article_box-layout1 .col2_box li:first-child,
.article_box-layout2 .col2_box li:last-child {
	width: calc(100% - 535px);
}
.article_box-layout1 .col2_box li:last-child,
.article_box-layout2 .col2_box li:first-child {
	width: 470px;
}

.article_box-layout1 .col2_box li:first-child .feature_box-point_ttl,
.article_box-layout2 .col2_box li:last-child .feature_box-point_ttl {
	position: relative;
	width: 100%;
	padding: 0 0 10px 0;
	margin: 0 0 30px 0;
	box-sizing: border-box;
}
.article_box-layout2 .col2_box li:last-child .feature_box-point_ttl {
	padding: 0 0 10px 25px;
}
.article_box-layout1 .col2_box li:first-child .feature_box-point_ttl::before {
	position: absolute;
	content: "";
	width: calc(100% - 1px);
	height: 2px;
	bottom: 0;
	left: 0;
	background: #d6a56a;
}
.article_box-layout1 .col2_box li:first-child .feature_box-point_ttl::after {
	position: absolute;
	content: "";
	width: 15px;
	height: 2px;
	bottom: 6px;
	right: 0;
	background: #d6a56a;
	transform: rotate(45deg);
}
.article_box-layout2 .col2_box li:last-child .feature_box-point_ttl::before {
	position: absolute;
	content: "";
	width: calc(100% - 1px);
	height: 2px;
	bottom: 0;
	right: 0;
	background: #d6a56a;
}
.article_box-layout2 .col2_box li:last-child .feature_box-point_ttl::after {
	position: absolute;
	content: "";
	width: 15px;
	height: 2px;
	bottom: 6px;
	left: 0;
	background: #d6a56a;
	transform: rotate(-45deg);
}
.article_box-layout1 .col2_box li .txt_box {
	width: calc(100% - 25px);
}
.article_box-layout2 .col2_box li .txt_box {
	width: calc(100% - 25px);
	margin: 0 0 0 auto;
}
.check_box {
	margin: 0 0 70px 0;
}
.check_box .check_box-frame {
	background: #508558;
	border-radius: 20px;
	padding: 1.0em 3.0em 1.8em;
	margin-top: -1.0em;
	box-sizing: border-box;
	line-height: 1.5;
}
.check_box .check_box-frame .col2_box li {
	width: 45%;
	margin: 1.5em 0 0 0;
	padding-left: 30px;
	box-sizing: border-box;
	background: url("../images/icon_check.png") no-repeat center left / 22px;
	align-content: center;
}
.check_box .check_box-frame .col2_box li {
	margin: 1.0em 0 0 0;
}

.fact_box {
	margin: 80px auto 0;
}
.fact_box-ttl {
	width: 400px;
	margin: auto;
}
.fact_box-frame {
	background: #d6a56a;
	padding: 50px 110px 20px;
	margin-top: -45px;
	box-sizing: border-box;
	border-radius: 250px 250px 0 0;
}
.fact_box-subttl {
	text-align: center;
	line-height: 1.5;
	margin-bottom: 1.0em;
}
.fact_box-subttl h3 {
	display: inline;
	border-bottom: 1px solid #fff;
}
.fact_box-frame article {
	margin: 50px 0;
}
.fact_box-img1 {
	position: relative;
	width: 90%;
	margin: auto;
}
.fact_box-img1 .tryptophan-icon1,
.fact_box-img1 .tryptophan-icon2,
.fact_box-img1 .tryptophan-icon3 {
	position: absolute;
	max-width: 220px;
	width: 25%;
}
.fact_box-img1 .tryptophan-icon1 {
	top: 0;
	left: 0;
}
.fact_box-img1 .tryptophan-icon2 {
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.fact_box-img1 .tryptophan-icon3 {
	top: 0;
	right: 0;
}
.fact_box-img2 {
	position: relative;
	width: 55%;
	height: 240px;
	margin: auto;
	display: block;
}
.fact_box-img2 .quercetin-icon1 {
	position: absolute;
	max-width: 220px;
	width: 40%;
	top: 10px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 99;
}
.fact_box-img2 .quercetin-icon2 {
	position: absolute;
	max-width: 200px;
	width: 35%;
	bottom: 20px;
	left: 0;
	z-index: 98;
}
.fact_box-img2 .quercetin-icon3 {
	position: absolute;
	max-width: 200px;
	width: 35%;
	bottom: 20px;
	right: 0;
	z-index: 98;
}

.howto_box {
	margin: 80px auto 0;
}
.howto_box-ttl {
	width: 330px;
	margin: auto;
}
.howto_box-frame {
	background: #46774d;
	padding: 50px 110px 200px;
	margin-top: -50px;
	box-sizing: border-box;
	border-radius: 250px 250px 0 0;
}
.howto_box-frame .col3_box {
	justify-content: space-between;
}
.howto_box-frame .col3_box li {
	width: 30%;
	margin: 1.5em auto;
	line-height: 1.5;
}
.howto_box-lead {
	text-align: center;
	color: #ffcd56;
	line-height: 1.5;
}
.feature .bg_area-howto {
	position: absolute;
	width: 100%;
	height: 140px;
	bottom: 0;
	left: 0;
	background: url("../images/bg_area-howto.png") no-repeat center / 100% 140px;
}


/*********** RECIPE ***********/

.recipe {
	background: #f4e3c3;
	padding-bottom: 280px;
}
.recipe_box-ttl {
	position: relative;
	font-size: 35px;
	text-align: center;
	line-height: 1.5;
	margin-bottom: 70px;
}
.recipe_box-ttl p {
	position: relative;
	z-index: 99;
}
.recipe_box-ttl span {
	font-size: 1.8em;;
}
.recipe_box-ttl::before {
	position: absolute;
	content: "";
	width: 480px;
	height: 220px;
	top: 2.0em;
	left: 0;
	right: 0;
	margin: auto;
	background: url("../images/img_recipe_ttl.png") no-repeat center / contain;
	z-index: 98;
}

.recipe_box-cont {
	width: 85%;
	margin: auto;
}
.recipe .col3_box {
	position: relative;
	z-index: 99;
}
.recipe .col3_box li {
	width: calc(100% / 3);
	padding: 2% 4%;
	box-sizing: border-box;
}
.recipe .col3_box li:nth-of-type(2){
	margin-top: 60px;
}
.recipe .recipe-accordion_content>.col3_box li:nth-of-type(2) {
	margin-top: 0;
}
.recipe .recipe-accordion_content>.col3_box li:nth-of-type(3n) {
	margin-top: 60px;
}
.recipe_box-cont h4 {
	font-family: "Shippori Mincho", serif;
	color: #417b57;
	font-size: 24px;
	line-height: 1.3;
	margin: 0.5em 0 0 0;
}
.recipe_box-cont .txt_box {
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 0.5em;
}
.recipe_box-cont .tag {
	font-size: 13px;
}
.recipe_box-cont .tag span {
	background: #fff;
	padding: 0 0.7em;
	border-radius: 50px;
	display: inline-block;
	margin-right: 0.5em;
	line-height: 1.5;
}
.recipe_box-cont .btn-ig {
	color: #417b57;
	font-size: 15px;
	line-height: 2.5;
	font-weight: 700;
	display: inline-block;
	border-bottom: 2px solid #417b57;
	margin-top: 0.5em;
}
.recipe_box-cont .btn-ig img {
	width: 20px;
	vertical-align: middle;
	margin: 0 0.5em 0.5em 0;
}


/* アコーディオン */

.recipe-accordion_content {
	overflow: hidden;
	max-height: 0;
	transition: max-height 1.0s ease;
}

/* 開閉ボタン */
.recipe-accordion_toggle {
	display: block;
	width: 220px;
	border: none;
	background: #417b5e;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	margin: 30px auto 0;
	padding: 0.4em 0.8em;
	cursor: pointer;
	transition: background 0.2s;
	border-radius: 100px;
}

.recipe-accordion.open .recipe-accordion_toggle::before {
	content: "閉じる";
}

.recipe-accordion:not(.open) .recipe-accordion_toggle::before {
	content: "開く";
}


/*********** FAQ ***********/

.faq {
	overflow: hidden;
	margin-top: -180px;
	padding: 0;
}
.faq .faq_cont-top {
	width: 100%;
	height: 180px;
	background: url("../images/bg_area_faq-top.png") no-repeat center / 100% 180px;
}
.faq .faq_cont-bottom {
	width: 100%;
	height: 180px;
	background: url("../images/bg_area_faq-bottom.png") no-repeat center / 100% 180px;
}
.faq .faq_cont-body {
	background: #fff;
}


/*アコーディオン全体*/
.faq .accordion-area{
    list-style: none;
    width: 100%;
}
.faq .accordion-area li{
    padding: 0.5em 0;
}

/*アコーディオンタイトル*/
.faq .title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
	width: 100%;
    padding: 0.2em 0 0.5em;
    transition: all .5s ease;
	background-size: 65px;
	line-height: 1.5;
	box-sizing: border-box;
}
.faq .title img {
	width: 65px;
	margin-right: 15px;
	float: left;
}
.faq .title span {
	width: calc(100% - 80px);
	background: #eeeeee;
	border-radius: 30px;
	padding: 1.25em 2.5em;
	margin-left: 80px;
	font-weight: 700;
	display: block;
	box-sizing: border-box;
}

/*アイコンの＋と×*/
.faq .title::before,
.faq .title::after{
    position: absolute;
    content:'';
    width: 14px;
    height: 2px;
    background-color: #333333;
}
.faq .title::before{
    top:49%;
    right: 25px;
    transform: rotate(0deg);
}
.faq .title::after{    
    top:49%;
    right: 25px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.faq .title.close::before{
  	top:49%;
    right: 25px;
    transform: rotate(0deg);
}
.faq .title.close::after{
	display: none;
}

/*アコーディオンで現れるエリア*/
.faq .answer_box {
    display: none;/*はじめは非表示*/
  	margin: 0 0 0 80px;
	padding: 1.25em 2.5em;
	background: #fff9e1;
	border-radius: 30px;
	font-size: 15px;
}


/*********** PRODUCT ***********/

.product .col2_box li:first-child {
	width: 440px;
}
.product .col2_box li:last-child {
	width: calc(100% - 480px);
	font-size: 15px;
	line-height: 1.7;
}
.product-price {
	margin: 2.0em 0 0;
	color: #417b57;
}
.product-price .product-price_txt {
	margin-bottom: 1.0em;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.0;
}
.product-price .product-price_txt .price-L {
	font-size: 40px;
}
.product-price .product-price_txt .price-S {
	font-size: 15px;
}
.table_box-product {
	width: 100%;
	border: 1px solid #dadada;
	background: #f3f3f3;
	font-size: 13px;
	margin-top: 1.0em;
}
.table_box-product th {
	border: 1px solid #dadada;
	background: #333333;
	color: #fff;
	text-align: center;
	font-weight: 400;
}
.table_box-product th,.table_box-product td {
	padding: 0.2em 2.3em;
	box-sizing: border-box;
}
.table_box-product td:nth-child(even) {
	text-align: right;
}
.table_box-product .table_bg-white {
	background: #fff;
}

.product .cv_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 1.0em auto;
	
}
.product .cv_box div {
	width: 48.5%;
}
.product .cv_box_txt {
	margin: 2.0em auto 0;
}



/*********** FOOTER SETTING ***********/

footer {
	text-align: center;
}
.f-img {
	width: 100%;
	height: 520px;
	background: url("../images/img_footer_main.png") top center / cover;
	border-radius: 100px;
	text-align: center;
	margin-bottom: 50px;
}
.f-logo {
	width: 180px;
	margin: 20px auto;
}
.f-copy {
	font-size: 10px;
	margin: 20px auto;
}


@media screen and (max-width: 999px) {

/***********   COMMON settng ***********/
html {font-size: 15px;}
body {
    font-family: 'Jost', 'Noto Sans JP', '游ゴシック体', 'YuGothic', 'Yu Gothic medium', 'Hiragino Sans', 'Meiryo', sans-serif;
	font-size: 15px;
    line-height: 2.0;
	text-align: left;
    background: #f5f2e8;
    -webkit-text-size-adjust: 100%;
	color: #000;
	line-break: strict;
}
	
	

/*********** TITLE SETTING ***********/

.ttl_box-green, .ttl_box-brown {
	margin-bottom: 2.0em;
}
.ttl_box-green .en, .ttl_box-brown .en {
	padding:0 0 0 50px;
	font-size: 18px;
}
.ttl_box-green .en:before, .ttl_box-brown .en:before{
	position: absolute;
	content: "";
	width: 40px;
	height: 1px;
	top: 1.0em;
	left: 0;
}
.ttl_box-green h2, .ttl_box-brown h2 {
	font-family: "Shippori Mincho", serif;
	font-size: 35px;
}

h3 {
	font-family: "Shippori Mincho", serif;
	font-size: 22px;
	font-weight: 400;
}

	
/*********** HEADER ***********/

.h-logo {
	width: 110px;
	top: 20px;
	left: 35px;
	z-index: 9999;
}
.h-cv {
	position: fixed;
	width: 100px;
	top: 20px;
	right: 20px;
	z-index: 9999;
}

/*********** KV SETTING ***********/
	
.fv-video {
	width: 90%;
	margin: 70px auto 0;
}
.fv .fv-cc {
	position: absolute;
	width: 90px;
	top: 0;
	left: 200px;
}
.fv .fv-scroll {
	position: absolute;
	width: 130px;
	top: 520px;
	right: 20px;
}
.fv .fv-scroll img:first-child {
	position: relative;
}
.fv .fv-scroll img:last-child {
	position: absolute;
	top: 0;
	left: 0;
	animation: rotation 15s linear infinite;
}
.fv .fv-en {
	position: absolute;
	width: 80%;
	bottom: -30px;
	left: 0;
	right: 0;
	margin: auto;
}
	
.lead_anime_box {
	font-size:28px;
	letter-spacing: 0.1em;
	color: #417b5e;
	margin: 1.0em auto;
}
	
	
/*********** MESSAGE ***********/

.message_box {
	position: relative;
}
.message_box .message_box-img {
	position: absolute;
    width: 500px;
    top: 0;
    right: 50%;
    margin: 0 0 0 -500px;
}
.message_box .message_box-cont {
	width: 65%;
	margin: 0 0 0 auto;
}
.message_box .txt_box p {
	position: relative;
	line-height: 2.3;
}
	
	
.about .bg_area-feature {
	width: 100%;
	height: 100px;
	background: url("../images/bg_area-feature.png") no-repeat center / 100% 100px;
}
	
	
/*********** FEATURE ***********/
	
.reason-img {
	position: relative;
	padding: 0 0 80px 0;
}
.reason-img .main {
	max-width: 750px;
	width: 80%;
	margin: auto;
}
.reason-img .reason-icon1 {
	position: absolute;
	width: 160px;
	top: 100px;
	left: 60px;
}
.reason-img .reason-icon2 {
	position: absolute;
	width: 160px;
	bottom: 35px;
	left: 20px;
}
.reason-img .reason-icon3 {
	position: absolute;
	width: 160px;
	top: 100px;
	right: 40px;
}
.reason-img .reason-icon4 {
	position: absolute;
	width: 160px;
	bottom: 35px;
	right: 20px;
}
.reason-img .reason-icon5 {
	position: absolute;
	width: 160px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.article_box-layout1 .col2_box li:first-child,
.article_box-layout2 .col2_box li:last-child {
	width: 50%;
}
.article_box-layout1 .col2_box li:last-child,
.article_box-layout2 .col2_box li:first-child {
	width: 47%;
}

.article_box-layout1 .col2_box li:first-child .feature_box-point_ttl,
.article_box-layout2 .col2_box li:last-child .feature_box-point_ttl {
	position: relative;
	width: 100%;
	padding: 0 0 10px 0;
	margin: 0 0 30px 0;
	box-sizing: border-box;
}
.article_box-layout2 .col2_box li:last-child .feature_box-point_ttl {
	padding: 0 0 10px 25px;
}
.article_box-layout1 .col2_box li:first-child .feature_box-point_ttl::before {
	position: absolute;
	content: "";
	width: calc(100% - 1px);
	height: 2px;
	bottom: 0;
	left: 0;
	background: #d6a56a;
}
.article_box-layout1 .col2_box li:first-child .feature_box-point_ttl::after {
	position: absolute;
	content: "";
	width: 15px;
	height: 2px;
	bottom: 6px;
	right: 0;
	background: #d6a56a;
	transform: rotate(45deg);
}
.article_box-layout2 .col2_box li:last-child .feature_box-point_ttl::before {
	position: absolute;
	content: "";
	width: calc(100% - 1px);
	height: 2px;
	bottom: 0;
	right: 0;
	background: #d6a56a;
}
.article_box-layout2 .col2_box li:last-child .feature_box-point_ttl::after {
	position: absolute;
	content: "";
	width: 15px;
	height: 2px;
	bottom: 6px;
	left: 0;
	background: #d6a56a;
	transform: rotate(-45deg);
}
.article_box-layout1 .col2_box li .txt_box {
	width: calc(100% - 25px);
}
.article_box-layout2 .col2_box li .txt_box {
	width: calc(100% - 25px);
	margin: 0 0 0 auto;
}

.fact_box {
	width: 90%;
	margin: 80px auto 0;
}
.fact_box-ttl {
	width: 300px;
	margin: auto;
}
.fact_box-frame {
	background: #d6a56a;
	padding: 40px 40px 10px;
	margin-top: -25px;
	box-sizing: border-box;
	border-radius: 250px 250px 0 0;
}
.fact_box-frame article {
	margin: 50px 0;
}
.howto_box {
	width: 90%;
	margin: 80px auto 0;
}
.howto_box-ttl {
	width: 270px;
	margin: auto;
}
.howto_box-frame {
	background: #46774d;
	padding: 40px 40px 150px;
	margin-top: -50px;
	box-sizing: border-box;
	border-radius: 250px 250px 0 0;
}
.howto_box-frame .col3_box li {
	width: 30%;
	margin: 3.0em auto;
	line-height: 1.5;
}
.howto_box-lead {
	text-align: center;
	color: #ffcd56;
	line-height: 1.5;
}

.feature .bg_area-howto {
	position: absolute;
	width: 100%;
	height: 100px;
	bottom: 0;
	left: 0;
	background: url("../images/bg_area-howto.png") no-repeat center / 100% 100px;
}

/*********** RECIPE ***********/

.recipe {
	background: #f4e3c3;
	padding-bottom: 280px;
}
.recipe_box-ttl {
	position: relative;
	font-size: 30px;
	text-align: center;
	line-height: 1.5;
	margin-bottom: 70px;
}
.recipe_box-ttl span {
	font-size: 1.7em;;
}
.recipe_box-ttl::before {
	position: absolute;
	content: "";
	width: 450px;
	height: 210px;
	top: 2.0em;
	left: 0;
	right: 0;
	margin: auto;
	background: url("../images/img_recipe_ttl.png") no-repeat center / contain;
	z-index: 98;
}

.recipe_box-cont {
	width: 100%;
	margin: auto;
}
.recipe .col3_box {
	position: relative;
	z-index: 99;
}
.recipe .col3_box li {
	width: calc(100% / 3);
	padding: 2% 2%;
	box-sizing: border-box;
}
.recipe .col3_box li:nth-child(3n-1) {
	margin-top: 50px;
}
.recipe_box-cont h4 {
	font-family: "Shippori Mincho", serif;
	color: #417b57;
	font-size: 20px;
	line-height: 1.3;
	margin: 0.5em 0 0 0;
}
.recipe_box-cont .txt_box {
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 0.5em;
}
.recipe_box-cont .tag {
	font-size: 11px;
}
.recipe_box-cont .btn-ig {
	color: #417b57;
	font-size: 13px;
	line-height: 2.5;
	font-weight: 700;
	display: inline-block;
	border-bottom: 2px solid #417b57;
	margin-top: 0.5em;
}
.recipe_box-cont .btn-ig img {
	width: 17px;
	vertical-align: middle;
	margin: 0 0.5em 0.5em 0;
}
	

/*********** FAQ ***********/

.faq {
	overflow: hidden;
	margin-top: -150px;
	padding: 0;
}
.faq .faq_cont-top {
	width: 100%;
	height: 150px;
	background: url("../images/bg_area_faq-top.png") no-repeat center / 100% 150px;
}
.faq .faq_cont-bottom {
	width: 100%;
	height: 150px;
	background: url("../images/bg_area_faq-bottom.png") no-repeat center / 100% 150px;
}
.faq .faq_cont-body {
	background: #fff;
}

/*アコーディオンタイトル*/
.faq .title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
	width: 100%;
    padding: 0.2em 0 0.5em;
    transition: all .5s ease;
	background-size: 55px;
	line-height: 1.5;
	box-sizing: border-box;
}
.faq .title img {
	width: 57px;
	margin-right: 15px;
	float: left;
}
.faq .title span {
	width: calc(100% - 70px);
	background: #eeeeee;
	border-radius: 30px;
	padding: 1.25em 2.5em;
	margin-left: 80px;
	font-weight: 700;
	display: block;
	box-sizing: border-box;
}

/*アイコンの＋と×*/
.faq .title::before,
.faq .title::after{
    position: absolute;
    content:'';
    width: 14px;
    height: 2px;
    background-color: #333333;
}
.faq .title::before{
    top:46%;
    right: 15px;
    transform: rotate(0deg);
}
.faq .title::after{    
    top:46%;
    right: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.faq .title.close::before{
  	top:46%;
    right: 15px;
    transform: rotate(0deg);
}
.faq .title.close::after{
	display: none;
}

/*アコーディオンで現れるエリア*/
.faq .answer_box {
    display: none;/*はじめは非表示*/
  	margin: 0 0 0 80px;
	padding: 1.25em 2.5em;
	background: #fff9e1;
	border-radius: 30px;
	font-size: 15px;
}
	
/*********** PRODUCT ***********/

.product .col2_box li:first-child {
	width: 70%;
	margin: auto;
}
.product .col2_box li:last-child {
	width: 100%;
}
.product-price {
	margin: 2.0em 0 0;
	color: #417b57;
}


/*********** FOOTER SETTING ***********/

.f-img {
	width: 100%;
	height: 350px;
	background: url("../images/img_footer_main.png") top center / cover;
	border-radius: 100px;
	text-align: center;
	margin-bottom: 50px;
}
.f-logo {
	width: 140px;
	margin: 20px auto;
}

}


@media screen and (max-width: 767px) {
    
.pc_disp {display: none;}
.sp_disp {display: block;}
.pc_img {display: none;}
.sp_img {display: inline-block;}
	
	
/***********   COMMON settng ***********/
html {font-size: 14px;}
body {
    font-family: 'Jost', 'Noto Sans JP', '游ゴシック体', 'YuGothic', 'Yu Gothic medium', 'Hiragino Sans', 'Meiryo', sans-serif;
	font-size: 14px;
    line-height: 2.0;
	text-align: left;
    background: #f5f2e8;
    -webkit-text-size-adjust: 100%;
	color: #000;
	line-break: strict;
}
	
	

/***********   TEXT SETTING ***********/

.txt-XL {font-size: 2.6rem; line-height: 1.3;}
.txt-L {font-size: 2.0rem; line-height: 1.5;}
.txt-M {font-size: 1.2rem; line-height: 1.5;}
.txt-S {font-size: 0.7rem;}
	
	
/*********** TITLE SETTING ***********/

.ttl_box-green, .ttl_box-brown {
	margin-bottom: 2.0em;
}
.ttl_box-green .en, .ttl_box-brown .en {
	padding:0 0 0 35px;
	font-size: 12px;
}
.ttl_box-green .en:before, .ttl_box-brown .en:before{
	position: absolute;
	content: "";
	width: 25px;
	height: 1px;
	top: 1.0em;
	left: 0;
}
.ttl_box-green h2, .ttl_box-brown h2 {
	font-family: "Shippori Mincho", serif;
	font-size: 23px;
	letter-spacing: 0;
}

h3 {
	font-family: "Shippori Mincho", serif;
	font-size: 17px;
	font-weight: 400;
}
	
/*********** HEADER ***********/

.h-logo {
	width: 70px;
	top: 10px;
	left: 10px;
	z-index: 9999;
}
.h-cv {
	position: fixed;
	width: 65px;
	top: 15px;
	right: 10px;
	z-index: 9999;
}
	
	
/*********** KV SETTING ***********/
	
.fv {
	overflow: hidden;
	padding-bottom: 0;
}
.fv-video {
	width: 90%;
	margin: 70px auto 0;
}
.fv .fv-cc {
	position: absolute;
	width: 65px;
	top: 100px;
	left: 40px;
}
.fv .fv-scroll {
	position: absolute;
	width: 100px;
	top: auto;
	bottom: 0;
	right: 10px;
}
.fv .fv-en {
	position: absolute;
	width: 100%;
	bottom: 15px;
	left: -3%;
	right: auto;
	margin: auto;
}
	
	
.lead_anime_box {
	font-size:18px;
	letter-spacing: 0.05em;
	color: #417b5e;
	margin: 0 auto;
}
	
/*********** MESSAGE ***********/

.message {
	padding: 20px 0;
	overflow: hidden;
}
.message_box .message_box-img {
	position: absolute;
    width: 120%;
    top: 15%;
    right: -30%;
	left: 0;
    margin: auto;
	z-index: 98;
}
.message_box .message_box-cont {
	position: relative;
	width: 100%;
	margin: 0 0 0 auto;
	z-index: 99;
}
.message_box .message_box-cont .ttl_box-green {
	margin-bottom: 85%;
}
.message_box .txt_box p {
	position: relative;
	line-height: 2.0;
}
	


/*********** ABOUT ***********/

.about {
	padding: 30px 0 0;
}

.about h3 {
	margin: 2.0em auto 0.3em;
}
.about .col2_box li {
	width: 100%;
	margin: auto;
}
	
.about .img_box_sp1 {
	width: 80%;
	margin: 7% auto 7% 0;
}
.about .img_box_sp2 {
	width: 80%;
	margin: 7% 0 7% auto;
}
.about .bg_area-feature {
	width: 100%;
	height: 40px;
	background: url("../images/bg_area-feature_sp.png") no-repeat center / 100% 40px;
	margin-top: 50px;
	margin-bottom: -1px;
}

	
/*********** FEATURE ***********/
	
.feature {
	position: relative;
	background: #619068;
	padding: 40px 0 0;
}
.feature_box-lead {
	text-align: center;
	margin: 1.5em auto 4.0em;
}
.feature_box-lead-label {
	color: #ffc47e;
	margin: 0.5em 0;
}
.feature_box-lead-label span {
	display: inline-block;
	padding: 0 1.0em;
	margin: 0.3em 0.3em;
	background: #508558;
	border-radius: 30px;
	line-height: 1.5;
}

.reason-img {
	position: relative;
	padding: 0 0 20% 0;
}
.reason-img .main {
	width: 80%;
	margin: auto;
}
.reason-img .reason-icon1 {
	position: absolute;
	width: 40%;
	top: 12%;
	right: 0;
	left: auto;
}
.reason-img .reason-icon2 {
	position: absolute;
	width: 40%;
	top: 17%;
	bottom: auto;
	left: -5%;
}
.reason-img .reason-icon3 {
	position: absolute;
	width: 40%;
	top: auto;
	bottom: 0%;
	right: 0;
}
.reason-img .reason-icon4 {
	position: absolute;
	width: 40%;
	bottom: 12%;
	right: auto;
	left: 0;
}
.reason-img .reason-icon5 {
	position: absolute;
	width: 40%;
	bottom: 35%;
	left: 0;
	right: -5%;
	margin: auto;
}

.slider {
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	overflow: hidden;
}
.slider div {
	display: block;
	width: 140px; /* 画像サイズ */
	height: auto;
}
.slider div:nth-child(2n) {
	margin-top: 70px;
}

.bx-wrapper, .bx-viewport {
	max-width: 100% !important;
	width: 100% !important;
}

.article_box-layout1 .col2_box li:first-child,
.article_box-layout2 .col2_box li:last-child {
	width: 100%;
	order: 2;
}
.article_box-layout1 .col2_box li:last-child,
.article_box-layout2 .col2_box li:first-child {
	width: 85%;
	order: 1;
	margin: 0 auto 1.5em;
}

.article_box-layout1 .col2_box li:first-child .feature_box-point_ttl,
.article_box-layout2 .col2_box li:last-child .feature_box-point_ttl {
	position: relative;
	width: 100%;
	padding: 0 0 10px 0;
	margin: 0 0 20px 0;
	box-sizing: border-box;
}
.article_box-layout2 .col2_box li:last-child .feature_box-point_ttl {
	padding: 0 0 10px 0;
}
.article_box-layout1 .col2_box li:first-child .feature_box-point_ttl::before {
	position: absolute;
	content: "";
	width: calc(100% - 1px);
	height: 2px;
	bottom: 0;
	left: 0;
	background: #d6a56a;
}
.article_box-layout1 .col2_box li:first-child .feature_box-point_ttl::after {
	position: absolute;
	content: "";
	width: 15px;
	height: 2px;
	bottom: 6px;
	right: 0;
	background: #d6a56a;
	transform: rotate(45deg);
}
.article_box-layout2 .col2_box li:last-child .feature_box-point_ttl::before {
	position: absolute;
	content: "";
	width: calc(100% - 1px);
	height: 2px;
	bottom: 0;
	left: 0;
	background: #d6a56a;
}
.article_box-layout2 .col2_box li:last-child .feature_box-point_ttl::after {
	position: absolute;
	content: "";
	width: 15px;
	height: 2px;
	bottom: 6px;
	left: auto;
	right: 0;
	background: #d6a56a;
	transform: rotate(45deg);
}
.article_box-layout1 .col2_box li .txt_box {
	width: 100%;
}
.article_box-layout2 .col2_box li .txt_box {
	width: 100%;
	margin: 0 0 0 auto;
}
	
.check_box {
	margin: -35px 0 50px 0;
}
.check_box .check_box-frame {
	background: #508558;
	border-radius: 20px;
	padding: 1.0em 1.5em 1.8em;
	margin-top: -1.0em;
	box-sizing: border-box;
	line-height: 1.5;
}
.check_box .check_box-frame .col2_box li {
	width: 100%;
	margin: 1.5em 0 0 0;
	padding-left: 20px;
	box-sizing: border-box;
	background: url("../images/icon_check.png") no-repeat center left / 13px;
	align-content: center;
	font-size: 12px;
}
.check_box .check_box-frame .col2_box li {
	margin: 1.0em 0 0 0;
}

.fact_box {
	width: 95%;
	margin: 80px auto 0;
}
.fact_box-ttl {
	width: 260px;
	margin: auto;
}
.fact_box-frame {
	background: #d6a56a;
	padding: 10px 20px 5px;
	margin-top: -45px;
	box-sizing: border-box;
	border-radius: 250px 250px 0 0;
}
.fact_box-frame article {
	margin: 50px 0;
}
	
.fact_box-img1 {
	position: relative;
	width: 90%;
	margin: auto;
}
.fact_box-img1 .tryptophan-icon1,
.fact_box-img1 .tryptophan-icon2,
.fact_box-img1 .tryptophan-icon3 {
	position: absolute;
	width: 32%;
}
.fact_box-img1 .tryptophan-icon1 {
	top: 0;
	left: 1%;
}
.fact_box-img1 .tryptophan-icon2 {
	top: 36%;
	left: 0;
	right: 0;
	margin: auto;
}
.fact_box-img1 .tryptophan-icon3 {
	top: 0;
	right: 1%;
}
	
.fact_box-img2 {
	position: relative;
	width: 90%;
	height: auto;
	padding-bottom: 45%;
	margin: auto;
	display: block;
}
.fact_box-img2 .quercetin-icon1 {
	position: absolute;
	max-width: 220px;
	width: 40%;
	top: 10px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 99;
}
.fact_box-img2 .quercetin-icon2 {
	position: absolute;
	max-width: 200px;
	width: 35%;
	bottom: 0;
	left: 0;
	z-index: 98;
}
.fact_box-img2 .quercetin-icon3 {
	position: absolute;
	max-width: 200px;
	width: 35%;
	bottom: 0;
	right: 0;
	z-index: 98;
}
.howto_box {
	width: 95%;
	margin: 70px auto 0;
}
.howto_box-ttl {
	width: 200px;
	margin: auto;
}
.howto_box-frame {
	background: #46774d;
	padding: 40px 20px 80px;
	margin-top: -30px;
	box-sizing: border-box;
	border-radius: 250px 250px 0 0;
}
.howto_box-frame .col3_box li {
	width: 80%;
	margin: 1.0em auto;
	line-height: 1.5;
	font-size: 12px;
}
.howto_box-frame .col3_box li .txt-M {
	font-size: 15px;
	margin: 0 0 0.5em 0;
	letter-spacing: 0.05em;
}
.howto_box-lead {
	text-align: center;
	color: #ffcd56;
	line-height: 1.5;
}

.feature .bg_area-howto {
	position: absolute;
	width: 100%;
	height: 40px;
	bottom: -1px;
	left: 0;
	background: url("../images/bg_area-howto_sp.png") no-repeat center / 100% 40px;
}	
	
	
/*********** RECIPE ***********/

.recipe {
	background: #f4e3c3;
	padding-bottom: 220px;
}
.recipe_box-ttl {
	position: relative;
	font-size: 18px;
	text-align: center;
	line-height: 1.5;
	margin-bottom: 50px;
}
.recipe_box-ttl span {
	font-size: 1.5em;;
}
.recipe_box-ttl::before {
	position: absolute;
	content: "";
	width: 220px;
	height: 90px;
	top: 2.0em;
	left: 0;
	right: 0;
	margin: auto;
	background: url("../images/img_recipe_ttl.png") no-repeat center / contain;
	z-index: 98;
}

.recipe .col3_box li {
	width: calc(100% / 2);
	padding: 5% 4% 0 0;
	box-sizing: border-box;
}
.recipe .col3_box li:nth-child(3n-1){
	margin-top: 0;
}
.recipe .col3_box li:nth-of-type(2){
	margin-top: 60px;
	padding: 5% 0 0 4%;
}
.recipe .recipe-accordion_content>.col3_box li:nth-of-type(3n) {
	margin-top: 0;
}
.recipe .recipe-accordion_content>.col3_box li:nth-of-type(2n) {
	margin-top: 50px;
	padding: 5% 0 0 4%;
}

.recipe_box-cont h4 {
	font-family: "Shippori Mincho", serif;
	color: #417b57;
	font-size: 16px;
	line-height: 1.3;
	margin: 0.5em 0 0 0;
}
.recipe_box-cont .txt_box {
	font-size: 12px;
	line-height: 1.5;
	margin-bottom: 0.5em;
}
.recipe_box-cont .tag {
	font-size: 10px;
}
.recipe_box-cont .btn-ig {
	color: #417b57;
	font-size: 11px;
	line-height: 2.5;
	font-weight: 700;
	display: inline-block;
	border-bottom: 2px solid #417b57;
	margin-top: 0.5em;
}
.recipe_box-cont .btn-ig img {
	width: 15px;
	vertical-align: middle;
	margin: 0 0.5em 0.5em 0;
}
	
/*********** FAQ ***********/

.faq {
	overflow: hidden;
	margin-top: -150px;
	padding: 0;
}
.faq .faq_cont-top {
	width: 100%;
	height: 55px;
	background: url("../images/bg_area_faq-top.png") no-repeat center / 100% 55px;
}
.faq .faq_cont-bottom {
	width: 100%;
	height: 55px;
	background: url("../images/bg_area_faq-bottom.png") no-repeat center / 100% 55px;
}
.faq .faq_cont-body {
	background: #fff;
	padding: 40px 0;
}

/*アコーディオンタイトル*/
.faq .title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
	width: 100%;
    padding: 0.2em 0 0.5em;
    transition: all .5s ease;
	line-height: 1.5;
	box-sizing: border-box;
}
.faq .title img {
	width: 28px;
	margin-right: 12px;
	float: left;
}
.faq .title span {
	width: calc(100% - 40px);
	background: #eeeeee;
	border-radius: 14px;
	padding: 1.0em 2.0em 1.0em 1.0em;
	margin-left: 40px;
	font-weight: 700;
	display: block;
	box-sizing: border-box;
}

/*アイコンの＋と×*/
.faq .title::before,
.faq .title::after{
    position: absolute;
    content:'';
    width: 10px;
    height: 2px;
    background-color: #333333;
}
.faq .title::before{
    top:46%;
    right: 15px;
    transform: rotate(0deg);
}
.faq .title::after{    
    top:46%;
    right: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.faq .title.close::before{
  	top:46%;
    right: 15px;
    transform: rotate(0deg);
}
.faq .title.close::after{
	display: none;
}

/*アコーディオンで現れるエリア*/
.faq .answer_box {
    display: none;/*はじめは非表示*/
  	margin: 0 0 0 40px;
	padding: 1.0em;
	background: #fff9e1;
	border-radius: 14px;
	font-size: 13px;
}
	

/*********** PRODUCT ***********/

.product .col2_box li:first-child {
	width: 70%;
	margin: auto;
}
.product .col2_box li:last-child {
	width: 100%;
	font-size: 13px;
	margin-bottom: 0;
}
.product-price {
	margin: 2.0em 0 0;
	color: #417b57;
}
	
.table_box-product {
	width: 100%;
	border: 1px solid #dadada;
	background: #f3f3f3;
	font-size: 12px;
	margin-top: 1.0em;
	box-sizing: border-box;
}
.table_box-product th {
	border: 1px solid #dadada;
	background: #333333;
	color: #fff;
	text-align: center;
	font-weight: 400;
}
.table_box-product th,.table_box-product td {
	padding: 0.3em 0.8em;
	box-sizing: border-box;
}
.product-price .product-price_txt {
	margin-bottom: 1.0em;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
}
.product-price .product-price_txt .price-L {
	font-size: 30px;
}
.product-price .product-price_txt .price-S {
	font-size: 13px;
}

.product .cv_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 1.0em auto 2.0em;
	
}
.product .cv_box div {
	width: 49%;
}
.product .cv_box_txt {
	margin: 2.5em auto 0;
}


/*********** FOOTER SETTING ***********/

.f-img {
	width: 100%;
	height: 430px;
	background: url("../images/img_footer_main_sp.png") top center / cover;
	border-radius: 60px;
	text-align: center;
	margin-bottom: 50px;
}
.f-logo {
	width: 100px;
	margin: 20px auto;
}


	
}



