@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;
}



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

.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) {

}



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

/*
ディスク：大（ListDiscL）
ディスク（ListDisc）
ディスク：小（ListDiscS）
米印（ListKome）
米印：小（ListKomeS）
アスタリスク（ListStar）
アスタリスク：小（ListStarS）
連番（ListNum）
連番：小（ListNumS）
連番米印：小（ListKomeNumS）
連番アスタリスク：小（ListStarNumS）
その他1（ListOther1）
縦棒（ListLine）
*/

.ListDiscL li,
.ListDisc li,
.ListDiscS li,
.ListKome li,
.ListKomeS li,
.ListStar li,
.ListStarS li,
.ListNum li,
.ListNumS li,
.ListKomeNumS li,
.ListStarNumS li,
.ListOther1 li,
.ListLine li {
position: relative;
}

.ListDiscL li:before,
.ListDisc li:before,
.ListDiscS li:before,
.ListKome li:before,
.ListKomeS li:before,
.ListStar li:before,
.ListStarS li:before,
.ListNum li:before,
.ListNumS li:before,
.ListKomeNumS li:before,
.ListStarNumS li:before,
.ListOther1 li:before,
.ListLine 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;
}

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

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

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

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

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

/* アスタリスク（ListStar） */
.ListStar li:before {
content: '*';
}

/* アスタリスク：小（ListStarS） */
.ListStarS li:before {
content: '*';
}

/* 連番（ListNum） */
.ListNum {
counter-reset: ListNum;
}

.ListNum li:before {
counter-increment: ListNum;
content: counter(ListNum)".";
}

/* 連番：小（ListNumS） */
.ListNumS {
counter-reset: ListNumS;
}

.ListNumS li:before {
counter-increment: ListNumS;
content: counter(ListNumS)".";
}

/* 連番米印：小（ListKomeNumS） */
.ListKomeNumS {
counter-reset: ListKomeNumS;
}

.ListKomeNumS li:before {
counter-increment: ListKomeNumS;
content: "※"counter(ListKomeNumS);
}

/* 連番アスタリスク：小（ListStarNumS） */
.ListStarNumS {
counter-reset: ListStarNumS;
}

.ListStarNumS li:before {
counter-increment: ListStarNumS;
content: "*"counter(ListStarNumS);
}

/* その他1（ListOther1） */
.ListOther1 li:before {
content: '';
}

/* 縦棒（ListLine） */
.ListLine li:before {
content: '';
}

.ListLine li:after {
position: absolute;
content: '';
}



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

/* 左右 */
.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;
}



/* ■ 表組み横スクロール ==================================================================================== */

.TableScroll_All {
overflow-x: scroll;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
}

.TableScroll_All table {
min-width: 1000px;
}

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

	.TableScroll {
	overflow-x: scroll;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	}

	.TableScroll img {
    min-width: 120px;
	}

}

@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;
}



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

/*
汎用
左・右・中央 寄せ
_margin-top
_margin-bottom
_margin-left
_margin-right
_padding-top
_padding-bottom
_padding-left
_padding-right
横幅「%」指定
フォントサイズ
*/


/* 汎用 --------------------------------------------------- */

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

/* パディング無し */
.NoPadding {
padding: 0 !important;
}

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

/* 横幅「Inherit」 */
.WidthInherit {
width: inherit;
}

/* opacity:1 */
.Opacity1 {
opacity: 1 !important;
}


/* 左・右・中央 寄せ --------------------------------------------------- */

.AlignL,
.alignleft,
.has-text-align-left {
text-align: left !important;
}

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

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

/* 横幅を指定したブロック要素の中央寄せ */
.BlockC {
margin-left: auto !important;
margin-right: auto !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;
	}

}


/* _margin-top --------------------------------------------------- */

.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) {

}


/* _margin-bottom --------------------------------------------------- */

.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) {

}


/* _margin-left --------------------------------------------------- */

.ML0 {
margin-left: 0 !important;
}

.ML5 {
margin-left: 5px !important;
}

.ML10 {
margin-left: 10px !important;
}

