﻿@charset "UTF-8";
/* ================================================ */
/*               全体設定                */
/* ================================================ */

body {

/*CSSだけで全体をフェードイン  ここから（bodyの中と@）*/
    animation: fadeIn 2s ease  0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
html, body,h1, h2, h3, h4, h5, h6,
div, p, blockquote, pre, address,
ul, ol, li, dl, dt, dd,
table, th, td {
	margin: 0;
	padding: 0;
	font-family:
		"Hiragino Mincho ProN","Mshtakan","Athelas",
		"游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
		"メイリオ", Meiryo,
		"ヒラギノ角ゴ Pro W3",
		"HIragino Kaku Gothic Pro W3",
		"HIragino Kaku Gothic Pro",
		Osaka,
		"ＭＳ Ｐゴシック", "MS P Gothic",
		sans-serif;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/*CSSだけで全体をフェードイン、ここまで
（bodyの中と、@keyframes fadeIn、@-webkit-keyframes fadeIn）*/

.container{
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
}

p{
	line-height: 23px;
	color: #474747;
	letter-spacing: 1px;
	font-family: "Hiragino Mincho ProN";
}

h1{
	color: #474747;
}

*{
	box-sizing: border-box;

}

/*スクロールした時にふわっと表示ここから*/
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 1.5s;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/*ここまで*/



/*=============================
		PC : 画面の横幅が890px以上*/
@media screen and (min-width: 890px){
.sp, .tb ,.pc2{
	display: none;

}
}

/*=============================
	PC 2 : 画面の横幅が769~889pxまで*/
@media screen and (min-width:769px) and (max-width: 889px){
.sp, .tb ,.pc{
	display: none;

}	
}


/*==============================
	Tablet : 画面の横幅が641~768pxまで*/

@media screen and (min-width:641px) and (max-width: 768px){

.pc,.pc2,.sp{
	display: none;
}

}

/*==============================
		Smartphone :  画面の横幅が640pxまで*/
@media screen and (max-width:640px){
.pc,.pc2,.tb{
	display: none;
}

.text{
	display: inline-block;/*<span>で囲ったところ、レスポンシブに応じて改行する*/
}

}

/* ================================================ */
/*header*/
/* ================================================ */

header{
	background-color: rgba(255,255,255,0.9);
	box-shadow: 0px 1px 15px #c4c3c3;
	height: 80px;
	width:100%;
	margin: 0 auto;
	position: fixed;
	z-index: 10;
}

.header-contents{
	padding-top: 3px;
	max-width: 800px;
	height: 100%;
	margin: 0 auto;
}

.header-logo{
	float: left;
}

.header-logoimg{
	float: left;
	width: 100px;
}

.header-text{
	padding-left: 107px;
	padding-top: 14px;
}
.header-text p{
	font-size: 10px;
}
.header-text h3{
	font-size: 15px;
}

.header-btn{
	float: right;
}

.header-btn a{
	display: block;
	color:#fff;
	width: 300px;
	height: 45px;
	line-height: 45px;
	border-radius: 30px;
	background-color: #01671a;
	text-decoration: none;
	text-align: center;
	box-shadow: 3px 3px 3px #a1a0a0;
	margin:10px 5px 10px 0;
	transition: all 0.3s;
	position: relative;
	letter-spacing: 5px;
    font-size: 19px;
}

/*=============================
	PC 2 : 画面の横幅が769px以上*/
@media screen and (max-width: 889px){
.header-contents{
	margin-left: 2.5em;
}

}
/*==============================
	Tablet : 画面の横幅~768pxまで*/

@media screen and (max-width: 768px){
.header-btn a{
	width: 270px;
	letter-spacing: 4px;
	line-height: 46px;
	height: 46px;
}

}

/*==============================
		Smartphone :  画面の横幅が640pxまで*/
@media screen and (max-width:640px){
header{
	height: 55px;
}

.header-contents{
	margin-left: 0.5em;
}

.header-logoimg{
	width: 70px;
}
.header-logoimg img{
	width: 100%;
	height: 100%;
}
.header-text{
	padding-left: 80px;
	padding-top: 10px;
}

.header-text p{
	display: none;
}

.header-text h3{
	font-size: 10px;
	width: 95px;
	line-height: 15px;
}

.header-btn a{
	width: 130px;
	height: 33px;
	line-height: 33px;
	background-color: #01671a;
	box-shadow: 2px 2px 2px #a1a0a0;
	margin:8px 8px 3px 0;
	letter-spacing: 2px;
    font-size: 12px;
}
}


/* ================================================ */
/*トップ画像*/
/* ================================================ */

/*=============================
	PC : 画面の横幅が890px以上*/

.top-wrapper{
	background-image: url(images/main-image.jpg);
	background-size: cover;
    height: 540px;
}

.top-contents{
	max-width: 720px;
	margin: 0 auto;
	padding-top: 155px;
}

.top-text{
	padding-left: 4px;
	text-shadow: 0px 0px 20px #fff,0px 0px 20px #fff,
				 0px 0px 10px #fff,0px 0px 10px #fff,
				 0px 0px 15px #fff,0px 0px 15px #fff,
				 0px 0px 15px #fff,0px 0px 15px #fff;
}
.top-text h2{
	font-size: 16px;
	line-height: 40px;
	letter-spacing: 2px;
}

.top-text h1{
	font-size: 42px;
	line-height: 78px;
	letter-spacing: 6px;
}

.top-btn-contents{
	margin-top: 45px;
	padding-top: 5px;
	padding-left: 13px;
	padding-bottom: 3px;
	width: 420px;
	background-color: rgba(255,255,255,0.5);
	border: 1px solid rgba(255,255,255,0.3);
}

.top-btn-contents h3{
	font-size: 17px;
	letter-spacing: 2px;
	line-height: 40px;
	text-shadow: 0px 0px 10px #fff,0px 0px 10px #fff,
				 0px 0px 15px #fff,0px 0px 15px #fff;

}

.top-btn-contents h3 span{
	border: 1px solid #000;
	font-size: 13px;
	padding: 0.5em 0.8em;
	letter-spacing: 1px;
	margin-right: 15px;
}

.top-btn a{
	display: block;
	color:#fff;
	width: 393px;
	height: 48px;
	line-height: 48px;
	border-radius: 30px;
	background-color: #01671a;
	text-decoration: none;
	text-align: center;
	box-shadow:2px 2px 2px #a1a0a0;
	margin:7px 0 10px 0;
	transition: all 0.3s;
	position: relative;
	letter-spacing: 5px;
    font-size: 20px;
}

.top-btn a:hover {
	background-color: #018321;
}

/*=============================
	PC 2 : 画面の横幅が769px以上*/
@media screen and (max-width: 889px){

.top-contents{
	max-width: 730px;
	margin-left: 4.5em;
}
}
/*==============================
	Tablet : 画面の横幅~768pxまで*/

@media screen and (max-width: 768px){
.top-wrapper{
	background-image: url(images/main-image_tb.jpg);
	background-size: cover;
}
.top-contents{
	max-width: 641px;
}
}

/*==============================
		Smartphone :  画面の横幅が640pxまで*/
@media screen and (max-width:640px){

.top-wrapper{
	background-image: url(images/main-image_sp.jpg);
	background-size: cover;
	height: 500px;

}

.container{
	max-width: 375px;
}

.top-contents {
    max-width: 370px;
    margin: 0 auto;
    padding-top: 130px;
}
.top-text{
	padding-left: 1em;
	text-shadow: 0px 0px 3px #fff,0px 0px 3px #fff,
				 0px 0px 3px #fff,0px 0px 5px #fff,
				 0px 0px 5px #fff,0px 0px 5px #fff,
				 0px 0px 10px #fff,0px 0px 10px #fff,
				 0px 0px 10px #fff,0px 0px 10px #fff,
				 0px 0px 15px #fff,0px 0px 15px #fff,
				 0px 0px 15px #fff,0px 0px 15px #fff;
}

.top-text h2{
	font-size: 13px;
}

.top-text h1{
	font-size: 29px;
	line-height: 60px;
	letter-spacing: 9px;
	font-weight: bold;

}

.top-btn-contents{
	width: 100%;
	padding-bottom: 9px;
	padding-left: 7px;
	margin-top: 55px;
}

.top-btn-contents h3{
	font-size: 15px;
	padding-left: 3px;

	text-shadow: 0px 0px 3px #fff,0px 0px 3px #fff,
				 0px 0px 3px #fff,0px 0px 3px #fff,
				 0px 0px 5px #fff,0px 0px 5px #fff,
				 0px 0px 10px #fff,0px 0px 10px #fff;

}

.top-btn-contents h3 span{
	font-size: 12px;
	margin-right: 13px;
}

.top-btn a{
	width: 98%;
	font-size: 18px;
	height: 45px;
	line-height: 45px;

}
}
/* ================================================ */
/*メインコンテンツ*/
/* ================================================ */

/*=============================
	PC : 画面の横幅が890px以上*/

.main-wrapper{
	padding-top: 65px;
	height: 520px;
}
.main-contents{
	max-width: 800px;
	margin: 0 auto;	
	height: 350px;
}


.main-photo{
    width: 45%;
    float: left;
    padding-top: 8px;
}

.main-text{
	width: 55%;
	float: right;
}

.main-text h1{
	font-size: 36px;
	line-height: 57px;
	letter-spacing: 3px;
	font-weight: bold;
}

.main-letter{
	font-size: 13px;
	line-height: 27px;
	padding-top: 30px;
	width: 96%;

}

.cost{
	padding-left: 6px;
}
/* 円の基本形 */
.maru {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	flex-flow: column; 
	vertical-align: top;
	background-color: #ED1153;
}
/* 円の大きさ */
.size_normal{
  width: 65px;
  height: 65px;
}
/* 文字の大きさ */
.letter p{
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	letter-spacing: 3px;
	line-height: 21px;
}
/* 円の色 */
.black{
  border:1px solid #ED1153;
}
.price{
	display: flex;
	padding-top: 29px;
}

.off{
	padding-right: 12px;
	line-height: 27px;
	font-size: 13px;
	padding-top: 6px;
}

.off span{
	font-size: 25px;
	color: #ED1153;
	font-weight: bold;
}

.set-price{
	line-height: 70px;
	bottom: 0;
	font-size: 60px;
	font-family: "Mshtakan";
}

.set-price span{
	font-size: 20px;
	font-family: "Hiragino Mincho ProN";
	letter-spacing: 2px;
	padding-left: 4px;
}

.main-btn a{
	display: block;
	color:#fff;
	width: 55%;
	height: 55px;
	border-radius: 30px;
	background-color: #01671a;
	text-decoration: none;
	text-align: center;
	line-height: 55px;
	box-shadow: 3px 3px 3px #a1a0a0;
	margin:0 auto;
	transition: all 0.3s;
	position: relative;
	letter-spacing: 5px;
    font-size: 22px;
}

.main-btn a:hover {
	background-color: #018321;
}


/*=============================
	PC 2 : 画面の横幅が769px以上*/
@media screen and (max-width: 889px){
.main-contents{
	max-width: 769px;
	height: 330px;
}
.main-photo{
    width: 40%;
}

.main-photo img{
	width: 87%;

}

.main-text{
	width: 60%;
}
.price{
	padding-top: 20px;
}

}
/*==============================
	Tablet : 画面の横幅~768pxまで*/

@media screen and (max-width: 768px){
.main-wrapper{
	height: 460px;
	padding-top: 55px;
}
.main-contents{
	max-width: 641px;
	height: 310px;
}
.main-photo{
	padding-top: 22px;
}
.main-text h1{
	font-size: 31px;
}

.main-letter{
	font-size: 12px;
	line-height: 22px;
	padding-top: 20px;

}
.price{
	padding-top: 25px;
}
.off{
	font-size: 11px;
	padding-right: 10px;
}
.off span{
	font-size: 24px;
}

.set-price{
	font-size: 53px;
}
.set-price span{
	font-size: 18px;
}
.cost{
	padding-left: 5px;
}
.size_normal{
	width: 58px;
	height: 58px;
}

.main-btn a{
	height: 47px;
	line-height: 47px;
	font-size: 20px;
	width: 60%;
}

}
/*==============================
		Smartphone :  画面の横幅が640pxまで*/
@media screen and (max-width:640px){

.main-wrapper{
	height: 835px;
	padding-top: 45px
}

.main-contents{
	display: block;
	max-width: 375px;
	height: 655px;
}

.main-photo{
	display: none;
}
.main-photo2{
	text-align: center;
	padding-top: 53px;
	padding-bottom: 10px;
	width: 100%;
	float: none;
}

.main-text{
	width: 96%;
	margin: 0 auto;
	padding-top: 30px;
	float: none;
}
.main-text h1{
	font-size: 25px;
	line-height: 42px;
	letter-spacing: 4px;
	text-align: center;
	font-weight:bold;
	padding-bottom: 13px;
	padding-top: 23px;
    border-bottom: 1px dotted #b3b1b1;
    border-top: 1px dotted #b3b1b1;
    width: 90%;
    margin-left: 0.5em;
}
.main-letter{
	font-size: 12px;
	line-height: 24px;
	width: 75%;
	margin: 0 auto;
	padding-top: 35px;

}


.letter{
	font-size: 11px;
}



.price{
	padding-left: 0em;
	padding-top: 12px;
	max-width: 350px;
	margin: 0 auto;


}
.off{
	font-size: 10px;
	padding-right: 3px;
	line-height: 25px;
	padding-left: 5px;
}
.off span{
	font-size: 22px;
	letter-spacing: 0px;
	font-weight: normal;
}
.set-price{
	font-size: 48px;
	letter-spacing: 0px;
	padding-right: 3px;
}
.set-price span{
	font-size: 13px;
	padding-right: 2px;
}

.maru{

}
.size_normal {
    width: 50px;
    height: 50px;
}
.letter p{
	letter-spacing: 2px;
	line-height: 15px;
	font-size: 12px;
}
.cost{
	padding-left: 0;
	padding-top: 6px;
}

.main-btn{
	margin-left: 1%;
    margin-right: 1%;
}

.main-btn a{
	height: 40px;
	width: 100%;
	line-height: 40px;
	font-size: 17px;
	box-shadow: 2px 2px 1px #a1a0a0;
	margin: 8px 0 0 0;

}
}

/* ================================================ */
/*Topic1 フォルグラノーラの特徴*/
/* ================================================ */

/*=============================
	PC : 画面の横幅が890px以上*/
.topic1-wrapper{
	background-image: url(images/topic1-bg.jpg);
	background-size: cover;
	padding-top: 50px;
	height: 1635px;
}

.topic1-title{
	text-align: center;
	width: 60%;
	margin: 0 auto;

}

.topic1-title h1{
	font-size: 40px;
    margin: 0 auto;
    padding-bottom: 20px;
   	letter-spacing: 4px;
   	font-weight: bold;

}

.topic1-title p{
	font-size: 20px;
	border-top:  4px solid #eeea00;
	padding-top: 15px;
	letter-spacing: 2px;
}

.topic1-container{
	background-image: url(images/topic1-bg2.png);
	width: 1000px;
	margin: 0 auto;
	padding-top: 165px;
	height: 1395px;
}


.topic1-contents{
	max-width: 800px;
	margin-left: 100px;

}


.t1-1, .t1-2, .t1-3{
	display: flex;
	padding-top: 60px;
}

.t1-1photo, .t1-3photo{
	padding-right: 30px;
}

.t1-2photo{
	padding-left: 30px;
}

.t1-text h2{
	font-size: 24px;
	color: #12792b;
	letter-spacing: 3px;
    line-height: 43px;
    padding-left: 5px;
    font-weight: bold;
}
.t1-text p{
	font-size: 14px;
	line-height: 30px;
	color: #5e5e5e;
    width: 417px;
    padding-top: 16px;
    padding-left: 5px;
}
.middle-btn-wrapper{
	margin: 0 auto;
	width: 100%;
	height: 190px;
	text-align: center;
	background-color: rgba(255,255,255,0.5);
}

.middle-btn-wrapper h3{
	font-size: 22px;
	letter-spacing: 2px;
	line-height: 40px;
	padding-top: 20px;
	text-shadow: 0px 0px 10px #fff,0px 0px 10px #fff,
				 0px 0px 15px #fff,0px 0px 15px #fff;

}

.middle-btn-wrapper h3 span{
	border: 1px solid #000;
	font-size: 16px;
	padding: 0.5em 0.8em;
	letter-spacing: 1px;
	margin-right: 15px;
	height: 160px;
}

.middle-btn{
	padding-top: 10px;
}

.middle-btn a{
	display: block;
	color:#fff;
	width: 55%;
	height: 55px;
	line-height: 55px;
	border-radius: 30px;
	background-color: #01671a;
	text-decoration: none;
	text-align: center;
	box-shadow:2px 2px 2px #a1a0a0;
	margin: 0 auto;
	transition: all 0.3s;
	position: relative;
	letter-spacing: 5px;
    font-size: 22px;
}

.middle-btn a:hover {
	background-color: #018321;
}

.middle-btn-container{
	max-width: 900px;
	margin: 0 auto;
	padding-top: 20px;
}

/*=============================
	PC 2 : 画面の横幅が769px以上*/
@media screen and (max-width: 889px){
.topic1-wrapper{
	height: 1530px;
}
.topic1-container {
    background-image: url(images/topic1-bg2_2.png);
    background-size: contain;
    width: 900px;
    margin: 0 auto;
    padding-top: 165px;
    height: 1289px;
}
.topic1-title h1{
	font-size: 37px;
}
.topic1-title p{
	font-size: 18px;
	border-top: 3px solid #eeea00;
}

.topic1-contents {
    width: 800px;
    margin-left: 67px;
}

.t1-text h2{
	font-size: 23px;
	line-height: 38px;
}

.t1-text p{
	width: 400px;
	font-size: 13px;
	line-height: 25px;
}

.t1-1, .t1-2, .t1-3{
	padding-top: 50px;
}

.t1-1photo, .t1-3photo{
	padding-right: 18px;
}

.t1-2photo {
    padding-left: 35px;
}
	
}
/*==============================
	Tablet : 画面の横幅~768pxまで*/

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

.topic1-wrapper{
	height: 1235px;
}
.topic1-container {
    background-image: url(images/topic1-bg2_tb.png);
    background-size: contain;
    width: 700px;
    padding-top: 110px;
    height: 1014px;
}

.topic1-title{
	width: 66%;
}

.topic1-title h1{
	font-size: 32px;
	padding-bottom: 15px;
}

.topic1-contents{
	width: 641px;
	margin-left: 60px;
}

.topic1-title p{
	font-size: 15px;
	border-top: 2px solid #eeea00;
}

.t1-text h2{
	font-size: 18px;
	line-height: 31px;
}

.t1-text p{
	font-size: 12px;
	width: 346px;
	line-height: 21px;
	padding-top: 5px;
}

.t1-1photo, .t1-3photo{
	padding-right: 24px;
}

.t1-2photo{
	padding-left: 30px;
}

..middle-btn-wrapper h3{
	font-size: 21px;
}

.middle-btn a{
	line-height: 48px;
	height: 48px;
	font-size: 20px;
}

}

/*==============================
		Smartphone :  画面の横幅が640pxまで*/
@media screen and (max-width:640px){

.topic1-wrapper{
	height: 2450px;
	background-image: none;
	background-color: #fbfafa;
}

.topic1-container{
	background-image:none;
	background-size: cover;
	max-width: 375px;
	margin: 0 auto;
	padding-top: 0px;
	height: 2190px;
}

.topic1-title>.sp>img{
	width: 100%;
}

.topic1-title{
	width: 98%;
	height: 305px;
}

.topic1-title h1{
	font-size: 26px;
	padding-bottom: 3px;
	line-height: 44px;
	letter-spacing: 8px;
	width: 70%;
	padding-top: 21px;

}

.topic1-title p{
	font-size: 12px;
	border-top: none;
	padding-top: 21px;
	padding-bottom: 13px;
	letter-spacing: 2px;
	width: 100%;
	margin: 0 auto;

}

.topic1-contents{
	width: 363px;
	margin: 0 auto;
	text-align: center;
}

.t1-1{
	display: flex;
	flex-direction: column;
	border: 1px solid #e0dfdf;
	padding-top: 36px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    background-color: #fff;
}

.t1-2,.t1-3{
	display: flex;
	flex-direction: column;
	border: 1px solid #e0dfdf;
	padding-top: 36px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    background-color: #fff;
}

.t1-text{
	order: -1;
}

.t1-text h2{
	font-size: 23px;
	letter-spacing: 4px;
	font-weight: bold;
	line-height: 48px;
	width: 100%;
    margin: 0 auto;
    text-align: left;
    padding-left: 1.5em;
}

.t1-2>.t1-text h2{
	letter-spacing: 2px;
}
.t1-3>.t1-text h2{
	letter-spacing: 1px;
}

.t1-1photo,.t1-2photo,.t1-3photo{
	padding-right: 0;
	padding-left: 0;
}

.t1-text p {
    font-size: 12px;
    width: 92%;
    text-align: left;
    line-height: 29px;
    letter-spacing: 1px;
    padding-bottom: 40px;
    padding-top: 23px;
    padding-left: 3em;
    color: #474747;

}
.middle-btn-wrapper{
	background-color:rgba(255,255,255);
	height: 150px;
}
.middle-btn-wrapper h3{
	padding-top: 0;
	font-size: 20px;
	letter-spacing: 0px;
}
.middle-btn-wrapper h3 span{
	font-size: 15px;
	letter-spacing: 0;
	margin-right: 5px;
	padding: 0.4em 0.6em;
}
.middle-btn-container{
	padding-top: 30px;
	padding-bottom: 20px;
}

.middle-btn a{
	width: 365px;
	height: 40px;
    line-height: 40px;
    font-size: 17px;
}

}


/* ================================================ */
/*Topic2 お試しセットのフレーバー*/
/* ================================================ */

/*=============================
	PC : 画面の横幅が890px以上*/

.topic2-wrapper{
	background-image: url(images/topic2-bg.jpg);
	background-size: cover;
	height: 1600px;
	padding-top: 95px;
}

.topic2-container{
	background-color:rgba(255,255,255,1);
	width: 900px;
    margin: 0 auto;
    margin-bottom: 49px;
    padding-top: 40px;
    padding-bottom: 30px;
}

.topic2-title{
	text-align: center;
	padding-top: 70px;
	padding-bottom: 30px;
	width: 65%;
	margin: 0 auto;
}

.topic2-title h1{
	font-size: 40px;
    padding-bottom: 20px;
   	letter-spacing: 4px;
   	font-weight: bold;
}

.topic2-title p{
	font-size: 20px;
	border-top:  4px solid #eeea00;
	padding-top: 15px;
	letter-spacing: 2px;
}

.topic2-contents{
	padding-left: 50px;


}

.topic2-1,.topic2-2,.topic2-3{
	display: flex;
	padding-top: 30px;
	padding-bottom: 40px;
}

.t2-text{
	width: 498px;
	padding-top: 13px;
	padding-left: 33px;
}

.t2-text h2{
	color: #12792b;
	font-size: 30px;
	padding-left: 5px;
	padding-bottom: 10px;
	font-weight: bold;
}

.t2-text h2 span{
	color: #000;
	font-family: "Adobe Caslon Pro";
	font-size: 16px;
	letter-spacing: 1px;
}

.t2-text1{
	padding-top: 20px;
	padding-bottom: 15px;
	padding-left: 5px;
	padding-right: 8px;
	font-size: 15px;
	line-height: 28px;
	letter-spacing: 2px;

}

.t2-text2{
	font-size: 10px;
	color: #696969;
	line-height: 16px;
	padding-left: 5px;
	padding-right: 8px;
}

/*=============================
	PC 2 : 画面の横幅が769px以上*/
@media screen and (max-width: 889px){
.topic2-wrapper{
	height: 1530px;
}

.topic2-container{
	width: 815px;
	padding-bottom: 16px;
	padding-top: 80px;
}
.topic2-title{
	padding-top: 10px;
}
.topic2-title h1{
	letter-spacing: 1px;
}

.topic2-contents {
    padding-left: 20px;
}

.t2-text{
	padding-top: 25px;
}

.t2-text h2{
	font-size: 29px;
}

.t2-text h2 span{
	font-size: 15px;
}

.t2-text1{
	padding-top: 17px;
}

.t2-text2{
	padding-right: 15px;
}
	
}
/*==============================
	Tablet : 画面の横幅~768pxまで*/

@media screen and (max-width: 768px){
.topic2-wrapper{
	height: 1410px;
}


.topic2-container{
	width: 700px;
	padding-top: 50px;
}

.topic2-title h1{
	font-size: 34px;
	padding-top: 45px;
	padding-bottom: 15px;
}

.topic2-title p{
	font-size: 16px;
	border-top: 2px solid #eeea00;
}

.t2-text{
	padding-top: 2px;
	width: 423px;
	padding-left: 30px;
}

.t2-text h2{
	font-size: 25px;
	letter-spacing: 3px;
	padding-bottom: 5px;
}

.t2-text h2 span{
	font-size: 14px;
}

.t2-text1{
	font-size: 13px;
	padding-bottom: 23px;
	padding-top: 10px;
	line-height: 20px;
	letter-spacing: 2px;
}

.t2-text2{
	line-height: 13px;
	color: #797979;
}


}
/*==============================
		Smartphone 大　:  画面の横幅が640pxまで*/
@media screen and (max-width:640px){
.topic2-wrapper{
	height: 2110px;
	padding-top: 26px;
	background-image: none;
	background: #fff5dd;
}

.topic2-container{
	width: 100%;
	height: 1875px;
	padding-bottom: 0;
	padding-top: 0;
	margin-bottom: 10px;
	background-color: rgba(255,255,255,0);

}
.topic2-title{
	width: 70%;
	padding-bottom: 40px;
}

.topic2-title h1{
	padding-bottom: 6px;
	line-height: 44px;
	font-size: 26px;
	letter-spacing: 8px;
}

.topic2-title p{
	font-size: 12px;
	border-top: none;
	padding-top: 21px;
	padding-bottom: 13px;
	letter-spacing: 2px;
}

.topic2-1{
	display: flex;
	flex-direction: column;
	text-align: center;
	padding-bottom: 0px;
}

.topic2-2{
	display: flex;
	flex-direction: column;
	text-align: center;
	margin-top: 18em;
}

.topic2-3{
	display: flex;
	flex-direction: column;
	text-align: center;
	margin-top: 22em;
}

.topic2-contents{
	padding-left: 0;
	padding-top: 150px;
}
.slash1{
	background:#fff;
	transform: skew(0deg, -15deg);
	height: 230px;
}
.slash2{
	background:#fff;
	transform: skew(0deg, -15deg);
	height: 230px;

}
.slash3{
	background:#fff;
	transform: skew(0deg, -15deg);
	height: 230px;
}

.slash-bottom,.t2-text{
	transform: skew(0deg, 15deg);
	margin-top: -155px;
	margin-bottom: 25px;
}

.t2-text{
	padding-left: 0;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 4em;
	background:#fff;

}

.t2-text h2{
	font-size: 25px;
	padding-left: 1em;
	letter-spacing: 2px;
	font-weight: bold;
	padding-bottom: 15px;
	padding-top: 0;
}
.t2-text h2 span{
	font-size: 12px;
}

.t2-text1{
	width: 300px;
	margin: 0 auto;
	font-size: 12px;
	line-height: 29px;
	text-align: left;
	padding-left: 1em;
	padding-right: 0;
	padding-bottom: 0px;
}

.t2-text2{
	display: none;
}

}
/*==============================
		Smartphone :  画面の横幅が455pxまで*/
@media screen and (max-width:500px){

.slash1{
	transform: skew(0deg, -20deg);
}
.slash2{
	transform: skew(0deg, -20deg);

}
.slash3{
	transform: skew(0deg, -20deg);

}

.slash-bottom,.t2-text{
	transform: skew(0deg, 20deg);
}

}

/* ================================================ */
/*Topic3 お客様の声*/
/* ================================================ */

/*=============================
	PC : 画面の横幅が890px以上*/
.topic3-wrapper{
	height: 1020px;
	padding-top: 90px;
}


.topic3-container{
	background-image: url(images/topic3-bg.png);
	background-size: contain;
	margin-top: 70px;
	width: 1000px;
	padding-top: 85px;
	height: 864px;
	margin: 0 auto;

}

.topic3-title{
    margin: 0 auto;
	padding-top: 20px;
	width: 50%;
	margin: 0 auto;
	margin-bottom: 65px;
}

.topic3-title h1{
	font-size: 40px;
	padding-bottom: 20px;
   	letter-spacing: 4px;
	text-align: center;
	border-bottom:  4px solid #eeea00;
	font-weight: bold;
}

.topic3-contents{
	width: 870px;
	height: 500px;
	margin: 0 auto;


}

.t3-1,.t3-2,.t3-3,.t3-4{
	width: 48%;
	height: 230px;
	float: left;
	background-color: #fff;
	box-shadow:1px 1px 10px 3px #f4f4f4;
	padding-top: 8px;
	padding-bottom: 30px;
	padding-left: 4px;
	margin-left: 15px;
    margin-bottom: 50px;
    text-align: center;
}
.t3-title-contents{
	text-align: left;
	color: #12792b;
}

.t3-title-contents img{
	float: left;
	margin-left: 5%;
}


.sharp,.number{
	font-family: "Snell Roundhand";
}

.sharp{
	font-size: 22px;
}

.number{
	font-size: 28px;
}

.t3-title-contents h3{
	font-size: 20px;
    letter-spacing: 3px;
    padding-left: 130px;
    padding-top: 3px;
    line-height: 26px;
    font-weight: bold;
}

.topic3-contents p{
	text-align: left;
	font-size: 12px;
	color: #5e5e5e;
	width: 90%;
	margin: 0 auto;
	padding-top: 10px;
}

/*=============================
	PC 2 : 画面の横幅が769px以上*/
@media screen and (max-width: 889px){
.topic3-wrapper {
    height: 920px;
    padding-top: 60px;
 }

.topic3-container{
	background-image: url(images/topic3-bg_2.png);
	width: 900px;
	height: 817px;
}

.topic3-title{
	margin-bottom: 45px;
}

.t3-title-contents h3 {
    font-size: 18px;
    letter-spacing: 2px;
    padding-left: 120px;
}


.topic3-contents {
    width: 769px;
}

.t3-1,.t3-3{
	margin-left: 0px;
}
	
.t3-2,.t3-4{
	margin-left: 20px;
}
}
/*==============================
	Tablet : 画面の横幅~768pxまで*/

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

.topic3-wrapper {
    height: 860px;
 }

.topic3-container{
	background-image: url(images/topic3-bg_tb.png);
	width: 718px;
	padding-top: 60px;
	height: 760px;

}

.topic3-title h1{
	font-size: 34px;
	padding-bottom: 15px;
	border-bottom: 2px solid #eeea00;
}

.topic3-contents{
	width: 620px;
}

.t3-title-contents img{
	margin-left: 3%;
}

.t3-title-contents h3{
	font-size: 16px;
	line-height: 23px;
	padding-left: 94px;
	letter-spacing: 1px;
}

.t3-3-title>.t3-title-contents h3{
    font-size: 16px;
    line-height: 23px;
    padding-left: 93px;
    letter-spacing: 0px;
}
.t3-4-title>.t3-title-contents h3{
    font-size: 16px;
    line-height: 23px;
    padding-left: 93px;
    letter-spacing: 2px;
}

.t3-1,.t3-2,.t3-3,.t3-4{
	padding-bottom: 20px;
	height: 219px;
	margin-bottom: 40px;
}

.t3-1,.t3-3{
	margin-left: 8px;
}
	
.t3-2,.t3-4{
	margin-left: 10px;
}

.topic3-contents p{
	line-height: 19px;
}

}

