@charset "utf-8";

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

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

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

/*ヘッダー
---------------------------------------------------------------------------*/
header {
	background: #6aabe8;	/*背景色*/
	position: relative;z-index: 40;
}
/*トップページのヘッダー*/
#top header {
	position: relative;z-index: 10;
	min-height: 100%;
	margin-bottom: -72px;	/*メニューの高さ（「#menubar ul li aのline-height: 70px;」と「#menubarのborderの上下2px分」）を合計した数字を設定する*/
	background: #fff;	/*背景色*/
}
/*h1画像（トップページ以外で使用するロゴ画像）*/
header h1 img {
	width: 300px;	/*画像幅*/
	padding: 10px 5%;	/*上下、左右への余白*/
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	text-indent: -9999px;
	position: fixed;	/*スクロールしても固定表示させる指定*/
	top: 0px;
	width: 100%;
	height: 100%;
	background: url(../images/mainimg_s.jpg) no-repeat center center;	/*背景画像（古いブラウザ用）*/
	background: url(../images/mainimg.jpg) no-repeat center center / cover;	/*背景画像*/
}

/*トップページのSVGロゴアニメーション設定
---------------------------------------------------------------------------*/
#svg-logo {
	fill: transparent;	/*初期の色。透明。*/
	stroke: #fff;		/*フチ取りの色*/
	stroke-width: 1;	/*フチ取りの幅*/
	width: 40%;			/*画像の幅*/
	height: 40%;		/*画像の高さ*/
	position: fixed;	/*スクロールしても固定表示させる指定*/
	left: 30%;			/*左から30%の場所に配置*/
	bottom: 40%;		/*下から40%の場所に配置*/
}

/*h1　（トップページのメイン画像上に出てくるサイト名）
---------------------------------------------------------------------------*/
#top header h1 {
	color: #fff;	/*文字色*/
	text-align: center;	/*テキストを中央に*/
	position: fixed;	/*スクロールしても固定表示させる指定*/
	left: 0%;			/*左から0%の場所に配置*/
	bottom: 32%;		/*下から35%の場所に配置*/
	width: 100%;		/*幅*/
	animation-name: move-h1;	/*アニメーションのキーフレーム（下）で指定しているkeyframesの名前（move-h1）*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-delay: 1.5s;		/*1.5秒遅れて開始させる*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
}
/*アニメーションのキーフレーム*/
@keyframes move-h1 {
0% {
	opacity: 0;	/*透明度0%*/
}
100% {
	opacity: 1;	/*透明度100%*/
}
}

/*トップページの帯
---------------------------------------------------------------------------*/
/*ボックス*/
#topics {
	background: #E84A00;	/*背景色*/
	color: #fff;		/*文字色*/
	position: fixed;	/*スクロールしても固定表示させる指定*/
	width: 100%;		/*幅*/
	text-align: center;	/*文字を中央に*/
	padding: 10px 0px;	/*上下、左右へのボックス内の余白*/
	animation-name: move-topics;	/*アニメーションのキーフレーム（下）で指定しているkeyframesの名前（move-topics）*/
	animation-duration: 0.3s;		/*アニメーションの実行時間。0.3秒。*/
	animation-delay: 2s;		/*2秒遅れて開始させる*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	bottom: 15%;	/*古いブラウザ用にフィニッシュの場所を指定しておく*/
}
/*ボックス内のh2見出し*/
#topics h2 {
	font-size: 26px;	/*文字サイズ*/
	color: #ffff00;		/*文字色*/
}
/*アニメーションのキーフレーム*/
@keyframes move-topics {
0% {
	opacity: 0;		/*透明度0%*/
	bottom: 0%;		/*下から0%の場所からスタート*/
}
100% {
	opacity: 1;		/*透明度100%*/
	bottom: 15%;	/*下から15%の場所でフィニッシュ*/
}
}