.ML15 {
margin-left: 15px !important;
}

.ML20 {
margin-left: 20px !important;
}

.ML25 {
margin-left: 25px !important;
}

.ML30 {
margin-left: 30px !important;
}

.ML35 {
margin-left: 35px !important;
}

.ML40 {
margin-left: 40px !important;
}

.ML45 {
margin-left: 45px !important;
}

.ML50 {
margin-left: 50px !important;
}

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

	.ML0_SP {
	margin-left: 0 !important;
	}
	
	.ML5_SP {
	margin-left: 5px !important;
	}
	
	.ML10_SP {
	margin-left: 10px !important;
	}
	
	.ML15_SP {
	margin-left: 15px !important;
	}
	
	.ML20_SP {
	margin-left: 20px !important;
	}
	
	.ML25_SP {
	margin-left: 25px !important;
	}
	
	.ML30_SP {
	margin-left: 30px !important;
	}
	
	.ML35_SP {
	margin-left: 35px !important;
	}
	
	.ML40_SP {
	margin-left: 40px !important;
	}
	
	.ML45_SP {
	margin-left: 45px !important;
	}
	
	.ML50_SP {
	margin-left: 50px !important;
	}

}

@media print, screen and (min-width: 768px) {

	.ML0_PC {
	margin-left: 0px !important;
	}
	
	.ML5_PC {
	margin-left: 5px !important;
	}
	
	.ML10_PC {
	margin-left: 10px !important;
	}
	
	.ML15_PC {
	margin-left: 15px !important;
	}
	
	.ML20_PC {
	margin-left: 20px !important;
	}
	
	.ML25_PC {
	margin-left: 25px !important;
	}
	
	.ML30_PC {
	margin-left: 30px !important;
	}
	
	.ML35_PC {
	margin-left: 35px !important;
	}
	
	.ML40_PC {
	margin-left: 40px !important;
	}
	
	.ML45_PC {
	margin-left: 45px !important;
	}
	
	.ML50_PC {
	margin-left: 50px !important;
	}

}

@media print, screen and (min-width: 1090px) {

}


/* _margin-right --------------------------------------------------- */

.MR0 {
margin-right: 0 !important;
}

.MR5 {
margin-right: 5px !important;
}

.MR10 {
margin-right: 10px !important;
}

.MR15 {
margin-right: 15px !important;
}

.MR20 {
margin-right: 20px !important;
}

.MR25 {
margin-right: 25px !important;
}

.MR30 {
margin-right: 30px !important;
}

.MR35 {
margin-right: 35px !important;
}

.MR40 {
margin-right: 40px !important;
}

.MR45 {
margin-right: 45px !important;
}

.MR50 {
margin-right: 50px !important;
}

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

	.MR0_SP {
	margin-right: 0 !important;
	}
	
	.MR5_SP {
	margin-right: 5px !important;
	}
	
	.MR10_SP {
	margin-right: 10px !important;
	}
	
	.MR15_SP {
	margin-right: 15px !important;
	}
	
	.MR20_SP {
	margin-right: 20px !important;
	}
	
	.MR25_SP {
	margin-right: 25px !important;
	}
	
	.MR30_SP {
	margin-right: 30px !important;
	}
	
	.MR35_SP {
	margin-right: 35px !important;
	}
	
	.MR40_SP {
	margin-right: 40px !important;
	}
	
	.MR45_SP {
	margin-right: 45px !important;
	}
	
	.MR50_SP {
	margin-right: 50px !important;
	}

}

@media print, screen and (min-width: 768px) {

	.MR0_PC {
	margin-right: 0px !important;
	}
	
	.MR5_PC {
	margin-right: 5px !important;
	}
	
	.MR10_PC {
	margin-right: 10px !important;
	}
	
	.MR15_PC {
	margin-right: 15px !important;
	}
	
	.MR20_PC {
	margin-right: 20px !important;
	}
	
	.MR25_PC {
	margin-right: 25px !important;
	}
	
	.MR30_PC {
	margin-right: 30px !important;
	}
	
	.MR35_PC {
	margin-right: 35px !important;
	}
	
	.MR40_PC {
	margin-right: 40px !important;
	}
	
	.MR45_PC {
	margin-right: 45px !important;
	}
	
	.MR50_PC {
	margin-right: 50px !important;
	}

}

