@charset "utf-8";

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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family: 'M PLUS 1p', sans-serif;
	font-family: 'Noto Sans JP', sans-serif;
    	font-weight: 400;
    	font-style: normal;
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,input,textarea {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}
video,audio {max-width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #39F;		/*リンクテキストの色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #0B6EB4;		/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
/*マウスオン時の画像*/
a:hover img {
	opacity: 0.8;	/*80%色がついた状態*/
}

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	max-width: 1300px;	/*サイトの最大幅*/
	margin: 0 auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #ebedef;	/*背景色*/
	height: 55px;		/*高さ*/
	color: #333;		/*文字色*/
}
/*ロゴ画像*/
header #logo {
	width: 360px;		/*ロゴ画像の幅*/
	float: left;		/*左に回り込み*/
	margin-top: 10px;	/*ロゴの上にあける余白。ヘッダー内の上下の配置バランスをここで調整して下さい。*/
	margin-left: 1%;	/*ロゴの左側にあける余白。*/
}

/*お問合せボタン（ヘッダー右側のボタン）
---------------------------------------------------------------------------*/
header .button a {
	display: inline-block;text-decoration: none;
	float: right;		/*右に回り込み*/
	margin-top: 10px;	/*上に空けるスペース。ヘッダー内の上下の配置バランスをここで調整して下さい。*/
	border: 1px solid #ED7D31;	/*枠線の幅、線種、色*/
	background: #ED7D31;		/*背景色（古いブラウザ用）*/
	color: #fff;			/*文字色*/
	padding: 2px 20px 2px 20px;	/*上、右、下、左へのボタン内の余白*/
	border-radius: 20px;		/*角丸のサイズ*/
	font-size: 14px;		/*文字サイズ*/
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる指定*/
}
/*マウスオン時*/
header .button a:hover {
	background-color: #fe9b00;	/*背景色だけ変更する*/
	border: 1px solid #fe9b00;	/*枠線の幅、線種、色*/
	color: #fff;	/*文字色*/
}

/*ログインボタン（ヘッダー右側のボタン）
---------------------------------------------------------------------------*/
header .button2 a {
	display: inline-block;text-decoration: none;
	float: right;		/*右に回り込み*/
	margin-top: 10px;	/*上に空けるスペース。ヘッダー内の上下の配置バランスをここで調整して下さい。*/
	margin-left: 20px;	/*上に空けるスペース。ヘッダー内の上下の配置バランスをここで調整して下さい。*/
	margin-right: 60px;	/*上に空けるスペース。ヘッダー内の上下の配置バランスをここで調整して下さい。*/
	border: 1px solid #0B6EB4;	/*枠線の幅、線種、色*/
	background: #0B6EB4;		/*背景色（古いブラウザ用）*/
	color: #fff;			/*文字色*/
	padding: 5px 20px 3px 20px;	/*上、右、下、左へのボタン内の余白*/
	border-radius: 20px;		/*角丸のサイズ*/
	font-size: 12px;		/*文字サイズ*/
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる指定*/
}
/*マウスオン時*/
header .button2 a:hover {
	background-color: #C9DDFF;	/*背景色だけ変更する*/
	border: 1px solid #C9DDFF;	/*枠線の幅、線種、色*/
	color: #333;	/*文字色*/
}

/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	height: 34px;		/*メニューの高さ。下の「#menubar ul li a」の「height」と「padding-top」の数字を合計した数字に合わせる。*/
	text-align: center;	/*文字を中央に*/
	font-size: 14px;		/*文字サイズ*/
	background: #0B6EB4;	/*背景色*/
	border-bottom: 0px solid #fff;	/*下線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: right;	/*左に回り込み*/
	width: 33.3%;	/*メニュー幅100÷3=33.3%になる。*/
}
#menubar li a {
	text-decoration: none;display: block;
	line-height: 1.6;	/*行間を少し狭く*/
	color: #fff;		/*文字色*/
	height: 28px;		/*高さ*/
	padding-top: 6px;	/*上に追加する余白*/
	border-right: 0px solid #fff;	/*メニューの右側の線の幅、線種、色（古いブラウザ用）*/
	border-right: 0px solid rgba(255,255,255,0.5);	/*右の線の幅、線種、255,255,255は白の事で0.5は50%色がついた状態の事。*/
}
/*１つ目のメニューへの追加設定*/
#menubar li:first-child a {
	border-left: 0px solid #fff;	/*メニューの線の幅、線種、色（古いブラウザ用）*/
	border-left: 0px solid rgba(255,255,255,0.5);	/*左の線の幅、線種、255,255,255は白の事で0.5は50%色がついた状態の事。*/
}
/*飾り文字*/
#menubar li span {
	display: block;
	font-size: 8px;		/*文字サイズ*/
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.1em;	/*文字間隔を少しあける設定*/
	opacity: 0.5;			/*透明度50％*/
}
/*マウスオン時と、現在表示中(current)のメニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #C9DDFF;	/*背景色*/
	color: #333;		/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu .nav-fix-pos {
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed-menu header {
	margin-bottom: 60px;	/*メニューの高さを指定。menubarのborderが1px分ありますが大差ないので75でOKです。*/
}
/*上の設定の「is-fixed-menu」を「is-fixed」に変更したものをそのまま記入します。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.is-fixed .nav-fix-pos {
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed header {
	margin-bottom: 60px;
}

/*メインテキスト
---------------------------------------------------------------------------*/
.maintext {
  	position: relative;	/*相対配置*/
}

