@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #333;	/*全体の文字色*/
	background: #eee url(../images/bg.png);	/*背景色、背景画像の読み込み*/
	margin: 0px;
	padding: 0px;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 15px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
}
h1 {
  /*線の種類（実線） 太さ 色*/
  border-bottom: solid 3px black;
      margin-bottom: 1.5em;
    font-size: 100%;
}
    
h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
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;}
iframe {width: 100%;}

    li {
  line-height: 2.1em;
    }

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

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1200px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding: 30px 3% 0;	/*上、左右、下へのボックス内の余白。*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 300px;	/*ブロックの高さ*/
	position: relative;
	
	box-shadow: 0px 0px 8px rgba(0,0,0,0.5);	/*影の設定。それぞれ右へ、下へ、ぼかし幅。0,0,0は黒の事で0.5は透明度50%の事*/
	border: 1px solid #FFF;		/*線の幅、線種、色*/
	margin-bottom: 30px;	/*ヘッダーと下の左右ブロックの間のスペース*/
}

/*ロゴ画像の設定*/
header #logo img {
	position: absolute;
	left: 30px;	/*ヘッダーブロックに対して左から30pxの位置に配置*/
	top: 90px;	/*ヘッダーブロックに対して上から90pxの位置に配置*/
	width: 300px;	/*ロゴ画像の幅*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
nav#menubar ul {
	overflow: hidden;
	width: 100%;
	background: #FFF;	/*背景色*/
	position: absolute;
	left: 0px;		/*ヘッダーの左から0pxの場所に配置*/
	bottom: 0px;	/*ヘッダーの下から0pxの場所に配置*/
	border-top: 1px solid #FFF;	/*上の線の幅、線種、色*/
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;	/*左に回り込み*/
	width: 20%;		/*メニュー幅。今回は５個あるので、100÷5=20。*/
}
nav#menubar ul li a {
	text-decoration: none;display: block;
	font-weight: bold;	/*文字を太字にする設定。通常がいいならこの１行削除。*/
	background-color: #1194b4;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/bg1.png), linear-gradient(#14b2d9, #1194b4);		/*背景画像の読み込み,グラデーション*/
	text-align: center;	/*文字をセンタリング*/
	color: #FFF;		/*文字色*/
	border-left: 1px solid #FFF;	/*左側の線の幅、線種、色*/
	padding: 10px 0;	/*上下、左右へのボックス内の余白*/
	line-height: 1.5;	/*行間。デフォルトより少し狭くする。*/
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child a {
	border-left: none;	/*左側の線を消す設定*/
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover {
	background: #14b2d9 url(../images/bg1.png);	/*背景色、背景画像の読み込み*/
}
/*英語表記の設定*/
nav#menubar ul li a span {
	display: block;
	font-size: 10px;	/*文字サイズ*/
	font-weight: normal;	/*太字を標準に戻す設定。*/
	opacity: 0.6;	/*透明度60%*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;overflow: hidden;
	padding-bottom: 30px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	margin-bottom: 30px;
	width: 71%;		/*メインコンテンツ幅*/
	background: #FFF;	/*背景色*/
	padding: 20px;	/*ボックス内の余白*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
    	margin-top: 2em;	/*見出しの下にとるスペース*/
	margin-bottom: 2em;	/*見出しの下にとるスペース*/
	color: #FFF;		/*文字色*/
	padding: 7px 20px;	/*上下、左右への余白*/
	background: #1194b4;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/arrow2.png) no-repeat right center, linear-gradient(#14b2d9, #1194b4);		/*背景画像の読み込み,グラデーション*/
	box-shadow: 1px 2px 5px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
}

/*mainコンテンツのh3タグの設定*/
h3.my {
	clear: both;
	margin-bottom: 2em;	/*見出しの下にとるスペース*/
        margin-top: 2em;
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background:linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);	/*グラデーション*/
	box-shadow: 1px 2px 5px #e2e2e2;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	padding: 4px 20px 4px 10px;	/*上、右、下、左へのボックス内の余白*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh3タグの１文字目への設定*/
h3.my:first-letter {
	border-left: 3px solid #1194b4;	/*左のアクセントラインの幅、線種、色*/
	padding-left: 7px;	/*ラインと文字の間の余白*/
}
/*段落タグ設定*/
#main p {
	padding: 0px 20px 15px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}

