/* reset */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}
ul {
  list-style: none;
}
q:before, q:after {
  content: '';
}
object, embed {
  vertical-align: top;
}
legend {
  display: none;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}
img, abbr, acronym, fieldset {
  border: 0;
}
/*これから上は一般的に入れておく*/
body {
  font-family: 'M PLUS Rounded 1c', sans-serif; /*全体で使用される書体を指定、google web fontを仕様　HTMLに記載必要*/
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  /*background-image: url("../images/bg.gif"); /*全体の背景*/
  /*background-repeat: repeat; /*背景を繰り返す*/
  height: 100%; /*20211002追記*/
}
body:after { /*擬似要素をつくる 20211002追記*/
  position: fixed; /*固定配置*/
  top: 0;
  left: 0; /*左上に固定*/
  width: 100%;
  height: 100%; /*画面全体を覆う*/
  content: "";
  z-index: -1; /*背景にするため
  /*背景のグラデーション https://hp-html.jp/gradient/で生成*/
  background: #8aee63;
  background: -moz-linear-gradient(#ffffff 0%, #ffffff 25%, #c0f6aa 50%, #8aee63 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(25%, #ffffff), color-stop(50%, #c0f6aa), to(#8aee63));
  background: -webkit-linear-gradient(#ffffff 0%, #ffffff 25%, #c0f6aa 50%, #8aee63 100%);
  background: -o-linear-gradient(#ffffff 0%, #ffffff 25%, #c0f6aa 50%, #8aee63 100%);
  background: linear-gradient(#ffffff 0%, #ffffff 25%, #c0f6aa 50%, #8aee63 100%);
}
a {
  color: #0066ff; /*リンク時の色指指定*/
  text-decoration: none; /*リンク時のアンダーラインの指定、アンダーライン無し*/
}
a:hover, .active {
  text-decoration: underline; /*リンクにカーソルを載せた時の動作、アンダーライン出現*/
}
a:active, a:focus, input:active, input:focus {
  outline: 0;
}
#sec01, #sec02, #sec04, #sec03, #sec05, #sec06, #sec07, #sec08, #sec09 {
  background-color: #FFFFFF;
  padding: 25px 0 20px 0;
  max-width: 1200px; /*最大幅1200px*/
  margin: -25px auto 45px auto; /*中央寄せする為に左右のマージンをautoに設定する。*/
  overflow: hidden; /*背景としてpadding等を効かせるのに必要*/
  border-radius: 10px; /*角を10pxの半径でRをつける*/
}
#mailformpro {
  margin: 0 10px;
}
/* ヘッダー
------------------------------------------------------------*/
header {
  max-width: 1200px;
  margin: 0 auto;
}
#header {
  position: relative;
  overflow: hidden;
  height: 160px;
  margin: 0 auto;
  padding-top: 70%;
  background-image: url("../images/main.jpg");
  -webkit-background-size: cover;
}
#slogan {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  /*  color: #fff;*/
  line-height: 1.2;
  text-align: center;
}
#slogan h1 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 700;
  text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF, 0-2px 0 #FFF;
}
#slogan h2 {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF;
}
/* フッター
------------------------------------------------------------*/
#footer {
  clear: both;
  padding: 50px 10px 50px 0;
  text-align: center;
  font-size: 12px;
}
/* 共通
------------------------------------------------------------*/
/*h1, h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
}*/
img {
  width: 100%;
  height: auto;
}
section {
  clear: both;
}
.title {
  text-align: center;
  padding: 1rem 3rem;
  margin: 0 1rem 1rem;
  border-radius: 10px;
  color: #fff;
  background-color: #24BE40;
  /*background-image: -webkit-gradient(linear, left top, right top, from(#209cff), to(#68e0cf));
  background-image: -webkit-linear-gradient(left, #209cff 0%, #68e0cf 100%);
  background-image: linear-gradient(to right, #209cff 0%, #68e0cf 100%);*/
}  
/*text-align: center;
  background: rgb(102, 205, 170);
  background: -moz-linear-gradient(top, rgba(32, 178, 170, 1) 0%, rgba(224, 255, 255, 1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 93, 177, 1)), color-stop(100%, rgba(239, 1, 124, 1)));
  background: -webkit-linear-gradient(top, rgba(255, 93, 177, 1) 0%, rgba(239, 1, 124, 1) 100%);
  background: -o-linear-gradient(top, rgba(255, 93, 177, 1) 0%, rgba(239, 1, 124, 1) 100%);
  background: -ms-linear-gradient(top, rgba(255, 93, 177, 1) 0%, rgba(239, 1, 124, 1) 100%);
  background: linear-gradient(to bottom, rgba(255, 93, 177, 1) 0%, rgba(239, 1, 124, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5db1', endColorstr='#ef017c', GradientType=0);
  color: #FFF;
  border-radius: 10px;
  margin: 0 0 20px 0;
}*/