.maintext p {
  	position: absolute;	/*絶対配置*/
  	color: #fff;		/*文字は白に*/
  	top: 20%;
 	left: 10%;
	font-size: 40px;	/*文字サイズ*/
	font-weight: bold;
	line-height: 1.5em;	/*行間*/
	opacity: 1;
	animation: SlideIn 2s;
}
@keyframes SlideIn {
  0% {
    opacity: 0;
    transform: translateY(64px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.maintext img {
  	width: 100%;
}

/*contents
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;
	padding-top: 30px;		/*上に空けるボックス内の余白*/
	padding-bottom: 30px;	/*下に空けるボックス内の余白*/
}

/*contents-in（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents-in {
	float: left;		/*左に回り込み*/
	width: 100%;		/*ブロックの幅*/
}
/*２カラム時*/
.c2 #contents-in {
	float: none;
	width: auto;
}

/*メイン：グレー
---------------------------------------------------------------------------*/
#main_gray {
	clear: both;
	background: #ebedef;	/*背景色*/
	color: #333;		/*文字色*/
}
#main_gray a, footer a:hover {
	color: #fff;	/*リンクテキスト、マウスオン時の文字色*/
}
#main_gray .pr {display: block;font-size: 80%;}

/*contents2（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents2 {
	clear: both;overflow: hidden;
	padding-top: 30px;		/*上に空けるボックス内の余白*/
	padding-bottom: 30px;	/*下に空けるボックス内の余白*/
}

/*main2コンテンツ（中央のブロック）
---------------------------------------------------------------------------*/
#main2 {
	width: 80%;		/*ブロックの幅*/
	margin: auto;
}
/*mainコンテンツのh1タグ設定*/
#main2 h1 {
	clear: both;
	margin-bottom: 20px;
	padding: 20px 20px 2px 20px;	/*上右下左への余白*/
	font-size: 24px;	/*文字サイズ*/
}
/*main2コンテンツのh2タグ設定*/
#main2 h2 {
	clear: both;
	margin-bottom: 20px;
	padding: 10px 20px;	/*上下、左右への余白*/
	font-size: 36px;	/*文字サイズ*/
	color: #333;		/*文字色*/
	text-align: center;		/*文字をセンタリング*/
}
/*mainコンテンツのh3タグ設定*/
#main2 h3 {
  	width: 300Px;
	position: relative;
	padding: 10px 20px 10px 20px;	/*上右下左への余白*/
	font-size: 30px;	/*文字サイズ*/
  	font-weight:bold;
  	color: #fff;
  	border-radius: 10px;
  	background: #ED7D31;
	text-align: center;		/*文字をセンタリング*/
}
#main2 h3:after {
  	position: absolute;
  	bottom: -9px;
  	left: 8em;
  	width: 0;
  	height: 0;
  	content: '';
  	border-width: 10px 10px 0 10px;
  	border-style: solid;
  	border-color: #ED7D31 transparent transparent transparent;
}

/*main2コンテンツのh4タグ設定*/
#main2 h4 {
	clear: both;
	margin-bottom: 20px;
	padding: 10px 20px;	/*上下、左右への余白*/
	font-size: 32px;	/*文字サイズ*/
	color: #333;		/*文字色*/
	text-align: center;		/*文字をセンタリング*/
}

#main2 h4:first-letter {
 	font-size: 2em;
  	color: #0B6EB4;
}

/*mainコンテンツの段落タグ設定*/
#main2 p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main2 p + p {
	margin-top: -5px;
}
#main2 h2 + p,
#main2 h3 + p {
	margin-top: -10px;
}
#main2 section + section {
	margin-top: 30px;
}

