@charset "utf-8";


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tangerine&display=swap');


/*keyframes.cssの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666666;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #e0f0eb;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
video {max-width: 100%;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666666;		/*リンクテキストの色*/
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}
a:hover {
	color: #83cdb7;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 1400px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding-left: 2%;
	padding-right: 2%;
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: relative;
	padding: 20px;	/*ヘッダー内の余白*/
}
/*ヘッダーブロック（トップページへの追加設定）*/
.home header {
	padding: 0px;	/*余白をなしに*/
}
/*ロゴ画像*/
header #logo {
	width: 220px;	/*画像幅*/
}
/*ロゴ画像（トップページへの追加設定）*/
.home header #logo {
	display: none;	/*スライドショーの邪魔なので非表示に*/
}

/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	position: relative;z-index: 10;
	text-align: center;
	background: #fff;	/*背景色*/
	border-top: 1px solid #FFFFFF;		/*上の線の幅、線種、色*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
	font-family: 'Questrial', sans-serif;	/*冒頭で読み込んだGoogle Fontsを適用する指定*/
	height: 105px;	/*高さ。「#menubar ul li a」や「fixmenu」とも連動するので変更の際は注意。説明はこの下の「#menubar ul li a」で書いています。*/
}
#menubar ul li {
	float: left;	/*左に回り込み*/
	width: 16.6%;		/*幅。今回は５個なので、100÷5=20。*/
	font-size: 16px;	/*文字サイズ*/
}
#menubar ul li a {
	text-decoration: none;display: block;
	height: 85px;		/*メニューブロックの高さ。ここの「85」と、下の行の「20」を合計した「105」の数字と、上の「#menubar」の「height」および下のfixmenu設定に２箇所ある「margin-top」の数字を合わせて下さい。*/
	padding-top: 20px;	/*メニューブロックの高さプラス、上に空ける余白。メニューテキストの上下の配置バランスをここで調整して下さい。※変更の際は、上の行の注意書きもしっかり読んで下さい。*/
}
/*飾り文字*/
#menubar ul li span {
	display: block;
	font-size: 10px;	/*文字サイズ*/
	color: #999;		/*文字色*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
}
/*スマホ用メニューを表示させない*/
#menubar-s, #menubar-s2 {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニューの親メニュー*/
#menubar a.cursor-default {
	cursor: default;	/*マウスオーバー時に通常のカーソルになるように*/
	color: #666666;		/*文字色*/
}

/*ドロップダウンメニュー用
--------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;
	left: 0px;
	width: 94%;
	padding: 25px 3%;
	background: #75c9b1;	/*背景色。古いブラウザ用。*/
	background: rgba(83,188,157,0.8);	/*背景色。83,188,157はRGBカラーのことで0.8は色が80%出た状態のこと。*/
	text-align: center;	/*テキストをセンタリング*/
	border-bottom: 1px solid #fff;	/*境界が見辛いので、下線の設定。*/
}
/*ドロップダウンメニューの出現アニメーション*/
#menubar li:hover ul.ddmenu {
	animation-name: opa1;		/*keyframes.cssで使う@keyframesの指定*/
	animation-fill-mode: both;
	animation-duration: 0.8S;	/*アニメーションを実行する時間。「s」は秒の事。*/
	animation-delay: 0.1s;		/*出現するタイミング（秒後）*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: auto;
	display: inline-block;
	font-size: 85%;	/*文字サイズ*/
}
#menubar ul.ddmenu li a {
	height: auto;
	padding: 20px;	/*メニューテキスト同士の余白*/
	color: #fff;	/*文字色*/
	opacity: 0.7;	/*透明度。70%色がついた状態。*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	opacity: 1;		/*透明度。色が100%出た状態。*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
	height: 60px;	/*メニューの高さを少し狭くする*/
}
body.is-fixed-menu #contents {
	margin-top: 105px;	/*※上の「#menubar ul li a」の注意書きにある数字を指定します。*/
}
/*※以下の２ブロックのスタイルの「中身」は、上の２ブロックのスタイルと単純に合わせておいて下さい。*/
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
}
body.is-fixed #contents {
	margin-top: 105px;	/*※上の「#menubar ul li a」の注意書きにある数字を指定します。*/
}