/*service.html内の各ブロック（※タイプ１）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list1 {
	overflow: hidden;
	float: left;
	height: 100%;	/*ボックスの高さ*/
	width: 47%;		/*ボックスの幅*/
	line-height: 1.6;
	margin-left: 2%;
	margin-bottom: 20px;
}
/*ボックス内の段落タグ設定*/
#main .list1 p {
	padding: 0px;
}
/*ボックス内のh4タグ設定*/
#main .list1 h4 {
	color: #14b2d9;	/*文字色*/
}
/*写真の設定*/
#main .list1 figure {
	padding: 5px;	/*写真と枠線との余白設定*/
	margin-bottom: 5px;	/*画像の下に少し余白を空ける設定*/
	border: 1px solid #CCC;	/*画像の枠線の幅、線種、色*/
}
/*「もっと詳しく」ボタン設定*/
#main .list1 p.more {
	margin: 10px auto 0;
	width: 100%;	/*ボタンの幅*/
	text-align: center;	/*文字を中央に*/
}
#main .list1 p.more a {
	text-decoration: none;display: block;
	color: #FFF;	/*文字色*/
	background-color: #900000;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: linear-gradient(#b10000, #900000);	/*グラデーション*/
	font-size: 11px;	/*文字サイズ*/
	border-radius: 4px;	/*各丸のサイズ*/
	padding: 5px 0;		/*上下、左右へのボタン内の余白*/
}
#main .list1 p.more a:hover {
	background: #d30000;	/*マウスオン時の背景色*/
}

/*service.html内の各ブロック（※タイプ２）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list2 {
	position: relative;overflow: hidden;
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	background: linear-gradient(#FFF, #e3e3e3);			/*グラデーション*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	padding: 20px;	/*ボックス内の余白*/
}
#main .list2 a {
	text-decoration: none;display: block;overflow: hidden;
	margin: -20px;	/*ボックス内の余白*/
	padding: 20px;	/*ボックス内の余白*/
}
/*マウスオン時*/
#main .list2 a:hover {
	background-color: #f6f1b2;	/*背景色*/
	color: #333;				/*文字色*/
	border-radius: 6px;			/*角丸のサイズ*/
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list2 a::before {
	content: "→";	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: absolute;
	right: 20px;	/*ボックスの右から20pxの場所に配置*/
	bottom: 20px;		/*ボックスの下から20pxの場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
}
#main .list2 a:hover::before {
	background: #000;	/*マウスオン時の「→」マークの背景色*/
}
/*ボックス内のh4タグ設定*/
#main .list2 h3 {
	color: #14b2d9;	/*文字色*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	margin-bottom: 10px;
}
/*ボックス内の写真設定*/
#main .list2 figure img {
	float: left;			/*画像を左へ回り込み*/
	margin-right: 20px;		/*画像の右側に空けるスペース*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 40%;	/*画像の幅*/
	height: auto;
}
/*ボックス内の段落タグ設定*/
#main .list2 p {
	padding: 0px;
        margin-top: 1em;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 22%;;	/*サブコンテンツ幅*/
	margin-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	text-align: center;	/*文字をセンタリング*/
	padding: 3px 0px;	/*左から、上下、左右への余白*/
	background: #7d7d7d;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#636363, #7d7d7d);	/*グラデーション*/
	color: #FFF;	/*文字色*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub .submenu {
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	margin-bottom: 20px;			/*メニューブロックの下にあけるスペース*/
    font-size: 12px;	/*文字サイズ*/
}
/*メニュー１個ごとの設定*/
#sub .submenu li a {
	text-decoration: none;display: block;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	padding: 0px 10px;	/*上下、左右へのボックス内の余白*/
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#eaeaea, #FFF);	/*グラデーション*/
	box-shadow: 0px 0px 0px 1px #FFF inset;	/*内側への影を右・下・ぼかし幅・距離・色を設定*/
}
/*マウスオン時の設定*/
#sub .submenu li a:hover {
	background: #14b2d9;	/*背景色*/
	color: #FFF;			/*マウスオン時の文字色*/
	box-shadow: none;	/*内側への影をリセットする*/
}

