@charset "Shift_JIS";
@import url("grid.css");

/* ===============================
2022/03/15
昨年の今頃は、popoテンプレートを利用して
スマホファーストなページ作りをいろいろやっていた
今年もそのやり方を踏襲して、1年ぶりに再開。
いろいろ継ぎ足しているcssの内容は、最新のpopoページの
この「style.css」に記録している。
=============================== */



/* ===============================
2022/03/15
囲み線
=============================== */
.entry_box2 {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    color: #6091d3;/*文字色*/
    background: #FFF;
    border: solid 3px #6091d3;/*線*/
    border-radius: 10px;/*角の丸み*/
}




/* ===============================
2022/03/15
新規に「submit.js」ファイルを作成

4mLボトルは不良スプレーが多いので、
このリスクを取れる人だけに買って欲しい
そのため買い物ページを2段階にし、
最初は「リスクを承知する」 → 次の実際の購入画面に至る
いでに、チェエクボックスが小さかったので1.5倍に

チェエクボックス → ここをインラインcssでfont-size:30px;などしても
チェエクボックスは大きくならない。input[type="checkbox"]にて・・
<input type="checkbox" id="chkbox" name="policy_doui" value="1">
=============================== */

input[type="checkbox"] {
	display: inline; 
	transform: scale(1.5, 1.5);
}





/* ===============================
2022/03/15
F4以下の「bonscent.html」の古いページをpopoへ移行する
商品テーブルのcss
=============================== */


.list-table {
	display: table;
	border-collapse: collapse;
	margin: 5px 0;
	width:100%;
}
.list-table tr {
	vertical-align: middle;
	padding: 10px;
	font-size: 12px;
}
.list-table tr.caption {
	font-size: 10px;
	color: #808080;
	background-color: #E7E7E7;

}

.list-table td {
	display: table-cell;
	width: 20%;
	vertical-align: middle;
	border: 1px solid #C0C0C0;
	text-align: center;
}






/* ===============================
2021/04/02
大きな画像を使うとき、管理画面からはみでるので、
640pxに固定
(使用例) <img src="x.jpg" class="640px"> 
=============================== */
img.640px {
width: 640px;
/* height: ??px; */
}




/* ===============================
2021/04/01
四角い枠
=============================== */
.entry_box {
	border-radius :6px;/*角の丸み*/
	font-weight: normal;
	font-size: 16px;
	color: #000000;
/*	background-color: #dcf7ee;*//*薄緑*/
/*	background-color: #F7F7E1;*//*薄黄*/
	background-color: #ECECEC;
	border: solid 2px #F4F4F4;
	margin: 10px 10px 10px 10px;
	padding:10px 20px;
	width: 97%;
}
.entry_box2 {
	border-radius :8px;/*角の丸み*/
	font-weight: normal;
	font-size: 12px;
	color: #000000;
	background-color: #F4F4F4; /* 薄灰色 */
/*	background-color: #F7F7E1; 薄黄 */
/*	border: solid 1px #C0C0C0; */
	margin: 10px 10px 10px 0px;
	padding: 0px 16px 20px 20px;
}

/*.entry_box ul {
/*	background: #f0f7ff; */
	padding: 5px; 5px;
	margin: 15px 0;
	color: #000000;
	border-top: solid 1px #c0c0c0c0;
	border-bottom: solid 1px #c0c0c0c0;
} */





/* ===============================
2021/03/10
introページのリニューアル
=============================== */
.bx2 {
	padding: 0 10px 10px 10px;
}

.bx2 a {
	font-size: 20px;
	font-weight: bold;
}

.bx2-1, .bx2-2 {
	padding-bottom: 10px;
}

/* bx4-1、bx4-2を横に並べる設定 */
.bx2:after {
	content: "";
	display: block;
	clear: both;
}
.bx2-1 {
	float: left;
	width: 48%;
	margin-right: 1%;
}
.bx2-2 {
	float: left;
	width: 48%;
	margin-right: 1%;
}