/*装飾文字を非表示にする*/
body.is-fixed-menu #menubar ul li span {
	display: none;
}
/*メニューテキストの上下バランスを調整しなおす。２つの数字の合計と、「body.is-fixed-menu #menubar.nav-fix-pos」の「height: 60px;」の数字が合うようにして下さい。*/
body.is-fixed-menu #menubar ul li a {
	height: 50px;
	padding-top: 10px;
}
/*ドロップダウンメニューへの再設定*/
body.is-fixed-menu #menubar ul.ddmenu li a {
	padding: 20px;
	height: auto;
}

/*ショッピングボタン
---------------------------------------------------------------------------*/
.shop {
	width: 90%;
	text-align: right;
	margin: auto;
	padding: 15px;
    position: relative;
}

/* ここから下がボタンのCSS　*/
.btn-push {
  display: inline-block;
  max-width: 180px;
  text-align: left;
  background-color: #ffa300;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 4px;
  border-bottom: 4px solid #d37800;
}

.btn-push:active {
    transform: translateY(4px);
    border-bottom: none;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	padding: 5px 0 50px;	/*上、左右、下へのコンテンツ内の余白*/
	position: relative;
	animation-name: opa2;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.5S;	/*アニメーションの実行時間*/
	animation-delay: 0.5s;		/*出現するタイミング（秒後）*/
	animation-fill-mode: both;
}
/*h2タグ*/
#contents h2 {
	clear: both;
	margin-bottom: 30px;
	font-size: 200%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる指定。通常がいいならこの１行削除。*/
	color: #666;		/*文字色*/
}
#contents h2:first-letter {
    font-size: 150%;
    color: #ffa300;
}
/*h2タグ内のspanタグ（装飾文字）*/
#contents h2 span {
	display: block;
	font-size: 30%;	/*文字サイズ*/
}

/*h3タグ*/
#contents h3 {
	clear: both;
    display:inline-block;
	padding: 0 3% 0;
	margin: 0 3%;
	font-size: 130%;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる指定。通常がいいならこの１行削除。*/
}
#contents h3 {
  position: relative;
  padding: 5px 3%;
  border-top: solid 1px #9DA482;
  border-bottom: solid 2px #9DA482;
  margin-bottom: 10px;
}
#contents h3:before, h3:after {
  content: '';
  position: absolute;
  top: -7px;
  width: 1px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: #9DA482;
}
#contents h3:before {
  left: 7px;
}
#contents h3:after {
  right: 7px;
}

/*段落タグ*/
#contents p {
	padding: 10px 3% 10px;	/*上、左右、下への余白*/
}
#contents h2 + p,
#contents h3 + p {
	margin-top: 0px;
}
#contents p + p {
	margin-top: 0px;
}
#contents section + section {
	margin-top: 50px;
}

#contents p.comment {
	margin:  0 3% 20px;
	padding: 0 0 10px;	/*上、左右、下への余白*/
}