#main2 ol {
  	counter-reset:number; /*数字をリセット*/
  	list-style-type: none!important; /*数字を一旦消す*/
  	padding:1.5em;
}
#main2 ol li {
  	position: relative;
  	padding-left: 30px;
  	line-height: 1.5em;
  	font-weight:bold;
 	font-size: 1.3em;
  	color: #333;
  	padding: 0.5em 0.5em 0.5em 30px;
}

#main2 ol li:before{
  	/* 以下数字をつける */
  	position: absolute;
  	counter-increment: number;
  	content: counter(number);
  	/*以下数字のデザイン変える*/
  	display:inline-block;
  	background: #0B6EB4;
  	color: #fff;
  	font-family: 'Avenir','Arial Black','Arial',sans-serif;
  	font-weight:bold;
  	font-size: 15px;
  	border-radius: 50%;
  	left: 0;
  	width: 25px;
  	height: 25px;
  	line-height: 25px;
  	text-align: center;
  	/*以下 上下中央寄せのため*/
  	top: 50%;
  	-webkit-transform: translateY(-50%);
  	transform: translateY(-50%);
}

/*メイン：ホワイト
---------------------------------------------------------------------------*/
#main_white {
	clear: both;
	background: #FFFFFF;	/*背景色*/
	color: #333;		/*文字色*/
}
#main_white a, footer a:hover {
	color: #333;	/*リンクテキスト、マウスオン時の文字色*/
}
#main_white .pr {display: block;font-size: 80%;}

/*contents3（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents3 {
	clear: both;overflow: hidden;
	padding-top: 30px;		/*上に空けるボックス内の余白*/
	padding-bottom: 30px;	/*下に空けるボックス内の余白*/
}

/*main3コンテンツ（中央のブロック）
---------------------------------------------------------------------------*/
#main3 {
	width: 80%;		/*ブロックの幅*/
	margin: auto;
}
/*main3コンテンツのh1タグ設定*/
#main3 h1 {
	clear: both;
	width: 60%;		/*ブロックの幅*/
	margin-bottom: 20px;
	padding: 20px 20px 50px 20px;	/*上右下、左への余白*/
	font-size: 36px;	/*文字サイズ*/
	color: #333;		/*文字色*/
	text-align: center;		/*文字をセンタリング*/
	margin: 0 auto;
}
/*main3コンテンツのh2タグ設定*/
#main3 h2 {
	clear: both;
	margin-bottom: 20px;
	position: relative;
	padding: 10px 20px;	/*上下、左右への余白*/
	font-size: 36px;	/*文字サイズ*/
	color: #333;		/*文字色*/
	text-align: center;		/*文字をセンタリング*/
}
#main3 h2:before {
  	position: absolute;
  	bottom: 0px;
  	left: calc(50% - 50px);
  	width: 100px;
  	height: 5px;
  	content: '';
  	border-radius: 3px;
  	background: #0B6EB4;
}
/*mainコンテンツのh3タグ設定*/
#main3 h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 30px 20px 2px 20px;	/*上下、左右への余白*/
	font-size: 28px;	/*文字サイズ*/
}
/*main3コンテンツのh4タグ設定*/
#main3 h4 {
	clear: both;
	margin-bottom: 20px;
	padding: 10px 20px;	/*上下、左右への余白*/
	font-size: 32px;	/*文字サイズ*/
	color: #333;		/*文字色*/
	text-align: center;		/*文字をセンタリング*/
}

#main3 h4:first-letter {
 	font-size: 2em;
  	color: #ED7D31;
}

/*mainコンテンツの段落タグ設定*/
#main3 p {
	padding: 15px 15px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main3 p + p {
	margin-top: -5px;
}
#main3 h2 + p,
#main3 h3 + p {
	margin-top: -10px;
}
#main3 section + section {
	margin-top: 30px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #ebedef;	/*背景色*/
	font-size: 85%;			/*文字サイズ*/
	color: #fff;			/*文字色*/
}
footer a, footer a:hover {
	color: #ebedef;	/*リンクテキスト、マウスオン時の文字色*/
}
footer .pr {display: block;font-size: 80%;}

/*フッターメニュー
---------------------------------------------------------------------------*/
#footermenu {
	clear: both;
	text-align: center;
/*	text-decoration: underline;	/*マウスオン時に下線の設定*/
	background: #333;		/*背景色*/
	padding: 20px 10px 10px 10px;	/*上右下左への余白*/
}
#footermenu li {
	display: inline;
	margin: 10px;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
	padding: 0px 10px 20px 10px;	/*上右下左への余白*/
}
#copyright a {text-decoration: none;}