/* ===============================
2021/02/05
fragrance.co.jp/solid-perfume

スマホで見ると、左右の空白部分が幅を取っている → 
grid.cssの「.container」の左右部分が、popでは、2.0remもとってある → 
PCではOKだが、スマホでは空白がもったいない

.container {
    padding: 0 2.0rem;
}

そこで、スマホは下記のように書き換えた：
=============================== */

/* 幅768px以下の表示
/* =============================== */
@media all and (max-width: 768px){
.container {
    padding: 0 0.6rem;
}

}







/* ===============================
2021/02/04
fragrance.co.jp/solid-perfume

買い物のテーブル
=============================== */


.table-row {
	display: table;
	width: 100%;
	list-style-type: none;
	margin: 2px 0 0 0;
}

.table-row tr:nth-child(even) {
	background: #ECECEC;
	border: 1px solid #ccc;

}
.table-row tr:nth-child(odd) {
	background: #fff;
	border: 1px 0 solid #ccc;
}

/* 個数 */
.tdcontent1 {
	min-height: 60px;
	width: 8%;
	padding: 10px;
	display: table-cell;
}
/* 商品名 */
.tdcontent2 {
	min-height: 60px;
	width: 15%;
	padding: 10px;
	display: table-cell;
	font-size: 16px;
}
/* 商品名英語 */
.tdcontent3 {
	min-height: 60px;
	width: 10%;
	padding: 10px;
	display: table-cell;
	font-size: 10px;
	color: #666666;
}
/* 説明 */
.tdcontent4 {
	min-height: 60px;
	width: 35%;
	padding: 10px 15px;
	display: table-cell;
	font-size: 11px;
	color: #404040;
}
/* 価格 */
.tdcontent5 {
	min-height: 60px;
	width: 8%;
	padding: 10px;
	display: table-cell;
	font-size: 12px;
	color: brown;
}
/* 画像 */
.tdcontent6 {
	min-height: 60px;
	width: 20%;
	padding: 20px;
	display: table-cell;
	font-size: 10px;
}
/* =============================== */
@media all and (max-width: 768px){
.tdcontent3,.tdcontent4,.tdcontent5 {
	display: block;
	text-align: center;
	width: 100%;
	padding: 5px;
	margin: 10px;
	min-height: 15px;
}
.table-row tr {
	/* border: 1px #E7E7E7 solid; */
}
}



/* ===============================
2021/01/27
fragrance.co.jp/howto 初心者のための香水 & フレグランス入門
メニューを横並びで作ろうかと設定したが、横並びメニューは
すべて対等な並列となり、内容の流れは上下でメニューを組んだ
方がわかりやすいと思った、そのため不採用。

PCでは、flex ulで横並び
スマホでは、帯状に縦並び
=============================== */

.howto {
display:inline-block;
margin: 10px auto;
}

.howto ul{
  list-style: none;
  padding-left: 0;
  text-align:center;
}

.howto li{
  width:360px;
  margin: 8px;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 0px 0px 0px 1px #ccc;
}

.howto li a{
  display:block;
  padding: 1px;
  text-decoration:none;
}


/* ===============================
2021/01/24
ベタガード　shopping.html
テーブル文字フォント
=============================== */

.fontstrong {
	color: brown;
	font-weight: bold;
	font-size: 20px;
	background-color: #FFFFC0;
}

.fontsubnormal {
	font-weight: normal;
	font-size: 14px;
}

.fontweak {
	font-weight: normal;
	font-size: 12px;
}

.fontweaker {
	font-weight: lighter;
	font-size: 10px;
}





/* ===============================
2021/01/24
ベタガード　トップページのダブルベタ広告

=============================== */

.bouble-betta-icon {
	display: block;
	text-align: center;
	vertical-align: top;
	text-decoration: none;
	font-size: 13px;
	border: 2px dotted #bbb;
	margin: 20px 0;
	padding: 10px;
        border-radius: 8px 8px 8px 8px;
}





/* ===============================
2021/01/24
ベタガード
ベタガード商品テーブル表

=============================== */