/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	position: relative;z-index: 30;
	border-top: 1px solid #9c9c9c;		/*上の線の幅、線種、色*/
	border-bottom: 1px solid #9c9c9c;	/*下の線の幅、線種、色*/
	text-align: center;	/*文字を中央に*/
}
#menubar ul {
	background: #fff;	/*背景色*/
	overflow: hidden;
}
/*メニュー１個あたりの設定*/
#menubar ul li {
	float: left;	/*左に回り込み*/
	width: 20%;		/*幅。下の「#menubar ul.ddmenu」と合わせる。今回は５個メニューがあるので100÷5=20*/
}
#menubar ul li a {
	text-decoration: none;display: block;
	border-left: 1px solid #9c9c9c;	/*左側の線の幅、線種、色*/
	line-height: 50px;	/*高さ（行間）*/
	margin: 10px 0;		/*上下、左右、aタグの外側にに空けるスペース。*/
}
#menubar ul li:first-child a {
	border-left: none;	/*１個目のメニューの左の線を消す指定*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;margin-top: 1px;
	border-top: 2px solid #fff;	/*上の線の幅、選手、色。marginでもいいのですが見づらいのであえて線にしています。*/
	width: 20%;	/*幅。上の「#menubar li」と合わせる。*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;width: 100%;overflow: hidden;
	border-bottom: 2px solid #fff;	/*下の線の幅、選手、色。marginでもいいのですが見づらいのであえて線にしています。*/
}
#menubar ul.ddmenu li a {
	border: none;margin: 0;width: 100%;line-height: normal;
	padding: 10px 0;	/*上下、左右への余白*/
	background: #6aabe8;	/*背景色*/
	color: #fff;	/*文字色*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: #75bcff;
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;
	width: 100%;
	top: 0px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	border-bottom: 1px solid #9c9c9c;	/*下の線の幅、線種、色*/
}
body.is-fixed #menubar.nav-fix-pos ul {
	background: rgba(255,255,255,0.95);
}
body.is-fixed .inner#first {
	margin-top: 72px;	/*メニューの高さ（「#menubar ul li aのline-height: 50px;」と「marginの計20px分」と、「#menubarのborderの上下2px分」）を合計した数字を設定する*/
}
/*上の３つのスタイルの「.is-fixed」を「.is-fixed-menu」と変更して同じスタイルを設定して下さい。*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;
	width: 100%;
	top: 0px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	border-bottom: 1px solid #9c9c9c;	/*下の線の幅、線種、色*/
}
body.is-fixed-menu #menubar.nav-fix-pos ul {
	background: rgba(255,255,255,0.95);
}
body.is-fixed-menu .inner#first {
	margin-top: 72px;	/*メニューの高さ（「#menubar ul li aのline-height: 50px;」と「marginの計20px分」と、「#menubarのborderの上下2px分」）を合計した数字を設定する*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	position: relative;z-index: 20;
	background: #f5f4f0;	/*基準となる背景色*/
}
/*innerにbg1スタイルを追加した場合の背景色*/
.inner.bg1 {
	background: #fff !important;
}
/*innerにbg2スタイルを追加した場合の背景色*/
.inner.bg2 {
	background: #FFFAED !important;
}
/*innerにbg_flower1スタイルを追加した場合の背景色（トップページのキャンペーンブロックで使用）*/
.inner.bg3 {
	background: #F9F9F6 !important;
}
/*innerにbg2スタイルを追加した場合の背景色*/
.inner.bg4 {
	background: #fff5eb !important;
}


/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
	overflow: hidden;margin: 0 auto;
	max-width: 1200px;	/*サイトの最大幅*/
	padding: 50px 5%;	/*上下、左右へのコンテンツ内の余白*/
}
/*h2タグ*/
.contents h2 {
	clear: both;
	margin-top: 25px;
	margin-bottom: 20px;
	font-size: 40px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
}
/*h2タグのspan（装飾用）タグ*/
.contents h2 span {
	display: block;
	margin-top: -10px;
	font-size: 14px;	/*文字サイズ*/
	color: #6aabe8;		/*文字色*/
	letter-spacing: 0.3em;	/*文字間隔を広くとる設定*/
}

/*h3タグ*/
.contents h3 {
	clear: both;
	margin-bottom: 20px;
	font-size: 24px;	/*文字サイズ*/
	border-bottom: 2px dotted #ccc;	/*下線の幅、線種、色*/
	padding-left: 20px;
}

/*h3タグのspan（装飾用）タグ*/
.contents h3 span {
	font-size: 14px;	/*文字サイズ*/
	color: #6aabe8;		/*文字色*/
}

/*h3タグの１文字目*/
.contents h3::first-letter {
	border-left: 3px solid #6aabe8;	/*左側の線の幅、線種、色*/
	padding-left: 20px;	/*線と文字との余白*/
}
/*段落タグ*/
.contents p {
	padding: 0 20px 20px;
}
/*section同士の余白*/
.contents section + section {
	margin-top: 50px;
}