/*画像とテキストを並べる：画像が左
---------------------------------------------------------------------------*/
.container {
	width: 80%;		/*ブロックの幅*/
    	padding: 10px;
    	overflow: hidden;
	margin : 0 auto;		/* センター表示   */
}
.container_image {
    	float: left;
    	margin-right: 10px;
    	width:40%;		/* 横幅のサイズを指定    */
}
.container_summary {
    	overflow: hidden;
}
.container_heading {
    	font-size: 20px;
    	font-weight: bold;
    	margin-bottom: 0px;
}
.container_text {
    	font-size: 16px;
	margin-top: 20px;
    	margin-bottom: 10px;
}


/*画像とテキストを並べる：画像が右
---------------------------------------------------------------------------*/
.container2 {
	width: 80%;		/*ブロックの幅*/
    	padding: 10px;
    	overflow: hidden;
	margin : 0 auto;	/* センター表示   */
}
.container2_image {
    	overflow: hidden;
}
.container2_summary {
    	float: left;
    	width:60%;		/* 横幅のサイズを指定    */
	margin-top: 20px;
}
.container2_heading {
    	font-size: 16px;
    	font-weight: bold;
    	margin-bottom: 10px;
}
.container2_text {
    	font-size: 16px;
	margin-top: 20px;
    	margin-right: 10px;
    	margin-bottom: 10px;
}


/*ボックスに影と付ける：画像とテキスト
---------------------------------------------------------------------------*/
.container3 {
	width: 80%;		/*ブロックの幅*/
    	padding:  0.5em 1em;
    	margin: 2em 0;
    	background: #ebedef;
    	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
    	border-radius: 20px;
    	overflow: hidden;
	margin : 0 auto;	/* センター表示   */
    	margin-bottom: 40px;
    	position:  relative;    /* 位置調整 */
    	top: 10px;              /* 位置調整 */
}
.container3_image {
    	float: left;
	margin-top: 50px;
    	margin-right: 10px;
    	width:20%;		/* 横幅のサイズを指定    */
}
.container3_summary {
    	overflow: hidden;
}
.container3_heading {
    	font-size: 20px;
    	font-weight: bold;
    	color: #333;
}
.container3_text {
    	font-size: 16px;
    	color: #333;
}


/*ボックスに影を付ける：テキスト
---------------------------------------------------------------------------*/
.price_box {
	width: 70%;		/*ブロックの幅*/
    	padding: 15px 15px 15px 15px;	/*上右下左へのブロック内の余白*/
    	background: #fff;
    	border: solid 2px #0B6EB4;
    	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
	margin : 0 auto;	/* センター表示   */
    	margin-bottom: 40px;
    	position:  relative;    /* 位置調整 */
    	top: 10px;              /* 位置調整 */
}
.price_box .box-title {
    	font-size: 1.2em;
    	background: #0B6EB4;
    	padding: 4px;
    	text-align: center;
    	color: #FFF;
    	font-weight: bold;
    	letter-spacing: 0.05em;
}
.price_box p {
    	padding: 20px 20px 20px 20px;	/*上右下左へのブロック内の余白*/
    	margin: 0;
    	font-size: 20px;
    	color: #333;
	text-align: center;		/*文字をセンタリング*/
    	font-weight: bold;
}


/*ボックス内のセンタリング
---------------------------------------------------------------------------*/
.centering {
	width: 50%;		/*ブロックの幅*/
	padding: 0px 10px 10px 0px;	/*上右下左へのブロック内の余白*/
    	overflow: hidden;
	margin : 0 auto;		/* センター表示   */
}

.centering_text p {
	width: 90%;		/*ブロックの幅*/
	padding: 0px 10px 30px 10px;	/*上右下左へのブロック内の余白*/
    	margin-left: 30px;
	font-size: 14px;
    	font-weight: normal;
    	color: #333;
	text-align: left;		/*文字をセンタリング*/
}

/*リストの装飾
---------------------------------------------------------------------------*/
.list_test-wrap {
    	list-style:  none;  /* デフォルトのアイコンを消す */
    	margin:  0;         /* デフォルト指定上書き */
	padding: 0px 20px 0px 45px;	/*上右下左へのブロック内の余白*/
    	color: #333;
}


.list_test:before {
    	content:  "";     /* 空の要素作成 */
    	width:  10px;               /* 幅指定 */
    	height:  10px;              /* 高さ指定 */
    	display:  inline-block;     /* インラインブロックにする */
    	background-color: #ED7D31;  /* 背景色指定 */
   	border-radius:  50%;        /* 要素を丸くする */
    	position:  relative;        /* 位置調整 */
    	top: -1px;                  /* 位置調整 */
    	margin-right: 5px;          /* 余白指定 */
}