table.kinmoku {
	width:95%;
	border: 1px;
	border-collapse:collapse;
	border-spacing:0;
	background-color: #89ffc4;
}
table.kinmoku th{
	background: #ffe4e1;
	border-top: 1px solid #C0C0C0;
	border-bottom: 1px solid #C0C0C0;
	font-size:14px;
	font-weight: normal;
	text-align: center;
	padding: 5px;
}
table.kinmoku tr:nth-child(odd) {
	background-color: #ffffff;
	border-top: 1px solid #C0C0C0;
	border-bottom: 1px solid #C0C0C0;
	font-weight: normal;
	font-size:12px;
	color:#404040;
}

table.kinmoku tr:nth-child(even) {
	background-color: #F4F4F4;
	border-bottom: 1px solid #C0C0C0;
	font-size:14px;
	color:#404040;
}

table.kinmoku td {
	border-bottom: 1px solid #C0C0C0;
	font-weight: normal;
	width:60px;
	text-align: center;
	padding: 5px;
}
table.kinmoku td.td2 {
	border-bottom: 1px solid #C0C0C0;
	font-size:14px;
	font-weight: bold;
	width:60px;
	color: brown;
	text-align: center;
	padding: 5px;
}






/* ===============================
2021/01/24
ベタガード
blockquote

=============================== */

blockquote{
	width: 97%;
  display:block;
  background: #fff;
  padding: 15px 20px 15px 45px;
  margin: 0 0 20px;
  position: relative;
  
  /*Font*/
  font-size: 16px;
  line-height: 1.6;
  color: #202020;
  text-align: justify;
  
  /*Borders - (Optional)*/
  border-left: 0px solid #3da28d;
  border-right: 0px solid #3da28d;
  
  /*Box Shadow - (Optional)*/
  -moz-box-shadow: 2px 2px 15px #ccc;
  -webkit-box-shadow: 2px 2px 15px #ccc;
  box-shadow: 2px 2px 15px #ccc;
}

blockquote::before{
  content: "\201C"; /*Unicode for Left Double Quote*/
  
  /*Font*/
  font-family: Georgia, serif; /* (blockquote) */
  font-size: 60px;
  font-weight: bold;
  color: #999;
  
  /*Positioning*/
  position: absolute;
  left: 10px;
  top:5px;
}

blockquote::after{
  /*Reset to make sure*/
  content: "";
}

blockquote a{
  text-decoration: none;
  background: #eee;
  cursor: pointer;
  padding: 0 3px;
  color: #c76c0c;
}

blockquote a:hover{
 color: #666;
}

blockquote em{
  font-style: italic;
}







/* ===============================
2021/01/23
support FAQ
開閉式アコーディオン型
(+ボタン　押すと開く・閉じるを繰り返す)
=============================== */

.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa {
	overflow-x: hidden;
	margin: 0 auto;
	color: #333333;
}
.cp_qa .cp_actab {
	padding: 20px 0;
	border-bottom: 1px dotted #cccccc;
}
.cp_qa label {
	font-size: 1.2em;
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 0px 0 48px;
	cursor: pointer;
}
.cp_qa .cp_actab-content {
	font-size: 1em;
	position: relative;
	overflow: hidden;
	height: 0;
	margin: 0 20px;
	padding: 0 0px;
	-webkit-transition: 0.4s ease;
	        transition: 0.4s ease;
	opacity: 0;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
	height: auto;
	padding: 14px;
	opacity: 1;
}
.cp_qa .cp_plus {
	font-size: 3.0em;
	line-height: 100%;
	position: absolute;
	z-index: 5;
	margin: 3px 0 0 10px;
	-webkit-transition: 0.2s ease;
	        transition: 0.2s ease;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_plus {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.cp_qa .cp_actab input[type=checkbox] {
  display: none;
}








/* ===============================
2021/01/23
support お買い物ガイド
Flexboxによる2カラム
=============================== */


#flexbox102 {
   display: -webkit-flex;
   display: flex;
   -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  justify-content: left;
  margin: auto;
  max-width: 100%;
  height: auto;

}

.flexbox102-left {
  width: 24%;
  align-items: center;

	background-color: #00C8A5;
	font-side: 36px;
	font-weight: bold;
	color: #fff;
	padding: 10px;
	margin: 5px 10px 0 20px;
  border-bottom: 1px solid #ccc;

}

.flexbox102-right {
  width: 72%;

  background-color: #fff;
	padding: 10px;
	margin: 5px 0px 0 0px;

  border-bottom: 1px solid #ccc;

}

/* =============================== */
@media all and (max-width: 768px){

#flexbox102 {
  display: block;
}

.flexbox102-left {
  width: 100%;
  text-align: center;
	padding: 5px;
	margin: 10px 10px 0px 10px;
}

.flexbox102-right {
  width: 100%;
	padding: 5px;
	margin: 0px 10px 15px 10px;

}



}