/*エリア01
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.area1 {
	overflow: hidden;
	padding: 20px 20px 20px;	/*上、左右、下へのボックス内の余白*/
	margin-bottom: 20px;
}
/*h4見出し*/
.area1 h4 {
	color: #1F8CCF;		/*文字色*/
	font-size: 30px;	/*文字サイズ*/
}

/*h4見出しのspanタグ。見出し冒頭の番号。*/
.area1 h4 span {
	display: inline-block;
	background: #1F8CCF;	/*背景色*/
	color: #fff;			/*文字色*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ（行間）*/
	border-radius: 50%;		/*角丸のサイズ。50%にすると円形になる。*/
	text-align: center;		/*文字を中央に*/
	margin-right: 20px;		/*右側に空けるスペース*/
}
/*段落タグ*/
.area1 p {
	padding: 0 !important;
}
/*最後のステップボックス*/
.area1:last-child {
	background: none;	/*背景を消す*/
	padding-bottom: 0;	/*下の余白を消す*/
}

/*エリア02
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.area2 {
	overflow: hidden;
	padding: 20px 20px 20px;	/*上、左右、下へのボックス内の余白*/
	margin-bottom: 20px;
}

/*h4見出し*/
.area2 h4 {
	color: #D90000;		/*文字色*/
	font-size: 30px;	/*文字サイズ*/
}
/*h4見出しのspanタグ。見出し冒頭の番号。*/
.area2 h4 span {
	display: inline-block;
	background: #D90000;	/*背景色*/
	color: #fff;			/*文字色*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ（行間）*/
	border-radius: 50%;		/*角丸のサイズ。50%にすると円形になる。*/
	text-align: center;		/*文字を中央に*/
	margin-right: 20px;		/*右側に空けるスペース*/
}
/*段落タグ*/
.area2 p {
	padding: 0 !important;
}
/*最後のステップボックス*/
.area2:last-child {
	background: none;	/*背景を消す*/
	padding-bottom: 0;	/*下の余白を消す*/
}

/*box4（まとめ）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box4 {
	position: relative;
	margin: 0 0 0 2%;
	padding: 0 0 0 20px;
	border: solid 3px #D90000;
	border-radius: 8px;
	background: #FFF8FF;
}
.box4 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #FF7F00;
    font-weight: bold;
}
.box4 p {
    margin: 0; 
    padding: 0;
}


/*box1（１カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1 {
	position: relative;
	margin: 30px 0 0 2%;
	padding: 40px 0 0 0;
	border: solid 3px #FFD24D;
	border-radius: 8px;
}
.box1 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #FF7F00;
    font-weight: bold;
}
.box1 p {
    margin: 0; 
    padding: 0;
}

/*box3（１カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box3 {
	position: relative;
	margin: 30px 0 0 2%;
	padding: 40px 0 0 0;
	border: solid 3px #C2D87F;
	border-radius: 8px;
}
.box3 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #666;
    font-weight: bold;
}
.box3 p {
    margin: 0; 
    padding: 0;
}


/*box2（2カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box2 {
	position: relative;
	width: 44%;		/*ボックスの幅29*/
	float: left;		/*左に回り込み*/
	margin: 20px 0 0 2%;		/*上、右、下、左へのボックスの外に空けるスペース*/
	padding: 5px 10px 0 10px;
	border: solid 3px #1F8CCF;
	border-radius: 8px;
}
.box2 .box-title {
	position: absolute;
	display: inline-block;
	top: -13px;
	left: 10px;
	padding: 0 9px;
	line-height: 1;
	font-size: 19px;
	background: #FFF;
	color: #666;
	font-weight: bold;
}





/*list1
---------------------------------------------------------------------------*/
/*各ブロックの設定*/
.list1 {
	overflow: hidden;
	width: 20%;		/*ブロック幅*/
	float: left;	/*左に回り込み*/
	margin-left: 1%;	/*ボックスの外側(左側)に空けるスペース*/
	padding: 2%;		/*ボックス内の余白*/
}
/*h4見出し*/
.list1 h4 {
	font-size: 28px;	/*文字サイズ*/
	text-align: center;	/*文字を中央に*/
	color: #144E77;		/*文字色*/
	margin-top: 8px;
}
/*figure画像*/
.list1 figure {
	background: #fff;	/*背景色*/
	padding: 2px;		/*余白*/
	box-shadow: 2px 2px 0px 2px rgba(0,0,0,0.15);	/*影。右へ、下へ、ぼかす範囲、広げる範囲。0,0,0は黒の事で0.2は透明度20%の事*/
}