/*class share（各コンテンツブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .share {
	position: relative;
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	align-items: center;			/*中のブロックの縦並びの揃え方*/
	color: #217644;			/*文字色*/
	margin: 0 3% 20px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
	padding: 30px 0 20px;
	background-color: rgba(255,255,255,0.5);　　/*バックグランドカラー*/
}
#contents .share .point4 {
	padding: 15px 5%;	/*上下、左右へのブロック内の余白*/
	text-align: center;
	background-size: 13%;
	background-image: url("../images/shampoo.png");
    background-repeat:  no-repeat;              /* 背景の繰り返し設定 */
    background-position: right 5px bottom 5px;          /* 背景の位置指定 */		
}
/*list-box（トップページで使っている３列文字ブロック）
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#contents .list-container {
	display: flex;
	justify-content: space-between;	/*中のブロックの横並びの揃え方*/
	flex-wrap: wrap;				/*中のブロックを自動で折り返す*/
	margin: 30px 3% 20px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
}
/*list-box（トップページで使っている３列文字ブロック）
---------------------------------------------------------------------------*/
/*特徴カラムあたりの設定*/
#contents .list-box3 {
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 31%;						/*ブロック幅*/
	padding: 3px;
	border: 1px solid #7E9C09;		/*枠の線の幅、線種、色*/
	background-color: rgba(255,255,255,0.3); 　　/*バックグランドカラー*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	background-size: 50%;
	background-image: url("../images/box-back.png");
    background-repeat:  no-repeat;              /* 背景の繰り返し設定 */
    background-position: right bottom;          /* 背景の位置指定 */	
}
/*ボックス内のh4（見出し）タグ*/
#contents .list-box3 h4 {
	text-align: center;
	margin: 5px 0;	/*下のテキストとの間に空けるスペース*/
	font-size: 140%;		/*文字サイズ*/
}
#contents .list-box3 h4 {
  position: relative;
  padding: 0.5rem;
  border-bottom: 6px solid #9DA482;
}
#contents .list-box3 h4:before {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20%;
  height: 6px;
  content: '';
  background: #C5D390;
}
#contents .share h4 {
	margin-bottom: 10px;	/*下のテキストとの間に空けるスペース*/
	font-size: 140%;		/*文字サイズ*/
}
#contents .share .inside {
	text-align: left;
}
/*navmenu-list（メニューリスト4列文字ブロック）
---------------------------------------------------------------------------*/
#contents .navmenu-container {
	display: flex;
	justify-content: space-between;	/*中のブロックの横並びの揃え方*/
	flex-wrap: wrap;				/*中のブロックを自動で折り返す*/
}
.navmenu-list {
	width: 24.5%;	/*ボックスの幅*/
	float: left;
	text-align: center;	/*文字をセンタリング*/
	padding: 10px 0 10px;
    border-top: 4px solid #FF9900;
    background: rgba(255, 153, 51, 0.3);	/*背景色*/
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
}
.navmenu-list a {
	text-decoration: none;
	padding-bottom: 10px;
}
.navmenu-list a:hover {
	color: #fff;
	text-decoration: none;
	padding-bottom: 10px;
}
#contents .share .navmenu-list h4 {
	font-size: 100%;
	margin: 0;
	text-align: center;	/*文字をセンタリング*/
}
/*ツイッター（メニューリスト4列文字ブロック）
---------------------------------------------------------------------------*/
.sns {
    align-items: center;
	width: 50%;
}
/*itemlist（アイテム一覧ページで使っている横長画像回り込みブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .itemlist-box {
	position: relative;
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	display: flex;
    border: solid 1px #ccc;
	border-radius: 10px;
	align-items: center;			/*中のブロックの縦並びの揃え方*/
	color: #217644;			/*文字色*/
	margin: 0 3% 20px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
	background-color: rgba(255,255,255,0.3); 　　/*バックグランドカラー*/
}
#contents .item {
	position: relative;overflow: hidden;
	padding: 20px;		/*ボックス内の余白。ここを変更する際は、下の「.list a」のpaddingとmarginの数字も合わせる。marginの方はマイナス記号を忘れずに。*/
}
#contents .item h5 {
	padding-left: 10px;	/*枠線とテキストとの間の余白*/
	font-size: 120%;
 	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #75664b;	/*文字色*/
}
/*ボックス内のp(段落)タグ設定*/
#contents .item p {
	padding: 0px !important;
}
/*ボックス内の画像*/
#contents .item figure {
	float: left;	/*左に回り込み*/
	width: 30%;
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 10px;
}
#contents .item dl {
  display: flex;
  flex-wrap: wrap;
  padding-left: 3%;
}
#contents .item dl dt {
  width: 25%;
}
#contents .item dl dd {
  width: 75%;
}
/*factory（ファクトリーページ石鹸の作り方で使っている３列ブロック）
---------------------------------------------------------------------------*/
#contents .works-list {
	display: flex;
	justify-content: space-between;	/*中のブロックの横並びの揃え方*/
	flex-wrap: wrap;				/*中のブロックを自動で折り返す*/
	margin: 0 3% 10px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
}
/*１カラムあたりの設定*/
#contents .works-box {
	display: flex;
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 31%;					/*ブロック幅*/
	padding: 3px;
	border: 1px solid #ccc;		/*枠の線の幅、線種、色*/
	background: #fff;				/*背景色*/
	color: #ccc;					/*文字色*/
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	margin-bottom: 7px;
}
/*ボックス内のh4（見出し）タグ*/
#contents .works-box h5 {
	color: coral;
}
/*ボックス内のp（段落）タグ*/
#contents .works-box p {
	color: #666666;
	padding: 0;		/*余白のリセット*/
}