/*サブコンテンツ　製品情報ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .box1 {
	overflow: hidden;
	font-size: 11px;	/*文字サイズ*/
	border-bottom: 1px solid #CCC;	/*下の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右の線の幅、線種、色*/
	line-height: 1.5;	/*行間*/
}
#sub .box1 a {
	text-decoration: none;display: block;overflow: hidden;
	padding: 10px;	/*ボックス内の余白*/
	background: #fff;	/*背景色*/
}
#sub .box1 a:hover {
	background: #14b2d9;	/*マウスオン時のボックス色*/
	color: #FFF;			/*マウスオン時の文字色*/
}
/*写真の設定*/
#sub .box1 figure {
	float: left;	/*左に回り込みさせる設定*/
	width: 30%;		/*画像の幅*/
	margin-right: 5px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	margin-bottom: 30px;
	text-align: center;
	color: #FFF;			/*文字色*/
	background: #111;		/*背景色*/
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}
footer .pr {display: block;font-size: 80%;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;
	margin-bottom: 20px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	color: #534e40;	/*文字色*/
	font-weight: bold;	/*太字にする設定*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #efefef;	/*下線の幅、線種、色*/
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #14b2d9;	/*文字色*/
	padding-top: 15px;
	font-weight: bold;	/*太字にする設定*/
}
.faq dt a {
	color: #14b2d9;	/*文字色*/
}
/*回答の設定*/
.faq dd {
	border-bottom: 1px solid #dbdbdb;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #4F9900;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#4F9900, #6FD800);	/*グラデーション*/
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 160px;
	text-align: center;
	background: #E5FFED;	/*背景色*/
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*テーブルAV
---------------------------------------------------------------------------*/
.av {
	width: 100%;
	margin: 0 auto 20px;
}
.av, .av td, .av th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.av th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #FF2626;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#FF2626, #FF6666);	/*グラデーション*/
}
/*テーブル内の左側の見出し部分*/
.av th{
	width: 160px;
	text-align: center;
	background: #FFE5E5;	/*背景色*/
}
/*左側ボックスに画像を入れた場合の設定*/
.av th img {
	width: 100%;
}

/*テーブルShirouto
---------------------------------------------------------------------------*/
.shirouto {
	width: 100%;
	margin: 0 auto 20px;
}
.shirouto, .shirouto td, .shirouto th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.shirouto th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #0066FF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#0066FF, #66A3FF);	/*グラデーション*/
}
/*テーブル内の左側の見出し部分*/
.shirouto th{
	width: 160px;
	text-align: center;
	background: #D1F1FF;	/*背景色*/
}
/*左側ボックスに画像を入れた場合の設定*/
.shirouto th img {
	width: 100%;
}

/*テーブルjukujo
---------------------------------------------------------------------------*/
.jukujo {
	width: 100%;
	margin: 0 auto 20px;
}
.jukujo, .jukujo td, .jukujo th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.jukujo th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #FF3FBF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#FF3FBF, #FF7FD4);	/*グラデーション*/
}
/*テーブル内の左側の見出し部分*/
.jukujo th{
	width: 160px;
	text-align: center;
	background: #FFE5F8;	/*背景色*/
}
/*左側ボックスに画像を入れた場合の設定*/
.jukujo th img {
	width: 100%;
}

/*テーブルtousatsu
---------------------------------------------------------------------------*/
.tousatsu {
	width: 100%;
	margin: 0 auto 20px;
}
.tousatsu, .tousatsu td, .tousatsu th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.tousatsu th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #0C0C0C;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#0C0C0C, #595959);	/*グラデーション*/
}
/*テーブル内の左側の見出し部分*/
.tousatsu th{
	width: 160px;
	text-align: center;
	background: #E5E5E5;	/*背景色*/
}
/*左側ボックスに画像を入れた場合の設定*/
.tousatsu th img {
	width: 100%;
}

/*テーブルmaniac
---------------------------------------------------------------------------*/
.maniac {
	width: 100%;
	margin: 0 auto 20px;
}
.maniac, .maniac td, .maniac th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.maniac th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #9932CC;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#9932CC, #CC98E6);	/*グラデーション*/
}
/*テーブル内の左側の見出し部分*/
.maniac th{
	width: 160px;
	text-align: center;
	background: #F4EAFA;	/*背景色*/
}
/*左側ボックスに画像を入れた場合の設定*/
.maniac th img {
	width: 100%;
}

/*テーブルeroanime
---------------------------------------------------------------------------*/
.eroanime {
	width: 100%;
	margin: 0 auto 20px;
}
.eroanime, .eroanime td, .eroanime th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.eroanime th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #F2B809;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#F2B809, #FFDC00);	/*グラデーション*/
}
/*テーブル内の左側の見出し部分*/
.eroanime th{
	width: 160px;
	text-align: center;
	background: #FFFECC;	/*背景色*/
}
/*左側ボックスに画像を入れた場合の設定*/
.eroanime th img {
	width: 100%;
}

/*テーブルyoumono
---------------------------------------------------------------------------*/
.youmono {
	width: 100%;
	margin: 0 auto 20px;
}
.youmono, .youmono td, .youmono th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.youmono th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #F75745;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#F75745, #F78E83);	/*グラデーション*/
}
/*テーブル内の左側の見出し部分*/
.youmono th{
	width: 160px;
	text-align: center;
	background: #F7DCD9;	/*背景色*/
}
/*左側ボックスに画像を入れた場合の設定*/
.youmono th img {
	width: 100%;
}