/*list2
---------------------------------------------------------------------------*/
/*各ブロックの設定*/
.list2 {
	overflow: hidden;
	margin-bottom: 20px;
	padding: 2%;	/*ボックス内の余白*/
	border: 3px solid #ccc;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
}
/*ボックス内の右側のブロック*/
.list2 .text {
	margin-left: 31%;	/*左に空けるスペース。下のfigureの幅を考慮して設定。*/
}
/*h4見出し*/
.list2 h4 {
	font-size: 30px;	/*文字サイズ*/
	color: #6aabe8;		/*文字色*/
}
/*figure画像*/
.list2 figure {
	width: 30%;		/*幅*/
	float: left;	/*左に回り込み*/
}
/*list2内のテーブルタグ*/
.list2 table {
	font-size: 13px;	/*文字サイズ*/
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
}
/*list2内のテーブルタグ（行）*/
.list2 table tr {
	border-top: 1px dashed #ccc;	/*各行の上の線の幅、線種、色*/
}
/*list2内のテーブルタグ（tdとth）*/
.list2 table td, .list2 table th {
	padding: 2px 5px;	/*上下、左右への余白*/
}
/*list2内のテーブルタグ（th見出し）*/
.list2 table th {
	background: #eee;	/*背景色*/
	text-align: left;	/*テキストを左よせ*/
}

/*list1とlist2の段落タグ指定
---------------------------------------------------------------------------*/
.list1 p, .list2 p {
	padding: 0 !important;
}

/*aタグにclass="btn"
---------------------------------------------------------------------------*/
a.btn {
	display: block;text-decoration: none;
	text-align: center;	/*テキストを中央に*/
	background: #4A7CB4;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#4A7CB4, #6FA8E8);/*背景グラデーション*/
	color: #fff;	/*文字色*/
	box-shadow: 2px 3px 2px rgba(0,0,0,0.2);	/*影。右へ、下へ、ぼかす範囲。0,0,0は黒の事で0.2は透明度20%の事*/
	border-radius: 3px;	/*角丸のサイズ*/
	padding: 20px 8px;	/*上下、左右への余白*/
	font-size: 14px;	/*文字サイズ*/
}
/*マウスオン時*/
a:hover.btn {
	background: #6FA8E8;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*aタグにclass="btn2"
---------------------------------------------------------------------------*/
a.btn2 {
	display: block;text-decoration: none;
	text-align: center;	/*テキストを中央に*/
	background: #D96D00;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#D96D00, #FF7F00);/*背景グラデーション*/
	color: #fff;	/*文字色*/
	box-shadow: 2px 3px 2px rgba(0,0,0,0.2);	/*影。右へ、下へ、ぼかす範囲。0,0,0は黒の事で0.2は透明度20%の事*/
	border-radius: 3px;	/*角丸のサイズ*/
	padding: 20px 20px;	/*上下、左右への余白*/
	font-size: 14px;	/*文字サイズ*/
}
/*マウスオン時*/
a:hover.btn2 {
	background: #FF7F00;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
	position: relative;z-index: 20;
	clear: both;
	line-height: 2;	/*行間を基準より少し狭くする*/
	padding: 30px 0 0;	/*上、左右、下へのボックス内の余白*/
	font-size: 85%;		/*文字サイズ*/
	background: #1F8CCF;	/*背景色*/
	color: #fff;	/*文字色*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	position: relative;z-index: 20;
	clear: both;overflow: hidden;
	padding-top: 50px;
	background: #f5f4f0;	/*背景色*/
}
#pagetop a {
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	background: #6aabe8;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	width: 100px;	/*幅*/
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への設定*/
	margin-right: 5%;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #a50e0e;	/*背景色*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #111;
}
#copyright a {
	color: #fff;
	text-decoration: none;}
#copyright a:hover {color: #00FFFF;}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 96%;
	margin: 0 auto 50px;
	border-bottom: 1px solid #ccc;	/*テーブルの下の枠線の幅、線種、色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白の事で0.8は透明度80%の事*/
}
/*td,th共通*/
.ta1 td, .ta1 th {
	border-top: 1px solid #ccc;	/*tdタグとthタグの上側の枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
	text-align: center;
}
/*表カラー1（緑）*/
.ta1 th.bg1, .ta1 td.bg1 {
	background: #eafae5;
}

/*表カラー2（オレンジ）*/
.ta1 th.bg2, .ta1 td.bg2 {
	background: #ffebd6;
}

