@font-face {
	font-family: 'corp';
	src: url(../fonts/corp_round_v1.ttf);
}

/* ページトップボタン */
.pagetop {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 55px;
}
.pagetop a {
	display: block;
	width: 50px;
	height: 50px;
	text-align: center;
	color: #fff;
	font-size: 24px;
	text-decoration: none;
	line-height: 50px;
}

/* ディスプレイ切り替え */
.viewPc{ display: block; }
.viewSp{ display: none; }
.brPc{ display: inline; }
.brSp{ 	display: none;}

	@media screen and (max-width:768px) {
	img{ max-width: 100%; }
	.viewPc{ display: none;	}
	.viewSp{ display: block; }
	.brPc{ display: none; }
	.brSp{ display: inline; }
}

/*=============================
 * 余白
 *============================= */
.pt80{ padding-top: 80px; }
.pt90{ padding-top: 90px; }
.pt95{ padding-top: 95px; }
.pt110{ padding-top: 110px; }
.pt120{ padding-top: 120px; }
.pt130{ padding-top: 130px; }
.pt140{ padding-top: 140px; }

.pb95{ padding-bottom: 95px; }
.pb100{ padding-bottom: 100px; }
.pb105{ padding-bottom: 105px; }
.pb115{ padding-bottom: 115px; }
.pb130{ padding-bottom: 130px; }
.pb175{ padding-bottom: 175px; }
.mb110{ margin-bottom: 110px; }

@media screen and (max-width:768px) {
	.pt80{ padding-top: 40px; }
	.pt90{ padding-top: 45px; }
	.pt95{ padding-top: 47.5px; }
	.pt110{ padding-top: 55px; }
	.pt120{ padding-top: 60px; }
	.pt130{ padding-top: 65px; }
	.pt140{ padding-top: 70px; }

	.pb95{ padding-bottom: 47.5px; }
	.pb100{ padding-bottom: 50px; }
	.pb105{ padding-bottom: 52.5px; }
	.pb115{ padding-bottom: 57.5px; }
	.pb130{ padding-bottom: 65px; }
	.pb175{ padding-bottom: 87.5px; }
	.mb110{ margin-bottom: 55px; }
}

/*=============================
 * 装飾
 *============================= */
 /* タイトルの吹き出し */
.title-frame01{
	text-align: center;
}
.title-frame01 .title-main{
	display: inline-block;
	font-size: 52px;
	font-weight: bold;
	letter-spacing: 12px;
	background-image: url(../images/bg-title-frame01-l.svg),
	url(../images/bg-title-frame01-r.svg);
	background-repeat: no-repeat;
	background-position: left center, right center;
	background-size: 1.25em 1em;
	padding: 0 1.25em;
}
.title-frame01 .title-sub{
	display: block;
	font-size: 33px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #fff;
}
.title-frame01 .title-sub.color-or{
	color: #f8b62d;
}

@media screen and (max-width:768px) {
	.title-frame01 .title-main{
		font-size: 26px;
		letter-spacing: 6px;
	}
	.title-frame01 .title-sub{
		font-size: 18px;
	}
}