/*テーブルkageki
---------------------------------------------------------------------------*/
.kageki {
	width: 100%;
	margin: 0 auto 20px;
}
.kageki, .kageki td, .kageki th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.kageki th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #0C0C0C;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#0C0C0C, #595959);	/*グラデーション*/
}
/*テーブル内の左側の見出し部分*/
.kageki th{
	width: 160px;
	text-align: center;
	background: #E5E5E5;	/*背景色*/
}
/*左側ボックスに画像を入れた場合の設定*/
.kageki th img {
	width: 100%;
}

/*テーブルheisa
---------------------------------------------------------------------------*/
.heisa {
	width: 100%;
	margin: 0 auto 20px;
}
.heisa, .heisa td, .heisa th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.heisa th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #0C0C0C;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#0C0C0C, #595959);	/*グラデーション*/
}
/*テーブル内の左側の見出し部分*/
.heisa th{
	width: 160px;
	text-align: center;
	background: #ffffff;	/*背景色*/
}
/*左側ボックスに画像を入れた場合の設定*/
.heisa th img {
	width: 100%;
}

/*submitボタンの設定
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	padding: 10px 30px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border: none;
	border-radius: 30px;	/*角丸のサイズ*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	font-size: 16px;	/*文字サイズ*/
	border: 1px solid #ccc;
}
/*マウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover{
	background: #fff;	/*背景色*/
}

/*一覧ページのボックス右下のオプションマーク
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	top: 0px;
	-webkit-transform: rotate(45deg) translate(35px);
	transform: rotate(45deg) translate(35px);
}
h2 span.option1 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	transform: none;
	display: inline-block;
}
.option2 {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	top: 0px;
	-webkit-transform: rotate(45deg) translate(35px);
	transform: rotate(45deg) translate(35px);
}
h2 span.option2 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	transform: none;
	display: inline-block;
}

/*ページの上部へ（↑）ボタン
---------------------------------------------------------------------------*/
@keyframes scroll {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
body .nav-fix-pos-pagetop a {display: none;}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;	/*固定表示*/
	bottom: 90px;	/*下から90pxの場所に配置*/
	right: 4%;		/*右から4%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*マウスオン時の背景色*/
}

/*トップページの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;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #dcdcdc;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 20px;list-style: disc;}
.color1, .color1 a {color: #14b2d9;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 20px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}



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

/*service.html内の各ブロック（※タイプ１）
---------------------------------------------------------------------------*/

/*各ボックスの設定*/
#main .list1 {
	height: auto;	/*ボックスの高さ*/
}

}



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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: auto;	/*ブロックの高さ*/

}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;top: 0px;z-index: 10;
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	width: 100%;		/*幅*/
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-size: 16px;		/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 10px 5%;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*日本語の飾り文字*/
#menubar-s a span {
	display: block;
	font-size: 12px;	/*文字サイズ*/
	color: #999;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	position: absolute;z-index: 11;
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #000 url(../images/icon_menu.png) no-repeat center top/50px;
	top: 45px;	/*上から45pxの場所に配置*/
	right: 5%;	/*右から5%の場所に配置*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #000 url(../images/icon_menu.png) no-repeat center bottom/50px;
	top: 12px;	/*上から12pxの場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;width: auto;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub .submenu li a {
	padding: 10px;	/*ボックス内の余白*/
}

/*サブコンテンツ　製品情報ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .box1 {
	font-size: 14px;	/*文字サイズ*/
}
/*写真の設定*/
#sub .box1 figure {
	width: 10%;		/*画像の幅*/
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,.m-n {display: none;}
.sh {display:block;}
.pc {display:none;}

}

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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/

/*ロゴ画像の設定*/
header #logo img {
	width: 200px;	/*画像の幅*/
	left: 10px;	/*ヘッダーブロックに対して左から10pxの位置に配置*/
	top: 38px;	/*ヘッダーブロックに対して上から38pxの位置に配置*/
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 40px;	/*幅を少し小さく再設定*/
	height: 40px;	/*高さを少し小さく再設定*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background-size: 40px;	/*サイズだけ少し小さく再設定*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background-size: 40px;	/*サイズだけ少し小さく再設定*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main h2, #main h3 {
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
}
/*段落タグ設定*/
#main p {
	padding: 0px 10px 15px;	/*上、左右、下への余白*/
}

/*service.html内の各ブロック（※タイプ１）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list1 {
	float: none;
	height: auto;	/*ボックスの高さ*/
	width: auto;		/*ボックスの幅*/
	margin-left: 0;
}