/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .works-box .text {
	padding: 3%;			/*ブロック内の余白*/
	flex: 1 0 auto;
}
/*IEバグ対応*/
#contents .works-box figure {
	min-height: 0%;
}
/*bubble（泡立て方tページで使っている横長画像回り込みブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .bubble {
	position: relative;overflow: hidden;
	margin-bottom: 20px;
	padding: 20px;		/*ボックス内の余白。ここを変更する際は、下の「.list a」のpaddingとmarginの数字も合わせる。marginの方はマイナス記号を忘れずに。*/
	margin: 0 3% 30px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	background-color: rgba(255,255,255,0.3);
	box-shadow: 0px 2px 5px #ccc, 0px 0px 0px 1px #fff inset;	/*影の設定。右へ・下へ・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
}
#contents .bubble h4 {
	padding-left: 20px;	/*枠線とテキストとの間の余白*/
 	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #75664b;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #75664b;	/*文字色*/
}
/*ボックス内のp(段落)タグ設定*/
#contents .bubble p {
	padding: 0px !important;
}
/*ボックス内の画像*/
#contents .bubble figure {
	float: left;	/*左に回り込み*/
	width: 35%;
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 10px;
}
/*ゆう工房ページ（石鹸への想いコンテンツ内のul）
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	width: auto;
    position: relative;
    margin: 2em 3%;
	padding: 10px 3% 10px 6%;
    border: solid 2px #FFA64D;
    border-radius: 8px;
}
ul.disc .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #E9F5F1;
    color: #FFA64D;
}
/*skin（犬の肌についてページで使っている横長画像回り込みブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .skin {
	position: relative;overflow: hidden;
	margin-bottom: 20px;
	padding: 20px;		/*ボックス内の余白。ここを変更する際は、下の「.list a」のpaddingとmarginの数字も合わせる。marginの方はマイナス記号を忘れずに。*/
	margin: 0 3% 5px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	background-color: white;
}
#contents .skin h4 {
	padding-left: 10px;	/*枠線とテキストとの間の余白*/
 	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #75664b;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #75664b;	/*文字色*/
}
/*ボックス内のp(段落)タグ設定*/
#contents .skin p {
	padding: 0px !important;
}
/*ボックス内の画像*/
#contents .skin figure {
	float: left;	/*左に回り込み*/
	width: 30%;
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 10px;
}
#contents .skin table {
	width: 100%;
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
#contents .skin table, th, td {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	padding-left: 3%;
}
/*faq（よくある質問ブロック）
---------------------------------------------------------------------------*/
.faq {
	padding: 0 3% 10px;
}
.qa-list dl {
    position: relative;
	border-radius: 10px;
    margin: 30px 0 0;
    border: 1px solid #7E9C09;
}
.qa-list dl:first-child {
  margin-top: 0;
}
.qa-list dl::after {
    position: absolute;
    top: 27px;
    right: 26px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    transform: rotate(135deg);
    border-top: 2px solid #000;
    border-right: 2px solid #000;
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 20px 20px 20px 60px;
    font-weight: bold;
}
.qa-list dl dt::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 20px;
    display: block;
    content: 'Q.';
    color: #FF7A4D;
}
.qa-list dl dd::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    left: 20px;
    display: block;
    content: 'A.';
    font-weight: bold;
    color: #3285bf;
}
.qa-list dl dd {
    position: relative;
    margin: 0;
    padding: 20px 20px 20px 60px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}

/*class .share-clear（透明コンテンツブロック）
---------------------------------------------------------------------------*/
#contents .share-clear {
	position: relative;
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	align-items: center;			/*中のブロックの縦並びの揃え方*/
	color: #217644;			/*文字色*/
	margin: 0 3% 20px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
}

/*factory（ファクトリーページ石鹸の作り方で使っている３列ブロック）
---------------------------------------------------------------------------*/
#contents .free-list {
	display: flex;
	justify-content: space-between;	/*中のブロックの横並びの揃え方*/
	flex-wrap: wrap;				/*中のブロックを自動で折り返す*/
	margin: 0 0% 10px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
}
/*１カラムあたりの設定*/
#contents .free-box {
	display: flex;
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 16.5%;					/*ブロック幅*/
	padding: 0px;
	background: #fff;				/*背景色*/
	color: #ccc;					/*文字色*/
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	margin-bottom: 7px;
}
/*ボックス内のh4（見出し）タグ*/
#contents .free-box h5 {
	color: coral;
}
/*ボックス内のp（段落）タグ*/
#contents .free-box p {
	color: #666666;
	padding: 0;		/*余白のリセット*/
}