section h2 {
  display: block;
  margin: 0 0 1rem 0;
  padding: 10px 0 10px 0;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  /*background-image: -webkit-gradient(linear, right top, left top, from(#209cff), to(#68e0cf));
  background-image: -webkit-gradient(linear, left top, right top, from(#209cff), to(#68e0cf));
  background-image: -webkit-linear-gradient(left, #209cff 0%, #68e0cf 100%);
  background-image: linear-gradient(to right, #209cff 0%, #68e0cf 100%);*/
}
h3.match {
	background-color: #ff8080;
}

h3.coaster{
	background-color: #b8ff66;
}
h3.napkin{
	background-color: #66ffcc;
}
h3.oshibori {
	background-color: #66d6ff ;
}
h3.hashibukuro {
	background-color: #8f66ff;
}
h3.hashi {
	background-color: #ff66d6;
}
.explain h3 {
  display: block;
  margin: 0 0 1rem 0;
  padding: 10px 0 10px 0;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.guide h3 {
  display: block;
  margin-left: 20px;
  padding: 10px 0 10px 0;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 700;
  }
.guide p {
	margin-left: 30px;
}
.wrap h4.match {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding: 0.2em;/*文字周りの余白*/
  color: #010101;/*文字色*/
  background: #ffe6e6;/*背景色*/
  border-bottom: solid 4px #ff8080;/*下線*/
  border-radius: 10px;
}
.wrap h4.napkin {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding: 0.2em;/*文字周りの余白*/
  color: #010101;/*文字色*/
  background: #ccffef;/*背景色*/
  border-bottom: solid 4px #66ffcc;/*下線*/
  border-radius: 10px;
}
.wrap h4.oshibori {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding: 0.2em;/*文字周りの余白*/
  color: #010101;/*文字色*/
  background: #e6f8ff;/*背景色*/
  border-bottom: solid 4px #66d6ff;/*下線*/
  border-radius: 10px;
}
.wrap h4.hashibukuro {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding: 0.2em;/*文字周りの余白*/
  color: #010101;/*文字色*/
  background: #ece6ff;/*背景色*/
  border-bottom: solid 4px #8f66ff;/*下線*/
  border-radius: 10px;
}
/*.wrap h4:before,
.wrap h4:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width:100%;
  height: 6px;
  content: '';
  border-radius: 3px;
  }
.wrap h4:before {
  top: 0;
}

.wrap h4:after {
  bottom: 0;
}*/
.wrap h5 {
  font-size: 120%;
  font-weight: 800;
  padding: 5px 0 5px 10px;
}

.coaster_h5 {
	margin: 5px;
	border-bottom-width: 1px;
	border-left-width: 10px;
	border-bottom-style: dotted;
	border-left-style: solid;
	border-bottom-color: #444444;
	padding-left: 5px;
	border-left-color: #b8ff66;
}
.wrap p {
  font-size: 100%;
  font-weight: 400;
  padding: 0px 0 15px 10px;
}
.explain p {
  font-size: 100%;
  font-weight: 400;
  padding: 0px 0 15px 10px;
}
.inner {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 50px;
}
.col2 li {
  display: inline-block;
  width: 100%;
  margin: 20px 0 20px 0;
}
/* SEC01
------------------------------------------------------------*/
#sec01 .explain {
  text-align: center;
  width: 95%;
  margin: 0 auto;
  padding-bottom: 40px;
}
#sec01 .explain h3{
position: relative;
  color: #158b2b;
  font-size: 20px;
  padding: 10px 0;
  text-align: center;
  margin: 1.5em 0;
}
#sec01 .explain h3:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 150px;
  height: 58px;
  border-radius: 50%;
  border: 5px solid #a6ddb0;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#sec01 .tel {
  background: #444; /* 「Q」タイトルの背景色 */
  color: #fff; /* 「Q」タイトルの文字色 */
  font-weight: 800;
  padding: 8px;
  border-radius: 8px;
}
/*index.htmlテーブルの設定*/
.detail {
  border-collapse: collapse;
  font-size: 80%;
  width: 100%;
  margin-bottom: 10px;
}
.detail th {
  border: 1px solid #444444;
  padding: 5px;
  width: 15%;
  background-color: #E2E2E2;
}
.detail td {
  border: 1px solid #444444;
  padding: 5px;
}
.price {
  border-collapse: collapse;
  margin-top: 0;
  font-size: 80%;
  width: 100%;
  margin-bottom: 20px;
}
.price th {
  border: 1px solid #444444;
  padding: 5px;
  width: 15%;
  background-color: #E2E2E2;
}
.price td {
  border: 1px solid #444444;
  padding: 5px;
  text-align: center;
}
/* SEC02
------------------------------------------------------------*/
.wrap, .explain {
  clear: both;
  width: 95%;
  /* 以下の記述でもOK　右記でもOK　margin: 0 auto;　widthを設定したら左右のmarginをautoにしてセンタリング*/
  margin-right: auto;
  margin-left: auto;
}
.wrap img {
	max-width: 600px;
	display: block; /*画像をブロック要素にする。センタリングに必要*/
    margin: 0 auto; /*マージンの左右をautoにしてセンタリング*/
}
.bg {
  line-height: 0;
}
.bg img {
  padding-bottom: 10px;
}
.txt h2 {
  padding: 0 0 20px !important;
}

