@charset "utf-8";


/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*Google Fontsの読み込み。#main h2と左メニューの英語表記（.submenu li span）に使っています。
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Anton');

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #000;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
	margin: 0 auto;
}
h1,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%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #000;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	color: #c00000;
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}

/*container（フッター以外のブロックを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container {
	width: 1000px;	/*幅*/
	margin: 40px auto;
}

/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
}
/*ロゴ画像*/
#logo {
}

/*contents（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding-top: 40px;	/*コンテンツ上に空ける余白*/
}

/*mainimg（トップページのメイン画像）
---------------------------------------------------------------------------*/
#mainimg {
	padding-bottom: 40px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 700px;	/*幅*/
	overflow: hidden;
	padding-bottom: 50px;
}
.c1 #main {
	float: none;
	width: auto;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	padding-left: 15px;
	line-height: 1.2;
	border-bottom: 4px solid #000;	/*下線の幅、線種、色*/
	font-family: 'Anton', sans-serif;	/*フォント種類*/
	font-size: 36px;		/*文字サイズ*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 3px 12px;
	border: 1px dashed #000;	/*枠線の幅、線種、色*/
	border-radius: 4px;			/*角丸のサイズ*/
	background: #fff;			/*背景色*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 15px 20px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -5px;
}

div .paddingleft1em{
    padding-left: 1em;
}

/*メインコンテンツ内のボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list {
	float: left;	/*左に回り込み*/
	width: 46%;		/*幅*/
	overflow: auto;
	margin-left: 2.5%;	/*ボックス同士の左右間の余白*/
	margin-bottom: 20px;	/*ボックス同士の上下間の余白*/
	background: #000;		/*背景色*/
	color: #fff;	/*文字色*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	border-radius: 3px;		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/
	height: 430px;			/*(CMS専用)*/
	height: 230px;			/*高さ（下の「#main .list a」の高さと揃える）*/
	line-height: 1.4;
	position: relative;
}
#main .list a {
	display: block;
	overflow: auto;
	text-decoration: none;
	color: #fff;	/*文字色（ボックスにリンク指定がされた場合に適用される）*/
	height: 430px;	/*(CMS専用)*/
	height: 230px;	/*高さ（上の「#main .list」の高さと揃える）*/
}
#main .list a:hover {
	background: #fff;	/*マウスオン時の背景色*/
	color: #000;		/*マウスオン時の文字色*/
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list a::before {
	content: "→";	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: absolute;
	right: 20px;	/*ボックスの右から20pxの場所に配置*/
	top: 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 .list a:hover::before {
	background: #000;	/*マウスオン時の「→」マークの背景色*/
}
/*ボックス内の画像設定*/
#main .list .img {
	width: 100%;
	height: 140px;
	padding-bottom: 10px;	/*画像下に空ける余白*/
}
/*ボックス内のh4（見出し）タグ設定*/
#main .list h4 {
	padding-left: 15px;
	padding-bottom: 5px;
	font-size: 16px;	/*文字サイズ*/
}
/*ボックス内のp（段落）タグ設定*/
#main .list p {
	font-size: 12px;	/*文字サイズを少し小さく*/
}

/*一覧ページの各物件ボックス内のテーブル（CMS用）
---------------------------------------------------------------------------*/
#main .list table {
	font-size: 10px;	/*文字サイズ*/
	margin: 0px 15px 5px;
}
#main .list table,
#main .list table td,
#main .list table th{
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
#main .list table td,
#main .list table th{
	padding: 1%;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
#main .list table th{
	width: 18%;		/*幅*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}
/*白い説明用ブロック*/
#main .list table td {
	width: 31%;	/*幅*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左に回り込み*/
	width: 260px;	/*幅*/
	padding-bottom: 50px;
}
.c1 #sub {
	display: none;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	margin-bottom: 15px;
}
/*subコンテンツのh2タグの１文字目への設定*/
#sub h2::first-letter {
	border-left: 3px solid #14a7d1;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