/*表カラー2（ピンク）*/
.ta1 th.bg3, .ta1 td.bg3 {
	background: #ffeae5;
}
/*表カラー2（薄い緑）*/
.ta1 th.bg4, .ta1 td.bg4 {
	background: #F7FDF5;
}
/*表カラー2（薄いピンク）*/
.ta1 th.bg5, .ta1 td.bg5 {
	background: #FFF2EF;
}

/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*テーブル（ta11）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta11 {
	width: 96%;
	margin: 0 auto 30px;
	border-bottom: 1px solid #ccc;	/*テーブルの下の枠線の幅、線種、色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白の事で0.8は透明度80%の事*/
}
/*td,th共通*/
.ta11 td, .ta11 th {
	border-top: 1px solid #ccc;	/*tdタグとthタグの上側の枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
	text-align: center;
	line-height: 1.5;		/*行間*/
}
/*表カラー1（グレー）*/
.ta11 th.bg1, .ta11 td.bg1 {
	background: #F1F1F0;
}

/*表カラー2（オレンジ）*/
.ta11 th.bg2, .ta11 td.bg2 {
	background: #ffebd6;
}

/*表カラー3（ピンク）*/
.ta11 th.bg3, .ta11 td.bg3 {
	background: #ffeae5;
}
/*表カラー4（緑）*/
.ta11 th.bg4, .ta11 td.bg4 {
	background: #f0fff0;
}

/*ta11の左側ボックス*/
.ta11 th {
	width: auto;	/*幅*/
	text-align: center;
}
/*ta11の右側ボックス*/
.ta11 td {
	width: auto;	/*幅*/
	text-align: left;
	font-weight: bold;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta11 th img {
	width: 100%;
}

/*テーブル（ta13）
---------------------------------------------------------------------------*/
/*ta13設定*/
.ta13 {
	width: 96%;
	margin: 15px auto 30px;
	border-bottom: 1px solid #ccc;	/*テーブルの下の枠線の幅、線種、色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白の事で0.8は透明度80%の事*/
}
/*td,th共通*/
.ta13 td, .ta13 th {
	border-top: 1px solid #ccc;	/*tdタグとthタグの上側の枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
	text-align: center;
	line-height: 1.5;		/*行間*/
}
/*表カラー1（グレー）*/
.ta13 th.bg1, .ta13 td.bg1 {
	background: #F1F1F0;
}

/*表カラー2（オレンジ）*/
.ta13 th.bg2, .ta13 td.bg2 {
	background: #ffebd6;
}

/*表カラー3（ピンク）*/
.ta13 th.bg3, .ta13 td.bg3 {
	background: #ffeae5;
}
/*表カラー4（緑）*/
.ta13 th.bg4, .ta13 td.bg4 {
	background: #f0fff0;
}

/*ta13の左側ボックス*/
.ta13 th {
	width: auto;	/*幅*/
	text-align: center;
}
/*ta13の右側ボックス*/
.ta13 td {
	width: auto;	/*幅*/
	text-align: left;
}


/*テーブル（ta12）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta12 {
	width: 96%;
	margin: 0 auto 30px;
	border-bottom: 1px solid #ccc;	/*テーブルの下の枠線の幅、線種、色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白の事で0.8は透明度80%の事*/
}
/*td,th共通*/
.ta12 td, .ta12 th {
	font-size: 14px;		/*文字サイズ*/
	border-top: 1px solid #ccc;	/*tdタグとthタグの上側の枠線の幅、線種、色*/
	padding: 8px 10px;	/*ボックス内の余白*/
	word-break: break-all;
	text-align: center;
	line-height: 1.5;		/*行間*/
}
/*表カラー1（グレー）*/
.ta12 th.bg1, .ta12 td.bg1 {
	background: #F1F1F0;
}

/*表カラー2（オレンジ）*/
.ta12 th.bg2, .ta12 td.bg2 {
	background: #ffebd6;
}

/*表カラー2（ピンク）*/
.ta12 th.bg3, .ta12 td.bg3 {
	background: #ffeae5;
}