/*service.html内の各ブロック（※タイプ２）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list2 {
	padding: 10px;	/*ボックス内の余白*/
}
#main .list2 a {
	margin: -10px;	/*ボックス内の余白*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list2 a::before {
	right: 10px;	/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;		/*ボックスの下から10pxの場所に配置*/
}

/*サブコンテンツ　製品情報ボックス
---------------------------------------------------------------------------*/
/*写真の設定*/
#sub .box1 figure {
	width: 20%;		/*画像の幅*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 10px;
}

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

/*テーブル（av）
---------------------------------------------------------------------------*/
/*ta1設定*/
.av, .av td, .av th {
	padding: 5px;	/*ボックス内の余白*/
}
/*avの左側ボックス*/
.av th {
	width: 100px;
}
    
/*テーブル（shirouto）
---------------------------------------------------------------------------*/
/*ta1設定*/
.shirouto, .shirouto td, .shirouto th {
	padding: 5px;	/*ボックス内の余白*/
}
/*avの左側ボックス*/
.shirouto th {
	width: 100px;
}
    
/*テーブル（jukujo）
---------------------------------------------------------------------------*/
/*ta1設定*/
.jukujo, .jukujo td, .jukujo th {
	padding: 5px;	/*ボックス内の余白*/
}
/*avの左側ボックス*/
.jukujo th {
	width: 100px;
}
    
/*テーブル（tousatsu）
---------------------------------------------------------------------------*/
/*ta1設定*/
.tousatsu, .tousatsu td, .tousatsu th {
	padding: 5px;	/*ボックス内の余白*/
}
/*avの左側ボックス*/
.tousatsu th {
	width: 100px;
}
    
/*テーブル（maniac）
---------------------------------------------------------------------------*/
/*ta1設定*/
.maniac, .maniac td, .maniac th {
	padding: 5px;	/*ボックス内の余白*/
}
/*avの左側ボックス*/
.maniac th {
	width: 100px;
}
    
/*テーブル（eroanime）
---------------------------------------------------------------------------*/
/*ta1設定*/
.eroanime, .eroanime td, .eroanime th {
	padding: 5px;	/*ボックス内の余白*/
}
/*avの左側ボックス*/
.eroanime th {
	width: 100px;
}
    
/*テーブル（youmono）
---------------------------------------------------------------------------*/
/*ta1設定*/
.youmono, .youmono td, .youmono th {
	padding: 5px;	/*ボックス内の余白*/
}
/*avの左側ボックス*/
.youmono th {
	width: 100px;
}
    
/*テーブル（kageki）
---------------------------------------------------------------------------*/
/*ta1設定*/
.kageki, .kageki td, .kageki th {
	padding: 5px;	/*ボックス内の余白*/
}
/*avの左側ボックス*/
.kageki th {
	width: 100px;
}
    
/*テーブル（heisa）
---------------------------------------------------------------------------*/
/*ta1設定*/
.heisa, .heisa td, .heisa th {
	padding: 5px;	/*ボックス内の余白*/
}
/*avの左側ボックス*/
.heisa th {
	width: 100px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}

}

/*レビューページのテーブル
---------------------------------------------------------------------------*/
table.a1{
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
}

table.a1 tr{
  border-bottom: solid 2px white;
}

table.a1 tr:last-child{
  border-bottom: none;
}

table.a1 th{
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #52c2d0;
  color: white;
  text-align: center;
  padding: 10px 0;
}

table.a1 th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #52c2d0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table.a1 td{
  text-align: left;
  width: 70%;
  text-align: center;
  background-color: #eee;
  padding: 10px 0;
}

.under {
  background: linear-gradient(transparent 70%, #ff99ab 70%);
     font-weight: bold;
}

.under2 {
  background: linear-gradient(transparent 70%, #a0ff83 70%);
    font-weight: bold;
}

/*不正請求されたときのコメント
---------------------------------------------------------------------------*/
.box9 {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #ff7d6e;
    background: #ffebe9;
    border-top: solid 10px #ff7d6e;
    text-align: center;
}
.box9 p {
    margin: 0; 
    padding: 0;
    margin-top: 1em;
    font-weight:bold;
}

/*薄い青色背景のボックス
---------------------------------------------------------------------------*/
.box16{
    padding: 0.5em 1em;
    margin: 2em 0;
    background: -webkit-repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);
    background: repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);
}
.box16 p {
    margin: 0; 
    padding: 0;
        margin-top: 1em;
}
/*薄く赤い注意喚起のボックス
---------------------------------------------------------------------------*/
.box9red {
    padding: 0.5em 1em;
    margin: 1em 0;
    color: #ff7d6e;
    background: #ffebe9;
    border-top: solid 10px #ff7d6e;
}
.box9red p {
    margin: 0; 
    padding: 0;
    margin-top: 1em;
    font-weight:bold;
}