#menubar {
	margin-bottom: 50px;
}
/*メニュー全体の設定*/
.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 2px #000;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
.submenu li {
	border-bottom: solid 2px #000;	/*下の線の線種、幅、色*/
	padding: 10px 0px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
.submenu li a {
	text-decoration: none;
	display: block;
	width: auto;
	line-height: 30px;
}
#menubar .submenu .menuimg {
	font-size: 12px;	/*画像入りのメニュー内で使っている日本語の文字サイズ。少し小さめに設定。*/
}
/*マウスオン時*/
.submenu li:hover {
	background: #fff;	/*背景色*/
}
/*spanで囲まれた英語表記のテキスト設定*/
.submenu li span {
	font-family: 'Anton', sans-serif;	/*フォント種類*/
	font-size: 28px;		/*文字サイズ*/
	display: block;
	padding-top: 2px;
}
/*メニュー左側の装飾画像の設定*/
.menuimg a {
	width: 60px;	/*幅*/
	height: 60px;	/*高さ*/
	display: inline-block;
	background-image: url(../images/menu_bg.png);	/*背景画像の読み込み*/
	background-repeat: no-repeat;
	background-size: 60px 360px;	/*背景画像のサイズ。※実寸は120pxと480pxだが、高解像度の端末用に50%のサイズで指定している。*/
	padding-left: 70px;	/*装飾画像とメニューテキストが重ならないようにメニューテキストの左側に余白を空ける*/
}
/*１つ目画像*/
.menu1 a {
	background-position: 0 0;	/*装飾画像の左から0px、上から0pxの部分を読み込む指定*/
}
/*２つ目画像*/
.menu2 a {
	background-position: 0 -60px;	/*装飾画像の左から0px、上から60px（※マイナス記号をつける）の部分を読み込む指定*/
}
/*３つ目画像*/
.menu3 a {
	background-position: 0 -120px;	/*装飾画像の左から0px、上から120px（※マイナス記号をつける）の部分を読み込む指定*/
}
/*４つ目画像*/
.menu4 a {
	background-position: 0 -180px;	/*装飾画像の左から0px、上から180px（※マイナス記号をつける）の部分を読み込む指定*/
}
/*５つ目画像*/
.menu5 a {
	background-position: 0 -240px;	/*装飾画像の左から0px、上から240px（※マイナス記号をつける）の部分を読み込む指定*/
}
/*６つ目画像*/
.menu6 a {
	background-position: 0 -300px;	/*装飾画像の左から0px、上から300px（※マイナス記号をつける）の部分を読み込む指定*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop a {
	clear: both;
	color: #FFF;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	background: #000;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #999;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
}
footer a {
	color: #fff;
	text-decoration: none;
}
footer a:hover {
	color: #fff;
	text-decoration: underline;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 960px;	/*幅*/
	margin: 0 auto;
	overflow: hidden;
	padding: 20px;
}
/*１行分の設定*/
#footermenu ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#footermenu li {
	width: 33%;
}
#footermenu li:nth-child(3n+2) {
	flex-basis: 25%;
}
#footermenu li:nth-child(3n) {
	flex-basis: 42%;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #222;	/*背景色*/
}
#copyright a {
	text-decoration: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding-left: 15px;
	margin-bottom: 15px;
	height: 140px;	/*高さ*/
	overflow: auto;	/*高さの設定を超えるとスクロールが自動で出る設定。全部表示させていたいならこの行と上の行を削除。*/
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin-bottom: 20px;
	/* border-top: 2px solid #000; */
}
.list .ta1 {
	margin-bottom: 0;
}
.ta1 td, .ta1 th {
	/* border-bottom: 2px solid #000; */
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
	border-right: none;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: left;
	font-weight: normal;
	padding-left: 1.1em;
/*	border-right: 1px dashed #000; */	/*右側の線の幅、線種、色*/
	vertical-align: top;
}
.ta1 th.files {
	text-align: right;
}
/*ta1の右側ボックス*/
.ta1 td {
}