/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .free-box .text {
	padding: 3%;			/*ブロック内の余白*/
	flex: 1 0 auto;
}
/*IEバグ対応*/
#contents .free-box figure {
	min-height: 0%;
}
/*shopping（ショッピングページで使っている横長画像回り込みブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
.shop-list {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0px 3% 20px;
}
#contents .shop-box {
	display: flex;
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 23%;						/*ブロック幅*/
	padding: 5px;
	margin-bottom: 20px;			/*ブロックの下に空ける余白*/
	border: 1px solid #ccc;		/*枠の線の幅、線種、色*/
	background: #fff;				/*背景色*/
	color: #ccc;					/*文字色*/
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
}
/*リンクテキストの文字色*/
#contents .shop-box a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
#contents .shop-box h4 {
	margin-bottom: 5px;	/*下のテキストとの間に空けるスペース*/
	font-size: 110%;		/*文字サイズ*/
	color: #666666;
}
/*ボックス内のp（段落）タグ*/
#contents .shop-box p {
	padding: 0;		/*余白のリセット*/
	text-align: right;
	color: #666666;
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .shop-box .text {
	padding: 5%;			/*ブロック内の余白*/
	flex: 1 0 auto;
}
/*IEバグ対応*/
#contents .shop-box figure {
	min-height: 0%;
}
#order{
	text-align: center;
}
/*ta1設定（特定商取引の表記、会社案内など）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption, .ta2 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eeece4;	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ta1テーブル*/
.ta1 {
	width: 94%;
	table-layout: fixed;
	margin: 0 3% 30px;
	background: #fff;	/*背景色*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*左側ボックス*/
.ta1 th {
	width: 150px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*ta0設定（認定資格）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta0 caption, .ta0 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: center;		/*文字を左寄せ*/
	background: #eeece4;	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ta0テーブル*/
.ta0 {
	width: 100%;
	table-layout: fixed;
	margin: 0 0 10px;
	background: #fff;	/*背景色*/
}
.ta0, .ta0 td, .ta0 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*左側ボックス*/
.ta0 th {
	width: 40%;
	text-align: left;	/*センタリング*/
	font-weight: normal;
}
.ta0 td {
	text-align: left;	/*センタリング*/
	padding-left: 3%;
	font-weight: normal;
}
/*カートボタン（ショッピングページへのボタン）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
.cart-link a {
  position: fixed;
  text-align: right;
  bottom: 130px; 
  right: 10px;
  text-decoration: none;
  vertical-align: middle;
  color: #fff;
  padding: 6px 30px 6px 15px;
  background: rgba(255, 153, 51, 0.6);	/*背景色*/
  border: solid 1px #fff;
}
.cart-link a:hover {
  background: rgba(255, 153, 51);	/*背景色*/
  border: solid 2px #fff;
}
#amount{
	position: absolute;
	bottom: 6px;
	width: 20px;
	right: 3px;
	z-Index: 2;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
}
/*ボックス内のボタン（共通）*/
.btn1 a {
	display: block;
	text-decoration: none;
	border: 1px solid #fff;		/*枠線の幅、線種、色*/
	text-align: center;			/*テキストをセンタリング*/
	padding: 10px 30px;			/*上下、左右へのボタン内の余白*/
	margin: 40px auto 0;		/*上、左右、下へのボックスの外側への余白*/
}
/*ボタンのマウスオン時（共通）*/
.btn1 a:hover {
	background: #fff;	/*背景色*/
	color: #83cdb7 !important;		/*文字色*/
}
/*inputボタン
---------------------------------------------------------------------------*/
#contents input[type="submit"].btn,
#contents input[type="button"].btn,
#contents input[type="reset"].btn {
	-webkit-appearance: none;
	outline: none;
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	border: 1px solid #1DB79A;	/*枠線の幅、線種、色*/
	font-size: 130%;		/*文字サイズ*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #1DB79A;		/*背景色*/
	color: #fff;			/*文字色*/
}
/*マウスオン時の設定*/
#contents input[type="submit"].btn:hover,
#contents input[type="button"].btn:hover,
#contents input[type="reset"].btn:hover {
	border: 1px solid #1DB79A;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	color: #1DB79A;			/*文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;position: relative;z-index: 1;
	font-size: 100%;	/*文字サイズ*/
	background: #1DB79A;	/*背景色*/
	color: #fff;		/*文字色*/
	text-align: center;
}
footer a {color: #fff;}
footer a:hover {color: #ccc;}
footer .pr {display: block;font-size: 80%;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	padding: 20px 0;	/*上下、左右へのボックス内の余白*/
}
#copyright a {text-decoration: none;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*ヘッダーにメニューが固定される分、リンク先が隠れるのを防ぐ為のスタイル。※ページ内へのリンクで使う。
---------------------------------------------------------------------------*/
.link {
	display: block;
	margin-top: -120px;
	padding-top: 120px;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {display: none;}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	z-index: 1;
	position: fixed;
	bottom: 20px;	/*下から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #666;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ol {
	padding: 0 3% 20px 6%;
}
/*その他
---------------------------------------------------------------------------*/
.look {background: #fff;border: 1px solid #ccc;display: inline-block;padding: 0px 10px !important;border-radius: 4px;}
p.look {margin: 0 3%;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #83cdb7 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 30px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}

/*----------------------------------------------------------------------------------------------*/


@media screen and (max-width: 767px) {
 .qa-list dl {
    margin: 10px 0 0;
}
.qa-list dl:after {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
}
.qa-list dl dt {
    padding: 16px 16px 16px 50px;
    font-size: 14px;
}
.qa-list dl dt::before {
    font-size: 14px;
    top: 20px;
    left: 20px;
}
.qa-list dl dd::before {
    font-size: 14px;
    left: 20px;
    margin-top: 5px;
}
.qa-list dl dd {
    margin: 0;
    padding: 16px 16px 16px 50px;
    font-size: 14px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}
}








/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 1.8vw;	/*文字サイズ*/
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border-bottom: 1px solid #ccc;
}
/*ヘッダーブロック（トップページへの追加設定）*/
.home header {
	border: none;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック全体*/
#menubar-s {
	overflow: auto;height: 100%;
	position: fixed;z-index: 100;
	top: 0px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: frame1;		/*冒頭のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-size: 16px;			/*文字サイズ*/
}
#menubar-s li span {
	margin-left: 20px;
	font-size: 80%;
}
/*メニュー１個あたりの設定と、子メニューの見出し。*/
#menubar-s ul li a,#menubar_hdr2 {
	display: block;text-decoration: none;
	padding: 30px 20px 30px 60px;
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*子メニュー
---------------------------------------------------------------------------*/
/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr2 {
	padding-left: 60px;	/*上にある「メニュー１個あたりの設定と、子メニューの見出し」の最後の数字（４つ目）に合わせる。*/
}
/*子メニューメニューブロック全体*/
#menubar-s2 {
	display: block;
	margin-top: 10px;
	border-radius: 5px;
	background: rgba(0,0,0,0.3);
	border: 1px solid #fff;
}
/*「＞」アイコン設定*/
#menubar_hdr2.close {
	background: url(../images/arrow2.png) no-repeat 20px 35px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr2.open {
	background: url(../images/arrow3.png) no-repeat 20px 35px / auto 18px;
}
/*子メニュー１個あたりの設定*/
#menubar-s2 li a {
	border-bottom: 1px solid #fff !important;
	padding: 10px 20px !important;
}
#menubar-s2 li:last-child a {
	border-bottom: none !important;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 20px;		/*上からの配置場所*/
	right: 2%;	/*右からの配置場所*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	border: 1px solid #fff;
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #000 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #000 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*fixmenuから折りたたみメニューになるのでリセット。*/
body.is-fixed-menu #contents {
	margin-top: 0px;
}
body.is-fixed #contents {
	margin-top: 0px;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	padding: 50px 0;	/*上下、左右へのコンテンツ内の余白*/
}
/*h2タグ*/
#contents h2 {
	margin-bottom: 50px;
}
/*class share（各コンテンツブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .share {
	margin: 0 0 0;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
	padding: 30px 0 20px;
}		
/*class .share-clear（透明コンテンツブロック）
---------------------------------------------------------------------------*/
#contents .share-clear {
	margin: 0 0 0;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
}	
/*itemlist（アイテム一覧ページで使っている横長画像回り込みブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .itemlist-box {
	margin: 0 0 10px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
}
/*list-box（トップページで使っている３列文字ブロック）
---------------------------------------------------------------------------*/
/*特徴カラムあたりの設定*/
#contents .list-box3 {
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 100%;						/*ブロック幅*/
	padding: 3px;
	margin-bottom: 5px;
	border: 1px solid #7E9C09;		/*枠の線の幅、線種、色*/
	background-color: rgba(255,255,255,0.3); 　　/*バックグランドカラー*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	background-size: 25%;
	background-image: url("../images/box-back.png");
    background-repeat:  no-repeat;              /* 背景の繰り返し設定 */
    background-position: right bottom;          /* 背景の位置指定 */	
}