/*ta12の左側ボックス*/
.ta12 th {
	width: auto;	/*幅*/
	text-align: center;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta12 th img {
	width: 100%;
}


/*ta2
---------------------------------------------------------------------------*/
/*ta2設定*/
.ta2 {
	width: 100%;
	margin: 0 auto 10px;
	border-bottom: 1px solid #fff;	/*テーブルの下の枠線の幅、線種、色*/
	text-align: center;
}
/*td,th共通*/
.ta2 td, .ta2 th {
	border-top: 1px solid #fff;	/*td,thの上側の線の幅、線種、色*/
	padding: 5px 10px;	/*ボックス内の余白*/
}
/*th見出し*/
.ta2 th {
	background: rgba(0,0,0,0.2);	/*背景色*/
}

/*ta3
---------------------------------------------------------------------------*/
/*ta3設定*/
.ta3 {
	width: 100%;
	margin: 0 auto 20px;
	border-bottom: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白の事で0.8は透明度80%の事*/
}
.ta3, .ta3 td, .ta3 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
}
/*th見出し（基準色）*/
.ta3 th {
	background: #D4E5F8;	/*背景色*/
}


/*ポイントpc
---------------------------------------------------------------------------*/
/*外側ブロック*/
.point {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問*/
.point dt {
	float: left;
	background: url(../images/icon.png) no-repeat left center;	/*背景アイコン*/
	padding-left: 35px;	/*背景アイコンに重ならないよう左に余白を作る*/
}
/*回答*/
.point dd {
	margin-left: 50%;
	background: url(../images/icon.png) no-repeat left top;	/*背景アイコン*/
	padding-left: 35px;	/*背景アイコンに重ならないよう左に余白を作る*/
}

/*ポイントsh
---------------------------------------------------------------------------*/
/*外側ブロック*/
.point2 {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問*/
.point2 dt {
	background: url(../images/icon.png) no-repeat left center;	/*背景アイコン*/
	padding-left: 35px;	/*背景アイコンに重ならないよう左に余白を作る*/
}
/*回答*/
.point2 dd {
	background: url(../images/icon.png) no-repeat left top;	/*背景アイコン*/
	padding-left: 35px;	/*背景アイコンに重ならないよう左に余白を作る*/
}


/*inviewのスタイル
---------------------------------------------------------------------------*/
/*下から上にフェードインしてくるスタイル（待機中）*/
.up {
	overflow: hidden;position: relative;
	opacity: 0;		/*透明度0%*/
	bottom: -50px;	/*基準値の下50pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.upstyle{
	opacity: 1;		/*透明度100%*/
	bottom: 0px;	/*基準値まで戻す*/
	transition: 1s 0.3s;	/*1sはアニメーションの実行時間1秒。0.3sは0.3秒遅れてスタートする指定。*/
}
/*左からフェードインしてくるスタイル（待機中）*/
.left {
	overflow: hidden;position: relative;
	opacity: 0;		/*透明度0%*/
	left: -200px;	/*基準値より左に200pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.leftstyle{
	opacity: 1;		/*透明度100%*/
	left: 0px;		/*基準値まで戻す*/
	transition: 1s 0.3s;	/*1sはアニメーションの実行時間1秒。0.3sは0.3秒遅れてスタートする指定。*/
}
/*右からフェードインしてくるスタイル（待機中）*/
.right {
	overflow: hidden;position: relative;
	opacity: 0;		/*透明度0%*/
	right: -200px;	/*基準値より右に200pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.rightstyle{
	opacity: 1;		/*透明度100%*/
	right: 0px;		/*基準値まで戻す*/
	transition: 1s 0.3s;	/*1sはアニメーションの実行時間1秒。0.3sは0.3秒遅れてスタートする指定。*/
}


/*トップページ被り調整
---------------------------------------------------------------------------*/
.link {
	display: block;
	margin-top: -80px;
	padding-top: 80px;
}

/*checkブロック。赤い注意書き
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #fff;}

/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;padding: 5px 10px;border-radius: 4px;}
.ml20 {margin-left: 25px !important;}
.mu10 {margin-top: 10px !important;}
.mu30 {margin-top: 30px !important;}
.mu40 {margin-top: 40px !important;}
.mu50 {margin-top: 50px !important;}
.mu70 {margin-top: 70px !important;}
.mb5 {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mtp20 {margin-top: -20px !important;}
.mbp10 {margin-bottom: -10px !important;}
.mbp30 {margin-bottom: -30px !important;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #ff6600 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
.w50 {overflow: hidden;width: 50%;}
.fl {float: left;}
img.fl {float: left;width:30%;margin-right: 20px;margin-bottom: 20px;}
.fr {float: right;}
img.fr {float: right;width:30%;margin-left: 20px;margin-bottom: 20px;}
img.c {float: center;width:94%;margin: 0 3% 25px 3%;}
.photo {padding: 10px;background: #fff;border: 5px solid #fff;box-shadow: 2px 4px 5px rgba(0,0,0,0.2);}
.big1 {font-size: 40px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.white{color: #fff !important;}



/*画面を横向きにした場合の高さが500px以下の場合の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px){ｓ

/*h1　（トップページのメイン画像上に出てくるサイト名）
---------------------------------------------------------------------------*/
#top header h1 {
	bottom: 30%;		/*下から30%の場所に配置*/
}

/*トップページ帯ボックス設定
---------------------------------------------------------------------------*/
#topics {
	display: none;	/*画面が狭いので非表示にする*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li a {
	float: left;	/*左に回り込みさせて２列にする*/
	width: 40%;		/*幅*/
	margin-left: 4%;	/*メニューの左側に空けるスペース*/
}

}

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