/*薄く赤い注意喚起のボックステキスト黒
---------------------------------------------------------------------------*/
.box9red-b {
    padding: 0.5em 1em;
    margin: 1em 0;
    color: #000000;
    background: #ffebe9;
    border-top: solid 10px #ff7d6e;
}
.box9red-b p {
    margin: 0; 
    padding: 0;
    margin-top: 1em;
    font-weight:bold;
}

/*引用
---------------------------------------------------------------------------*/
blockquote {
position: relative;
margin: 1em 0;
padding: 1.2em;
font-size: .9em;
border: 1px solid #CCC;
border-radius: 2px;
background: #FFF;
box-shadow: 0px 1px 3px rgba(0,0,0,.2);
margin-bottom:2em;
}
    
blockquote:before{
position: absolute;
top: 15px;
left: 20px;
content: '“';
font-size: 4em;
opacity: .1;
    }
    
blockquote cite {
display: block;
text-align: right;
color: #888888;
font-size: 0.9em;
}


/*小見出し
---------------------------------------------------------------------------*/ 
.komidashi {
    position: relative;
    padding: 0.5em 0.7em;
    margin: 2em 0;
    background: #e6f4ff;
    color: #5c98d4;
    font-weight: bold;
}
.komidashi:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    border: 15px solid transparent;
    border-top: 15px solid #e6f4ff;
    width: 0;
    height: 0;
}
.komidashi p {
    margin: 0; 
    padding: 0;
        margin-top: 1em;
}
    
/*画像横並び
---------------------------------------------------------------------------*/  
.top-banner{
	display: flex;
	flex-wrap:wrap;
}
.top-banner li {
	width: calc(100%/4);/*←画像を横に4つ並べる場合*/
	padding: 10px;/*←画像の左右に5pxの余白を入れる場合*/
    margin-bottom: 1em;
	box-sizing:border-box;
}
.top-banner li img {
	max-width:100%; /*画像のはみだしを防ぐ*/
	height: auto; /*画像の縦横比を維持 */
	border:solid 1px #ccc; /*←画像を1pxのグレーの枠線で囲む指定の場合*/
}

/*画像縮小（スマホ一枚用）
---------------------------------------------------------------------------*/ 
p.iphone img {
    width: 200px;  /* 横幅を200pxに */
    text-align: center;
    padding: 11px;
    background-color: #FFFFFF;
    box-shadow: 0 3px 18px -4px rgba(0, 0, 0, 0.8);

}

/*オススメプラン動画数テーブル
---------------------------------------------------------------------------*/
#tablelink a:link{color:#fff;}/*IDでリンク時の色を指定*/
#tablelink a:visited{color:#fff;}
#tablelink a:hover{color:#fff;}

table.a2 {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table.a2 tr {
  background-color: #e6f2f5;
  padding: .35em;
  border-bottom: 2px solid #fff;
}
table.a2 th,
table td {
  padding: 1em 10px 1em 1em;
  border-right: 2px solid #fff;
       text-align: center;
}
table.a2 th {
  font-size: .85em;
}
table.a2 thead tr{
  background-color: #167F92;
  color:#fff;
}
table.a2 tbody th {
    background: #78bbc7;
    color: #fff;
}
.txt{
   text-align: center;
   font-size: .85em;
}
.price{
  text-align: center;
  color: #167F92;
  font-weight: bold;
}
.non{
  background:#fff
}
@media screen and (max-width: 600px) {
  table.a2 {
    border: 0;
    width:100%
  }
  table.a2 th{
    background-color: #167F92;
    display: block;
    border-right: none;
  }
  table.a2 thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  table.a2 tr {
    display: block;
    margin-bottom: .625em;
  }
  table.a2 td {
    border-bottom: 1px solid #bbb;
    display: block;
    font-size: .8em;
    text-align: right;
    position: relative;
    padding: .625em .625em .625em 4em;
    border-right: none;
  }
  
  table.a2 td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
    color: #167F92;
  }
  table.a2 td:last-child {
    border-bottom: 0;
  }
  table.a2 tbody th {
    color: #fff;
}
}

.box-frame {
	padding:7px;
	border:1px solid #ccc;
	background:#fff;
	box-shadow: 1px 1px 5px rgba(20,20,20,0.2);
        margin-top: 1em;
    margin-bottom: 1em;
    max-width:90%; /*スマホでのサイズ調整*/
}