/* ===============================
2021/03/03
musトップのFlexboxをそのままコピー
=============================== */


/* ########################### */
/* Flexboxによるカードデザイン */
/* ########################### */

.brand-logo {
	width: calc(16% - 10px);
	margin: 5px;
	padding: 5px;
}

.flexbox102 {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	margin: 10px;
}

.flexbox102-item {
	width: calc(16% - 10px);
	background-color: #F1F1F1;
	margin: 5px;
	padding: 10px;
}

.flexbox102-item a {
	text-decoration:none;
	display:block;
	/* background:url(./img/common/arrow-gray2.png) no-repeat 100% 40%; */
}

.flexbox102-title {
	width: 98%;
	font-size: 18px;
}

.flexbox102-image {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 5px 0 0 5px;
}
.flexbox102-content {
        padding: 10px;
	font-size: 12px;
        color: #666;
}


/* ###################### ######### ###################### */
/* 1200以下 */
/* ###################### ######### ###################### */
@media all and (max-width:1200px) { 
.flexbox102-item, .brand-logo {
	width: calc(20% - 10px);
	margin: 5px;
	padding: 10px;
}
}
/* ###################### ######### ###################### */
/* 1000以下 */
/* ###################### ######### ###################### */
@media all and (max-width:1000px) {
.flexbox102-item, .brand-logo {
	width: calc(25% - 10px);
	margin: 5px;
	padding: 10px;
}
}
/* ###################### ######### ###################### */
/* 800以下 */
/* ###################### ######### ###################### */
@media all and (max-width:800px) {
.flexbox102-item, .brand-logo {
	width: calc(33% - 10px);
	margin: 5px;
	padding: 10px;
}
}
/* ###################### ######### ###################### */
/* 400以下 */
/* ###################### ######### ###################### */
@media all and (max-width:400px) {
.flexbox102-item, .brand-logo {
	width: calc(50% - 10px);
	margin: 5px;
	padding: 10px;
}
}

/* ===============================
2021/01/22
popoは、カードデザインに関して、BootStrapを利用しているが、
カード内の文字数が多すぎると折り返して高さが変化するなど
少し変化があるとレイアウトが壊れやすい。
そこで、Flexboxにしてみた
=============================== */


/* ########################### */
/* Flexboxによるカードデザイン */
/* ########################### */

.flexbox101 {
   display: -webkit-flex;
   display: flex;
   -webkit-flex-wrap:wrap;
   flex-wrap:wrap;
	text-align: center;
	margin: 20px;

}

.flexbox101-item {
	width: 240px;
	margin: 5px;
	padding:20px 15px 5px;
	border:1px dotted #ccc;
        border-radius: 5px 5px 5px 5px;
	line-height:20px;
	text-align:left;
	font-size:18px;
	background: url(../img-popo/common/li-arrow.gif) no-repeat 5px;
	/* filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.6)); */
	box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	/* float: left; */
}

.flexbox101-item a {
	text-decoration:none;
	display:block;
	background:url(../img-popo/common/arrow-gray2.png) no-repeat 100% 40%;
}

.flexbox101-title {
	width: 98%;
	font-size: 18px;
}

.flexbox101-image {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 5px 0 0 5px;
}
.flexbox101-content {
        padding: 10px;
	font-size: 12px;
        color: #666;
}








/* ===============================
2021/01/14
【もともと grid.css にあった部分】
もともと grid.css にあった部分で style.css 
にあった方がよいと思われる部分を移動 */
=============================== */

