@charset "UTF-8";

/*
回り込み
カラム
左右ボックス
リスト各種
記述リスト
よくある質問
表組み横スクロール
動画埋め込み
Googleマップ埋め込み
個別調整
リセット
ClearFix
*/



/* ■ 回り込み ==================================================================================== */

/* 左 */
.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） ==================================================================================== */

.Col,
.wp-block-columns {
display: flex;
flex-wrap: wrap;
}

.Col li a {
display: block;
}



/* ■ 左右ボックス ==================================================================================== */

.LRBox {
display: flex;
flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {

	.LRBox .LBox {
	width: 100%;
	}
	
	.LRBox .RBox {
	width: 100%;
	}

}

@media print, screen and (min-width: 768px) {

	.LRBox .LBox {
	width: 60%;
	}
	
	.LRBox .RBox {
	width: 40%;
	padding-left: 5%;
	}

}

@media print, screen and (min-width: 1090px) {

}



/* ■ リスト各種 ==================================================================================== */

/*
ディスク（ListDisc）
ディスク：小（ListDiscS）
米印（ListKome）
米印：小（ListKomeS）
連番（ListNum）
連番：小（ListNumS）
米印連番：小（ListKomeNumS）
*/

.ListDisc li,
.ListDiscS li,
.ListKome li,
.ListKomeS li,
.ListNum li,
.ListNumS li,
.ListKomeNumS li {
position: relative;
}

.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.InlineB li,
.ListDiscS.InlineB li,
.ListKome.InlineB li,
.ListKomeS.InlineB li,
.ListNum.InlineB li,
.ListNumS.InlineB li,
.ListKomeNumS.InlineB li {
display: inline-block;
}

/* ディスク（ListDisc） */
.ListDisc li:before {
content: '';
}

/* ディスク：小（ListDiscS） */
.ListDiscS li:before {
content: '';
}

/* 米印（ListKome） */
.ListKome li:before {
content: '※';
}

/* 米印：小（ListKomeS） */
.ListKomeS li:before {
content: '※';
}

/* 連番（ListNum） */
.ListNum {
counter-reset: ListNum;
}

.ListNum li:before {
content: counter(ListNum)".";
}

/* 連番：小（ListNumS） */
.ListNumS li:before {
content: counter(ListNum)".";
}

/* 米印連番：小（ListKomeNumS） */
.ListKomeNumS li:before {
content: "※"counter(ListNum);
}



/* ■ 記述リスト ==================================================================================== */

/* 左右 */
.DLHori dl {
display: table;
width: 100%;
}

.DLHori dt,
.DLHori dd {
display: table-cell;
vertical-align: top;
}

/* 上下 */
.DLVert dt,
.DLVert dd {
margin: 0;
}

/* テーブルスタイル */
.DLTable dl {
display: table;
width: 100%;
border-collapse: collapse;
border-spacing: 0;
}

.DLTable dt,
.DLTable dd {
display: table-cell;
vertical-align: top;
}



/* ■ よくある質問 ==================================================================================== */

.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;
}



/* ■ 表組み横スクロール ==================================================================================== */

@media only screen and (max-width: 767px) {

	.TableScroll {
	overflow: auto;
	white-space: nowrap;
	}

}

@media print, screen and (min-width: 768px) {

}

@media print, screen and (min-width: 1090px) {

}



/* ■ 動画埋め込み ==================================================================================== */

/* video */
.MovieVideo video,
.wp-block-video video {
width: 100%;
}

/* iframe */
.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) {

	/* iframe */
	.MovieWrap {
	margin-bottom: 15px;
	}

}



/* ■ Googleマップ埋め込み ==================================================================================== */

.GoogleMapWrap {
position: relative;
padding-top: 50%;
}

.GoogleMap {
position: absolute;
width: 100%;
height: 100%;
top: 0;
}



/* ■ 個別調整 ==================================================================================== */

/*
汎用
左・右・中央 寄せ
マージントップ
マージンボトム
横幅「%」指定
*/


/* 汎用 --------------------------------------------------- */

/* ボーダー無し */
.NoBorder {
border: none !important;
}

/* パディング無し */
.NoPadding {
padding: 0 !important;
}

/* 太字にしない */
.FWN {
font-weight: normal !important;
}