/*画像表示
---------------------------------------------------------------------------*/
.disp-img1{
    	width:300pX;		/* 横幅のサイズを指定    */
    	height:auto;		/* 縦幅のサイズを指定    */
	margin : 0 auto		/* センター表示   */
}

/*リボン
---------------------------------------------------------------------------*/
.ribbon-wrapper {
  	display: block;
  	position: relative;
  	margin: 15px auto;
  	padding: 10px 0;
  	width: 100%;
  	background: #ebedef;
  	box-sizing: border-box;
}

.ribbon-text {
  	display: inline-block;
  	position: absolute;
  	top: 0;
  	right: 10px;
  	margin: 0;
  	padding: 10px 0;
  	z-index: 2;
  	width: 40px;
  	text-align: center;
  	font-size: 18px;
  	color: white;
  	background: #ED7D31;
}

.ribbon-text:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	top: 100%;
  	height: 0;
  	width: 0;
  	border-left: 20px solid #ED7D31;
  	border-right: 20px solid #ED7D31;
  	border-bottom: 20px solid transparent;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	color: #333;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta1設定*/
.ta1 {
	table-layout: fixed;
	width: 95%;
	margin: 0 auto 20px;
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 30%;		/*幅*/
	text-align: center;	/*センタリング*/
    background-color: #f5f5f5;  /* 背景色 */
}
/*labelタグ*/
.ta1 label {
	display: inline-block;
}

.ta1 td label {
	float: left;
	display: inline-block;
	margin-right: 10px;
}
.ta1 td .specialbox img {
	vertical-align: middle;
}
.ta1 td .specialtext {
	float: left;
	width: 45%;
}

/*アニメーションのキーフレーム設定（変更不要）
---------------------------------------------------------------------------*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}

/*PAGE TOP（∧）設定
---------------------------------------------------------------------------*/
/*デフォルトでは非表示に*/
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;position: fixed;
	width: 20px;		/*幅*/
	line-height: 20px;	/*高さ*/
	padding: 2px 3px 3px 2px;	/*上、右、下、左へのボタン内の余白*/
	bottom: 30px;		/*下から30pxの場所に配置*/
	right: 3%;			/*右から30pxの場所に配置*/
	background: #0B6EB4;	/*背景色（古いブラウザ用）*/
	color: #fff;		/*文字色*/
	border: 0px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 5px;		/*角丸のサイズ*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #C9DDFF;	/*背景色*/
	color: #333;		/*文字色*/
}

/*お問い合わせ・申し込み
---------------------------------------------------------------------------*/
.inquiry_icon {
	display: inline-block;
	text-decoration: none;
	margin-top: 15px;		/*上に空けるスペース。ヘッダー内の上下の配置バランスをここで調整して下さい。*/
	border: 1px solid #ED7D31;	/*枠線の幅、線種、色*/
	background: #ED7D31;		/*背景色（古いブラウザ用）*/
	padding: 10px 50px 10px 50px;	/*上、右、下、左へのボタン内の余白*/
	border-radius: 30px;		/*角丸のサイズ*/
	font-size: 24px;		/*文字サイズ*/
	font-weight: bold;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる指定*/
	color: #fff;		/*文字色*/
}
/*マウスオン時*/
.inquiry_icon:hover {
	background-color: #fe9b00;	/*背景色だけ変更する*/
	border: 1px solid #fe9b00;	/*枠線の幅、線種、色*/
}

/*.button-area設定*/
.inquiry-area {
	margin-bottom: 10px;
	text-align: center;		/*文字をセンタリング*/
}

/*戻る
---------------------------------------------------------------------------*/
.inquiry_icon2 {
	display: inline-block;
	float: left;		/*左に回り込み*/
	text-decoration: none;
	margin-top: 30px;		/*上に空けるスペース。ヘッダー内の上下の配置バランスをここで調整して下さい。*/
	border: 1px solid #0B6EB4;	/*枠線の幅、線種、色*/
	background: #0B6EB4;		/*背景色（古いブラウザ用）*/
	padding: 5px 20px 5px 20px;	/*上、右、下、左へのボタン内の余白*/
	border-radius: 20px;		/*角丸のサイズ*/
	font-size: 16px;		/*文字サイズ*/
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる指定*/
	color: #fff;		/*文字色*/
}
/*マウスオン時*/
.inquiry_icon2:hover {
	background-color: #C9DDFF;	/*背景色だけ変更する*/
	border: 1px solid #C9DDFF;	/*枠線の幅、線種、色*/
	color: #333;		/*文字色*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 45px;
}
ol {
	padding: 0 20px 20px 47px;
}

