@charset "utf-8";
/* CSS Document */

/* 複数ページに共通で使う予定ものＣＳＳ ---------------------------------

追加自由ですが閉じ忘れなどご注意ください。

2017年10月某日

---------------------------------------------------------------------*/
/*	フォント100%表示	*/
html {
font-size: 62.5%;
height: 100%;
}

body {
      -webkit-text-size-adjust: 100%;
		font-size: 16px;
		font-size: 1.6rem;
	background-color: #fff;
font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ  Medium', meiryo, sans-serif;
height: 100%;
    }

@media screen and (min-width: 769px) {
	body {
	background-color: #f9f9f9;
	}
}

header { display:block;}


.ylgrn {
	color: #dbdf5b;
}


html { font-size: 62.5%; }




 
/* clearfix関連 */
div:after,
ul:after {
    content: "";
    display: block;
    clear: both;
}

/* フロートクリア */
.clear {
	clear: both;
}
.clearfix:after {
    content: "";
    clear: both;
    display: block;
}

/*テーブルのセル */
.table-cell {
	display: table;
	margin: auto;
}
.table-cell li {
	display: table-cell;
}

/* 画像ファイル */
/* とにかく画面いっぱいにMAX表示 */
.maximg {
width:100%;
max-width: 100%;
height: auto;
}

/* 本来の画像サイズまで。サイズが縮まる場合のみ自動縮小 */
.maxspimg {
max-width: 100%;
height: auto;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}


/* 透過(ロールオーバー時)*/
a:hover img { 
-ms-filter: "alpha( opacity=50 )";
filter: alpha( opacity=50 );
opacity: 0.5;
	-moz-opacity: 0.50;
}

/* ---　見えなく　----*/
.none {
	display: none;
	padding: 0;
	margin: 0;
}
a {
/*display: block; */
max-width: 100%;
max-height: 100%;
}

img {
	max-width: 100%;
	height: auto;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}


/* ====================================================

操作性を挙げる

====================================================== */
label {
cursor: pointer;
}

input[type=checkbox] {
    width: 22px;
    height: 22px;
    vertical-align: middle;
  -moz-transform-origin: right bottom;
  -moz-transform: scale( 2 , 2 );
}
input[type=radio] {
    width: 22px;
    height: 22px;
    vertical-align: middle;
  -moz-transform-origin: right bottom;
  -moz-transform: scale( 2 , 2 );
}




/* ----------------------------------------------------

padding　の初期設定

------------------------------------------------------ */

/* ボックス内のパディング */

.boxpd10 {
padding: 10px;
}
.boxpd15 {
padding: 15px;
}
.boxpd20 {
padding: 20px;
}

.border1s0 {
	border: 1px solid #000;
}
.border1sc {
	border: 1px solid #ccc;
}
.border1doc {
	border: 1px dotted #ccc;
}
.border1sb {
	border: 1px solid #0c7eb8;
}

/* ----------------------------------------------------

padding　の初期設定

------------------------------------------------------ */

/* 全体 */

.pdg0 {
padding: 0;
}
.pdg1 {
padding: 1px;
}
.pdg2 {
padding: 2px;
}
.pdg3 {
padding: 3px;
}
.pdg4 {
padding: 4px;
}
.pdg5 {
padding: 5px;
}
.pdg8 {
padding: 5px;
}
.pdg10 {
padding: 10px;
}
.pdg15 {
padding: 15px;
}
.pdg20 {
padding: 20px;
}


/* 上面のみ */


.pdt5 {
	padding-top: 5px;
}
.pdt10 {
	padding-top: 10px;
}
.pdt15 {
	padding-top: 15px;
}
.pdt20 {
	padding-top: 20px;
}
.pdt25 {
	padding-top: 25px;
}
.pdt30 {
	padding-top: 30px;
}

/* 下面のみ */
.pdb5 {
	padding-bottom: 5px;
}
.pdb10 {
	padding-bottom: 10px;
}
.pdb15 {
	padding-bottom: 15px;
}
.pdb20 {
	padding-bottom: 20px;
}
.pdb25 {
	padding-bottom: 25px;
}
.pdb30 {
	padding-bottom: 30px;
}

/* paddingの左 */