@media print, screen and (min-width: 1090px) {

}


/* _padding-top --------------------------------------------------- */

.PT0 {
padding-top: 0 !important;
}

.PT5 {
padding-top: 5px !important;
}

.PT10 {
padding-top: 10px !important;
}

.PT15 {
padding-top: 15px !important;
}

.PT20 {
padding-top: 20px !important;
}

.PT25 {
padding-top: 25px !important;
}

.PT30 {
padding-top: 30px !important;
}

.PT35 {
padding-top: 35px !important;
}

.PT40 {
padding-top: 40px !important;
}

.PT45 {
padding-top: 45px !important;
}

.PT50 {
padding-top: 50px !important;
}

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

	.PT0_SP {
	padding-top: 0 !important;
	}
	
	.PT5_SP {
	padding-top: 5px !important;
	}
	
	.PT10_SP {
	padding-top: 10px !important;
	}
	
	.PT15_SP {
	padding-top: 15px !important;
	}
	
	.PT20_SP {
	padding-top: 20px !important;
	}
	
	.PT25_SP {
	padding-top: 25px !important;
	}
	
	.PT30_SP {
	padding-top: 30px !important;
	}
	
	.PT35_SP {
	padding-top: 35px !important;
	}
	
	.PT40_SP {
	padding-top: 40px !important;
	}
	
	.PT45_SP {
	padding-top: 45px !important;
	}
	
	.PT50_SP {
	padding-top: 50px !important;
	}

}

@media print, screen and (min-width: 768px) {

	.PT0_PC {
	padding-top: 0px !important;
	}
	
	.PT5_PC {
	padding-top: 5px !important;
	}
	
	.PT10_PC {
	padding-top: 10px !important;
	}
	
	.PT15_PC {
	padding-top: 15px !important;
	}
	
	.PT20_PC {
	padding-top: 20px !important;
	}
	
	.PT25_PC {
	padding-top: 25px !important;
	}
	
	.PT30_PC {
	padding-top: 30px !important;
	}
	
	.PT35_PC {
	padding-top: 35px !important;
	}
	
	.PT40_PC {
	padding-top: 40px !important;
	}
	
	.PT45_PC {
	padding-top: 45px !important;
	}
	
	.PT50_PC {
	padding-top: 50px !important;
	}

}

@media print, screen and (min-width: 1090px) {

}


/* _padding-bottom --------------------------------------------------- */

.PB0 {
padding-bottom: 0 !important;
}

.PB5 {
padding-bottom: 5px !important;
}

.PB10 {
padding-bottom: 10px !important;
}

.PB15 {
padding-bottom: 15px !important;
}

.PB20 {
padding-bottom: 20px !important;
}

.PB25 {
padding-bottom: 25px !important;
}

.PB30 {
padding-bottom: 30px !important;
}

.PB35 {
padding-bottom: 35px !important;
}

.PB40 {
padding-bottom: 40px !important;
}

.PB45 {
padding-bottom: 45px !important;
}

.PB50 {
padding-bottom: 50px !important;
}

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

	.PB0_SP {
	padding-bottom: 0 !important;
	}
	
	.PB5_SP {
	padding-bottom: 5px !important;
	}
	
	.PB10_SP {
	padding-bottom: 10px !important;
	}
	
	.PB15_SP {
	padding-bottom: 15px !important;
	}
	
	.PB20_SP {
	padding-bottom: 20px !important;
	}
	
	.PB25_SP {
	padding-bottom: 25px !important;
	}
	
	.PB30_SP {
	padding-bottom: 30px !important;
	}
	
	.PB35_SP {
	padding-bottom: 35px !important;
	}
	
	.PB40_SP {
	padding-bottom: 40px !important;
	}
	
	.PB45_SP {
	padding-bottom: 45px !important;
	}
	
	.PB50_SP {
	padding-bottom: 50px !important;
	}

}