/*==============================
		Smartphone :  画面の横幅が640pxまで*/
@media screen and (max-width:640px){
.topic3-wrapper {
	margin-top: 0;
    height: 1380px;
   	background-color: #fafafa;
 }

.topic3-container{
	background-image:none;
	width: 375px;
	height: 960px;
	padding-top: 3em;
}

.topic3-title{
	width: 70%;
}

.topic3-title h1{
	border-bottom: 1px solid #eeea00;
	font-size: 24px;
}

.topic3-contents{
	width: 360px;
}

.t3-1,.t3-3,.t3-4{
	margin-left: 0;
	padding-left: 0;
	width: 100%;
	height: 245px;
	margin-bottom: 30px;
}

.t3-2{
	margin-left: 0;
	padding-left: 0;
	width: 100%;
	height: 270px;
	margin-bottom: 30px;
}

.t3-title-contents{
	width: 90%;
	margin: 0 auto;
}

.topic3-contents p{
	line-height: 26px;
	padding-top: 19px;
}
.t3-title-contents img{
	margin-left: 0%;
	margin-top: 7%;
}

.t3-title-contents h3{
	font-size: 17px;
	letter-spacing: 2px;
    line-height: 33px;
    border-bottom: 1px dotted #adacac;
    padding-left: 92px;
    padding-top: 6px;
    padding-bottom: 9px;
}

.t3-3-title>.t3-title-contents h3 ,
.t3-4-title>.t3-title-contents h3{
    font-size: 17px;
	letter-spacing: 2px;
    line-height: 33px;
    padding-left: 92px;
}

.sharp,.number{
	font-size: 23px;
}

}

