@charset "UTF-8";

/*
フォントサイズ早見表
回り込み
カラム
左右ボックス
リスト型メニュー
リスト各種
記述リスト
表組み
よくある質問
動画埋め込み
Googleマップ埋め込み
SNSシェアボタン
罫線
個別調整
リセット
ClearFix
*/


/* ■ フォントサイズ早見表 ==================================================================================== */

/*
※将来的にはremに移行

font-size percent/px (100% = 15px)
10px = 67%
11px = 74%
12px = 80%
13px = 87%
14px = 94%
15px = 100%
16px = 107%
17px = 114%
18px = 120%
19px = 127%
20px = 134%
21px = 140%
22px = 147%
23px = 154%
24px = 160%
25px = 167%
26px = 174%
27px = 180%
28px = 187%
29px = 193%
30px = 200%

font-size percent/px (100% = 14px)
10px = 72%
11px = 79%
12px = 86%
13px = 93%
14px = 100%
15px = 108%
16px = 115%
17px = 122%
18px = 129%
19px = 136%
20px = 143%
21px = 150%
22px = 158%
23px = 165%
24px = 172%
25px = 179%
26px = 186%
27px = 193%
28px = 200%
29px = 207%
30px = 214%

font-size percent/px (100% = 16px)
10px = 63%
11px = 69%
12px = 75%
13px = 82%
14px = 88%
15px = 94%
16px = 100%
17px = 107%
18px = 113%
19px = 119%
20px = 125%
21px = 132%
22px = 138%
23px = 144%
24px = 150%
25px = 157%
26px = 163%
27px = 169%
28px = 175%
29px = 181%
30px = 188%

*/



/* ■ 回り込み ==================================================================================== */

/* 左 */
.FloatL {
float: left;
margin-top: 5px;
margin-right: 15px;
margin-bottom: 10px;
}

/* 右 */
.FloatR {
float: right;
margin-top: 5px;
margin-left: 15px;
margin-bottom: 10px;
}



/* ■ カラム（Col） ==================================================================================== */

/* ※将来的にflexboxに移行予定 */

.Col {
/*
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
*/
}

.Col li {
float: left;
}

.Col li a {
display: block;
}

/* 2カラム */
.Col2 li {
width: 49%;
margin-right: 2%;
margin-bottom: 2%;
}

.Col2 li:nth-child(2n) {
margin-right: 0;
}

/* 3カラム */
.Col3 li {
width: 32%;
margin-right: 2%;
margin-bottom: 2%;
}

.Col3 li:nth-child(3n) {
margin-right: 0;
}

/* 4カラム */
.Col4 li {
width: 23.5%;
margin-right: 2%;
margin-bottom: 2%;
}

.Col4 li:nth-child(4n) {
margin-right: 0;
}

/* 5カラム */
.Col5 li {
width: 18.4%;
margin-right: 2%;
margin-bottom: 2%;
}

.Col5 li:nth-child(5n) {
margin-right: 0;
}



/* ■ 左右ボックス ==================================================================================== */

/* ※将来的にflexboxに移行予定 */

.LRBox {
/*
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
*/
}

.LRBox .LBox {
float: left;
}

.LRBox .RBox {
float: right;
}



/* ■ リスト型メニュー（廃止） ==================================================================================== */

/* IndexMenu1 */
.IndexMenu1 li,
.IndexMenu li {
float: left;
}

/* IndexMenu2 */
.IndexMenu2 li {
float: left;
}

.IndexMenu2 li a {
display: block;
float: left;
}



/* ■ リスト各種 ==================================================================================== */

/*
ディスク（ListDisc）
ディスク：小（ListDiscS）
米印（ListKome）
米印：小（ListKomeS）
連番（ListNum）
連番：小（ListNumS）
米印連番：小（ListKomeNumS）
*/

.ListDisc li,
.ListDiscS li,
.ListKome li,
.ListKomeS li,
.ListNum li,
.ListNumS li,
.ListKomeNumS li {
display: inline-block;
position: relative;
letter-spacing: 0;
}