@media print, screen and (min-width: 768px) {

	.PB0_PC {
	padding-bottom: 0px !important;
	}
	
	.PB5_PC {
	padding-bottom: 5px !important;
	}
	
	.PB10_PC {
	padding-bottom: 10px !important;
	}
	
	.PB15_PC {
	padding-bottom: 15px !important;
	}
	
	.PB20_PC {
	padding-bottom: 20px !important;
	}
	
	.PB25_PC {
	padding-bottom: 25px !important;
	}
	
	.PB30_PC {
	padding-bottom: 30px !important;
	}
	
	.PB35_PC {
	padding-bottom: 35px !important;
	}
	
	.PB40_PC {
	padding-bottom: 40px !important;
	}
	
	.PB45_PC {
	padding-bottom: 45px !important;
	}
	
	.PB50_PC {
	padding-bottom: 50px !important;
	}

}

@media print, screen and (min-width: 1090px) {

}


/* _padding-left --------------------------------------------------- */

.PL0 {
padding-left: 0 !important;
}

.PL5 {
padding-left: 5px !important;
}

.PL10 {
padding-left: 10px !important;
}

.PL15 {
padding-left: 15px !important;
}

.PL20 {
padding-left: 20px !important;
}

.PL25 {
padding-left: 25px !important;
}

.PL30 {
padding-left: 30px !important;
}

.PL35 {
padding-left: 35px !important;
}

.PL40 {
padding-left: 40px !important;
}

.PL45 {
padding-left: 45px !important;
}

.PL50 {
padding-left: 50px !important;
}

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

	.PL0_SP {
	padding-left: 0 !important;
	}
	
	.PL5_SP {
	padding-left: 5px !important;
	}
	
	.PL10_SP {
	padding-left: 10px !important;
	}
	
	.PL15_SP {
	padding-left: 15px !important;
	}
	
	.PL20_SP {
	padding-left: 20px !important;
	}
	
	.PL25_SP {
	padding-left: 25px !important;
	}
	
	.PL30_SP {
	padding-left: 30px !important;
	}
	
	.PL35_SP {
	padding-left: 35px !important;
	}
	
	.PL40_SP {
	padding-left: 40px !important;
	}
	
	.PL45_SP {
	padding-left: 45px !important;
	}
	
	.PL50_SP {
	padding-left: 50px !important;
	}

}

@media print, screen and (min-width: 768px) {

	.PL0_PC {
	padding-left: 0px !important;
	}
	
	.PL5_PC {
	padding-left: 5px !important;
	}
	
	.PL10_PC {
	padding-left: 10px !important;
	}
	
	.PL15_PC {
	padding-left: 15px !important;
	}
	
	.PL20_PC {
	padding-left: 20px !important;
	}
	
	.PL25_PC {
	padding-left: 25px !important;
	}
	
	.PL30_PC {
	padding-left: 30px !important;
	}
	
	.PL35_PC {
	padding-left: 35px !important;
	}
	
	.PL40_PC {
	padding-left: 40px !important;
	}
	
	.PL45_PC {
	padding-left: 45px !important;
	}
	
	.PL50_PC {
	padding-left: 50px !important;
	}

}

@media print, screen and (min-width: 1090px) {

}


/* _padding-right --------------------------------------------------- */

.PR0 {
padding-right: 0 !important;
}

.PR5 {
padding-right: 5px !important;
}

.PR10 {
padding-right: 10px !important;
}

.PR15 {
padding-right: 15px !important;
}

.PR20 {
padding-right: 20px !important;
}

.PR25 {
padding-right: 25px !important;
}

.PR30 {
padding-right: 30px !important;
}

.PR35 {
padding-right: 35px !important;
}

.PR40 {
padding-right: 40px !important;
}

.PR45 {
padding-right: 45px !important;
}