.pdl5 {
	padding-left: 5px;
}
.pdl10 {
	padding-left: 10px;
}
.pdl15 {
	padding-left: 15px;
}
.pdl20 {
	padding-left: 20px;
}
.pdl25 {
	padding-left: 25px;
}
.pdl30 {
	padding-left: 30px;
}

/* paddingの右 */

.pdr5 {
	padding-right: 5px;
}
.pdr10 {
	padding-right: 10px;
}
.pdr15 {
	padding-right: 15px;
}
.pdr20 {
	padding-right: 20px;
}
.pdr25 {
	padding-right: 25px;
}
.pdr30 {
	padding-right: 30px;
}


/* ----------------------------------------------------

margin　の初期設定

------------------------------------------------------ */

/* 全体 */

.mgn0 {
margin: 0;
}
.mgn1 {
margin: 1px;
}
.mgn2 {
margin: 2px;
}
.mgn3 {
margin: 3px;
}
.mgn4 {
margin: 4px;
}
.mgn5 {
margin: 5px;
}
.mgn10 {
margin: 10px;
}

/* 上面のみ */

.mgt5 {
	margin-top: 5px;
}
.mgt10 {
	margin-top: 10px;
}
.mgt15 {
	margin-top: 15px;
}
.mgt20 {
	margin-top: 20px;
}
.mgt25 {
	margin-top: 25px;
}
.mgt30 {
	margin-top: 30px;
}
.mgt50 {
margin-top: 50px;
}
.mgt60 {
margin-top: 60px;
}
.mgt85 {
margin-top: 85px;
}

/* 下面のみ */
.mgb5 {
	margin-bottom: 5px;
}
.mgb8 {
	margin-bottom: 8px;
}
.mgb10 {
	margin-bottom: 10px;
}
.mgb15 {
	margin-bottom: 15px;
}
.mgb20 {
	margin-bottom: 20px;
}
.mgb25 {
	margin-bottom: 25px;
}
.mgb30 {
	margin-bottom: 30px;
}


/* 左面 */
.mgl5 {
	margin-left: 5px;
}
.mgl10 {
	margin-left: 10px;
}
.mgl15 {
	margin-left: 15px;
}
.mgl20 {
	margin-left: 20px;
}
.mgl25 {
	margin-left: 25px;
}
.mgl30 {
	margin-left: 30px;
}

/* 右面 */
.mgr5 {
	margin-right: 5px;
}
.mgr10 {
	margin-right: 10px;
}
.mgr15 {
	margin-right: 15px;
}
.mgr20 {
	margin-right: 20px;
}
.mgr25 {
	margin-right: 25px;
}
.mgr30 {
	margin-right: 30px;
}

/* auto */
.mg0auto {
margin: 0 auto;
}
.mg10auto {
margin: 10px auto;
}
.mg20auto {
margin: 20px auto;
}
.mg30auto {
margin: 30px auto;
}

/* 大体これで強制でセンター寄せ */
.mauto_center {
margin-left: auto;
margin-right: auto;
}


/* 全部0 */
.m0p0 {
padding: 0;
margin: 0;
}
.m0p0 img {
vertical-align: bottom; 
}




/* フロートなど位置 とカラム */
.cen {
	text-align: center;
}

.right {
	text-align: right;
}
.left {
	text-align: left;
}

.floatl {
	float: left;
}
.floatr {
	float: right;
}

/* ポジション */
.abslt {
	position: absolute;
}
.rltv {
	position: relative;
}
.fxd {
	position: fixed;
}

/* z-index */

.zi1 {
	z-index: 1;
}
.zi2 {
	z-index: 2;
}
.zi3 {
	z-index: 3;
}




/* カラム 中央揃え */