/* 全体の設定
?????????????????????????????????????????????????? */
html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
/*    font-size: 62.5%; : */
}

body {
    color: #000;
    font-family: -apple-system, BlinkMacSystemFont, Avenir, "Helvetica Neue", Helvetica, Arial, Roboto, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background:#fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin:0;
	padding:0;
}



/* 見出し
?????????????????????????????????????????????????? */
h1, h2, h3, h4, h5, h6 {
  margin-top: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;}

h1 { font-size: 3.2rem; line-height: 1.4;  letter-spacing: -.1rem; }
h2 { font-size: 2.4rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 1.8rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 1.5rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.2rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.0rem; line-height: 1.6;  letter-spacing: 0; }

/* PC表示 */
@media all and (min-width: 768px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.8rem; }
  h4 { font-size: 1.5rem; }
  h5 { font-size: 1.2rem; }
  h6 { font-size: 1.0rem; }
}

p {
  margin-top: 0; }


/* リンク
?????????????????????????????????????????????????? */
/* a {
  color: #1BBFA6; }
a:hover {
  color: #0FA0CE; }
*/

/* =============================== */
/* 2021/01/17 ここで、全体 aリンクをブロック型にしているので、
どんな横並びのリンクも改行されて原因不明で混乱した */
a {
	/* display:block; */
	color: #008256;
	text-decoration-line: none;
}
a:hover { 
	color: #000000;
}








/* ボタン
?????????????????????????????????????????????????? */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 60px;
  padding: 10px 60px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
/*  background-color: transparent; */
  background-color: #808080;
  border: 1px solid #bbb;
  cursor: pointer;
border-radius: 30px;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);

  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }


/* フォーム
?????????????????????????????????????????????????? */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #D1D1D1;
  box-shadow: none;
  box-sizing: border-box;
  font-size: 16px;}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 100px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #0FA0CE;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 500; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* リスト
?????????????????????????????????????????????????? */
ul {
  list-style: none; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* コード
?????????????????????????????????????????????????? */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* テーブル
?????????????????????????????????????????????????? */
table {
	border-collapse: collapse; }
th,
td {
  padding: 2px 2px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1;
}
th:first-child,
td:first-child {
  padding-left: 20px; }
th:last-child,
td:last-child {
  padding-right: 20px; }

.radio-font{font-size:20px; color:#00623E;}

/* スペース
?????????????????????????????????????????????????? */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 1rem; }


/* 全幅
?????????????????????????????????????????????????? */
.full-width {
  width: 100%;
  box-sizing: border-box; }
.max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.pull-right {
  float: right; }
.pull-left {
  float: left; }


/* 罫線
?????????????????????????????????????????????????? */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; 
}


/* =============================== */
/* 【もともと grid.css にあった部分】
ここまで */
/* =============================== */













img {
	max-width:100%;
	height: auto;/*高さ自動*/
}



.breadcrumb {
	margin: 0 20px;
	font-size: 13px;
}

/* =============================== */
/* 2021/01/18　gNav のメンツ-に「reviews」追加
その各gNavのアイテムごとに、現在それがどの
アイテムを示すための「menu-marked」
*/
/* =============================== */

.marker_yellow {
	font-size: 16px;
	font-weight: bold;
	background: linear-gradient(transparent 50%, #ffff66 50%);
	line-height: 2.0;
}

#menu-marked {
	color: #C00000;
	font-size: 18px;
	text-decoration: none;
}












/*-------------------------------------*/
/* 追加 */
/*-------------------------------------*/
/* ------------------------------- */
/* 2021/01/05 ページトップ、ヘッダ部分の背景追加 */
/* ------------------------------- */



    .header-back {
        padding: 25px 0 0;
        width: 100%;
        height: 120px;
        background: url(../img-popo/fog.jpg) no-repeat center center / cover;
        float: none;
/* 	pointer-events: none;
	z-index: 2; */
    }

    .header-back a {
	display:block; /* これがないと表示されない */
        background: url(../img-popo/logo_head.png) top center;
        background-size: 235px 57px;
        margin: 0 auto;
        padding: 57px 0 0;
        width: 235px;
    }