/*ヘッダー
---------------------------------------------------------------------------*/
header {
	 padding: 10px 0;	/*上下、左右への余白*/
	 position: fixed;
	 width: 100%;
	 border-bottom: 1px solid #fff;
}
/*トップページのヘッダー*/
#top header {
	margin-bottom: 0px;	/*大きな端末用ではこの分にメニューが表示されていましたが、小さな端末では開閉ブロックになるので余白をリセット。*/
}

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

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

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

/*inner
---------------------------------------------------------------------------*/
.inner#first {padding-top: 50px;}
body#top .inner#first {padding-top: 0px;}

/*コンテンツ
---------------------------------------------------------------------------*/
/*h2タグ*/
.contents h2 {
	font-size: 30px;	/*文字サイズ*/
}
section + section {
	padding-top: 20px;
}

/*box1（１カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1 {
	margin: 0 8px 30px 8px;		/*上、右、下、左へのボックスの外に空けるスペース*/
	padding: 35px 8px 8px 8px;		/*余白の上書き*/
}
.box1 .box-title {
    top: 20px;

}


/*box2（２カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box2 {
	width: auto;		/*ボックスの幅*/
	float: none;		/*左に回り込み*/
	padding: 8px 8px 8px 8px;		/*余白の上書き*/
	margin: 0 8px 20px 8px;		/*上、右、下、左へのボックスの外に空けるスペース*/
	line-height: 1.5;	/*行間*/
}
.box2 .box-title {
    top: 20px;

}

/*box3（１カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box3 {
	margin: 0 8px 30px 8px;		/*上、右、下、左へのボックスの外に空けるスペース*/
	padding: 35px 8px 8px 8px;		/*余白の上書き*/
}
.box3 .box-title {
    top: 20px;

}

/*テーブル（ta11.12）
---------------------------------------------------------------------------*/
/*ta11.12設定*/
.ta11 {
	margin: 15px auto 10px;
}

.ta12 {
	margin: 15px auto 10px;
}

/*td,th共通*/
.ta11 td, .ta11 th  {
	padding: auto;
}

/*td,th共通*/
.ta12 td, .ta12 th  {
	padding: auto;
}



/*list1
---------------------------------------------------------------------------*/
/*各ブロックの設定*/
.list1 {
	width: 44%;		/*ブロック幅*/
}
/*h4見出し*/
.list1 h4 {
	font-size: 20px;	/*文字サイズ*/
}

/*フッター設定
---------------------------------------------------------------------------*/
/*footer内の左右のブロック指定*/
#footer-left,#footer-right {
	width: auto;	/*幅*/
	float: none;	/*回り込みの解除*/
	padding: 0 5%;	/*上下、左右へのブロック内の余白*/
}

/*その他
---------------------------------------------------------------------------*/
.big1 {font-size: 20px;}
.w50 {overflow: hidden;width: auto;}
.fl {float: none;}
.fr {float: none;}

}



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

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

/*ヘッダー
---------------------------------------------------------------------------*/
/*h1（トップページ以外で使用するロゴ画像）*/

header h1 {
	font-size: 16px;	/*文字サイズ*/
}

header h1 img {
	width: 200px;	/*画像幅*/
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	background: url(../images/mainimg_s.jpg) no-repeat center center / cover;
}

/*トップページのSVGロゴアニメーション設定
---------------------------------------------------------------------------*/
#svg-logo {
	width: 80%;	/*画像の幅*/
	left: 10%;	/*左から40%の場所に配置*/
	bottom: 40%;		/*下から40%の場所に配置*/
}

/*トップページの「ホームページ開設キャンペーン」ボックス設定
---------------------------------------------------------------------------*/
/*ボックス内のh2見出し*/
#topics h2 {
	font-size: 20px;	/*文字サイズ*/
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	top: 6px;	/*上から6pxの場所に配置*/
}