/*よく頂く質問・リンク共通設定
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq,
.link {
	padding: 0px 15px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt,
.link dt {
	color: #c00000;	/*文字色*/
	font-weight: bold;	/*太字*/
}
.faq dt a,
.link dt a {
	color: #c00000;
}
/*回答の設定*/
.faq dd,
.link dd {
	padding-bottom: 15px;
}

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

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}

/*フォーム用ボタン
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	border: 1px solid #f08300;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	padding: 5px 40px;		/*上下、左右へのボックス内の余白*/
	background: -moz-linear-gradient(top, #f9c25d, #f08300);
	background: -webkit-linear-gradient(top, #f9c25d, #f08300);
	background: linear-gradient(to bottom, #f9c25d, #f08300);	/*背景色*/
	color: #000;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
}
/*マウスオン時*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background: -moz-linear-gradient(top, #f08300, #f9c25d);
	background: -webkit-linear-gradient(top, #f08300, #f9c25d);
	background: linear-gradient(to bottom, #f08300, #f9c25d);	/*背景色*/
	color: #fff;		/*文字色*/
	transition: all .3s;
	cursor: pointer;
}
.btn__delete, label a {
	border: 1px solid #dcdddd;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	background: #dcdddd;	/*背景色*/
	color: #000;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
}
/*マウスオン時*/
.btn__delete:hover, label a:hover {
	background: #fff;	/*背景色*/
	color: #000;		/*文字色*/
	transition: background .3s;
	cursor: pointer;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #333;color: #fff;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #c00000;}
.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: 24px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.sh {display: none;}



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

/*container（フッター以外のブロックを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 10px 3%;
}

/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	padding: 10px 3%;
}
/*ロゴ画像*/
#logo {
	width: 80%;	/*幅を画面幅の80%にする設定*/
}

/*contents（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding-top: 30px;	/*コンテンツ上に空ける余白*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}
	
/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
.submenu {
	margin-bottom: 0px;
}
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
	position: absolute;
	left: 0px;
	top: 95px;
	width: 95%;
	margin-left: 2.5%;
	background: #fff;	/*背景色*/
	background: rgba(255,255,255,0.9);	/*rgb指定での背景色。最後の小数点は透明度。*/
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 20px;		/*上から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	width: 30px;	/*幅*/
	border: 3px solid #000;	/*枠線の幅、線種、色*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #000;	/*枠線の幅、線種、色*/
	margin-bottom: 7px;	/*バー同士の余白*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px;
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 90%;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub {
	display: none;
}

}

/* 追加css */
.side__banner li {
	border: 2px solid #999;
	text-align: center;
	display: table;
	margin-bottom: 10px;
	padding: 10px;
	width: 100%;
}
.side__banner li a {
	display: table-cell;
	vertical-align: middle;
}
.side__banner li img {
	max-height: 55px;
}
#main p.headings01 {
	font-size: 1.5em;
	font-weight: bold;
}
#main p.headings02 {
	font-size: 1.2em;
	font-weight: bold;
	padding-bottom: 0;
}
.eyecatch {
	font-size: 1.2em;
}
.form__w100 input, .form__w100 textarea {
	width: 99%;
}
textarea {
	height: 15em;
}
.submit_area {
	text-align: center;
}
.estimate__form .submit_area {
	text-align: left;
	margin-left: 175px;
}
#main h2.lower__headings {
	position: relative;
	border-bottom: 2px solid #221815;
	margin: 5px auto 60px;

}
.lower__headings img {
	width: 10%;
}
.lower__headings::before, .lower__headings::after {
	position: absolute;
	font-size: 18px;
}
.lower__headings::before {
	bottom: -30px;
}
.lower__headings::after {
	right: 0;
	top: -5px;
	color: #fff;
	background: #221815;
	width: 100px;
	height: 60px;
	border-radius: 50% 50%;
	padding-top: 40px;
	text-align: center;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif
}
.h__profile::before {
	content: "プロフィール";
}
.h__profile::after {
	content: "Profile";
}
.h__scene1::before {
	content: "車両保険";
}
.h__scene1::after {
	content: "Scene1"
}
.h__scene2::before {
	content: "事故有期間";
}
.h__scene2::after {
	content: "Scene2"
}
.h__scene3::before {
	content: "過失割合";
}
.h__scene3::after {
	content: "Scene3"
}
.h__scene4::before {
	content: "型式別料率クラス";
}
.h__scene4::after {
	content: "Scene4"
}
.h__scene5::before {
	content: "ノンフリート多数割引";
}
.h__scene5::after {
	content: "Scene5"
}
.h__scene6::before {
	content: "ディフェンスサポート";
}
.h__scene6::after {
	content: "Scene6"
}
.profile__list {
	overflow: hidden;
	padding: 0 15px;
}
.profile__list dt {
	float: left;
	width: 11em;
}
.profile__list dd {
	margin-left: 12em;
	margin-right: 15%;
}
#main .profile, #main .scene, #main .scene__special {
	margin-bottom: 30px;
}
#main .profile p {
	padding-bottom: 0;
	margin-right: 15%;
	text-indent: -1em;
	padding-left: 2em;
}
#main .scene__special p {
	padding-bottom: 0;
	margin-right: 15%;
	padding-left: 2em;
}
.profile__diego {
	background: url("../images/diego.png") bottom right no-repeat;
	background-size: 10%;
}
.profile__samantha {
	background: url("../images/samantha.png") bottom right no-repeat;
	background-size: 10%;
}
#main .scene p {
	padding-bottom: 0;
	margin-right: 15%;
	text-indent: -2em;
	padding-left: 3em;
}
.icon__common {
	display: inline-block;
	color: #fff;
	border-radius: 5px;
	height: 1.5em;
	width: 1.5em;
	text-indent: 0;
	text-align: center;
	font-weight: bold;
	line-height: 1.5em;
	margin-right: 5px;
}
.icon__diego {
	background: #54c3f1;
}
.icon__samantha {
	background: #f08437;
}
.icon__q {
	background: #00a0e9;
}
.icon__a {
	background: #ea5514;
}
.pink {
	color: #e4007f;
	display: inline-block;
	text-indent: 0;
}
.faq__list dt, .faq__list dd {
	text-indent: -2em;
	padding-left: 3em;
}
.faq__list dt {
	font-weight: bold;
}
.faq__list dd {
	margin-bottom: 1em;
}
.service__line {
	margin-top: 20px;
	line-height: 1.5;
	text-align: center;
}
.service__line span {
	font-weight: bold;
	font-size: 36px;
}
#main h3.support__desk__headings {
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #221815;
	font-size: 20px;
}
#main h3.sitepolicy__headings {
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #221815;
	font-size: 20px;
}
#main h3.salespolicy__headings {
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #221815;
	font-size: 20px;
}
#main h3.privacypolicy__headings {
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #221815;
	font-size: 20px;
}
.ta__label {
	font-size: 1.2rem;
	font-weight: bold;
	vertical-align: top;
}
#main p.select__file {
    border: 1px solid #999;
    padding: 0 .5em;
}
input[type="file"] {
	display: none;
}
#custom_ta {
	width: 99%;
}


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

/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
#logo {
	padding-top: 15px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*mainコンテンツのh2タグの設定*/
#main h2 {
	font-size: 24px;
}

/*メインコンテンツ内のボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list {
	float: none;
	width: auto;
	margin-left: 0;
	height: auto;
}
#main .list a {
	height: auto;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
	display: block;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 95%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.sh{display:block;}
.pc{display:none;}

/* 追加css */
.side__banner li {
	width: calc(100% - 6%);
	}
#main h2.lower__headings {
	margin-top: 20px;
	}
.lower__headings::after {
	top: -20px;
	}
#main .profile {
	background-size: 20%;
}
.profile__list dt {
	float: none;
	width: 100%;
}
.profile__list dd {
	margin-left: 1em;
}
.form__w100 input {
	width: calc(100% - 15px);
}
.service__line span {
	font-size: 24px;
}
.form__w100 input, #custom_ta {
	width: 96%;
}
.estimate__form .submit_area {
	margin-left: 115px;
}
}