/* ------------------------------- */
/* 2021/01/05 画像によるボックスが扱いにくくでテキスト・画像を入れられるボックス追加、 */
/* https://saruwakakun.com/html-css/reference/box */
/* ------------------------------- */

.box2 {
    padding: 0.5em 1em;
    margin: 0.2em 0;
    font-weight: bold;
	font-size:24px;
    color: #6091d3;/*文字色*/
    background: #FFF;
    border: solid 3px #6091d3;/*線*/
    border-radius: 10px;/*角の丸み*/

    position: relative;
    z-index: 1; /* 必要であればリンク要素の重なりのベース順序指定 */


}
.box2 p {
    margin: 0; 
    padding: 0;
	font-size:15px;
}


.box2 a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 2; /* 必要であればリンク要素の重なりのベース順序指定 */
}



/* ------------------------------- */
/* 2021/01/06 フォームメールの部分、 */
/* ------------------------------- */

#formWrap {
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;
}
table.formTable{
	width:100%;
	margin:5px auto;
	border-collapse:collapse;
}
table.formTable td, table.formTable th{
	border:1px solid #ccc;
	padding:10px;
	text-align:center;

}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#D6D6D6;
}
#formWrap input[type="text"], textarea {
	width:95%;
	margin: 5px 5px;
	padding:5px;
	font-size:110%;
}
/* =============================== */
@media all and (max-width: 768px){
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
	text-align:center;

}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
#formWrap input[type="text"], textarea {
	width:95%;
	padding:5px;
	font-size:110%;
}
#formWrap input[type="submit"] {
	display:inline;
	width:60%;
	height:35px;
	background:#D6D6D6;
	margin:1px 0;
}
#formWrap input[type="reset"], input[type="button"] {
	display:inline;
	width:30%;
	height:35px;
	background:#efefef;
	margin:1px 0;
}
}

/* ------------------------------- */
/* 2021/01/12	h2 */
/* ------------------------------- */
/*
h2 {
	font-size:160%;
}
*/


/* ------------------------------- */
/* 2021/01/12	xxx */
/* ------------------------------- */




/*-------------------------------------*/
/*ヘッダー*/
/*-------------------------------------*/
.header {
   display: -webkit-flex;
   display: flex;
   -webkit-flex-wrap:wrap;
   flex-wrap:wrap;
	flex-direction: row;
	padding: 2rem 0 0 0;
}
.header-box {
	margin-left: auto;
	margin-top: 8px;
}
.contact-button {
	padding: 1rem;
	border: 2px solid #000;
}


nav {
    background-color: #53cdb2;
    text-align: center;
}

nav ul {
   display: -webkit-flex;
   display: flex;
   -webkit-flex-wrap:wrap;
   flex-wrap:wrap;
	flex-direction: row;
	justify-content: space-around;
	list-style: none;
	margin: 0;
	padding: 10px 0 0 0;
}
nav li {
	flex: 1 0 auto;
}
nav li a {
	text-decoration: none;
	text-align: center;
	width: 100%;
	color: #fff;
}
nav a:hover {
	background-color: #f7f7f7;
}




/*-------------------------------------*/
/*-------------------------------------*/
/*-------------------------------------*/
@media all and (min-width: 768px){
/* PC時はMENUボタンを非表示 */
#open,#close {
	display: none !important;
}

#navi {
	display: block !important;
}









}

/* =============================== */
@media all and (max-width: 768px){
.header {
   display: -webkit-flex;
   display: flex;
   -webkit-flex-wrap:wrap;
   flex-wrap:wrap;
	margin-bottom: 10px;
}
.header #open,#close {
	position: absolute;
	top: 10px;
	right: 12px;
}
nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
/*-------------------------------------*/
/* スマホ時はMENUボタンを表示 */
/*-------------------------------------*/
#open,#close {
    display: block;
    width: 40px;
    border: none;
    position: absolute;
    top: 10px;
    right: 12px;
  }
/*-------------------------------------*/
/* スマホ時はメニューを非表示 */
/*-------------------------------------*/
#navi {
	display: none;
}
}

