﻿@charset "UTF-8";

@import url('//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css?family=Quicksand:300,400,500,700');
@import url('//fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');


/*========================
ヘッダー
========================*/
header {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  background-color: #ECE7C6;
  background-image:url(../img/header_bg.png);
  background-position:100% bottom;
  background-repeat:no-repeat;
  -moz-background-size:contain;
  background-size:contain;
  margin-bottom: 24px;
}
header img {
  z-index: 9;
  padding: 64px 32px 0;
}
@media screen and (max-width: 840px) {
header img {
  padding: 64px 18px 0 32px;
  }
}
@media screen and (max-width: 640px) {
header img {
  padding: 48px 12px 0 24px;
  }
}
@media screen and (max-width: 480px) {
header img {
  padding: 32px 0 0 20px;
  }
}


/*========================
お知らせ
========================*/
.newsimg {
  width: 100%;
  max-width: 180px;
  margin-bottom: 18px;
}
@media screen and (max-width: 520px) {
.newsimg {
  max-width: 120px;
  margin-bottom: 12px;
  }
}
.newstitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  color: #C43307;
  font-size: 2.2em;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 480px) {
.newstitle {
  font-size: 1.7em;
  }
}


/*========================
商品概要
========================*/
.itembox {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 42px;
  background: #ECE7C6;
}
.iteminner {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:flex-start;
}
.iteminner_img {
  max-width: 480px;
  margin: 0 30px 0 0;
}
.iteminner_detail {
  flex: 1;
}
.iteminner_detail h2{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.4;
  margin-bottom: 12px;
}
@media screen and (max-width: 1000px) {
.iteminner_img {
  max-width: 320px;
  }
}
@media screen and (max-width: 767px) {
.itembox {
  padding: 32px;
  }
.iteminner {
  flex-direction: column;
  display:block;
  }
.iteminner_img {
  max-width: 100%;
  margin: 0 0 18px 0;
  text-align: center;
  }
.iteminner_img img{
  width: 100%;
  max-width: 320px;
  }
}

/* 商品概要テーブル*/
.itemtable {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.6;
}
.itemtable th{
  font-size: 0.9em;
  padding: 8px 12px;
  text-align: center;
  vertical-align: middle;
  background-color: #EEE;
  border: 1px solid #999;
  font-weight:500;
}
.itemtable td{
  font-size: 0.9em;
  padding: 8px 12px;
  background-color: #FFF;
  text-align:left;
  vertical-align: middle;
  border: 1px solid #999;
  font-weight:500;
}
@media screen and (max-width: 640px) {
.itemtable th{
  padding: 6px 10px;
  }
.itemtable td{
  padding: 6px 10px;
  }
}