/* input お問い合わせフォーム
---------------------------------------------------------------------------*/
#company_name, #name, #name_kana, #customer_number, #email, #subject, #email_check, #tel {
  max-width:640px;
}
.tpaa_status {
  margin-left: 10px;
}
.lavel-tpaa-status {

}
#body {
  max-width: 640px;
}
/* エラー表示 */
p.error, span.error {
  color: red;
}
/* 確認ページの表 */
.confirm_table {
  margin: 30px 0;
}
.confirm_table table caption{
  caption-side: top;
}
.confirm {
  float: left;
  margin-right: 20px;
}
.form-group {
  margin-bottom: 1rem;
    padding: 0px 20px 0px 20px;	/*上、右、下、左へのボタン内の余白*/
}
.form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
 }
.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

/*その他
---------------------------------------------------------------------------*/
.thumbnail {width: 80px;margin-bottom: 5px;}
.look {background: #eee;border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb30 {margin-bottom: 30px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #0B6EB4 !important;}
.color2, .color2 a {color: #999 !important;}
.color3, .color3 a {color: #fff !important;}
.red, .red a {color: #ff0000 !important;}
.pr {font-size: 10px;}
.wl {width: 96%; height:100px;}
.ws {width: 96%; height:30px;}
.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;}
.ofx {overflow-x: hidden;}
.panorama-img {width: 600px !important;height: 400px !important;}


/* フェードイン用のCSS
---------------------------------------------------------------------------*/
.slide-bottom {
   opacity: 0;
   transform: translateY(20px);
   transition: all 1s 0s ease;
}


/*画面幅1301px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1301px){

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	width: 1301px;	/*サイトの幅。この指定がないと上部メニューが一瞬段落ちする場合があります。*/
}

/*メインメニューとドロップダウンメニューの設定変更。
メニュー数が6個なので、1301÷6=216pxになります。
---------------------------------------------------------------------------*/
#menubar li, #menubar ul.ddmenu {
	width: 216px;
}

}



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

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	margin: 0 1%;	/*上下、左右へのコンテンツの外側へ空けるスペース*/
}

}



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

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

/*ログイン（ヘッダー右側のログイン）
---------------------------------------------------------------------------*/
header {
	background: #fff;	/*背景色*/
	height: 50px;		/*高さ*/
	color: #333;		/*文字色*/
}
header .button a {
	display: none;			/*お問合せボタンの非表示*/
}
header .button2 a {
	display: none;			/*ログインボタンの非表示*/
}

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

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(0%)から色を100%出すアニメーション指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;
	overflow: hidden;
	z-index: 10;
	position: fixed;
	top: 50px;	/*上から50pxの場所に配置*/
	right: 0%;	/*右から3%の場所に配置*/
	width: 100%;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 20px 20px 20px 40px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #0B6EB4;	/*背景色*/
	font-size: 14px;	/*文字サイズ*/
	color: #fff;		/*文字色*/
	line-height: 1.4;	/*行間を少し狭く*/
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 8px;	/*文字サイズ*/
	color: #ccc;		/*文字色*/
}
/*マウスオン時と、現在表示中(current)のメニューの設定*/
#menubar-s li a:hover, #menubar li.current a {
	background: #C9DDFF;	/*背景色*/
	color: #333;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;position: absolute;
	position: fixed;
	top: 10px;	/*上から10pxの場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 30px;		/*幅*/
	height: 30px;		/*高さ*/
/*	border-radius: 50%;	/*円形にする。この行削除すれば正方形になります。*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #0B6EB4 url(../images/icon_menu.png) no-repeat center top/30px;	/*背景色、アイコンの読み込み、上半分(top)を表示、幅30px*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #0B6EB4 url(../images/icon_menu.png) no-repeat center bottom/30px;	/*背景色、アイコンの読み込み、上半分(bottom)を表示、幅30px*/
}

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding: 0px 2% 20px;	/*上下、左右へのボックス内の余白*/
}

/*メインテキスト
---------------------------------------------------------------------------*/
.maintext p {
  	top: 10%;
 	left: 5%;
	font-size: 16px;	/*文字サイズ*/
	font-weight: normal;
	line-height: 1.4em;	/*行間*/
}

/*main2コンテンツのh2タグ設定
---------------------------------------------------------------------------*/
#main2 {
	width: 90%;		/*ブロックの幅*/
}