/*inner
---------------------------------------------------------------------------*/
.inner#first {padding-top: 70px;}

/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
	padding: 20px 3%;	/*上下、左右へのコンテンツ内の余白*/
}
/*h2タグ*/
.contents h2 {
	font-size: 20px !important;
}
/*h2タグのspan（装飾用）タグ*/
.contents h2 span {
	margin-top: 0px;
	font-size: 10px;	/*文字サイズ*/
}
/*h3タグ*/
.contents h3 {
	font-size: 16px !important;
	padding-left: 10px;
	padding-bottom: 5px;
	margin-bottom: 10px;
}
/*h3タグの１文字目*/
.contents h3::first-letter {
	padding-left: 10px;	/*線と文字との余白*/
}
/*段落タグ*/
.contents p {
	padding: 0 10px 15px;
}

/*box1とbox2
---------------------------------------------------------------------------*/
/*h4(見出し)タグ*/
.box1 .box-title,.box2 .box-title {
	font-size: 18px;	/*文字サイズ*/
}


/*list2
---------------------------------------------------------------------------*/
/*h4見出し*/
.list1 h4 {
	font-size: 20px;	/*文字サイズ*/
	margin-bottom: 5px;
}

/*ボックス内の右側のブロック*/
.list2 .text {
	margin-left: 0;
}
/*figure画像*/
.list2 figure {
	width: 50%;		/*幅*/
	float: none;
	display: block;
	margin: 0 auto;
}
/*h4見出し*/
.list2 h4 {
	font-size: 20px;	/*文字サイズ*/
}

/*エリア1
---------------------------------------------------------------------------*/
/*エリアブロック１個あたりの設定*/
.area1 {
	padding: 10px 10px 20px;	/*上、左右、下へのボックス内の余白*/
	margin-bottom: 10px;
}
/*h4見出し*/
.area1 h4 {
	font-size: 18px;	/*文字サイズ*/
}
/*h4見出しのspanタグ。見出し冒頭の番号。*/
.area1 h4 span {
	width: 30px;			/*幅*/
	line-height: 30px;		/*高さ（行間）*/
	margin-right: 10px;		/*右側に空けるスペース*/
}

/*エリア2
---------------------------------------------------------------------------*/
/*エリアブロック１個あたりの設定*/
.area2 {
	padding: 10px 0 20px;	/*上、左右、下へのボックス内の余白*/
	margin-bottom: 10px;
}
/*h4見出し*/
.area2 h4 {
	font-size: 14px;	/*文字サイズ*/
	line-height: 22px;		/*高さ（行間）*/
}
/*h4見出しのspanタグ。見出し冒頭の番号。*/
.area2 h4 span {
	font-size: 12px;	/*文字サイズ*/
	width: 18px;			/*幅*/
	line-height: 18px;		/*高さ（行間）*/
	margin-right: 5px;		/*右側に空けるスペース*/
}


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

/*ta11設定*/
.ta11, .ta11 td, .ta11 th {
	font-size: 14px;
}

/*ta12設定*/
.ta12, .ta12 td, .ta12 th {
	font-size: 12px;
	line-height: 1.2;		/*高さ（行間）*/
}


/*ta3設定*/
.ta3, .ta3 td, .ta3 th {
	padding: 8px;	/*ボックス内の余白*/
	font-size: 96%;
}
/*ta1の左側ボックス*/
.ta3 th {
	width: 96px;
}

/*ta11設定*/
.ta11, .ta11 td, .ta11 th {
	padding-bottom: 15px;	/*下の余白だけ上書き*/
}
/*ta12設定*/
.ta12, .ta12 td, .ta12 th {
	padding-bottom: 15px;	/*下の余白だけ上書き*/
}

/*ポイント2
---------------------------------------------------------------------------*/
/*外側ブロック*/
.point2 {
	padding: 0px 10px;	/*上下、左右への余白*/
	font-size: 95%;
}
/*質問、回答共通*/
.point2 dt,.point2 dd {
	background: none;	/*背景アイコンを非表示に*/
	padding-left: 0px;
}



/*その他
---------------------------------------------------------------------------*/
.photo {padding: 5px;border: 2px solid #fff;}
.ws,.wl {width: 94%;}
.fl {float: none;}
img.fl {float: none;display: block;width:90%;margin: 0 auto 20px;}
.fr {float: none;}
img.fr {float: none;display: block;width:90%;margin: 0 auto 20px;}
.big1 {font-size: 16px;}
.sh {display:block;}
.pc {display:none;}

}