/* 横幅「Inherit」 */
.WidthInherit {
width: inherit;
}


/* 左・右・中央 寄せ --------------------------------------------------- */

.AlignL,
.alignleft {
text-align: left !important;
}

.AlignC,
.aligncenter {
text-align: center !important;
}

.AlignR,
.alignright {
text-align: right !important;
}

@media only screen and (max-width: 767px) {

	.AlignL_SP {
	text-align: left !important;
	}
	
	.AlignC_SP {
	text-align: center !important;
	}
	
	.AlignR_SP {
	text-align: right !important;
	}

}

@media print, screen and (min-width: 768px) {

	.AlignL_PC {
	text-align: left !important;
	}
	
	.AlignC_PC {
	text-align: center !important;
	}
	
	.AlignR_PC {
	text-align: right !important;
	}

}


/* マージントップ --------------------------------------------------- */

.MT0 {
margin-top: 0 !important;
}

.MT5 {
margin-top: 5px !important;
}

.MT10 {
margin-top: 10px !important;
}

.MT15 {
margin-top: 15px !important;
}

.MT20 {
margin-top: 20px !important;
}

.MT25 {
margin-top: 25px !important;
}

.MT30 {
margin-top: 30px !important;
}

.MT35 {
margin-top: 35px !important;
}

.MT40 {
margin-top: 40px !important;
}

.MT45 {
margin-top: 45px !important;
}

.MT50 {
margin-top: 50px !important;
}

@media only screen and (max-width: 767px) {

	.MT0_SP {
	margin-top: 0 !important;
	}
	
	.MT5_SP {
	margin-top: 5px !important;
	}
	
	.MT10_SP {
	margin-top: 10px !important;
	}
	
	.MT15_SP {
	margin-top: 15px !important;
	}
	
	.MT20_SP {
	margin-top: 20px !important;
	}
	
	.MT25_SP {
	margin-top: 25px !important;
	}
	
	.MT30_SP {
	margin-top: 30px !important;
	}
	
	.MT35_SP {
	margin-top: 35px !important;
	}
	
	.MT40_SP {
	margin-top: 40px !important;
	}
	
	.MT45_SP {
	margin-top: 45px !important;
	}
	
	.MT50_SP {
	margin-top: 50px !important;
	}

}

@media print, screen and (min-width: 768px) {

	.MT0_PC {
	margin-top: 0px !important;
	}
	
	.MT5_PC {
	margin-top: 5px !important;
	}
	
	.MT10_PC {
	margin-top: 10px !important;
	}
	
	.MT15_PC {
	margin-top: 15px !important;
	}
	
	.MT20_PC {
	margin-top: 20px !important;
	}
	
	.MT25_PC {
	margin-top: 25px !important;
	}
	
	.MT30_PC {
	margin-top: 30px !important;
	}
	
	.MT35_PC {
	margin-top: 35px !important;
	}
	
	.MT40_PC {
	margin-top: 40px !important;
	}
	
	.MT45_PC {
	margin-top: 45px !important;
	}
	
	.MT50_PC {
	margin-top: 50px !important;
	}

}

@media print, screen and (min-width: 1090px) {

}


/* マージンボトム --------------------------------------------------- */

.MB0 {
margin-bottom: 0 !important;
}

.MB5 {
margin-bottom: 5px !important;
}

.MB10 {
margin-bottom: 10px !important;
}

.MB15 {
margin-bottom: 15px !important;
}

.MB20 {
margin-bottom: 20px !important;
}

.MB25 {
margin-bottom: 25px !important;
}

.MB30 {
margin-bottom: 30px !important;
}

.MB35 {
margin-bottom: 35px !important;
}

.MB40 {
margin-bottom: 40px !important;
}

.MB45 {
margin-bottom: 45px !important;
}

.MB50 {
margin-bottom: 50px !important;
}

@media only screen and (max-width: 767px) {

	.MB0_SP {
	margin-bottom: 0 !important;
	}
	
	.MB5_SP {
	margin-bottom: 5px !important;
	}
	
	.MB10_SP {
	margin-bottom: 10px !important;
	}
	
	.MB15_SP {
	margin-bottom: 15px !important;
	}
	
	.MB20_SP {
	margin-bottom: 20px !important;
	}
	
	.MB25_SP {
	margin-bottom: 25px !important;
	}
	
	.MB30_SP {
	margin-bottom: 30px !important;
	}
	
	.MB35_SP {
	margin-bottom: 35px !important;
	}
	
	.MB40_SP {
	margin-bottom: 40px !important;
	}
	
	.MB45_SP {
	margin-bottom: 45px !important;
	}
	
	.MB50_SP {
	margin-bottom: 50px !important;
	}

}