/*ひとこと
    <div class="hitokoto">
<span class="hitokoto-circle1">ひ</span><span class="hitokoto-circle2">こ</span>
  <p>ここにテキスト</p>
</div>
---------------------------------------------------------------------------*/
.hitokoto{
  background: rgba(215, 253, 205, 0.61);
  margin: 2em 0;
  padding: 25px;
  border-radius: 10px;
}

.hitokoto-circle1{
  font-size: 16px;
  line-height: 1.5;
  position: absolute;
  margin-top: -37px;
  font-weight: bold;
  color: #fff;
  background-color:#4caf50;
  border-radius: 50%;
  text-align: center;
  width: 24px;
  height: 24px;
}

.hitokoto-circle1:after{
  content: "と";
  position: absolute;
  margin-top: .2em;
  font-weight: bold;
  color: #fff;
  background-color:#4caf50;
  border-radius: 50%;
  text-align: center;
  width: 24px;
  height: 24px;
}

.hitokoto-circle2:before{
  content: "";
  position: absolute;
  top: 100%;
  margin-left: -12px;
  border: 5px solid transparent;
  border-top: 10px solid #4caf50;
  -ms-transform: rotate(-20deg);
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}

.hitokoto-circle2{
  position: absolute;
  font-size: 16px;
  line-height: 1.5;
  margin-top: -37px;
  margin-left: 40px;
  font-weight: bold;
  color: #fff;
  background-color:#4caf50;
  border-radius: 50%;
  text-align: center;
  width: 24px;
  height: 24px;
}

.hitokoto-circle2:after{
  content: "と";
  position: absolute;
  margin-top: .2em;
  font-weight: bold;
  color: #fff;
  background-color:#4caf50;
  border-radius: 50%;
  text-align: center;
  width: 24px;
  height: 24px;
}

.hitokoto p{
  margin: 0;
  padding: 0;
margin-top: 1em;
}

/*下部公式サイトボックス
    <div class="box29">
    <div class="box-title">公式サイト</div>
    <p>⇒の公式サイトはコチラ</p>
</div>
---------------------------------------------------------------------------*/
.box29 {
    margin: 2em 0;
    background: #dcefff;
    margin-bottom: 3em;
}
.box29 .box-title {
    font-size: 1.2em;
    background: #5fb3f5;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.box29 p {
    padding: 15px 20px;
    margin: 0;
        text-align: center;
    margin-top: 1em;
    font-weight:  bold;
}

/*画像下のリンクテキスト
---------------------------------------------------------------------------*/
p.small {
    font-size: small;
    margin-bottom: 1em;
    text-align: center;
}


/*クチコミのボックス
---------------------------------------------------------------------------*/
.flame02 {
margin: 2em auto;
padding: 1em;
width: 90%;
color: #000; 
background-color: #FCFCFC; 
border: 1px solid #ccc; 
      font-size: 12px;
}

.flame02 p {
    margin-top: 1em;
}