.image-container {
  display: flex;
  justify-content: center; /* 画像を中央揃え */
  gap: 20px; /* 画像間のスペース */
  flex-wrap: wrap; /* スマホなどで折り返し */
  margin-bottom: 20px;
}

.image-container img {
  max-width: 100%;
  height: auto;
  width: 45%; /* 横並びで2枚に収まるサイズ */
  border-radius: 8px; /* オプション：角丸にする */
}
/* SEC03
------------------------------------------------------------*/
.col5 h2 {
  background-color: #80ff80 !important;
  border-radius: 10px;
  margin: 20px 0 20px 0;
}
.col5 li {
  margin-bottom: 50px;
}
.col5 img {
  max-width: 288px;
  display: block;
  margin: -5px auto 20px;
  background-image: url(../images/bgSec04.jpg) no-repeat 100% 100% fixed;
  background-size: cover;
  -webkit-background-size: cover;
  color: #fff;
}
/* SEC05
------------------------------------------------------------*/
.explain ol li {
  list-style-position: inside;
}
/* SEC06
------------------------------------------------------------*/
#sec06 dl, #sec08 dl {
  border: 1px solid #444444;
}
#sec06 dt, #sec08 dt {
  font-weight: 700;
  color: #111;
  background: #f4f4f4; /* 「Q」タイトルの背景色 */
  padding: 8px;
  border-top: 1px solid #444444;
  border-bottom: 1px solid #444444;
}
#sec06 dt, #sec08 dt:first-child {
  border-top: none;
}
#sec06 dt:before {
  content: "Q.";
  font-weight: 700;
  margin-right: 8px;
}
#sec06 dd, #sec08 dd {
  padding: 16px 16px 24px 30px;
  margin: 0;
  line-height: 140%;
  color: #bf0000;
}
#sec06 dd:before {
  content: "A.";
  font-weight: 700;
  margin-right: 8px;
  margin-left: -21px;
}
#sec09 p {
	margin-left: 20px;
}
/*特定商取引法に基づく表記+会社概要*/
.privacy table, .company2 table {
  width: 95%;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 80%;
}
.privacy table th, .company2 table th {
  border: 1px solid #8C8C8C;
  padding: 5px;
  width: 27%;
  text-align: left;
  background-color: #f2f2f2;
}
.privacy table td, .company2 table td {
  border: 1px solid #8C8C8C;
  padding: 5px;
  text-align: left;
}
.privacy ul {
  list-style-type: disc;
  list-style-position: inside
}
/*会社概要*/
.philo h3 {
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  font-weight: 700;
  font-size: 18px;
  background-color: #F3CF28;
  border-radius: 8px;
}
.philo p, .philo dl {
  width: 95%;
  margin: 0 auto 10px;
  text-align: left;
}
.philo dl dt {
  font-weight: 600;
  border-bottom: 1px dotted #8C8C8C;
  margin: 0 0 10px 0;
}
.company h3 {
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  font-weight: 700;
  font-size: 18px;
  background-color: #F3CF28;
  border-radius: 8px;
}
.company dl {
  width: 95%;
  margin: 0 auto 10px;
  text-align: left;
}
.company dl dt {
  font-weight: 600;
  border-bottom: 1px dotted #8C8C8C;
}
.company img {
  max-width: 275px;
}
a#menu {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  margin: 10px;
}
#menuBtn {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  margin: -1px 0 0 -7px;
  background: #158b2b;
  transition: .2s;
}
#menuBtn:before, #menuBtn:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 2px;
  background: #158b2b;
  transition: .3s;
}
#menuBtn:before {
  margin-top: -7px;
}
#menuBtn:after {
  margin-top: 5px;
}
a#menu .close {
  background: transparent;
}
a#menu .close:before, a#menu .close:after {
  margin-top: 0;
}
a#menu .close:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
a#menu .close:after {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.panel {
  width: 100%;
  display: none;
  overflow: hidden;
  position: relative;
  left: 0;
  top: 0;
  z-index: 100;
}
#mainnav {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  text-align: right;
  z-index: 500;
}
#mainnav ul {
  /*    border-bottom: 1px solid #ccc;*/
  background: #fff;
  text-align: left;
}
/*スマートフォンのメニューの設定*/
#mainnav li a {
  position: relative;
  display: block;
  padding: 3px 5px 3px 15px;
  border-bottom: 1px solid #333333;
  color: #000;
  font-size: 9px;
  font-weight: 500;
}
/*メニューのカーソルが当たった時の処理 a:hover*/
#mainnav li a:hover {
  text-decoration: none;
  color: #808080;
}
/*メニューの＞の設定*/
#mainnav li a:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 6px;
  height: 6px;
  margin: -4px 0 0 0;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.col5 li {
  margin: 0 auto;
  display: block;
  width: 90%;
}
.paypal img {
  width: 319px;
  margin-left: 7px;
}
/* RESPONSIVE 設定
------------------------------------------------------------*/
/*641ｐｘ以上で影響するCSS*/
@media only screen and (min-width: 641px) {
  .col2 li {
    width: 40%;
    padding: 0 3%;
    vertical-align: top;
  }
  .wrap h2 br {
    display: none;
  }
  .philo h3 br {
    display: none;
  }
#slogan h2 {
    font-size: 20px;
    color: #000;
    font-weight: 500;
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF;
  }
}
/*800ｐｘから影響するCSS*/
@media only screen and (min-width: 800px) {
  body {
    font-size: 14px;
  }
  a#menu {
    display: none;
  }
  .panel {
    display: block !important;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  #mainnav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 500;
  }
  #mainnav ul {
    text-align: right;
    padding-right: 5px;
  }
  #mainnav li {
    display: inline-block;
    padding: 10px 3px 10px;
  }
  #mainnav li a {
    padding: 0px 4px 0px 14px;
    border-bottom: none;
    color: #000;
    font-size: 8px;
    font-weight: 500;
  }
  /*ページをスクロールした時のメニューの処理*/
  #mainnav.changeNav {
    background: rgba(255, 255, 255, 1.00);
    /*    border-bottom: 3px solid #ccc;*/
  }
  /*  #mainnav.changeNav li {
    padding: 20px 0px;
  }*/
  
  #slogan h2 {
    font-size: 27px;
    color: #000;
    font-weight: 500;
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF;
  }
  /* SEC01
	-----------------*/
  .detail, .price, .privacy table, .company2 table {
    font-size: 100%; /*スマフォからPCサイズに変化するのでフォントサイズを戻します。*/
  }
  /* SEC02
	-----------------*/
  .txt, .bg {
    width: 50%;
    float: left;
    display: table;
    /*    background: #f6f6f6;*/
  }
  #sec02_02 .txt, #sec02_02 .bg {
    float: right;
  }
  .vMid {
    display: table-cell;
    padding: 0 100px;
    vertical-align: middle;
  }
  /* SEC03
	-----------------*/
  .col5 {
    text-align: center;
  }
  .col5 li {
    display: inline-block;
    width: 19%;
    padding: 0 1%;
    margin-bottom: 0;
    vertical-align: top;
    text-align: left;
  }
  /* SEC05
	-----------------*/
  #footer {
    padding: 30px 10px 70px 0;
  }
}
/*860ｐｘから影響するCSS*/
@media only screen and (min-width: 860px) {
  #mainnav li a {
    padding: 0px 5px 0px 15px;
    font-size: 11px;
  }

}
/*1024ｐｘから影響するCSS*/
@media only screen and (min-width: 1024px) {
  #mainnav li a {
    padding: 0px 5px 0px 15px;
    font-size: 11px;
    font-weight: 500;
  }
#slogan h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 700;
    text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF, 0-2px 0 #FFF;
  }
}
/*1200ｐｘから影響するCSS*/
@media only screen and (min-width: 1200px) {
  img {
    max-width: 1024px; /* 最大幅を1024pxに指定*/
    display: block; /*画像をブロック要素にする。センタリングに必要*/
    margin: 0 auto; /*マージンの左右をautoにしてセンタリング*/
  }
  .company img {
    margin-left: 0px
  }
}