@charset "utf-8";
/*
Theme Name: welcart_basic-child
Template: welcart_basic
*/

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;
}

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

ul,ol {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}


/* change colours to suit your needs */

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}


/* change colours to suit your needs */

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

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

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


/* change border colour to suit your needs */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}




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

ここまでリセット

*************************************************************/
/*共通*/
/*全体のフォントサイズを指定、remでbodyに引っ張られないようにする*/
html {
	 font-size: 62.5%;
}

body {
	font-size: 1.8rem;
	line-height: normal;/*詰まりすぎを防ぐ*/
	color: #000;
    font-family: 'Noto Sans JP', sans-serif;
}
/*全体のフォントサイズを指定*/



a{
	color: #f36913;
	text-decoration: none;
	transition: 0.5s;
}
a:hover{
	  opacity: 0.8;
  filter: alpha(opacity=80);
}

a:hover img{
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

.clearfix:after{
  display: table;
  clear: both;
  content: "";
}

div,
a,
input{
	box-sizing: border-box;
}

img{
	max-width: 100%;
	vertical-align: bottom;
}



.main_visual{
    text-align: center;
    background-color: #acd9c1;
    padding: 10px 0 20px 0;
}


section{
    max-width: 1000px;
    margin: 20px auto 60px auto;
}
@media screen and (max-width: 768px){
    section{
        width: 96%;
    }
}

section h2{
    background-color: #e95098;
    color: #fff;
    font-weight: normal;
    font-size: 2.0rem;
    padding: 10px;
    margin-bottom: 20px;
}

.sec1>p:nth-of-type(1){
    text-align: center;
    margin: 20px 0 20px 0;
}

.nutritional{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.nutritional li{
    margin: 0 50px;
    font-size: 2.0rem;
    text-align: center;
}
@media screen and (max-width: 768px){
    .nutritional li{
        width: 45%;
        margin: 0 2% 20px 2%;
    }
}

.nutritional li span:nth-of-type(1){
    display: block;
    border-bottom: solid 1px #c1c1c1;
    padding-bottom: 10px;
}

.nutritional li span:nth-of-type(2){
    font-size: 3.0rem;
    font-weight: bold;
    margin: 0 10px;
    color: #e95098;
}


.efficacy{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.efficacy li{
    background-color: #009944;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    border-radius: 3px;
    margin: 0 20px;
    line-height: 1;
    box-sizing: border-box;
}
@media screen and (max-width: 768px){
    .efficacy li{
        width: 43%;
        margin: 10px 2%;
    }
}

.sec1>p:nth-of-type(2){
    text-align: center;
    margin: 20px;
    font-size: 2.8rem;
    color: #e95098;
    font-weight: bold;
}




.feature li{
    margin-bottom: 10px;
    border-bottom: solid 1px #e1e1e1;
    padding-bottom: 10px;
}

.feature li span{
    color: #e95098;
}
@media screen and (max-width: 768px){
    .feature li span{
        display: block;
    }
}

.recipe{
    padding: 0 20px;
}
@media screen and (max-width: 768px){
    .recipe{
        padding: 0;
    }
}

.recipe .ttl{
    text-align: center;
    margin: 20px auto;
    border-top: dotted 2px #a33702;
    border-bottom: dotted 2px #a33702;
    padding: 10px;
}

.recipe .ttl span{
    display: block;
}

.recipe .ttl span:nth-of-type(2){
    font-size: 2.8rem;
    color: #c55800;
    margin-top: 5px;
    font-weight: bold;
}
    
.recipe>div{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.make{
    width: 60%;
}
@media screen and (max-width: 768px){
    .make{
        width: 100%;
        margin-bottom: 20px;
    }
}

.make dt{
    color: #e95098;
    font-weight: bold;
    margin-bottom: 5px;
}

.make dd{
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: 5px;
}

.material{
    width: 35%;
}
@media screen and (max-width: 768px){
    .material{
        width: 100%;
    }
}

.material p{
    color: #e95098;
    font-weight: bold;
    margin-bottom: 5px;
}

.material img{
    display: block;
    margin-top: 10px;
}

.btn a{
    display: block;
    width: 400px;
    background-color: #e63f12;
    margin: 30px auto 0 auto;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    line-height: 1;
    border-radius: 6px;
    color: #fff;    
}
@media screen and (max-width: 768px){
    .btn a{
        width: 300px;
    }
}


footer{
    background-color: #e95098;
    color: #fff;
    text-align: center;
    padding: 10px;
}