/* ボタン*/
.itembtn {
  display: block;
  position: relative;
  background: rgb(159,40,6);
  background: linear-gradient(0deg, rgba(159,40,6,1) 0%, rgba(196,51,7,1) 100%);
  width: 100%;
  padding: 12px 5px 15px;
  color: #FFF !important;
  text-align: center;
  text-decoration: none;
  font-size: 1.05em;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  transition: all .3s;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.itembtn:after{
  content: '';
  position: absolute;
  top: 38%;
  right: 18px;
  display: block;
  width: 15px;
  height: 15px;
  border-top: 3px solid #FFF; 
  border-right: 3px solid #FFF; 
  transform: rotate(45deg); 
}
@media screen and (max-width: 840px) {
.itembtn {
  font-size: 0.9em;
  }
.itembtn:after{
  right: 12px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #FFF; 
  border-right: 2px solid #FFF; 
  }
}
@media screen and (max-width: 767px) {
.itembtn {
  font-size: 1em;
  }
}


/*========================
特典
========================*/
.benefitwrap {
  width:100%;
  height: auto;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:stretch;
  flex-wrap: wrap;
}
.benefitwrap li {
  width: 33.33%;
  max-width:33.33%;
  width: calc(100% / 3);
  height: auto;
  padding:0 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 840px) {
.benefitwrap li {
  padding:0 6px;
  }
}
@media screen and (max-width: 640px) {
.benefitwrap li {
  flex-direction: column;
  display:block;
  width: 100%;
  max-width:100%;
  padding:0 0 20px;
  }
.benefitwrap li:last-child{
  padding:0 0 0;
  }
}

.benefitbox {
  width: 100%;
  height: 100%;
  padding: 24px;
  margin: 0 auto;
  background: #EEE;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  text-align: center;
}
.benefitbox img {
  width: 100%;
  max-width: 142px;
  margin-bottom: 10px;
}
.benefitbox h4{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.1em;
  color: #0C1927;
  margin-bottom: 3px;
}
.benefitbox h3{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.4;
  font-size: 1.4em;
  color: #0C1927;
}
.benefitbox h3 span{
  font-size: 0.7em;
}
.benefitbox br{
  display: none;
}
@media screen and (max-width: 960px) {
.benefitbox {
  padding: 20px 15px 24px;
  }
.benefitbox img {
  max-width: 124px;
  }
.benefitbox h4{
  font-size: 0.9em;
  }
.benefitbox h3{
  font-size: 1.2em;
  }
.benefitbox br{
  display: block;
  }
}
@media screen and (max-width: 767px) {
.benefitbox {
  padding: 20px 8px 24px;
  }
.benefitbox h4{
  font-size: 0.8em;
  }
}
@media screen and (max-width: 640px) {
.benefitbox {
  padding: 20px 15px 24px;
  }
.benefitbox h4{
  font-size: 1.2em;
  }
.benefitbox h3{
  font-size: 1.6em;
  }
.benefitbox br{
  display: none;
  }
}
@media screen and (max-width: 480px) {
.benefitbox img {
  max-width: 100px;
  }
}


/*========================
毎年ご好評をいただいている理由
========================*/
.reasonwrap {
  width: 100%;
  padding: 0 0 24px;
  margin: 0 auto;
  background-image:url(../img/reason_bg.png);
  background-repeat:repeat-y;
  background-position: left top; 
}
@media screen and (max-width: 840px) {
.reasonwrap {
  padding: 0 0 6px;
  }
}

.reasontitle {
  width: 100%;
  padding: 100px 24px 124px;
  margin: 0 auto;
  background-image:url(../img/reason_title.png);
  background-position:center center;
  background-repeat:no-repeat;
  -moz-background-size:cover;
  background-size:cover;
  clip-path: polygon(0 0, 100% 0, 100% 84%, 50% 100%, 0 84%);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.5;
  font-size: 2.6em;
  color: #FFF;
  letter-spacing: 0.05em;
  text-shadow: 4px 4px 4px rgba(0,0,0,0.6);
  margin-bottom: 48px;
}
@media screen and (max-width: 1000px) {
.reasontitle {
  padding: 100px 24px 124px;
  font-size: 2.3em;
  }
}
@media screen and (max-width: 767px) {
.reasontitle {
  padding: 64px 15px 84px;
  font-size: 2em;
  }
}
@media screen and (max-width: 640px) {
.reasontitle {
  padding: 64px 15px 84px;
  }
}
@media screen and (max-width: 480px) {
.reasontitle {
  padding: 32px 15px 42px;
  font-size: 1.6em;
  }
}

/*-------------------------
ボックス
--------------------------*/
.reasonbox {
  width: 100%;
  margin: 0 auto;
  padding: 6px;
  background: #FFF;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
  position: relative;
  margin-bottom: 64px;
}
@media screen and (max-width: 480px) {
.reasonbox {
  margin-bottom: 48px;
  }
}

.reasonbox h3 {
  position: absolute;
  top: -18px;
  left: 18px;
  background-color: #629F24;
  color: #FFFF4D;
  padding: 15px 32px 18px 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.8em;
  line-height: 100%;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.6);
  clip-path: polygon(0 1%, 100% 0%, 94% 100%, 0% 100%);
}
@media screen and (max-width: 480px) {
.reasonbox h3 {
  left: 0;
  padding: 12px 24px 15px 18px;
  font-size: 1.5em;
  }
}

.reasoncol {
  width:100%;
  height: auto;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:stretch;
  flex-wrap: wrap;
}
.reasoncol_detail {
  width: 65%;
  padding: 60px 24px 24px;
}
.reasoncol_img {
  width: 35%;
  height: auto;
}
.reasoncol_detail h4{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.5;
  color: #222;
  margin-bottom: 12px;
}
@media screen and (max-width: 840px) {
.reasoncol {
  flex-direction: column;
  display:block;
  }
.reasoncol_detail {
  width: 100%;
  }
.reasoncol_img {
  width: 100%;
  height: 300px;
  }
}
@media screen and (max-width: 480px) {
.reasoncol_detail {
  padding: 42px 18px 18px;
  }
.reasoncol_img {
  height: 240px;
  }
}