/* ================================================ */
/*Topic4 フォルグラノーラの食べ方*/
/* ================================================ */
/*=============================
	PC : 画面の横幅が890px以上*/
.topic4-container{
	width: 900px;
	margin: 0 auto

}

.topic4-wrapper{
	background-image: url(images/topic4-bg.jpg);
	height: 690px;
}

.topic4-title{
    margin: 0 auto;
	padding-top: 20px;
	width: 80%;
	margin: 0 auto;
	margin-bottom: 65px;
}

.topic4-title h1{
	font-size: 40px;
	padding-bottom: 20px;
	padding-top: 60px;
   	letter-spacing: 4px;
	text-align: center;
	border-bottom:  4px solid #eeea00;
	font-weight: bold;
}


.t4-text{
	color: #12792b;
	font-size: 20px;
	line-height: 50px;
	text-align: center;
}

.t4-pic{
	width: 900px;
	text-align: center;
	padding-top: 30px;
}

.t4-pic img{
	box-shadow:2px 2px 6px 0px #c5c4c4;

}

/*=============================
	PC 2 : 画面の横幅が769px以上*/
@media screen and (max-width: 889px){
.topic4-container{
	width: 800px;
}

.t4-text{
	font-size: 19px;
}

.t4-pic{
	width: 800px;
}

.topic4-wrapper{
	height: 680px;
}

}
/*==============================
	Tablet : 画面の横幅~768pxまで*/