.PR50 {
padding-right: 50px !important;
}

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

	.PR0_SP {
	padding-right: 0 !important;
	}
	
	.PR5_SP {
	padding-right: 5px !important;
	}
	
	.PR10_SP {
	padding-right: 10px !important;
	}
	
	.PR15_SP {
	padding-right: 15px !important;
	}
	
	.PR20_SP {
	padding-right: 20px !important;
	}
	
	.PR25_SP {
	padding-right: 25px !important;
	}
	
	.PR30_SP {
	padding-right: 30px !important;
	}
	
	.PR35_SP {
	padding-right: 35px !important;
	}
	
	.PR40_SP {
	padding-right: 40px !important;
	}
	
	.PR45_SP {
	padding-right: 45px !important;
	}
	
	.PR50_SP {
	padding-right: 50px !important;
	}

}

@media print, screen and (min-width: 768px) {

	.PR0_PC {
	padding-right: 0px !important;
	}
	
	.PR5_PC {
	padding-right: 5px !important;
	}
	
	.PR10_PC {
	padding-right: 10px !important;
	}
	
	.PR15_PC {
	padding-right: 15px !important;
	}
	
	.PR20_PC {
	padding-right: 20px !important;
	}
	
	.PR25_PC {
	padding-right: 25px !important;
	}
	
	.PR30_PC {
	padding-right: 30px !important;
	}
	
	.PR35_PC {
	padding-right: 35px !important;
	}
	
	.PR40_PC {
	padding-right: 40px !important;
	}
	
	.PR45_PC {
	padding-right: 45px !important;
	}
	
	.PR50_PC {
	padding-right: 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) {

}


/* フォントサイズ --------------------------------------------------- */

.FontSize50 {
font-size: 50% !important;
}

.FontSize60 {
font-size: 60% !important;
}

.FontSize70 {
font-size: 70% !important;
}

.FontSize80 {
font-size: 80% !important;
}

.FontSize90 {
font-size: 90% !important;
}

.FontSize100 {
font-size: 100% !important;
}

.FontSize110 {
font-size: 110% !important;
}

.FontSize120 {
font-size: 120% !important;
}

.FontSize130 {
font-size: 130% !important;
}

.FontSize140 {
font-size: 140% !important;
}

.FontSize150 {
font-size: 150% !important;
}

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

	.FontSize50_SP {
	font-size: 50% !important;
	}
	
	.FontSize60_SP {
	font-size: 60% !important;
	}
	
	.FontSize70_SP {
	font-size: 70% !important;
	}
	
	.FontSize80_SP {
	font-size: 80% !important;
	}
	
	.FontSize90_SP {
	font-size: 90% !important;
	}
	
	.FontSize100_SP {
	font-size: 100% !important;
	}
	
	.FontSize110_SP {
	font-size: 110% !important;
	}
	
	.FontSize120_SP {
	font-size: 120% !important;
	}
	
	.FontSize130_SP {
	font-size: 130% !important;
	}
	
	.FontSize140_SP {
	font-size: 140% !important;
	}
	
	.FontSize150_SP {
	font-size: 150% !important;
	}

}

@media print, screen and (min-width: 768px) {

	.FontSize50_PC {
	font-size: 50% !important;
	}
	
	.FontSize60_PC {
	font-size: 60% !important;
	}
	
	.FontSize70_PC {
	font-size: 70% !important;
	}
	
	.FontSize80_PC {
	font-size: 80% !important;
	}
	
	.FontSize90_PC {
	font-size: 90% !important;
	}
	
	.FontSize100_PC {
	font-size: 100% !important;
	}
	
	.FontSize110_PC {
	font-size: 110% !important;
	}
	
	.FontSize120_PC {
	font-size: 120% !important;
	}
	
	.FontSize130_PC {
	font-size: 130% !important;
	}
	
	.FontSize140_PC {
	font-size: 140% !important;
	}
	
	.FontSize150_PC {
	font-size: 150% !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: 1.1rem;
line-height: 1.5em;
}

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

sup,
sub {
margin-left: 2px;
font-size: 1.1rem;
line-height: 1.0em;
}

sub {
position: relative;
bottom: 0.2em;
}



/* ■ 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;
}