#contents .shop-box {
	display: flex;
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 31%;						/*ブロック幅*/
	padding: 3px;
	margin-bottom: 20px;			/*ブロックの下に空ける余白*/
	border: 1px solid #ccc;		/*枠の線の幅、線種、色*/
	background: #fff;				/*背景色*/
	color: #ccc;					/*文字色*/
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
}
	
/*factory（ファクトリーページ石鹸の作り方で使っている３列ブロック）
---------------------------------------------------------------------------*/
/*１カラムあたりの設定*/
#contents .works-box {
	display: flex;
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 48%;					/*ブロック幅*/
	padding: 3px;
	border: 1px solid #ccc;		/*枠の線の幅、線種、色*/
	background: #fff;				/*背景色*/
	color: #ccc;					/*文字色*/
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	margin-bottom: 7px;
}		
	
	
	
	
	
	
	
	
	
	
	
	

	
	
/*list-column（トップページで使っている３列ブロック）
---------------------------------------------------------------------------*/
/*ボックス内のh4（見出し）タグ*/
#contents .list-column h4 {
	margin-bottom: 0px;
}

/*ヘッダーメニューが固定されなくなるので、再設定。
---------------------------------------------------------------------------*/
.link {
	margin-top: -30px;
	padding-top: 30px;
}