/* 背景色 */
.bg-orange{ background-color: #f8b62d; }
.bg-beige{ background-color: #e8e4dd; }
.bg-gray{ background-color: #f2f2f3; }

/* マーカー */
.bg-marker{
	background-image: url(../images/bg-intro-bark.svg);
	background-repeat: no-repeat;
	background-position: bottom left;
}

.text-center{
	text-align: center;
}

/*=============================
 * スクロール
 *============================= */
.effect-fade {
	opacity : 0;
	transform : translate(0, 45px);
	transition : all 1s;
}

.effect-fade.effect-scroll {
	opacity : 1;
	transform : translate(0, 0);
}

/*=============================
 * HEADER
 *============================= */
.hdr{
	position: fixed;
	width: 100%;
	border-top: 6px solid #f8b952;
	padding:0;
	margin: 0 auto 20px auto;
	z-index: 1;
	transition: all 1s ease-out;
}
.hdr.bg{
	background-color: #f8b952;
	transition: all 1s ease-out;
}

.hdr-inner{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	width:1450px;
	max-width: 100%;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}

.logo{
	box-sizing: border-box;
	background-color: #f8b952;
	float: left;
	width: 200px;
	padding: 20px;
}

.sp-menu{
	display: none;
}

@media screen and (max-width:768px) {
	.hdr{
		top: 0;
		left: 0;
		box-sizing: border-box;
		width: 100%;
		margin: 0;
		z-index: 11;
	}
	.logo{
		position: relative;
		width: 150px;
		padding: 15px;
		z-index: 11;
		
	}
	.hdr-inner{
		display: block;
		padding: 0;
	}

	/* menu */
	.sp-menu{
		display: block;
		position: fixed;
		top: 11px;
		right: 9px;
		background-color: #f8b62d;
		border: 1px solid #fff;
		z-index: 100;
	}
	.sp-menu input {
  display: none;
	}
	label {
		position: relative;
		width: 40px;
		height: 30px;
		display: inline-block;
		cursor: pointer;
		transition: all .5s;
		text-align: left;
	}

	label span,
	label span:before,
	label span:after {
		background: #fff;
		position: absolute;
		height: 3px;
		width: 33px;
		left: 3px;
		border-radius: 4px;
		transition: all .5s;
	}
	
  label span:first-child {
    top: 7px;
  }
  label span:nth-child(2) {
    top: 17px;
  }
  label span:nth-child(3) {
    top: 27px;
    
  }
	label span {
    transition: all .3s;
  }
	
  #menu:checked + label span:first-child {
    top: 25%;
    left: 3%;
    width: 0;
    transform: rotate(45deg);
  }
  #menu:checked + label span:nth-child(2) {
    transform: rotate(-45deg);
    width: 90%;
    top: 16px;
	}
  #menu:checked + label span:nth-child(3) {
    width: 90%;
    right: 0;
    top: 17px;
    transform: rotate(45deg);
  }

}

/*=============================
 * nav
 *============================= */
.nav{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding: 0;
	margin-left: 10px;
}
	
.navBtn{
	list-style: none;
	font-size: 16px;
	border-radius: 10px;
	display: inline-block;
	margin-right: 18px;
}
.navBtn:last-child{
	margin-right: 0;
}

.navBtn-inner{
  width:100%;
	height:100%;
	background-color: #fff;
	border-radius: 10px;
  text-align:center;
  cursor:pointer;
  position:relative;
  box-sizing:border-box;
	overflow:hidden;
}
.navBtn-inner a{
	font-family: corp, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;;
	display: block;
	font-size:16px;
	letter-spacing: 0.5px;
  color:#604c3f;
  text-decoration:none;
  transition:all .5s ease;
  z-index:2;
	position:relative;
	padding: 10px 18px;
}
.eff{
	display: block;
  width:100%;
  height:100%;
  left:-101%;
  background:#f8b952;
  position:absolute;
  transition:all .5s ease;
  z-index:1;
}
.navBtn-inner:hover .eff{
	left:0;
	width: 101%;
}
.navBtn-inner:hover a{
  color:#fff;
}


@media screen and (max-width:768px) {
	.gmenu{
		position: fixed;
		top: -100%;
		left: 0;
		width: 100%;
		height: auto;
		background: none;
		background-repeat: repeat;
		z-index: 10;
	}
	.nav{
		display: block;
		width: 100%;
		background-color: #f8b62d;
		padding: 50px 0;
		margin: 0;
	}
	.nav li{
		display: block;
		float: none;
		width: 100%;
		background-color: #f8b62d;
	}
	.nav li span{
		display: none;
	}
	.navBtn,
	.navBtn-inner{
		border-radius: 0;
	}
	.navBtn-inner a{
		padding-top: 1em;
		padding-bottom: 1em;
		border-bottom: 1px solid #ffe8b8;
	}
	.navBtn:last-child a{
		border-bottom: none;
	}
}

/*=============================
* CTA
*============================= */
.cta-wrapper{
	padding: 62px 0 45px;
}
.cta{
	text-align: center;
 }