.ListDisc li:before,
.ListDiscS li:before,
.ListKome li:before,
.ListKomeS li:before,
.ListNum li:before,
.ListNumS li:before,
.ListKomeNumS li:before {
display: inline-block;
position: absolute;
}

/* ディスク（ListDisc） */
.ListDisc li:before {
content: '';
}

/* ディスク：小（ListDiscS） */
.ListDiscS li:before {
content: '';
}

/* 米印（ListKome） */
.ListKome li:before {
content: '※';
}

/* 米印：小（ListKomeS） */
.ListKomeS li:before {
content: '※';
}

/* 連番（ListNum） */
.ListNum li:before {
content: counter(ListNum)".";
}

/* 連番：小（ListNumS） */
.ListNumS li:before {
content: counter(ListNum)".";
}

/* 米印連番：小（ListKomeNumS） */
.ListKomeNumS li:before {
content: "※"counter(ListNum);
}



/* ■ 記述リスト ==================================================================================== */

/* 左右 */
.DLHori {
margin-bottom: 15px;
}

.DLHori dl {
display: table;
width: 100%;
}

.DLHori dt,
.DLHori dd {
display: table-cell;
line-height: 1.8em;
vertical-align: top;
}

.DLHori dt {
font-weight: bold;
}

/* 上下 */
.DLVert {
margin-bottom: 15px;
}

.DLVert dt,
.DLVert dd {
margin: 0;
line-height: 1.8em;
}

.DLVert dt {
font-weight: bold;
}

/* テーブルスタイル */
.DLTable {
margin-bottom: 15px;
}

.DLTable dl {
display: table;
width: 100%;
border-collapse: collapse;
border-spacing: 0;
}

.DLTable dt,
.DLTable dd {
display: table-cell;
padding: 10px 15px;
line-height: 1.8em;
vertical-align: middle;
}

.DLTable dt {
width: 25%;
font-weight: bold;
}

.DLTable dd {
width: 75%;
}



/* ■ 表組み ==================================================================================== */

.Table1,
.Table2 {
width: 100%;
}

.Table1 th,
.Table2 th,
.Table1 td,
.Table2 td {
/* border: 1px solid #b8b8b8; */
line-height: 1.8em;
}

.Table1 th,
.Table2 th {
font-weight: bold;
/* background: #f2f2f2; */
}

.Table1 td,
.Table2 td {
background: #fff;
}

/* Table1（項目：左） */
.Table1 th {
text-align: left;
}

.Table1 th {
width: 25%;
}

/* Table2（項目：上） */
.Table2 th {
text-align: center;
}



/* ■ よくある質問 ==================================================================================== */

.FaqQ li {
position: relative;
padding-left: 30px;
counter-increment: ListNum;
}

.FaqQ.Over10 li {
padding-left: 35px;
}

.FaqQ li:before {
display: inline-block;
position: absolute;
left: 0;
top: 0;
content: "Q"counter(ListNum)".";
}

.FaqQA li {
position: relative;
padding-left: 30px;
line-height: 2.0em;
counter-increment: ListNum;
}

.FaqQA.Over10 li {
padding-left: 35px;
}

.FaqQA li:before {
display: inline-block;
position: absolute;
left: 0;
top: 0;
content: "Q"counter(ListNum)".";
}

.FaqQA .answer {
position: relative;
}

.FaqQA .answer:before {
display: inline-block;
position: absolute;
left: -20px;
top: 0;
content: "A.";
}

.FaqQA.Over10 .answer:before {
left: -25px;
}



/* ■ 動画埋め込み ==================================================================================== */

.MovieWrap {
position: relative;
margin-bottom: 20px;
padding-bottom: 56.25%;
overflow: hidden;
}

.MovieWrap iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

@media only screen and (max-width: 767px) {

	.MovieWrap {
	margin-bottom: 15px;
	}

}



/* ■ Googleマップ埋め込み ==================================================================================== */