@media print, screen and (min-width: 768px) {

	.MB0_PC {
	margin-bottom: 0px !important;
	}
	
	.MB5_PC {
	margin-bottom: 5px !important;
	}
	
	.MB10_PC {
	margin-bottom: 10px !important;
	}
	
	.MB15_PC {
	margin-bottom: 15px !important;
	}
	
	.MB20_PC {
	margin-bottom: 20px !important;
	}
	
	.MB25_PC {
	margin-bottom: 25px !important;
	}
	
	.MB30_PC {
	margin-bottom: 30px !important;
	}
	
	.MB35_PC {
	margin-bottom: 35px !important;
	}
	
	.MB40_PC {
	margin-bottom: 40px !important;
	}
	
	.MB45_PC {
	margin-bottom: 45px !important;
	}
	
	.MB50_PC {
	margin-bottom: 50px !important;
	}

}

@media print, screen and (min-width: 1090px) {

}


/* 横幅「%」指定 --------------------------------------------------- */

.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;
}

@media only screen and (max-width: 767px) {

	.W5_SP {
	width: 5% !important;
	}
	
	.W10_SP {
	width: 10% !important;
	}
	
	.W15_SP {
	width: 15% !important;
	}
	
	.W20_SP {
	width: 20% !important;
	}
	
	.W25_SP {
	width: 25% !important;
	}
	
	.W30_SP {
	width: 30% !important;
	}
	
	.W35_SP {
	width: 35% !important;
	}
	
	.W40_SP {
	width: 40% !important;
	}
	
	.W45_SP {
	width: 45% !important;
	}
	
	.W50_SP {
	width: 50% !important;
	}
	
	.W55_SP {
	width: 55% !important;
	}
	
	.W60_SP {
	width: 60% !important;
	}
	
	.W65_SP {
	width: 65% !important;
	}
	
	.W70_SP {
	width: 70% !important;
	}
	
	.W75_SP {
	width: 75% !important;
	}
	
	.W80_SP {
	width: 80% !important;
	}
	
	.W85_SP {
	width: 85% !important;
	}
	
	.W90_SP {
	width: 90% !important;
	}
	
	.W95_SP {
	width: 95% !important;
	}
	
	.W100_SP {
	width: 100% !important;
	}

}

@media print, screen and (min-width: 768px) {

	.W5_PC {
	width: 5% !important;
	}
	
	.W10_PC {
	width: 10% !important;
	}
	
	.W15_PC {
	width: 15% !important;
	}
	
	.W20_PC {
	width: 20% !important;
	}
	
	.W25_PC {
	width: 25% !important;
	}
	
	.W30_PC {
	width: 30% !important;
	}
	
	.W35_PC {
	width: 35% !important;
	}
	
	.W40_PC {
	width: 40% !important;
	}
	
	.W45_PC {
	width: 45% !important;
	}
	
	.W50_PC {
	width: 50% !important;
	}
	
	.W55_PC {
	width: 55% !important;
	}
	
	.W60_PC {
	width: 60% !important;
	}
	
	.W65_PC {
	width: 65% !important;
	}
	
	.W70_PC {
	width: 70% !important;
	}
	
	.W75_PC {
	width: 75% !important;
	}
	
	.W80_PC {
	width: 80% !important;
	}
	
	.W85_PC {
	width: 85% !important;
	}
	
	.W90_PC {
	width: 90% !important;
	}
	
	.W95_PC {
	width: 95% !important;
	}
	
	.W100_PC {
	width: 100% !important;
	}

}

@media print, screen and (min-width: 1090px) {

}



/* ■ リセット ==================================================================================== */

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: 1.1rem;
line-height: 1.5em;
}

strong, em {
font-style: normal;
font-weight: bold;
}

sup,
sub {
font-size: 0.9rem;
line-height: 1.0em;
}



/* ■ 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;
}