#main2 h1 {
	margin-bottom: 15px;
	padding: 10px 20px 2px 20px;	/*上右下左への余白*/
	font-size: 16px;	/*文字サイズ*/
}

#main2 h2 {
	clear: both;
	margin-bottom: 15px;
	padding: 10px 20px;	/*上下、左右への余白*/
	font-size: 20px;	/*文字サイズ*/
}
/*mainコンテンツのh3タグ設定*/
#main2 h3 {
	width: 200px;		/*ブロックの幅*/
	margin-bottom: 15px;
	padding: 10px 5px 10px 5px;	/*上右下左への余白*/
	font-size: 18px;	/*文字サイズ*/
}
/*mainコンテンツのh4タグ設定*/
#main2 h4 {
	clear: both;
	margin-bottom: 15px;
	padding: 10px 10px;	/*上下、左右への余白*/
	width: 95%;		/*ブロックの幅*/
	font-size: 20px;	/*文字サイズ*/
}

/*main3コンテンツのh2タグ設定
---------------------------------------------------------------------------*/
#main3 {
	width: 90%;		/*ブロックの幅*/
}
#main3 h1 {
	width: 80%;		/*ブロックの幅*/
	padding: 0px 20px 20px 20px;	/*上右下、左への余白*/
}

#main3 h2 {
	clear: both;
	margin-bottom: 15px;
	padding: 10px 10px;	/*上下、左右への余白*/
	font-size: 20px;	/*文字サイズ*/
}
/*mainコンテンツのh3タグ設定*/
#main3 h3 {
	margin-bottom: 15px;
	padding: 10px 20px 0px 20px;	/*上右下左への余白*/
	font-size: 18px;	/*文字サイズ*/
}

#main3 h4 {
	clear: both;
	margin-bottom: 15px;
	padding: 10px 10px;	/*上下、左右への余白*/
	width: 95%;		/*ブロックの幅*/
	font-size: 20px;	/*文字サイズ*/
}

#main3 p {
	padding: 10px 20px 20px;	/*上、左右、下への余白*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
/*ta1の左側ボックス*/
.ta1 th {
	width: 20%;		/*幅*/
	text-align: center;	/*センタリング*/
}

/*画像とテキストを並べる 画像が左
---------------------------------------------------------------------------*/
.container {
	width: 90%;		/*ブロックの幅*/
    	padding: 5px;
}
.container_image {
    	float: none;
	margin : 0 auto;		/* センター表示   */
    	width:60%;		/* 横幅のサイズを指定    */
}
.container_heading {
    	font-size: 16px;
    	font-weight: bold;
    	margin-bottom: 10px;
}
.container_text {
    	font-size: 14px;
	margin-top: 0px;
    	margin-bottom: 10px;
}

/*画像とテキストを並べる　画像が右
---------------------------------------------------------------------------*/
.container2 {
	width: 90%;		/*ブロックの幅*/
    	padding: 5px;
}
.container2_summary {
    	float: none;
    	width:100%;		/* 横幅のサイズを指定    */
	margin-top: 0px;
}
.container2_image {
	margin : 0 auto;		/* センター表示   */
    	width:60%;		/* 横幅のサイズを指定    */
}
.container2_heading {
    	font-size: 16px;
    	font-weight: bold;
    	margin-bottom: 10px;
}
.container2_text {
    	font-size: 14px;
    	margin-bottom: 10px;
    	margin-right: 0px;
}


/*画像とテキストを並べる：画像が左
---------------------------------------------------------------------------*/
.container3 {
	width: 90%;		/*ブロックの幅*/
    	margin-bottom: 30px;
}
.container3_image {
    	float: none;
	margin : 0 auto;		/* センター表示   */
    	width:40%;		/* 横幅のサイズを指定    */
}
.container3_heading {
    	font-size: 18px;
	text-align: center;		/*文字をセンタリング*/
}
.container3_text {
    	font-size: 12px;
}

/*ボックスに影を付ける：テキスト
---------------------------------------------------------------------------*/
.price_box {
	width: 90%;		/*ブロックの幅*/
}
.price_box p {
    	padding: 20px 10px 10px 10px;	/*上右下左へのブロック内の余白*/
    	font-size: 14px;
}

/*ボックス内のセンタリング
---------------------------------------------------------------------------*/
.centering {
	width: 100%;		/*ブロックの幅*/
}
.centering_text p {
	width: 95%;		/*ブロックの幅*/
	padding: 0px 10px 30px 10px;	/*上右下左へのブロック内の余白*/
    	margin-left: 0px;
    	font-size: 12px;
}