.GoogleMapWrap {
position: relative;
padding-top: 50%;
}

.GoogleMap {
position: absolute;
width: 100%;
height: 100%;
top: 0;
}



/* ■ SNSシェアボタン ==================================================================================== */

/*
.SnsShare {
text-align: center;
}
*/

.SnsShare li {
display: inline;
margin-right: 5px;
}

/* 調整  */

/* Twitter */
/*
.twitter-share-button {
}
*/

/* Facebook */
.fb_iframe_widget {
display: inline-block !important;
}

.fb_iframe_widget > span {
vertical-align: baseline !important;
}

/* LINE */
.SnsShare li.Line img {
vertical-align: top;
}

/* Google＋ */
/*
.SnsShare #___plusone_0 {
width: 70px !important;
}
*/



/* ■ 罫線 ==================================================================================== */

hr { 
margin: 20px 0;
padding: 0;
border-style: solid;
border-width: 1px 0 0 0;
border-color: #ccc;
}



/* ■ 個別調整 ==================================================================================== */

/* 左・右・中央 寄せ */
.AlignL {
text-align: left !important;
}

.AlignC {
text-align: center !important;
}

.AlignR {
text-align: right !important;
}

/* ボーダー無し */
.NoBo,
.NoBorder {
border: none !important;
}

/* 太字にしない */
.FWN {
font-weight: normal !important;
}

/* 横幅「%」指定 */
.W5 {
width: 5% !important;
}

.W10 {
width: 10% !important;
}

.W15 {
width: 15% !important;
}

.W20 {
width: 20% !important;
}

.W25 {
width: 25% !important;
}

.W30 {
width: 30% !important;
}

.W35 {
width: 35% !important;
}

.W40 {
width: 40% !important;
}

.W45 {
width: 45% !important;
}

.W50 {
width: 50% !important;
}

.W55 {
width: 55% !important;
}

.W60 {
width: 60% !important;
}

.W65 {
width: 65% !important;
}

.W70 {
width: 70% !important;
}

.W75 {
width: 75% !important;
}

.W80 {
width: 80% !important;
}

.W85 {
width: 85% !important;
}

.W90 {
width: 90% !important;
}

.W95 {
width: 95% !important;
}

.W100 {
width: 100% !important;
}



/* ■ リセット ==================================================================================== */

body {
margin: 0;
padding: 0;
line-height: 1.0em;
-webkit-text-size-adjust: none;
}

h1,h2,h3,h4,h5,h6,p,th,td,dl,ul,ol,caption,blockquote,input,select,textarea,div {
margin: 0;
padding: 0;
font-size: 100%;
}

article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary {
display: block;
margin: 0;
padding: 0;
}

*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}

input,select,textarea {
margin: 0;
padding: 0;
box-sizing: border-box;
}

*:focus {
outline: none; 
}

img {
width: 100%;
height: auto;
border: none;
vertical-align: bottom;
}

form {
margin: 0;
padding: 0;
}

li {
list-style-type: none;
}

table {
border-collapse: collapse;
border-spacing: 0;
}

blockquote {
margin: 0 0 0 30px;
}

small {
font-size: 86%;
line-height: 1.5em;
}

strong, em {
font-style: normal;
font-weight: bold;
}



/* ■ ClearFix ==================================================================================== */

.CF:after,
.ClearFix:after {
content: ""; 
display: block; 
clear: both;
}

#Header:after,
#HeaderUnit:after,
#Footer:after,
#GlobalNav:after,
#GlobalNavSP:after,
#MainMenu:after,
#News:after,
#Stage:after,
#PageTop:after,
#FooterNav:after,
#FooterNavUnit:after,
.SectionMain:after,
.SectionSub:after,
.IndexMenu:after,
.IndexMenu1:after,
.IndexMenu2:after,
.TabMenu:after,
.Col:after,
.LRBox:after,
.PageNation:after,
.FormAction:after {
content: ""; 
display: block; 
clear: both;
}