.clm_between {
    display:-webkit-box;
    display:-moz-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-pack:justify;
    -moz-box-pack:justify;
    -webkit-flex-pack:justify;
    -moz-flex-pack:justify;
    -ms-flex-pack:justify;
    -webkit-justify-content:space-between;
    -moz-justify-content:space-between;
    justify-content:space-between;
}
.flexiblebox {
 display: -webkit-flex;
 display: flex;
 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
 align-items: center; /* 縦方向中央揃え */
 -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
 justify-content: center; /* 横方向中央揃え */
 -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex2box {
 display: -webkit-flex;
 display: flex;
 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
 align-items: center; /* 縦方向中央揃え */
 -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
 justify-content: center; /* 横方向中央揃え */
 -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flexiblebox_start {
 display: -webkit-flex;
 display: flex;
 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
 align-items: center; /* 縦方向中央揃え */
 -webkit-justify-content: flex-start; /* 横方向左揃え（Safari用） */
 justify-content: flex-start; /* 横方向左揃え */
 -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex_mc {
  display: flex;
  justify-content: center;
  align-items: center;	
}

.flex_end {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:end;
  -ms-flex-pack:end;
  justify-content:flex-end;
}

.flex-parent {
  display: flex;
  flex-wrap: nowrap;
  margin: 0 calc(0 / 2 * -1);
}
.flex-child {
  flex: 1;
  margin: 0 calc(0 / 2);
}

.flex-wide {
  flex: 2;
}
@media screen and (max-width: 480px) {
.flex-break {
	display:block;
 	clear: both;
	margin: 0 auto;
	width: 96%;
}
}

/* 2カラムの割り振り */
.clm2blk {
	width: 49%;
	float: left;
}
/* 2カラムの割り振り */
@media screen and (max-width: 480px) {
.clm2blk {
	width: 96%;
	float: none;
	margin: 0 auto;
}
}
/* 3カラムの割り振り */
.clm3blk {
    float: left;
    width: 33.3%;
}
/* 3カラムの３分の2 */
.clm3_2blk {
	float: left;
	width: 66.6%;
}
.clmpcsp li {
    float: left;
	margin: 0 2px;
	text-align: center;
}

@media screen and (max-width: 480px) {
	.clmpcsp li {
			margin: 0 1%;
			width: 48%;
	}
/* 3カラムの割り振り */
.clm3blk {
    float: none;
    width: 96%;
	margin: 0 auto;
}
/* 3カラムの３分の2 */
.clm3_2blk {
    float: none;
    width: 96%;
	margin: 0 auto;
}
}

.pc2sp1 {
	width: 50%;
	float: left;
	max-width: 480px;
}
@media screen and (max-width: 480px) {
.pc2sp1 {
	width: 100%;
	float: none;
}
}

/* --------------------------
 grid layout 
-------------------------- */


.grid_box, .grid_box_spb {
	display: grid;
	gap: 10px;
}

.gd_r2 {
	grid-row: 1 / 2;
}
.gd_r3 {
	grid-row: 1 / 3;
}
.gd_r4 {
	grid-row: 1 / 4;
}
.gd_c2 {
	grid-column: 1 / 2;
}
.gd_c3 {
	grid-column: 1 / 3;
}

/* スマホブレイク */
.spb_gd_r2 {
	grid-row: 1 / 2;
}
.spb_gd_r3 {
	grid-row: 1 / 3;
}
.spb_gd_r4 {
	grid-row: 1 / 4;
}
.spb_gd_c2 {
	grid-column: 1 / 2;
}
.spb_gd_c3 {
	grid-column: 1 / 3;
}
.spb_gd_c4 {
	grid-column: 1 / 4;
}
@media screen and (max-width: 480px) {
	.spb_gd_r4{
	grid-row: 1 / 2;

	}
}


/* リンク */
 a {
	 color: #000;
   -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
	 text-decoration: none;
}
a img {
border: none;
}

.cts_inner a:hover {
	color: #B40003;
}

/* 画像のrolloverイメージ */

.nextstyle {
	width: 40%;
    font-size:1.8rem;
    font-weight:bold;
    text-decoration:none;
    display:block;
    text-align:center;
    padding:10px;
    border-radius:5px;
    box-shadow:2px 2px #AAAAAA;
	border: 1px solid #cccccc;
	margin-left: auto;
}
.nextstyle a {
	display: block;
}

.nextstyle_cen {
	width: 75%;
    font-size:1.8rem;
    font-weight:bold;
    text-decoration:none;
    display:block;
    text-align:center;
    padding:10px;
    border-radius:5px;
    box-shadow:2px 2px #AAAAAA;
	border: 1px solid #cccccc;
	margin: 0 auto;
}
.nextstyle_cen a {
	display: block;
}
.backstyle {
	width: 40%;
    font-size:1.8rem;
    font-weight:bold;
    text-decoration:none;
    display:block;
    text-align:center;
    padding:10px;
    border-radius:5px;
    box-shadow:2px 2px #AAAAAA;
	border: 1px solid #cccccc;
	margin-right: auto;
}
.backstyle a {
	display: block;
}
.linkstyle {
    font-size:1.8rem;
    text-decoration:none;
    display:block;
    text-align:center;
    padding:10px;
    border-radius:5px;
    box-shadow:2px 2px #AAAAAA;
	border: 1px solid #cccccc;
	font-weight: normal;
}
.linkstyle a {
	display: block;
	width: 100%;
}
.inl_blk {
	display: inline-block;
}

/* ボタン2列 */
.btn_half {
	width: 46%;
    font-size:1.8rem;
    font-weight:bold;
    text-decoration:none;
    display:block;
    text-align:center;
    border-radius:5px;
    box-shadow:2px 2px #AAAAAA;
	border: 1px solid #cccccc;
	margin: 1% auto;
}

.btn_half_blue a {
	max-width: 80%;
    font-size:1.8rem;
    font-weight:bold;
    text-decoration:none;
    display:block;
	background: #264FAC;
	color: #fff;
    text-align:center;
    border-radius:5px;
    box-shadow:2px 2px #AAAAAA;
	border: 1px solid #cccccc;
	margin: 1% auto;
}
.btn_half_blue a:hover {
	color: #eeeeee;
	background: #2E69A0;
}


/*  ---------------------------------------

色指定 

-----------------------------------------*/
.pnk {
	color: #ff3e94;
}
.red {
	color: #c00;
}
.blu {
	color: #22438E;
}
.ylw {
	color: #FFDD00;
}
.ylw2 {
	color: #fff043;
}
.org {
	color: #FF6E00;
}
.pnk {
	color:#FF65C5;
}
.bwn {
	color:#522B0D;
}
.wblu {
	color: aqua;
}
.wht {
	color:  #FFFFFF;
}

/* クリア カラー */
/* ---  CLEAR BLUE ------------- */
.clrblue {
	color: #3eabc1;
}
/* ----- PALE BLUE --------------- */
.plblue {
	color: #6cc9c8;
}



/* -------------------------------------------------------------

背景パターン

------------------------------------------------------------------- */
.bggrd_gry {
	 background: linear-gradient(#FFFFFF, #F1F1F1);
}
.bg_bk {
	 background: #333333;
}
.bg_gry {
	 background: #F1F1F1;
}
.bg_gryv2 {
    background-image: linear-gradient(to bottom,#ecebdb 0%,#ffffff 100%);
}
.bg_pnk {
	 background: #ff3e94;
}
.bg_pnk2 {
	background: #f06594;
}

.bg_pstlorg {
background-color: #ffecbd;
}
.bg_pstlwb {
background-color: #DBE8F0;
}
.bg_pstlbrwn {
	background-color: #8b7762;
}
.bg_wht {
	background: #ffffff;
}
.bg_grn {
	background:  #185F1C;
}
.bg_org {
	background: #ffaa05;
}
.bg_dorg {
	background: rgba(255,79,0,1.00);
}
.bg_veige {
	background-color: #eee7d4;
}
.bg_pstlgrn {
background-color: #D0E0AC;
}
.bg_pstlpnk {
background: #ffeaea;
}
.bg_pstlpnk2 {
	background: #feb1cb;
}
.bg_pstlpnk3 {
	background: #ff7ea9;
}

.bg_blgrn {
background: #165a66;
}

.bg_wht {
background-color: #fff;
}
.bg_navy {
background: #16256B;
}

.bg_red {
background-color: #ab3431;
}

.bg_ska_gr {
background-color: #01b258;
}

.bg_ska_st {
background-color: #c4ea79;
}

.bg_ska_hd {
background-color: #ffefb6;
}

.bg_se_gr {
background-color: #13afa2;
}
.bg_fwagon {
background-color: #4A83DE;
}

.bg_blu {
	background-color: #1571D3;
}

.bg_ygrn {
	background-color: #99bd20;
}

/* 丸み */
.bdr_rds3 {
	border-radius: 3px;
}
.bdr_rds5 {
	border-radius: 5px;
}
.bdr_rds10 {
	border-radius: 10px;
}
.bdr_rds50{
  border-radius: 50%;
}


/* ストライプ */
.bgstripe {
/*ここで背景のベースカラーを指定する*/
background-color: #f3f3f3;
/*ここでCSS3のグラデーションをつかってストライプのパターン・色を指定する
（※色を変える場合は#fffffffの部分を変更）*/
background-image: -webkit-gradient(linear, 0 0, 100% 100%,color-stop(.25, #ffffff), color-stop(.25, transparent),color-stop(.5, transparent), color-stop(.5, #ffffff),color-stop(.75, #ffffff), color-stop(.75, transparent),to(transparent));
/*ここでパターンの大きさを指定する
（※数字によってはストライプのグラデーションがずれるので注意）*/
-webkit-background-size: 6px 6px;
}


/* ULリスト */
.ul_cen li {
text-align: center;
}

/*  margin */

.ul_mglr1 li {
margin: 0 1px;
}
.ul_mglr2 li {
margin: 0 2px;
}
.ul_mglr3 li {
margin: 0 3px;
}
.ul_mglr4 li {
margin: 0 4px;
}
.ul_mglr5 li {
margin: 0 5px;
}
.ul_mglr10 li {
margin: 0 10px;
}
.ul_mglr20 li {
margin: 0 20px;
}




/* タイトルバー ------------------------------------
背景　
-----------------------------------------*/

.bar_ptn1 {
background: url(../images/cmn/08br_grdptn01_80-78.png) repeat-x;
height: 43px;
font-size: 2.8rem;
font-size: 28px;
padding: 35px 0 0 15px;
}

.bar_ptn2 {
background: url(../images/cmn/08br_grdptn02_80-69.png) repeat-x;
height: 49px;
font-size: 2.8rem;
font-size: 28px;
padding: 20px 0 0 15px;
}

/* タイトル */
.bar_ptn3 {
	background-image: url("https://jfta-clear.com/images/lesson/parsonal/07bk_pltitle01_35-89.png");
	background-repeat: repeat-x;
	padding: 25px 0 15px 0;
	height: 49px;
	font-size: 31px;
	font-size: 3.1rem;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
	text-align: center;
	margin-bottom: 30px;
}





/*　border  ----------------------------------------

線　ボーダー

-------------------------------------- */
hr {
border:dotted #24408f;
border-width:1px 0px 0px 0px;
height:1px;
overflow:hidden;
margin:12px 0;
clear:both;
}
hr.hrwht {
border:dotted #ffffff;
border-width:1px 0px 0px 0px;
height:1px;
overflow:hidden;
margin:12px 0;
clear:both;
}

.bdr1 {
	border: 1px solid #cbc8c8;
}


hr.hr_grd {
    border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
    background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
    background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
    background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
}
hr.hr_enbs {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
/* 取り消し線 */
.line_st {
	text-decoration: line-through;
}


/* ボーダー  1px 全体  */

.bdr1 {
	border: 1px solid #cbc8c8;
}

.bdr_bk {
	border: 1px solid #000;
}
.bdr_red {
	border: 1px solid #c00;
}
.bdr_gry {
border: 1px solid #ccc;
}
.bdr_blu{
border: 1px solid #0c7eb8;
}
.bdr_wht{
border: 1px solid #ffffff;
}
.bdr_dot_bk {
	border: 1px dotted #000;
}
.bdr_dot_gry {
	border: 1px dotted #ccc;
}

/* ボーダー　ボトム */
.bdr_b_bk {
	border-bottom: 1px solid #000;
}
.bdr_b_gry {
	border-bottom: 1px solid #ccc;
}
.bdr_b_wht {
	border-bottom: 1px solid #fff;
}
.bdr_b_dot_gry {
	border-bottom: 1px dotted #ccc;
}
.bdr_b_blu {
	border-bottom: 1px solid #0c7eb8;
}
.bdr_b_blu5 {
	border-bottom: 5px solid #0c7eb8;
}

/* ボーダー　左だけ */

.bdr_l1blu {
	border-left: 3px solid #22438E;
	padding-left: 10px;
}

.bdr_l_bk {
	border-left: 1px solid #000;
}
.bdr_l_gry {
	border-right: 1px solid #ccc;
}

.bdr_l_blu {
	border-left: 10px solid #0c7eb8;
}

/* ボーダー　右だけ */

.bdr_r_bk {
	border-right: 1px solid #000;
}
.bdr_r_gry {
	border-right: 1px solid #ccc;
}

/* ボーダー　↑だけ */


.bdr_t_bk {
	border-top: 1px solid #000;
}
.bdr_t_dred {
	border-top: 3px solid #8c0000;
}
.bdr_t_gr {
	border-top: 5px solid #0B7046;
}
.bdr_t_blu {
	border-top: 1px solid #0c7eb8;
}
.bdr_t_blu5 {
	border-top: 5px solid #0c7eb8;
}

/* 丸み */
.bdr_rds3 {
	border-radius: 3px;
}
.bdr_rds5 {
	border-radius: 5px;
}
.bdr_rds10 {
	border-radius: 10px;
}


/* 差し替え前 */
.border1s0 {
	border: 1px solid #000;
}
.border1sc {
	border: 1px solid #ccc;
}
.border1doc {
	border: 1px dotted #ccc;
}

/* 丸み */
.bdr_rds3 {
	border-radius: 3px;
	}
/* 影 */
.shadow {
    padding: 20px;
    border: 1px solid #f0f0f0;
    -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow:0 3px 5px rgba(0, 0, 0, 0.3);
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#777777, direction=0, strength=3, enabled=true);
    /* IE以外なら丸角も！ */
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.shadow_df {
    -moz-box-shadow: 0 3px 3px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, .1);
    box-shadow:0 3px 3px rgba(0, 0, 0, 0.1);
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee, direction=0, strength=3, enabled=true);

}



/*　font style  ----------------------------------------

文字
----------------------------------------------------*/
.f8 {
	font-size: .8rem;
	font-size: 8px;
}
.f10 {
	font-size: 1.0rem;
	font-size: 10px;
}
.f11 {
	font-size: 1.1rem;
	font-size: 11px;
}
.f12 {
	font-size: 1.2rem;
	font-size: 12px;
}
.f13 {
	font-size: 1.3rem;
	font-size: 13px;
}
.f14 {
	font-size: 1.4rem;
	font-size: 14px;
}
.f16 {
	font-size: 1.6rem;
	font-size: 16px;
}
.f18 {
	font-size: 1.8rem;
	font-size: 18px;
}
.f20 {
	font-size: 2.0rem;
	font-size: 20px;
}
.f21 {
	font-size: 2.1rem;
	font-size: 21px;
}
.f24 {
	font-size: 2.4rem;
	font-size: 24px;
}
.f26 {
	font-size: 2.6rem;
	font-size: 26px;
}
.f28 {
	font-size: 2.8rem;
	font-size: 28px;
}
.f31 {
	font-size: 3.1rem;
	font-size: 31px;
}
.f36 {
	font-size: 3.6rem;
	font-size: 36px;
}
.f48 {
	font-size: 4.8rem;
	font-size: 48px;
}
.f60 {
	font-size: 6.0rem;
	font-size: 60px;
}
/* weight */

.no {
	font-weight: normal;
}
.b {
	font-weight: bold;
}
.ul {
	text-decoration: underline;
}
.lt {
	text-decoration: line-through;
}


/* 行間 */
.lh12 {
line-height: 1.2rem;
}
.lh14 {
line-height: 1.4rem;
}
.lh16 {
line-height: 1.6rem;
}
.lh18 {
line-height: 1.8rem;
}
.lh21 {
line-height: 2.1rem;
}
.lh24 {
line-height: 2.4rem;
}
.lh27 {
line-height: 2.7rem;
}
.lh30 {
line-height: 3.0rem;
}
.lh33 {
line-height: 3.3rem;
}
.lh36 {
line-height: 3.6rem;
}
.lh40 {
line-height: 4.0rem;
}
.lh42 {
line-height: 4.2rem;
}

/* ----------------------------------------------------

width　の初期設定

------------------------------------------------------ */
.maxw100 {
	max-width: 100%;
}
.maxw400 {
	max-width: 400px;
}


.w100 {
	width: 100%;
}
.w98 {
	width: 98%;
}
.w96 {
	width: 96%;
}
.w94 {
	width: 94%;
}
.w92 {
	width: 92%;
}
.w90 {
	width: 90%;
}
.w88 {
	width: 88%;
}
.w86 {
	width: 86%;
}
.w84 {
	width: 90%;
}
.w82 {
	width: 88%;
}
.w80 {
	width: 80%;
}


.w70 {
	width: 70%;
}
.w60 {
	width: 60%;
}
.w50 {
	width: 50%;
}

.w49 {
	width: 49%;
}

.w48 {
	width: 48%;
}
.w46 {
	width: 46%;
}
.w45 {
	width: 45%;
}
.w43 {
	width: 43%;
}
.w40 {
	width: 40%;
}

.w30 {
	width: 30%;
}

.w20 {
	width: 20%;
}

.w19 {
	width: 19%;
}


/* widthのサイズ指定 */
.w1000 {
	max-width: 1000px;
}

@media screen and (max-width: 768px) {
	.w40 {
		width: 100%;
	}

	.w30 {
		width: 100%;
	}

	.w20 {
		width: 100%;
	}

	.w19 {
		width: 100%;
	}
}



/* ----------------------------------------------------

height　の初期設定

------------------------------------------------------ */
.h100 {
height: 100%;
}

/* ------ full　の初期設定 -------- */

.full {
width: 100%;
height: 100%;
}


/* -------------------------

display要素

----------------------------- */

.dis_b {
display: block;
}
.dis_b_sp {
display: inline;
}
@media screen and (max-width: 480px) {
.dis_b_sp {
display: block;
}
}
.dis_ib {
display: inline-block;
}
.dis_inh {
display: inherit;
}

.dis_tbl {
display: table;
}

/* 表示非表示 */ /* 480px以下　の表示非表示 */
@media screen and (max-width: 480px) {
	.spopen {
		display: block;
	}
	.spnone {
		display: none;
	}
}
/* 481px以上は非表示にするタグ */
@media screen and (min-width:481px) {
	.spopen {
		display: none;
	}
	.spnone {
		display: block;
	}
}
/* 481px以上は非表示にするタグ */
@media screen and (min-width: 481px) {
	.spopen {
		display: none;
	}
}
/* 960px以下は非表示にするタグ */
@media screen and (max-width: 960px) {
	.tbopen {
		display: contents;
	}
	.tbnone {
		display: none;
	}
}
/* 960px以下は非表示にするタグ */
@media screen and (min-width: 961px) {
	.tbopen {
		display: none;
	}
	.tbnone {
		display: contents;
	}
}


/* 1024px以上は非表示にするタグ */
@media screen and (max-width: 1024px) {
	.responsive_pc {
		display: block;
	}
	.responsive_pc {
		display: none;
	}
}
/* 1025px以下は非表示にするタグ */
@media screen and (min-width: 1025px) {
	.responsive_sp {
		display: block;
		}
	.responsive_sp {
		display: none;
	}
}


/* =======================

タブメニュー

========================= */

.tabcontent {
  height: auto;
  display: none;
}

.tabcontent:target {
  display: block;
}

/* ULリスト */
.ul_cen li {
text-align: center;
}
.ul_mglr1 li {
margin: 0 1px;
}
.ul_mglr2 li {
margin: 0 2px;
}
.ul_mglr3 li {
margin: 0 3px;
}
.ul_mglr4 li {
margin: 0 4px;
}
.ul_mglr5 li {
margin: 0 5px;
}
.ul_mglr10 li {
margin: 0 10px;
}
.ul_mglr20 li {
margin: 0 20px;
}

.ul_mg2 li {
margin: 0 2px;
}

/* page-top */
#page_top{
  width: 30px;
  height: 30px;
  position: fixed;
  right: 10px;
  bottom: 30px;
  background: #ef3f98;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.page-top
{
	margin: 0 ;
	padding: 0 ;
}
.page-top p
{
	margin: 0 ;
	padding: 0 ;

	position: fixed ;
	right: 16px ;
	bottom: 16px ;
}
.move-page-top
{
	display: block ;
	background:#30b9ed;
	width: 50px ;
	height: 50px ;
	color: #fff ;
	line-height: 50px ;
	text-decoration: none ;
	text-align: center ;
	-webkit-transition:all 0.3s ;
	-moz-transition:all 0.3s ;
	transition:all 0.3s ;
}

.move-page-top:hover
{
	opacity: 0.85 ;
}


/* googleカスタム検索バー */
#cse-search-box {
	width: 250px !important;
	margin-left: auto;
}
#cse-search-box div {
	padding: 0 !important;
}
#cse-search-box input[type="text"] {
	height: 25px;
	padding: 0 !important;
	width: 175px;
	border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	box-shadow: 0 0 5px #DDDDDD;
	-moz-box-shadow: 0 0 5px #DDDDDD;
	-webkit-box-shadow: 0 0 5px #DDDDDD;
}
#cse-search-box input[type="submit"] {
	background: url(../images/cmn/12mk_search01_20-20.png) no-repeat scroll 50% 50%;
	border: 0 none;
	color: #FFFFFF;
	height: 25px;
	margin-left: -22px;
	overflow: hidden;
	text-indent: -50px;
	width: 20px;
	-webkit-appearance: none;
}


/* grid-box template responsive version */
/* POSITIONING */
.r {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 1px
}

[class*="c-"] {
    grid-column: span 12;
    padding: 1px
}


 /* 600px */
@media only screen and (min-width: 600px) { 
    
    .c-50 {
        grid-column: span 6;
    }
	.c-40 {
        grid-column: span 4;grid-column: span 4;
    }
    .c-25 {
        grid-column: span 3;
    }    
    .c-75 {
        grid-column: span 9;
    }    
    .c-100 {
        grid-column: span 12;
    }  
  
    .c-1 {
        grid-column: span 1;
    }

    .c-2 {
        grid-column: span 2;
    }

    .c-3 {
        grid-column: span 3;
    }

    .c-4 {
        grid-column: span 4;
    }

    .c-5 {
        grid-column: span 5
    }

    .c-6 {
        grid-column: span 6;
    }

    .c-7 {
        grid-column: span 7;
    }

    .c-8 {
        grid-column: span 8;
    }

    .c-9 {
        grid-column: span 9;
    }

    .c-10 {
        grid-column: span 10;
    }

    .c-11 {
        grid-column: span 11;
    }

    .c-12 {
        grid-column: span 12;
    }
  
}



 /* 600px - 800px */

@media only screen and (max-width: 800px) and (min-width: 600px) {
    

    .c-50 {
        grid-column: span 6;
    }
    .c-25 {
        grid-column: span 3;
    }
	.c-40 {
        grid-column: span 4;
    }
    .c-75 {
        grid-column: span 9;
    }    
    .c-100 {
        grid-column: span 12;
    }
		
}



/* grid-box template no responsie version */
/* POSITIONING */
.rb {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 1px
}

[class*="b-"] {
    grid-column: span 12;
    padding: 1px
}


 /* 600px */
    .b-50 {
        grid-column: span 6;
    }
	.b-40 {
        grid-column: span 4;grid-column: span 4;
    }
    .b-25 {
        grid-column: span 3;
    }    
    .b-75 {
        grid-column: span 9;
    }    
    .b-100 {
        grid-column: span 12;
    }  
  
    .b-1 {
        grid-column: span 1;
    }

    .b-2 {
        grid-column: span 2;
    }

    .b-3 {
        grid-column: span 3;
    }

    .b-4 {
        grid-column: span 4;
    }

    .b-5 {
        grid-column: span 5
    }

    .b-6 {
        grid-column: span 6;
    }

    .b-7 {
        grid-column: span 7;
    }

    .b-8 {
        grid-column: span 8;
    }

    .b-9 {
        grid-column: span 9;
    }

    .b-10 {
        grid-column: span 10;
    }

    .b-11 {
        grid-column: span 11;
    }

    .b-12 {
        grid-column: span 12;
    }








/* 横並びの画像の高さをそろえる　*/
.thumbnail {
    display: inline-block; /* ここがポイント */
    margin: 0;
}
.thumbnail img {
    height: 100%;
}


/* アイコン */
i {
margin-right: 5px;
}