@media screen and (max-width: 768px){
.topic4-wrapper{
	height: 590px;
}
.topic4-container{
	width: 768px;
}

.topic4-title{
	width: 82%;
}

.topic4-title h1{
	font-size: 34px;
	border-bottom: 3px solid #eeea00;
	padding-top: 30px;

}

.t4-text{
	font-size: 18px;
	line-height: 43px;
}


.t4-pic{
	width: 768px;
}


}

/*==============================
		Smartphone :  画面の横幅が640pxまで*/
@media screen and (max-width:640px){
.topic4-wrapper{
	height: 730px;
}

.topic4-container{
	width: 375px;
}

.topic4-title{
	width:100%;
	padding-top: 30px;
	margin-bottom: 30px;
}

.topic4-title h1{
	line-height: 46px;
	border-bottom:none;
	font-size: 24px;
}

.t4-text{
	font-size: 16px;
	line-height: 38px;
	letter-spacing: 2px;
	padding-bottom: 20px;
}

.t4-pic{
	width: 375px;
	padding-top: 10px;
}

.t4-pic img{
	box-shadow: 1px 1px 2px 0px #c5c4c4;
}

/*CSSだけでスライドショー　ここから*/
.photo-show { 
    /*height: 440px; /*表示したい大きさ*/
    max-width: 350px;
    position: relative;
/*表示したい大きさ、height と合わせる*/
}

.photo-show img { 
    animation: show 9s infinite;
    -webkit-animation: show 9s infinite;
    height: auto;
    width: 100%;
    opacity: 0;
    position: absolute; /*画像を全て重ねる*/
    left: 12px;
}
/*各画像のアニメーションの開始時間をずらす*/

.photo-show img:nth-of-type(1) {
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
}

.photo-show img:nth-of-type(2) {
    animation-delay: 3s;
    -webkit-animation-delay: 3s;
}

.photo-show img:nth-of-type(3) {
    animation-delay: 6s;
    -webkit-animation-delay: 6s;
}

@keyframes show {
    0% {opacity:0}
    20% {opacity:1}
    30% {opacity:1}
    40% {opacity:0}
 }

@-webkit-keyframes show {
    0% {opacity:0}
    20% {opacity:1}
    30% {opacity:1}
    40% {opacity:0}
}
/*CSSだけでスライドショー　ここまで*/

}