.mv-cta-wrapper{
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: #f2f2f3;
	background: #f2f2f3;
	background: -moz-linear-gradient(top, transparent 0%, transparent 24%, #f2f2f3 24%);
	background: -webkit-linear-gradient(top, transparent 0%,transparent 24%, #f2f2f3 24%);
	background: linear-gradient(to bottom, transparent 0%,transparent 24%, #f2f2f3 24%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7db9e8', endColorstr='#f2f2f3',GradientType=0 );
}
.cta-btn{
	display: block;
	position: relative;
	width: 739px;
	max-width: 100%;
	box-shadow: 6px 6px 0px #c9caca;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
.cta-btn .icon-mail,
.cta-btn .icon-mail-hover{
	position: absolute;
	top: 50%;
	right: 6%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	display: block;
	width: 15%;
	max-width: 79px;
}
.cta-btn .icon-mail-hover{
	display: none;
}
.cta-btn:hover{
	top: 6px;
	left: 6px;
	box-shadow: none;
}
.cta-btn:hover .icon-mail{
	display: none;
}
.cta-btn:hover .icon-mail-hover{
	display: inline-block;
}

.icon-scroll{
	position: relative;
	top: 20px;
	width: 49px;
	cursor: pointer;
	margin-left: auto;
	margin-right: auto;
}
.business-info{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.business-info p{
	font-size: 19px;
	font-weight: bold;
}
.business-info .icon-tel{
	display: inline-block;
	position: relative;
	font-size: 33px;
	font-weight: bold;
	letter-spacing: 1px;
	color: #00a0e9;
	margin-left: 1em;
}
.icon-tel:before{
	content: "";
	display: inline-block;
	left: -1em;
	width: 23px;
	height: 26px;
	background-image: url(../images/icon-tel.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
}
.icon-tel a[href*="tel:"] {
	width: 100%;
	font-weight: bold;
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}
.business-info .open-hour{
	margin-left: 25px;
}
.business-info .open-week{
	margin-left: 25px;
}


@media screen and (max-width:768px) {
	.business-info{
		display: block;
	}
}

/*=============================
 * content
 *============================= */
.content-inner{
	box-sizing: border-box;
	width: 1110px;
	max-width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}
.content-title{
	text-align: center;
	font-size: 62px;
	font-weight: bold;
	color: #f39800;
}

@media screen and (max-width:768px) {
	.content-title{
		font-size: 30px;
	}
}

/*=============================
 * MV
 *============================= */
.mv{
	position: relative;
	background-image: url(../images/mv-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 130px;
	padding-bottom: 120px;
}

.btn_link{
	position: absolute;
	right: 0;
	bottom: 10px;
}

.btn_link img{
	width:90%;
}

@media screen and (max-width:768px) {
	.mv{
		background: none;
		padding-top: 0;
		padding-bottom: 0;
	}
	.mv .content-inner{
		padding: 0;
	}
	.mv-cta-wrapper{
		box-sizing: border-box;
		position: static;
		background-color: #f2f2f3;
		padding-left: 15px;
		padding-right: 15px;
	}
	.business-info .icon-tel{
		width: 100%;
		margin-left: 0;
	}
	.business-info .open-hour,
	.business-info .open-week{
		margin-left: 0;
	}
	.icon-tel a[href*="tel:"] {
		width: 100%;
		pointer-events: auto;
		cursor: pointer;
		text-decoration: none;
	}
}


/*=============================
 * イントロ
 *============================= */
.intro-title{
	line-height: 2.5;
	letter-spacing: 13px;
	margin-bottom: 80px;
}
.intro-title span{
	display: block;
	font-size: 43px;
	font-weight: bold;
	color: #604c3f;
	letter-spacing: 7px;
	line-height: 1;
}
.fukidashi{
	box-sizing: border-box;
	display: block;
	font-size: 36px;
	letter-spacing: 7px;
	width: 690px;
	max-width: 100%;
	background-repeat: no-repeat, no-repeat, repeat-x;
	background-position: left center, right center, left center;
	background-size: contain;
	padding: 40px 20px 40px 30px;
	margin-bottom: 36px;
}
.fukidashi.fukidashi-l{
	background-image: 
		url(../images/fukidashi-l1.png),
		url(../images/fukidashi-l2.png),
		url(../images/fukidashi.png);
	padding-left: 60px;
	margin-left: 55px;
	margin-right: auto;
}
.fukidashi.fukidashi-r{
	background-image: 
		url(../images/fukidashi-r1.png),
		url(../images/fukidashi-r2.png),
		url(../images/fukidashi.png);
	margin-left: auto;
	margin-right: 40px;
}
.fukidashi:before{
	content: "";
	display: inline-block;
	width: 50px;
	height: 1.0em;
	background-image: url(../images/fukidashi-check.svg);
	background-repeat: no-repeat;
}
.intro .intro-text{
	display: block;
	width: 11em;
	font-size: 49px;
	color: #37b9bd;
	text-align: center;
	letter-spacing: 4px;
	padding-left: 1em;
	padding-right: 1em;
	margin: 100px auto 0;
}

.reason-list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.reason-list .reason-list-item{
	width: 32%;
	background-color: #fff;
	padding-bottom: 48px;
}
.reason-list .reason-list-number{
	position: relative;
	top: -2.0em;
	font-weight: bold;
	text-align: center;
}
.reason-list .reason-list-number img{
	height: 38px;
	width: auto;
}
.reason-list .reason-list-title{
	position: relative;
	font-size: 48px;
	font-weight: bold;
	color: #f39800;
	letter-spacing: 10px;
	text-align: center;
	margin-top: 34px;
	margin-bottom: 34px;
}
.reason-list .reason-list-title:after{
	content: '';
	position: absolute;
	left: 50%;
	bottom: -23px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	display: block;
	width: 29px;
	height: 4px;
	background-color: #f39800;
}
.reason-list .reason-list-text{
	font-size: 27px;
	text-align: center;
	padding-top: 20px;
}

@media screen and (max-width:768px) {
	.intro-title{
		line-height: 1.5;
		letter-spacing: 0;
		margin-bottom: 40px;
	}
	.intro-title span{
		font-size: 21px;
		letter-spacing: 5px;
		margin: 1em 0;
	}
	.intro .intro-text{
		font-size: 25px;
		letter-spacing: 2px;
		padding: 0;
		margin-top: 50px;
	}
	.fukidashi.fukidashi-l,
	.fukidashi.fukidashi-r{
		padding-top: 20px;
		padding-bottom: 20px;
		margin: 0 0 2em 0;
	}
	.fukidashi.fukidashi-l{
		padding-left: 35px;
	}
	.fukidashi{
		font-size: 18px;
		letter-spacing: 1px;
	}
	.fukidashi:before{
		width: 1.5em;
	}
	.reason-list{
		display: block;
	}
	.reason-list .reason-list-item{
		width: 100%;
		padding-bottom: 24px;
		margin-bottom: 1em;
	}
	.reason-list .reason-list-number{
		position: static;
		font-size: 30px;
		letter-spacing: 8px;
		padding: 1em 0;
	}
	.reason-list .reason-list-title{
		font-size: 30px;
		letter-spacing: 8px;
		margin-top: 17px;
		margin-bottom: 17px;
	}
	.reason-list .reason-list-text{
		font-size: 20px;
	}
}

/*=============================
 * ノンメディカル市場に登場
 *============================= */
.about{

}
.about-title{
	letter-spacing: 8px;
	margin-bottom: 40px;
}
.about-title-sub{
	display: block;
	font-size: 34px;
	font-weight: bold;
	letter-spacing: 5px;
	color: #604c3f;
	margin-bottom: 17px;
}
.about-text{
	font-size: 19px;
	text-align: center;
	line-height: 2;
	padding: 0 27px;
	margin-bottom: 108px;
}
.about-image{
	text-align: center;
	margin-bottom: 53px;
}
.about-image-title{
	font-size: 49px;
	color: #37b9bd;
	text-align: center;
	letter-spacing: 4px;
	display: inline-block;
	padding-left: 1em;
	padding-right: 1em;
	margin-bottom: 50px;
}
.about-ages-risk{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 30px;
	margin-bottom: 64px;
}
.about-ages-risk-item{
	width: 32.5%;
	background-color: #efefef;
	font-size: 37px;
	letter-spacing: 6px;
	color: #7a6a56;
	text-align: center;
	padding: 20px 0;
	margin-bottom: 10px;
}
.about-ages-risk::after{
  content:"";
  display: block;
  width:32.5%;
}
.about-ages-risk-summary{
	font-size: 35px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 3px;
}

@media screen and (max-width:768px) {
	.about-title{
		font-size: 26px;
	}
	.about-title-sub{
		font-size: 16px;
		letter-spacing: 2px;
	}
	.about-text{
		font-size: 16px;
		padding: 0 10px;
		margin-bottom: 54px;
	}
	.about-image-title{
		font-size: 30px;
		letter-spacing: 0;
		padding-left: 0.5em;
		padding-right: 0.5em;
	}
	.about-ages-risk-item{
		box-sizing: border-box;
		width: 49%;
		font-size: 20px;
		letter-spacing: 4px;
		padding-left: 0.5em;
		padding-right: 0.5em;
	}
	.about-ages-risk-summary{
		font-size: 28px;
		letter-spacing: 1px;
	}
}

/*=============================
 * 糖化が進行しやすいもの
 *============================= */
.saccharification{

}
.saccharification-title{
	margin-bottom: 70px;
}

@media screen and (max-width:768px) {
	.saccharification-title{
		margin-bottom: 35px;
	}
}

/*=============================
 * 簡単測定の2ステップ
 *============================= */
.step-text{
	font-size: 35px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 60px;
}
.step-list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.step-list-item{
	position: relative;
	text-align: center;
	width: 50%;
}
.step-list-item:first-child:after{
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 1px;
	height: 552px;
	background-color: #604c3f;
}
.step-list-item-img{
	margin-bottom: 32px;
}
.step-list-item-img .img-title{
	width: 248px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 37px;
}
.step-list-title{
	font-size: 45px;
	margin-bottom: 25px;
}
.step-list-point{
	font-size: 30px;
}
.step-list-point span{
	background-color: #f8b62d;
	color: #fff;
	text-align: center;
	border-radius: 8px;
	padding: 10px;
	font-size: 26px;
	font-weight: bold;
	margin-right: 10px;
}
.step-list-link{
	font-size: 21px;
	color: #f39800;
	text-decoration: underline;
}

@media screen and (max-width:768px) {
	.step-text{
		font-size: 20px;
	}
	.step-list{
		display: block;
	}
	.step-list-item{
		width: 100%;
		padding-bottom: 3em;
		margin-bottom: 3em;
	}
	.step-list-item:first-child:after{
		top: unset;
		bottom: 0;
		left: 50%;
		right: unset;
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
		transform: translateX(-50%);
		width: 80%;
		height: 1px;
	}
	.step-list-item:last-child{
		padding-bottom: 0;
		margin-bottom: 0;
	}
	.step-list-item-img img{
		display: block;
		text-align: center;
		margin: 0 auto;
	}
	.step-list-title{
		font-size: 32px;
	}
	.step-list-point{
		font-size: 24px;
	}
	.step-list-point span{
		font-size: 18px;
	}
}

/*=============================
 * こんな所でご活用ください
 *============================= */
.practical .remarks{
	display: inline-block;
	font-size: 34px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	text-align: center;
	letter-spacing: 8px;
	color: #fff;
	padding-top: 15px;
	padding-bottom: 9px;
	margin-bottom: 110px;
}
.practical-list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
.practical-list-item{
	width: 50%;
	margin-bottom: 75px;
}
.practical-list-item .practical-item-title{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	font-size: 32px;
	font-weight: bold;
	height: 3em;
	background-repeat: no-repeat;
	background-position: left 32px center;
	padding-left: 146px;
	margin-bottom: 36px;
}
.practical-list-item.item01 .practical-item-title{
	background-image: url(../images/icon-practical01.png);
}
.practical-list-item.item02 .practical-item-title{
	background-image: url(../images/icon-practical02.png);
}
.practical-list-item.item03 .practical-item-title{
	background-image: url(../images/icon-practical03.png);
}
.practical-list-item.item04 .practical-item-title{
	background-image: url(../images/icon-practical04.png);
}
.practical-list-item.item05 .practical-item-title{
	background-image: url(../images/icon-practical05.png);
}
.practical-list-item.item06 .practical-item-title{
	background-image: url(../images/icon-practical06.png);
}
.practical-list-item.item07 .practical-item-title{
	background-image: url(../images/icon-practical07.png);
}
.practical-list-item.item08 .practical-item-title{
	background-image: url(../images/icon-practical08.png);
}
.use-for-list{
	margin-left: 4.5em;
}
.use-for-list .use-for-item{
	font-size: 19px;
	color: #fff;
	margin-bottom: 6px;
}
.use-for-list .use-for-item:before{
	content: '';
	display: inline-block;
	width: 22px;
	height: 23px;
	background-image: url(../images/icon-check.svg);
	background-repeat: no-repeat;
	background-position: left center;
	margin-right: 1em;
}

@media screen and (max-width:768px) {
	.practical{
		padding-bottom: 3em;
	}
	.practical .remarks{
		font-size: 24px;
		letter-spacing: 5px;
		margin-bottom: 55px;
	}
	.practical-list{
		display: block;
	}
	.practical-list-item{
		display: flex;
    flex-flow: column;
    align-items: center;
		width: 100%;
	}
	.practical-list-item:last-child{
		margin-bottom: 0;
	}
	.practical-list-item .practical-item-title{
		font-size: 25px;
		background-position: left center;
		background-size: 55px;
		padding-left: 90px;
	}
	.use-for-list{
		margin-left: 1em;
	}
	.use-for-list .use-for-item{
		font-size: 16px;
		text-indent: -2.0em;
    margin-left: 2.0em;
	}
	.use-for-list .use-for-item:before{
		margin-right: 0.5em;
	}
}


/*=============================
 * 製品仕様
 *============================= */
.specification .eyecatch{
	position: relative;
	background-image: url(../images/bg-specification.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
.specification .eyecatch .eyecatch-image{
	text-align: right;
	padding: 30px 0;
}
.specification-badge{
	padding-right: 60px;
}
.specification-price{
	margin-top: 40px;
}
.specification-price img{
	width: 430px;
	max-width: 100%;
}
.specification-table{
	border-collapse: collapse;
	border: 1px solid #9fa0a0;
	width: 100%;
	margin-bottom: 45px;
}
.specification-table tr{
	border-bottom: 1px solid #9fa0a0;
}
.specification-table th{
	box-sizing: border-box;
	width: 167px;
	font-size: 19px;
	font-weight: bold;
	text-align: center;
	background-color: #8bbce5;
	color: #fff;
	border-right: 1px solid #9fa0a0;
	padding: 15px 0;
}
.specification-table td{
	font-size: 19px;
	padding: 15px;
}
.specification-caution{
	text-align: center;
	font-size: 21px;
	letter-spacing: 3px;
	margin-bottom: 112px;
}
.specification-sub-title{
	font-size: 62px;
	font-weight: bold;
	color: #f39800;
	text-align: center;	
	margin-bottom: 60px;
}
.option-list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	margin-bottom: 85px;
}
.option-list-item{
	width: 24%;
	text-align: center;
}
.option-title{
	font-size: 19px;
	font-weight: bold;
	text-align: center;
	height: 3em;
	margin-top: 14px;
	margin-bottom: 6px;
}
.option-title span{
	font-size: 15px;
}
.option-numer{
	display: inline-block;
	border: 6px solid #efefef;
	text-align: center;
	padding: 0 1em;
}
.option-fullset{
	box-sizing: border-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 612px;
	max-width: 100%;
	border-top: 1px solid #604c3f;
	border-bottom: 1px solid #604c3f;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 56px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 90px;
	margin-bottom: 30px;
}
.option-fullset-text{
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
	background-color: #fff794;
	text-align: center;
	padding: 0.5em 1em;
}
.option-fullset-price{
	position: relative;
	font-size: 53px;
	letter-spacing: 1px;
	color: #85b7e3;
	padding-right: 74px;
}
.option-fullset-price .yen{
	position: absolute;
	bottom: 25px;
	margin-left: 10px;
}
.option-fullset-price .yen img{
	width: 20px;
}
.warranty-image{
	width: 980px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 53px;
}
.warranty-text{
	font-size: 36px;
	font-weight: bold;
	letter-spacing: 5px;
	text-align: center;
}

@media screen and (max-width:768px) {
	.specification .eyecatch{
		display: none;
	}
	.specification-badge{
		padding-right: 0;
		text-align: center;
		width: 80%;
		margin: 0 auto;
	}
	.specification-price{
		text-align: center;
	}
	.specification-price img{
		width: 80%;
	}
	.specification-table tr,
	.specification-table th,
	.specification-table td{
		display: block;
		font-size: 16px;
		text-align: center;
		width: 100%;
	}
	.specification-table th,
	.specification-table td{
		box-sizing: border-box;
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 1em;
		padding-right: 1em;
	}
	.specification-caution{
		font-size: 16px;
		margin-bottom: 56px;
	}
	.specification-sub-title{
		font-size: 40px;
	}
	.option-list{
		justify-content: space-between;
		flex-wrap: wrap;
		margin-bottom: 42px;
	}
	.option-list-item{
		width: 48%;
		margin-bottom: 2em;
	}
	.option-title{
		font-size: 16px;
	}
	.option-title span{
		font-size: 12px;
	}
	.option-numer{
		border-width: 3px;
	}
	.option-fullset{
		display: block;
		padding-left: 0;
		padding-bottom: 20px;
	}
	.option-fullset-price{
		line-height: 1;
		padding-top: 0.5em;
		text-align: center;
		padding-right: 0;
	}
	.option-fullset-price .yen{
		bottom: 7px;
	}
	.specification-sub-title{
		margin-bottom: 30px;
	}
	.warranty-image{
		margin-bottom: 26px;
	}
	.warranty-text{
		font-size: 28px;
		letter-spacing: 1px;
	}
}

/*=============================
 * 安全制について
 *============================= */
.safety{

}
.safety-frame{
	background-color: #fff;
	padding: 90px 87px 67px;
}
.safety-images{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}
.safety-images p:first-child{
	width: 186px;
	max-width: 25%;
}
.safety-images p:last-child{
	width: 613px;
	max-width: 75%;
}
.safety-text{
	font-size: 19px;
	font-weight: bold;
	line-height: 2;
	margin-bottom: 35px;
}
.safety-text:last-of-type{
	margin-bottom: 0;
}

@media screen and (max-width:768px) {
	.safety-frame{
		padding: 45px 20px;
	}
	.safety-images{
		margin-bottom: 40px;
	}
	.safety-text{
		font-size: 16px;
		margin-bottom: 17px;
	}
}

/*=============================
 * お客様の声
 *============================= */
.voice-frame{
	font-size: 43px;
	border: 1px solid #604c3f;
	text-align: center;
	letter-spacing: 7px;
	padding: 5em 0;
}

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

/*=============================
 * よくある質問
 *============================= */
.faq{

}
.faq-list{
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 14px;
}
.faq-q{
	cursor: pointer;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	background-color: #fff;
	font-size: 25px;
	font-weight: bold;
	padding: 22px 0 22px 28px;
}
.faq-q:before{
	content: '';
	display: block;
	background-image: url(../images/icon-q.svg);
	background-repeat: no-repeat;
	width: 24px;
	height: 35px;
	margin-right: 1em;
}
.faq-q:after{
	content: '';
	display: block;
	background-image: url(../images/icon-arrow-open.svg);
	background-repeat: no-repeat;
	width: 30px;
	height: 17px;
	margin-right: 20px;
	margin-left: auto;
}
.faq-q.close:after{
	background-image: url(../images/icon-arrow-close.svg);
}
.faq-a{
	display: none;
	font-size: 20px;
	letter-spacing: 1px;
	padding: 32px 58px 32px 32px;
}

@media screen and (max-width:768px) {
	.faq-list{
		margin-left: 0;
		margin-right: 0;
	}
	.faq-q{
		font-size: 17px;
		padding: 19px 0 19px 12px;
	}
	.faq-q:before{
		width: 64px;
		margin-right: 5px;
	}
	.faq-q:after{
		background-position: right center;
		width: 64px;
		margin-right: 10px;
	}
	.faq-a{
		font-size: 18px;
		padding-top: 16px;
		padding-bottom: 16px;
		padding-left: 20px;
		padding-right: 20px;
	}
}

/*=============================
/*-- お問い合わせ・資料請求
 *============================= */
#contact-zone{
	box-sizing: border-box;
	clear:both;
	margin:0 auto 0 auto;
	padding:0 15px;
	width:750px;
	}

p.center{
	color: #F00;
	text-align: center;
}

p.bold{
	text-align: left!important;
	font-weight: bold;
	padding-top: 30px;
}

p.left{
	text-align: left!important;
	padding-bottom: 10px;
}

span.mail{
	display: block;
	line-height: 20px;
}

.c3{
	margin:0 auto;
	padding:15px 0 0 0;
	width:750px;
	text-align:center;
}
	
.c1{
	background:#fff;
	margin:0 auto 0 auto;
	padding:15px 20px;
	border-bottom:1px solid #ccc;
	font-weight:bold;
	color:#595858;
	display:block;
	line-height:50px;
	width:710px;
	text-align:left;
}
 
.c2{
	background:#E8EEF9;
	padding:20px;
	margin:0 auto 0 auto;
	border-bottom:1px solid #ccc;
	font-weight:bold;
	color:#595858;
	line-height:50px;
	width:710px;
}
 
p.c1,p.c2{
	margin:0;
}
 
.c1:hover,.c2:hover{
	background:#FFEEEE;
}
 
.c1.last,.c2.last{
	border-bottom:none;
}

.submit{
	text-align:center;
	padding:10px 0 20px 0;
}
 
.m-alert{
	padding:5px;
	background:#ff8080;
	color:#fff;
	margin:5px;
	font-weight:normal;
}
 
input[type=text],input[type=tel],input[type=email]{
	font-size:15px;
}
 
.c1 textarea,.c2 textarea{
	font-size:13px;
	width:710px;
}
 
.file{
	margin:10px;
	display:block;
}
 
span.wpcf7-list-item { display: block; }

 
input[type=text]:focus,input[type=email]:focus,input[type=tel]:focus{
   border:solid 1px #20b2aa;
}
 
input[type=text], select,input[type=email],input[type=tel]{
   outline: none;
}
 
.contact_right textarea{
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	border:#a9a9a9 1px solid;
	-moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
	padding:0 3px;
}
 
.contact_right textarea:focus{
   border:solid 1px #20b2aa;
}
 
.contact_right textarea {
   outline: none;
}
 
input[type=submit]{
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	border:#a9a9a9 1px solid;
	-moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
	width:33%;
	height:50px;
	font-size:20px;
	padding:0 3px;
	margin:15px;
	cursor:pointer;
	color:#333;
	font-weight:bold;
	background:#f5f5f5;
	text-shadow:1px 1px 0px #fff;
}

input[type=reset]{
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	border:#a9a9a9 1px solid;
	-moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
	width:33%;
	height:50px;
	font-size:20px;
	padding:0 3px;
	margin:15px;
	cursor:pointer;
	color:#333;
	font-weight:bold;
	background:#f5f5f5;
	text-shadow:1px 1px 0px #fff;
}

.contact_form input[type=submit]{
	width:50%;
}

.contact_form input[type=text],.contact_form input[type=email]{
	height:50px;
	font-size:1.5em;
}
 
input[type="radio"]{
	margin: 0 0 4px 0 !important;
}

@media screen and (max-width:768px) {
	#contact-zone{
		width: 100%;
	}
	.c1,
	.c2,
	.c3{
		box-sizing: border-box;
		width: 100%;
		padding: 0 5px;
	}
	.c3{
		padding: 1em;
	}
	#mailformpro input[type="text"],
	#mailformpro input[type="email"],
	#mailformpro input[type="email2"],
	#mailformpro textarea{
		box-sizing: border-box;
		width: 100% !important;
		border: 1px solid #eeeeee;
	}
	#mailformpro textarea{
		height: 150px;
		padding-bottom: 1em;
		margin-bottom: 1em;
	}
	#mailformpro input.zip{
		width: 6.5em !important;
	}
	#mailformpro select{
		background-color: #fff;
	}
	p.center{
		font-size: 12px;
		padding-top: 1em;
	}
	span.mail{
		font-size: 12px;
		padding: 1em 0;
	}
}

/*=============================
 * footer
 *============================= */
.footer{
	width:100%;
	margin:60px 0 0 0;
 }
.copylight{
	text-align: center;
	font-size: 17px;
	font-weight: bold;
	color: #fff;
	padding:10px;
}

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

/*=============================
 * thanksページ
 *============================= */
.thanks-page{
	background-color: #f8b952;
}
.thanks-main{
	padding-top: 150px;
	padding-top: 75px;
}
.thanks-main .title{
	text-align: center;
}
.thanks-main .thanks-frame{
	background-color: #fff;
	border-radius: 10px;
	padding: 2em;
	margin-top: 2em;
}
.thanks-main .thanks-frame .caution{
	margin-top: 2em;
}

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