.reasonimg1 {
  width: 100%;
  height: 100%;
  background-image:url(../img/reason1.png);
  background-position:center center;
  background-repeat:no-repeat;
  -moz-background-size:cover;
  background-size:cover;
}
.reasonimg2 {
  width: 100%;
  height: 100%;
  background-image:url(../img/reason2.png);
  background-position:center center;
  background-repeat:no-repeat;
  -moz-background-size:cover;
  background-size:cover;
}
.reasonimg3 {
  width: 100%;
  height: 100%;
  background-image:url(../img/reason3.png);
  background-position:center center;
  background-repeat:no-repeat;
  -moz-background-size:cover;
  background-size:cover;
}
.reasonimg4 {
  width: 100%;
  height: 100%;
  background-image:url(../img/reason4.png);
  background-position:center center;
  background-repeat:no-repeat;
  -moz-background-size:cover;
  background-size:cover;
}


/*========================
塩抜きのやり方
========================*/
.saltremove {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:flex-start;
  flex-wrap: wrap;
}
.saltremove li {
  width: 50%;
  max-width:50%;
  width: calc(100% / 2);
  padding:0 12px 24px 12px;
  box-sizing: border-box;
}
.saltremove li p{
  font-size: 0.95em;
}
.saltremove img {
  width:100%;
  max-width: 480px;
  margin-bottom: 6px;
}
@media screen and (max-width: 640px) {
.saltremove li {
  width: 100%;
  max-width:420px;
  margin: 0 auto;
  padding:0 0 24px 0;
  }
.saltremove li:last-child{
  padding:0 0 0 0;
  }
}

/*スラッシュ吹き出し*/
.saltremove .slashtitle{
  position: relative;
  text-align: center;
  display: block;
  width: fit-content;
  line-height: 1;
  margin: 0 auto;
  padding: 0 1.2em 0.5em;
  margin-bottom: 12px;
  color: #619F24;
}
.saltremove .slashtitle{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.saltremove .slashtitle:before,
.saltremove .slashtitle:after{
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 1.6em;
  background: #619F24;
}
.saltremove .slashtitle:before {
  transform: rotate(-30deg);
  left: 0;
}
.saltremove .slashtitle:after {
  transform: rotate(30deg);
  right: 0;
}


/*========================
納品までのながれ
========================*/
.stepcol {
  width:100%;
  margin: auto;
  padding:32px 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:center;
}
.stepcol_img {
  max-width: 320px;
  margin: 0 30px 0 0;
}
.stepcol_img img {
  width: 100%;
  max-width: 420px;
}
.stepcol_detail {
  flex: 1;
}
.stepcol_detail h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #222;
  font-size: 1.3em;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
.stepcol_img {
  max-width: 240px;
  margin: 0 24px 0 0;
  }
}
@media screen and (max-width: 767px) {
.stepcol {
  flex-direction: column;
  display:block;
  }
.stepcol_img {
  max-width: 100%;
  margin: 0 0 18px 0;
  text-align: center;
  }
}
@media screen and (max-width: 640px) {
.stepcol {
  padding:32px 0 24px;
  }
.stepcol_img img {
  max-width: 320px;
  }
}
@media screen and (max-width: 480px) {
.stepcol_detail h4 {
  font-size: 1.2em;
  margin-bottom: 8px;
  }
.stepcol_img img {
  max-width: 240px;
  }
}


/*========================
メールフォーム
========================*/
/* タイトル部 */
.formwrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 12px 64px;
  background: #629F24;
  position: relative;
  margin-top: 64px;
}
.formtitleimg {
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.formtitleimg img{
  width: 320px;
  margin: 0 auto;
}
.formwrap h2{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 1.5em;
  line-height: 1.4;
  text-align: center;
  color: #FFF;
  letter-spacing: 0.04em;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.6);
  padding-top: 180px;
  margin-bottom: 10px;
}
.formwrap h3{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 2.2em;
  line-height: 1.4;
  text-align: center;
  color: #FFF;
  letter-spacing: 0.04em;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.6);
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
.formtitleimg img{
  width: 240px;
  }
.formwrap h2{
  padding-top: 120px;
  }
}
@media screen and (max-width: 640px) {
.formwrap {
  padding: 0 12px 48px;
  }
.formtitleimg img{
  width: 200px;
  }
.formwrap h2{
  font-size: 1.15em;
  padding-top: 84px;
  margin-bottom: 5px;
  }
.formwrap h3{
  font-size: 1.6em;
  margin-bottom: 24px;
  }
}

/* 導入文 */
.formintrowrap {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  color: #FFF;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 500;
  text-align: center;
  padding: 0 24px;
}
@media screen and (max-width: 840px) {
.formintrowrap {
  text-align: left;
  }
.formintrowrap br{
  display: none;
  }
}
@media screen and (max-width: 480px) {
.formintrowrap {
  padding: 0 18px;
  }
}