/*クチコミのボックスの中のhr
<hr class="hr-text" data-content="AND">
<hr class="hr-text" data-content="OR">
---------------------------------------------------------------------------*/
.hr-text {
	line-height: 1em;
	position: relative;
	outline: 0;
	border: 0;
	color: black;
	text-align: center;
	height: 1.5em;
	opacity: .5;
        margin-bottom: 2em;
}
.hr-text:before {
	content: '';
	background: -webkit-linear-gradient(left, transparent, #818078, transparent);
	background: linear-gradient(to right, transparent, #818078, transparent);
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 1px;
}
.hr-text:after {
	content: attr(data-content);
	position: relative;
	display: inline-block;
	color: black;
	padding: 0 .5em;
	line-height: 1.5em;
	color: #818078;
	background-color: #fcfcfa;
}

.under3 {
  border-bottom: dashed 1px #87CEFA;
}

/*\BRの高さ調整
---------------------------------------------------------------------------*/
br {
display: block;
content: "";
margin: 10px 0;
}

/*\クチコミのH3
---------------------------------------------------------------------------*/
h3.myclass {
  color:#A0A0FF;
            margin-bottom: 1.5em;
}

/*\安全性と退会の画像用
---------------------------------------------------------------------------*/
.images {
            margin-bottom: 1em;
    text-align: center;
}

/*\FAQ
---------------------------------------------------------------------------*/
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa .cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 0 1em 0;
	color: #1b2538;
}
.cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
}
/* 質問 */
.cp_qa .cp_actab label {
	font-weight: bold;
	line-height: 1.6em;
	position: relative;
	display: block;
	margin: 0 0 0 0;
	padding: 1em 2em 1em 2.5em;
	cursor: pointer;
	text-indent: 1em;
	border-radius: 0.5em;
	background: rgba(27,37,56,0.1);
}
.cp_qa .cp_actab label::before {
	font-family: serif;
	font-size: 1.5em;
	margin-left: -2em;
	padding-right: 0.5em;
	content: 'Q';
}
.cp_qa .cp_actab label:hover {
	transition: all 0.3s;
	color: #00838f;
}
/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
	font-size: 1.7em;
	font-weight: bold;
	line-height: 2em;
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	display: inline-block;
	width: 2em;
	height: 2em;
	-webkit-transition: transform 0.4s;
	        transition: transform 0.4s;
}
/* 答え */
.cp_qa .cp_actab .cp_actab-content {
	position: relative;
	overflow: hidden;
	max-height: 0;
	padding: 0 0 0 2.5em;
	-webkit-transition: max-height 0.2s;
	        transition: max-height 0.2s;
	border-radius: 0 0 0.5em 0.5em;
}
.cp_qa .cp_actab .cp_actab-content::before {
	font-family: serif;
	font-size: 1.5em;
	position: absolute;
	margin: 0.4em 0 0 -1em;
	padding: 0;
	content: 'A';
}
.cp_qa .cp_actab .cp_actab-content p {
	margin: 1em 1em 1em 0;
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
	max-height: 40em;
	border: 10px solid rgba(27,37,56,0.1);
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked ~ label {
	color: #00838f;
	border-radius: 0.5em 0.5em 0 0;
}
/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

/*\改行対策のインブロック化
---------------------------------------------------------------------------*/
.no-wrap {
    display: inline-block; /* インラインブロック化 */
    text-decoration: underline;
}

/*\hrの下部余白
---------------------------------------------------------------------------*/
hr.yohaku{margin-bottom:2em;}

/*\iphoneの入会流れのアコーディオン
---------------------------------------------------------------------------*/
.accordion {
margin: 1em auto;
max-width: 100%;
}
.toggle {
display: none;
}
.option {
position: relative;
margin-bottom: 1em;
}
.title,
.content {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;
}
.title {
border: solid 1px #ccc;
padding: 1em;
display: block;
color: #333;
font-weight: bold;
}
.title::after,
.title::before {
content: "";
position: absolute;
right: 1.25em;
top: 1.25em;
width: 2px;
height: 0.75em;
background-color: #999;
transition: all 0.3s;
}
.title::after {
transform: rotate(90deg);
}
.content {
max-height: 0;
overflow: hidden;
}
.content p {
    margin: 0; 
    padding: 0;
        margin-top: 1em;
}
.toggle:checked + .title + .content {
max-height: 100%;
transition: all 1.5s;
}
.toggle:checked + .title::before {
transform: rotate(90deg) !important;
}

/*\シンプルなテーブル
---------------------------------------------------------------------------*/
.simple_03{
width: 100%;
            margin-top: 1em;
border-collapse: separate;
border-spacing: 0px;
border-top: 1px solid #ccc;
border-left: 1px solid #ccc;
}
.simple_03 th{
width:25%;
padding:4px;
text-align: left;
vertical-align: top;
color: #444;
background-color: #feedf3;

border-top: 1px solid #fff;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
.simple_03 td{
width:75%;
padding:4px;
    text-align: left;
background-color: #fafafa;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}

/*\シンプルなテーブル（tdフリーサイズ）
---------------------------------------------------------------------------*/
.simple_04{
width: 100%;
            margin-top: 1em;
border-collapse: separate;
border-spacing: 0px;
border-top: 1px solid #ccc;
border-left: 1px solid #ccc;
}
.simple_04 th{
width:25%;
padding:4px;
text-align: left;
vertical-align: top;
color: #444;
background-color: #feedf3;

border-top: 1px solid #fff;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
.simple_04 td{
padding:4px;
    text-align: center;
background-color: #fafafa;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}

/*\クーポンコードのテーブル
---------------------------------------------------------------------------*/

.sample_01{
width: 100%;
border-collapse: collapse;
}
.sample_01 th{
width: 25%;
padding: 6px;
text-align: center;
vertical-align: top;
color: #333;
background-color: #eee;
border: 1px solid #b9b9b9;
}
.sample_01 td{
padding: 6px;
background-color: #fff;
border: 1px solid #b9b9b9;
}

/*\TD個別に背景色指定
---------------------------------------------------------------------------*/
td.kobetu{
background-color: #eee;  
}