/*リストの装飾
---------------------------------------------------------------------------*/
.list_test-wrap {
	padding: 0px 20px 0px 20px;	/*上右下左へのブロック内の余白*/
}


/*画像表示
---------------------------------------------------------------------------*/
.disp-img1{
    	width:240pX;		/* 横幅のサイズを指定    */
}


/*リボン
---------------------------------------------------------------------------*/
.ribbon-wrapper {
  	width: 90%;
}

/*お問い合わせ
---------------------------------------------------------------------------*/
.inquiry_icon {
	margin-top: 10px;		/*上に空けるスペース。ヘッダー内の上下の配置バランスをここで調整して下さい。*/
	padding: 5px 20px 5px 20px;	/*上、右、下、左へのボタン内の余白*/
	font-size: 16px;		/*文字サイズ*/
}

/*戻る
---------------------------------------------------------------------------*/
.inquiry_icon2 {
	margin-top: 10px;		/*上に空けるスペース。ヘッダー内の上下の配置バランスをここで調整して下さい。*/
	padding: 5px 15px 5px 15px;	/*上、右、下、左へのボタン内の余白*/
	font-size: 12px;		/*文字サイズ*/
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #side {display: none;}
.sh {display:block;}
.pc {display:none;}
}
/*ヘルプ・FAQ
---------------------------------------------------------------------------*/
.faq_question {
    background-color: #9ec1e7;
    color: #012727;
    padding: 3px 5px;
}
.faq_answer {
    background-color: #959daa;
    color: #fff;
    padding: 3px 5px;
    margin-bottom: 20px;
}
.faq_explanation {
    margin-left: 10px;
    margin-bottom: 60px;
}
#main3 .faq_image p, #main3 .helpmenu_image p{
    padding-top: 5px;
    padding-bottom: 10px;
}
#main3 .faq .faq_explanation a:link, #main3 .faq .faq_explanation a:visited {
    color: #008BBB;
}
#main3 .faq .faq_explanation a:hover {
    color: #0d86ff;
}

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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: center;
}
/*ロゴ画像*/
header #logo {
	padding: 0px 0px 0px 5px;	/*上、右、下、左へのボタン内の余白*/
	width: 70%;
}

/*ログイン（ヘッダー右側のログイン）
---------------------------------------------------------------------------*/
header .button a {
	float: none;
	margin: 0;
}

/*その他
---------------------------------------------------------------------------*/
.panorama-img {width: 450px !important;height: 300px !important;}

}



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

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

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	line-height: 1.5;	/*行間*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main h2, #main h3 {
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 10px;
}
/*段落タグ設定*/
#main p {
	padding: 0px 10px 10px;
}

/*submenu（sub,sideのメニュー）
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub .submenu li a,
#side .submenu li a {
	padding: 10px;	/*ボックス内の余白*/
}

/*フッターメニュー
ウィンドウ幅が狭くなって見づらくなるので、１列にレイアウト変更。
---------------------------------------------------------------------------*/
#footermenu ul {
	float: none;
	width: auto;
}

/*こだわりアイコン
---------------------------------------------------------------------------*/
/*アイコン共通*/
.icon {
	font-size: 9px;		/*文字サイズ*/
}

/*一覧ページのボックス内の右上のマーク
（CMSの場合は管理ページだと「オプション1」～のプルダウン、setup.phpだと「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1?option2、と、newアイコン共通*/
.option1,.option2,.new {
	font-size: 9px;		/*文字サイズ*/
	padding: 0 10px;	/*上下、左右へのアイコン内の余白*/
	line-height: 14px;	/*高さ*/
	right: 15px;		/*右から15pxの場所に配置*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 10px;	/*ブロックの下(外側)に空ける余白*/
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*質問と答えのボックス全体を囲むブロック*/
.faq {
	padding: 0 10px 10px;	/*上、左右、下へのボックス内余白*/
}

/*btn（赤い色の大きなボタン）
---------------------------------------------------------------------------*/
a.btn {
	font-size: 16px;		/*文字サイズ*/
	letter-spacing: normal;	/*文字間隔を標準に戻す*/
}

/*テーブル(ta1)
---------------------------------------------------------------------------*/
/*余白の上書き*/
.ta1 caption,.ta1 th,.ta1 td {
	padding: 5px;
}
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 30px;
}
ol {
	padding: 0 20px 20px 30px;
}

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

}

/* プライバシーポリシー
---------------------------------------------------------------------------*/
blockquote.pp {margin-right: 0;}
p.pp {margin-right: 0;}