/*-------------------------------------*/
/*メイン画像
  -------------------------------------*/
.mainimg img {
	width: 100vw;
}

/*-------------------------------------*/
/*メインコンテンツ
  -------------------------------------*/
main {
	margin: 1rem 0 1rem 0;
}
section {
	margin: 0 0;
	padding: 1rem 0;
}
.gray-back {
	background-color: #f4f4f4;
}


/*-------------------------------------*/
/*キャッチコピー
-------------------------------------*/
.catch {
position: relative;
	text-align: center;
}

.catch img {
  width: 100%;
  }

.catch-title {
  position: absolute;
  top: 40%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  }

.catch-title h2 {
	padding-bottom: 1rem;
	margin-bottom: 0rem;
}
.under {
	border-bottom: 0.3rem solid #000;
	padding:0 1rem 0.3rem 1rem;
}
.center {
	text-align: center;
	margin-bottom: 4rem;
}



/*-------------------------------------*/
/*申し込みの流れ
-------------------------------------*/
.flow.row {
	margin-bottom: 1rem;
}

/*-------------------------------------*/
/*フッター
-------------------------------------*/
#foot-panel {
display: block;
font-size: 12px;
text-align: center;
	background-color: #fff;
	padding: 1rem 0;
	border: 1px solid #ccc;
	border-radius: 5px;
	vertical-align: middle;
	margin: 5px 0;
}
#foot-panel h4 {
	border-bottom: 3px solid ccc;
}





footer {
font-size: 0.8rem;
text-align: center;
	background-color: #f7f7f7;
	padding: 1rem 0;
}
footer h4 {
	border-bottom: 3px solid #ccc;
}




<!-- ############################### -->


.foot-wrap {
    background-color: #f4f4f4;
    color: #404040;
    text-align: center;
}

.foot-wrap .menu-left, .menu-center, .menu-center2, .menu-right {
    display: inline-block;
    vertical-align: top;
    width: 20%;
    margin: 50px auto;
}

.foot-wrap ul {
    list-style: none;
    padding: 0;
    line-height:40px;
}

.foot-wrap h3 {
    border-bottom: 1px solid #404040;
    padding: 8px;
}

.foot-wrap a {
    text-decoration: none;
    color: #404040;
}

.foot-wrap a:hover {
    color: 404040;
}

.foot-wrap .sns_block {
    display: block;
    padding: 10px;
    width: 80%;
    margin: 0 auto;
    color: gray;
}

.foot-wrap .copymark {
    display: block;
    padding: 10px;
    border-top: 1px solid gray;
    width: 80%;
    margin: 0 auto;
    color: gray;
}







/* =============================== */
@media all and (max-width: 768px){

    .foot-wrap .menu-left, .menu-center, .menu-center2, .menu-right {
   display: -webkit-flex;
   display: flex;
   -webkit-flex-wrap:wrap;
   flex-wrap:wrap;
        flex-direction: column;
        width: 50%;
    }



}
<!-- ############################### -->














/*-------------------------------------*/
/*お問い合わせ
-------------------------------------*/
.contact-box {
	border: 1px solid #ccc;
	text-align: center;
	padding: 2rem 0;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 250px;
}

/*-------------------------------------*/
/*コピーライト
-------------------------------------*/
.copyright {
	font-size: 12px;
	text-align: center;
	padding: 1rem 0;
	background-color: #000;
}
.copyright a {
	color: #fff;
	text-decoration: none;
	display: inline;
}

/*-------------------------------------*/
/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
	position: fixed;
	bottom: 15px;
	right: 15px;
}
#pagetop a {
	display: block;
	background: #000;
	color: #fff;
	width: 50px;
	padding: 10px 5px;
	text-align: center;
}
#pagetop a:hover {
	background: #666;
}

/* 幅768px以下の表示
/* =============================== */
@media all and (max-width: 768px){
	
/*ヘッダー
-------------------------------------*/
.header-box {
	display: none;
}
/*お問い合わせ
-------------------------------------*/
.table th {
	width: 100%;
	display: block;
}
.table td {
	display: block;
}


}