#contents .comment-list .text {
	width: 90%;		/*ブロックの幅。下のpaddingの5%とも連動するので変更の際は注意して下さい。*/
	padding: 0% 5%;	/*上下、左右へのブロック内の余白*/
	text-align: center;
	background-size: 18%;
	background-image: url("../images/shampoo.png");
    background-repeat:  no-repeat;              /* 背景の繰り返し設定 */
    background-position: right bottom;          /* 背景の位置指定 */		
}	
	
	
	
/*menu（indexページで使っているmenuブロック）
---------------------------------------------------------------------------*/	
.menu-list.c4 {
	width: 46%;	/*ボックスの幅*/
	margin: 0 0.5% 20px;	/*上、左右、下へのボックスの外側にとる余白*/
	float: left;
	text-align: center;	/*文字をセンタリング*/
	padding: 3px 3px 10px;
}		
	
	
	
/*その他
---------------------------------------------------------------------------*/
body.s-n .sub,body.s-n #footermenu {display: none;}
.big1 {font-size: 20px;}

}







/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 3vw;
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*h2タグ*/
#contents h2 {
	margin-bottom: 30px;
}
/*h3タグ*/
#contents h3 {
	margin-bottom: 20px;
}
#contents section + section {
	margin-top: 30px;
}

	
#contents .shop-box {
	display: flex;
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 46%;						/*ブロック幅*/
	padding: 3px;
	margin-bottom: 20px;			/*ブロックの下に空ける余白*/
	border: 1px solid #ccc;		/*枠の線の幅、線種、色*/
	background: #fff;				/*背景色*/
	color: #ccc;					/*文字色*/
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
}	

	
/*navmenu-list（メニューリストページリンクのブロック）
---------------------------------------------------------------------------*/
/*１カラムあたりの設定*/	
.navmenu-list {
	width: 49%;	/*ボックスの幅*/
	float: left;
	text-align: center;	/*文字をセンタリング*/
	padding: 10px 0 10px;
    border-top: 4px solid #FF9900;
    background: rgba(255, 153, 51, 0.3);	/*背景色*/
	position: relative;
	overflow: hidden;
	margin-bottom: 5px;
}		
/*factory（ファクトリーページ石鹸の作り方で使っている３列ブロック）
---------------------------------------------------------------------------*/
/*１カラムあたりの設定*/
#contents .works-box {
	display: flex;
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 100%;					/*ブロック幅*/
	padding: 3px;
	border: 1px solid #ccc;		/*枠の線の幅、線種、色*/
	background: #fff;				/*背景色*/
	color: #ccc;					/*文字色*/
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	margin-bottom: 7px;
}	
	
	
	
	
	
	
	