/* お急ぎの方はこちらから */
.hurry{
  border: 1px solid #FFF;
  position: relative;
  margin-top: 1em;
  max-width: 640px;
  margin: 0 auto;
  color: #FFF;
  font-family: 'Zen Old Mincho', serif;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.hurry a{
  color: #FFF !important;
  text-decoration: none !important;
  font-weight: 600;
}
.hurry h4{
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
  top: -1em;
}
.hurry h4 span{
  padding: 0 0.5em;
  background: #629F24;
  color: #FFF;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  letter-spacing: 0.03em;
}
.hurry .inner{
  padding: 24px 24px 24px;
  text-align: center;
}
.hurry span{
  font-size: 1.5em;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin: 0 15px 0 6px;
  font-weight: 600;
}
.hurry .inner .hour{
  font-size: 0.85em;
  line-height: 1.7;
  margin-top: 8px;
}
.hurry .inner br{
  display: none;
}
@media screen and (max-width: 640px) {
.hurry .inner br{
  display: block;
  }
}
@media screen and (max-width: 480px) {
.hurry .inner{
  padding: 18px 24px 18px;
  text-align: center;
  }
}

/* フォーム */
.formbox {
  width: 100%;
  max-width: 1000px;
  background: #FFF;
  margin: 0 auto;
  padding: 32px;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
}
@media screen and (max-width: 640px) {
.formbox {
  padding: 24px;
  }
}

.formtable {
  width: 100%;
  border-collapse: collapse;
}
.formtable th{
  width: 40%;
  padding: 15px 20px;
  text-align:right;
  vertical-align: top;
  font-weight:700;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
}
.formtable td{
  width: 60%;
  padding: 15px 20px;
  text-align:left;
  vertical-align: top;
  letter-spacing: 0.04em;
  font-size: 0.95em;
}
@media screen and (max-width: 767px) {
.formtable th,
.formtable td {
  display:block;
  width:100%;
  }
.formtable th{
  padding: 0 0 12px;
  text-align:left;
  }
.formtable td{
  padding: 0 0 20px 12px;
  }
}

/*-------------------------
フォームスタイリング
--------------------------*/
/* 入力・選択欄 */
input[type='text'],
input[type='search'],
input[type='tel'],
input[type='url'],
input[type='email'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='number'],
select {
  -webkit-appearance:none;
  -moz-appearance:none;
  -ms-appearance:none;
  -o-appearance:none;
  appearance:none;
  width:100%;
  outline: none;
  border: 1px solid #AAA;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  background:#FFF;
  padding:0.5em;
  font-size:1.3em;
}
select::-ms-expand {
  display: none;
}
textarea{
  -webkit-appearance:none;
  -moz-appearance:none;
  -ms-appearance:none;
  -o-appearance:none;
  appearance:none;
  width:100%;
  outline: none;
  border: 1px solid #AAA;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  background:#FFF;
  padding:0.5em;
  font-size:1.2em;
  height:180px;
}
input::placeholder,
textarea::placeholder {
	color: #CCC;
}
/* Edge */
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	color: #CCC;
}
/* IE11 & IE10 */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #CCC;
}
/* ラジオボタン・チェックボックス */
input[type="radio"] , 
input[type="checkbox"]{
  -webkit-transform: scale(1.6);
  transform: scale(1.6);
  margin:0 1em 1.3em 0;
  border: 1px solid #AAA;
}
label {
  margin-right:1em;
  cursor:pointer;
  display: inline-block;
  margin-left:1.3em;
  text-indent:-1.3em;
  line-height: 1.5;
  margin-bottom: 0.6em;
}
/* ボタン */
input[type='submit'],
input[type='reset'],
input[type='button'],
button {
  -webkit-appearance:none;
  -moz-appearance:none;
  -ms-appearance:none;
  -o-appearance:none;
  appearance:none;
  font-size:1.6em;
  cursor: pointer;
  padding: 32px 24px 38px;
  background-color: #715F06;
  text-decoration: none;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  line-height: 100%;
  border: 0;
  letter-spacing: 0.06em;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  margin: 18px 0 0;
}
@media screen and (max-width: 480px) {
input[type='submit'],
input[type='reset'],
input[type='button'],
button {
  font-size:1.4em;
  padding: 20px 24px 24px;
  margin: 0 0 0;
  }
}
/* 必須項目アイコン */
.hissu {
  font-size:0.75em;
  line-height:100%;
  color:#FFF;
  background-color:#CC3300;
  padding:2px 5px;
  margin-left:8px;
  font-weight:normal;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
  white-space: nowrap;
}