/* ================================================ */
/*下部のメインコンテンツ*/
/* ================================================ */

/*=============================
	PC : 画面の横幅が890px以上*/

.main-wrapper2{
	padding-top: 60px;
	height: 560px;
	box-shadow:0px 4px 15px 0px #ececec;

}
.main-wrapper2>.container>.main-contents>.main-text h1{
	padding-top: 30px;
	line-height: 55px;
}

.main-wrapper2>.container>.main-contents{
	height: 370px;
}

/*=============================
	PC 2 : 画面の横幅が769px以上*/
@media screen and (max-width: 889px){
	
}
/*==============================
	Tablet : 画面の横幅~768pxまで*/

@media screen and (max-width: 768px){
.main-wrapper2{
	padding-top: 40px;
	height: 445px;
}
.main-wrapper2>.container>.main-contents>.main-text h1{
	padding-top: 10px;
}
.main-wrapper2>.container>.main-contents{
	height: 320px;
}

}

/*==============================
		Smartphone :  画面の横幅が640pxまで*/
@media screen and (max-width:640px){
.main-wrapper2{
	padding-top: 35px;
	height: 620px;
	background-color: #fbfafa;
    box-shadow: 0px 2px 16px 0px #e0e0e0;

}
.main-wrapper2>.container>.main-contents{
	height: 490px;
}
.main-wrapper2>.container>.main-contents>.main-text h1{
	line-height: 34px;
}

.main-wrapper2>.container>.main-contents>.main-photo{
    background-color: rgba(255,255,255);
    padding-bottom: 12px;

}
.main-wrapper2>.container>.main-contents>.main-text{
	padding-top: 10px;
}
.last{
	display: none;
}

}


/* ================================================ */
/*フッター*/
/* ================================================ */

footer{
	text-align: center;

}

.footer-contents{
	padding-top: 70px;
	padding-bottom: 25px;
	text-align: center;
}

.footer-contents img{
	padding-bottom: 35px;
}

.footer-contents p{
	padding-bottom: 16px;
	font-size: 12px;
	color: #686969;
}


/*==============================
	Tablet : 画面の横幅が641~768pxまで*/

@media screen and (max-width: 768px){
.footer-contents p{
	line-height: 12px;
	font-size: 11px;
}

}

/*==============================
		Smartphone :  画面の横幅が640pxまで*/
@media screen and (max-width:640px){

.address{
	padding-bottom: 10px;
}

.footer-contents {
    padding-top: 30px;
    padding-bottom: 5px;
    text-align: center;
}

.footer-contents img {
    padding-bottom: 20px;
    height: 100%;
}

.footer-contents p {
    line-height: 5px;
    font-size: 10px;
    padding-bottom: 12px;
}


}

/* ================================================ */
/*ページトップボタン*/
/* ================================================ */

#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
}


#pageTop a {
  display: block;
  z-index: 999;
  opacity: 0.9;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}