/*１カラムあたりの設定*/
#contents .list-column {
	display: flex;
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 100%;						/*ブロック幅*/
	padding: 3px;
	margin-bottom: 20px;			/*ブロックの下に空ける余白*/
	border: 1px solid #ccc;		/*枠の線の幅、線種、色*/
	background: #fff;				/*背景色*/
	color: #999999;					/*文字色*/
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
}	
	
/*list-box（トップページで使っている３列文字ブロック）
---------------------------------------------------------------------------*/
/*特徴カラムあたりの設定*/
#contents .list-box {
	display: flex;
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 100%;						/*ブロック幅*/
	padding: 5px;
	margin-bottom: 20px;			/*ブロックの下に空ける余白*/
	border: 1px solid #7E9C09;		/*枠の線の幅、線種、色*/
	background: #fff;				/*背景色*/
	color: #666666;					/*文字色*/
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	font-size: 120%;
	background-size: 50%;
	background-image: url("../images/box-back.png");
    background-repeat:  no-repeat;              /* 背景の繰り返し設定 */
    background-position: right bottom;          /* 背景の位置指定 */		
}
/*ボックス内のh4（見出し）タグ*/
#contents .list-box h4 {
	text-align: center;
	margin: 20px 0;	/*下のテキストとの間に空けるスペース*/
	font-size: 140%;		/*文字サイズ*/
}
	
#contents .comment-list .text {
	width: 90%;		/*ブロックの幅。下のpaddingの5%とも連動するので変更の際は注意して下さい。*/
	padding: 0% 5%;	/*上下、左右へのブロック内の余白*/
	text-align: center;
	background-size: 30%;
	background-image: url("../images/shampoo.png");
    background-repeat:  no-repeat;              /* 背景の繰り返し設定 */
    background-position: right bottom;          /* 背景の位置指定 */		
}	

	p.body {font-size: 120%;}
	
	
	
	
/*itemlist（アイテム一覧ページで使っている横長画像回り込みブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .item {
	position: relative;overflow: hidden;
	margin-bottom: 20px;
	padding: 20px;		/*ボックス内の余白。ここを変更する際は、下の「.list a」のpaddingとmarginの数字も合わせる。marginの方はマイナス記号を忘れずに。*/
	border-bottom: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
}
#contents .item h5 {
	padding-left: 10px;	/*枠線とテキストとの間の余白*/
 	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #75664b;	/*文字色*/
}
/*ボックス内のp(段落)タグ設定*/
#contents .item p {
	padding: 0px !important;
}
/*ボックス内の画像*/
#contents .item figure {
	float: left;	/*左に回り込み*/
	width: 100%;
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 10px;
}
#contents .item dl {
  display: flex;
  flex-wrap: wrap;
}
#contents .item dl dt {
  width: 30%;
}
#contents .item dl dd {
  width: 70%;
}	




/*faq（よくある質問ブロック）
---------------------------------------------------------------------------*/
.qa-list dl {
    margin: 10px 0 0;
}
.qa-list dl:after {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
}
.qa-list dl dt {
    padding: 16px 16px 16px 50px;
    font-size: 14px;
}
.qa-list dl dt::before {
    font-size: 14px;
    top: 20px;
    left: 20px;
}
.qa-list dl dd::before {
    font-size: 14px;
    left: 20px;
    margin-top: 5px;
}
.qa-list dl dd {
    margin: 0;
    padding: 16px 16px 16px 50px;
    font-size: 14px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}	
	

/*list（worksページで使っている横長ブロック）
---------------------------------------------------------------------------*/
/*ボックス内のボタン（共通）*/
.btn1 a {
	padding: 5px 10px;			/*上下、左右へのボタン内の余白*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.fl {float: none;}
.fr {float: none;}
.big1 {font-size: 16px;}
.sh {display:block;}
.pc {display:none;}
	
