@charset "utf-8";


/*----------------
 画像リンク
----------------*/
a.img_link {
    background-color: #fff;
}
a.img_link:hover {
    opacity: 1!important;
}
a.img_link img {
    width: 100%;
}
a.img_link img:hover {
    opacity: 0.7;
}
/*----------------
 スマホ時にスクロールするテーブル
 ※HTMLはgastroent...を参照
 
 大きいテーブルには.bigをtableに付与する
----------------*/
.list_item_slide table {
    width: 100%;
    overflow-x: scroll;
    margin: 30px auto 0;
    max-width: 980px;
    font-size: inherit;
    font: 100%;
    min-width: 630px;
    border-collapse: collapse;
    border-spacing: 0;
}
.list_item_slide table.big {
    min-width: 900px;
}
.list_item_slide th {
    background: #f4f4f4;
}
.list_item_slide tr {
    border: 2px solid #808383;
}
.list_item_slide tr:nth-of-type(odd) {
    background-color: #E6F6F3;
}
.list_item_slide tr:first-child ,.list_item_slide table tr:nth-child(2) {
    border: none;
}
.list_item_slide tr:first-child th {
    background-color: #B4E3DC;
}
.list_item_slide table tr:nth-child(3) th ,.list_item_slide table tr:nth-child(3) td,
.list_item_slide table tr:nth-child(4) th ,.list_item_slide table tr:nth-child(4) td,
.list_item_slide table tr:nth-child(5) th ,.list_item_slide table tr:nth-child(5) td,
.list_item_slide table tr:nth-child(6) th ,.list_item_slide table tr:nth-child(6) td {
    border-bottom: none;
}
.list_item_slide table:not(.midashi_vartical_onry) tr:first-child th:first-child {
    border: none;
}
.list_item_slide tr:first-child th ,.list_item_slide table tr:nth-child(2) td {
    border: 2px solid #808383;
}
.list_item_slide th, .list_item_slide td {
    text-align: center;
    padding: 10px;
    border: 2px solid #808383;
    width: 14.29%;
    vertical-align: middle;
    font-weight: 600;
}
.list_item_slide td:first-child {
    text-align: left;
}
.list_item_slide td {
    text-align: center;
}
th.nodata {
    background-color: #fff!important;
    border: none;
}        
@media only screen and (max-width: 834px) {
    .list_item_slide table {
        width: 100%;
    }
    .list_item_slide th, .list_item_slide td {
        font-size: 11px;
    }
    .list_item_slide table {
        width: 100%;
        margin: 0;
    }
    .list_item_slide::-webkit-scrollbar {
        height: 8px;
        width: 13px;
    }
    .list_item_slide::-webkit-scrollbar {
        height: 8px;
        width: 13px;
    }
    .list_item_slide::-webkit-scrollbar-thumb {
        background-color: #563826;
    }
    .list_item_slide::-webkit-scrollbar-thumb {
        background-color: #563826;
    }
    .list_item_slide::-webkit-scrollbar-track {
        box-shadow: inset 0 0 2px #c8c8c8;
    }
    .list_item_slide::-webkit-scrollbar-track {
        box-shadow: inset 0 0 2px #c8c8c8;
    }
    .list_item_slide::-webkit-scrollbar-track-piece {
        background-color: #e5e5e5;
    }
    .list_item_slide::-webkit-scrollbar-track-piece {
        background-color: #e5e5e5;
    }
    div.list_item_slide {
        display: block;
        width: 100%;
        overflow-x: scroll;
    }
}
.bottom_dotted {
    border-bottom: 2px dashed #ddd!important;
    border-top: none;
}
.bottom_dotted th {
    font-weight:normal;
}
.bottom_dotted + tr {
    border-top: none;
}
.bottom_dotted + tr th {
    font-weight: normal;
}
tr.bottom_dotted.first {
    border-top: 2px solid #ddd!important;
}
tr.bottom_dotted.first th {
    font-weight: 600!important;
}

/*----------------
虫眼鏡を表示（lightboxのa要素に当てる）
----------------*/
.mushimegane {
    position: relative;
}
.mushimegane::after {
    position: absolute;
    content: url("/common/img/mushimegane.jpg");
    right: 10px;
    bottom: 10px;
}

/*----------------
 親要素の上下中央に文字を配置
----------------*/
.middle_text {
	/* 親要素にrelativeをあてる */
	display: block;
	width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

/*----------------
 アイコンが入るテキストのベース
----------------*/
.before_icon {
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
}
.before_icon::before,.before_icon::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
/*----------------
 くの字アイコン　「> リンクテキスト」
----------------*/
.icon_link {
    position: relative;
    vertical-align: middle;
    text-decoration: none;
}
.icon_link::before {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    left: 10px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #7a0;
    border-right: 2px solid #7a0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* アイコン「▸ ○○」 */
.icon_triangle {
    left: 4px;
    box-sizing: border-box;
    width: 4px;
    height: 4px;
    border: 4px solid transparent;
    border-left: 4px solid #7a0;
}
/* 要素の後に下向きの三角※色は適宜変更 */
.after_triangle::after {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid black;
    position: absolute;
    bottom: 0;
    transform: translate(-50%,100%);
    content: '';
    left: 50%;
}
/*----------------
 三角アイコン
----------------*/
.icon_sankaku {
	position: relative;
	padding: 13px;
}
.icon_sankaku:before {
     position: absolute;
     content: '';
     width: 0;
     height: 0;
     border: solid 6px transparent;
     border-left: solid 8px #697b91;
     top: 50%;
     left: 0;
     margin-top: -5px;
}
/*----------------
 画像を並べるCSS
----------------*/
/* PC時のみ2列に並ぶ */
.pc_2col_img {
	width: 100%;
}
.pc_2col_img:after {
	clear: both;
	content: '';
	display: block;
}
.pc_2col_img a {
	width: 48.5%;
	margin-right: 3%;
	float: left;
	display: block;
	margin-bottom: 30px;
}
.pc_2col_img a img {
	width: 100%;
}
.pc_2col_img a:nth-child(even) {
	margin-right: 0;
}
.pc_2col_img a img {
	margin-bottom: 0;
}
/*----------------
 PC時は画像30%、テキスト70%のボックスで、
 スマホ時はいずれのボックスも100%になる
----------------*/
/* テキストが左側 */
.box_textAndImage_textleft:after {
	clear: both;
	content: '';
	display: block;
}
.box_textAndImage_textleft .text_box {
	width: 70%;
	padding-right:2%;
	float:left;
}
.box_textAndImage_textleft .img_box {
	width: 30%;
	float:right;
}
/* テキストが右側 */
.box_textAndImage_textright:after {
	clear: both;
	content: '';
	display: block;
}
.box_textAndImage_textright .text_box {
	width: 70%;
	padding-left:2%;
	float:right;
}
.box_textAndImage_textright .img_box {
	width: 30%;
	float:left;
}
.box_textAndImage_textleft .img_box img ,
.box_textAndImage_textright .img_box img {
	width: 100%;
}

/*----------------
 ズームできる画像
----------------*/
.can_zoom {
	position: relative;
}
.can_zoom:after {
	position: absolute;
	right: 10px;
	bottom: 10px;
	content: url(/common/img/mushimegane.jpg);
	z-index: 9;
}
/*----------------
 要素幅
----------------*/
.w_max {
	width:100%;
}
.w_half {
	width:50%;
}

/*----------------
 要素レベル変更
----------------*/
/* ブロック */
.bl {
	display: block;
}
/* インラインブロック */
.in_bl {
	display: inline-block;
}

/*----------------
 回り込み
----------------*/
/* left */
.f_left {
	float: left;
}
/* right */
.f_right {
	float: right;
}
/* none */
.f_none {
	float: none!important;
}

/*----------------
 コンテンツ領域のはみ出し分非表示	
----------------*/
.contents_wrapper {
	overflow-x: hidden;
}

/*----------------
 中の文字のみ左寄せ
----------------*/
.inline-block {
	text-align: center;
}
.inline-block p {
	text-align: left;
	display: inline-block;
}

/*----------------
 区切り線
----------------*/
/* 1px 実線 */
.sepa_1_s {
	height:1px;
	width: 100%;
	border-color: 1px solid #CDCDCD;	
}
/* 1px 点線 */
.sepa_1_d {
	height:1px;
	width: 100%;
	border-color: 1px dotted #CDCDCD;
}
/* 2px 実線 */
.sepa_2_s {
	height:1px;
	width: 100%;
	border-color: 2px solid #CDCDCD;
}
/* 2px 点線 */
.sepa_2_d {
	height:1px;
	width: 100%;
	border-color: 2px dotted #CDCDCD;
}

.sepa_30 {
	width:100%;
	height:30px;
}
/*----------------
 背景画像の基準位置
----------------*/
/* 上 */
.bg_top {
	background-position: top 0px;
}
/* 右 */
.bg_right {
	background-position: right 0px;
}
/* 下 */
.bg_bottom {
	background-position: bottom 0px;
}
/* 左 */
.bg_left {
	background-position: left 0px;
}
/* 右上 */
.bg_rightTop {
	background-position: right 0px top 0px;
}
/* 右下 */
.bg_rightBottom {
	background-position: right 0px bottom 0px;
}
/* 左上 */
.bg_leftTop {
	background-position: left 0px top 0px;
	
}
/* 左下 */
.bg_leftBotoom {
	background-position: left 0px bottom 0px;
	
}
/* 中央 */
.bg_center {
	background-position: center;
}

/*----------------
 文字色
----------------*/
/* 赤 */
.col_red{	
	color: #cc0000;
}
/* 青 */
.col_blue{
	color: #13448F;
}
/* 黒 */
.col_black{
	color: #000000;
}
/* 白 */
.col_white{
	color: #ffffff;
}

/*----------------
 文字サイズ
----------------*/
/* 小 */
.fz_small {
	font-size: 10px!important;
}
/* 11px */
.fz11 {
	font-size: 11px!important;
}
/* 12px */
.fz12 {
	font-size: 12px!important;
}
/* 13px */
.fz13 {
	font-size: 13px!important;
}
/* 14px */
.fz14 {
	font-size: 14px!important;
}
/* 15px */
.fz15 {
	font-size: 15px!important;
}
/* 16px */
.fz16 {
	font-size: 16px!important;
}
/* 17px */
.fz17 {
	font-size: 17px!important;
}
/* 18px */
.fz18 {
	font-size: 17px!important;
}
/* 20px */
.fz20 {
	font-size: 20px!important;
}
/* 25px */
.fz25 {
	font-size: 25px!important;
}
/* 30px */
.fz30 {
	font-size: 30px!important;
}
/* 35px */
.fz35 {
	font-size: 35px!important;
}
/* 40px */
.fz40 {
	font-size: 40px!important;
}
/* 45px */
.fz45 {
	font-size: 45px!important;
}
/* 50px */
.fz50 {
	font-size: 50px!important;
}
/* 55px */
.fz55 {
	font-size: 55px!important;
}
/* 60px */
.fz60 {
	font-size: 60px!important;
}
/* 太字 */
.strong {
	font-weight: 600;
}
/* 下線 */
.under {
	text-decoration: underline;
}

/*----------------
 見出し
----------------*/
/* 2色ボーダー見出し */
.midashi_2color {
    position: relative;
    border-bottom: 4px solid #ccc;
}
.midashi_2color:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 2;
    content: '';
    width: 20%;
    height: 4px;
    background-color: #0071BC;
}

.midashi_50to16 {
	font-size: 50px!important;
}
.midashi_50to18 {
	font-size: 50px!important;
}
.midashi_50to20 {
	font-size: 50px!important;
}
.midashi_50to22 {
	font-size: 50px!important;
}
.midashi_50to25 {
	font-size: 50px!important;
}
.midashi_50to30 {
	font-size: 50px!important;
}

.midashi_40to16 {
	font-size: 40px!important;
}
.midashi_40to18 {
	font-size: 40px!important;
}
.midashi_40to20 {
	font-size: 40px!important;
}
.midashi_40to22 {
	font-size: 40px!important;
}
.midashi_40to25 {
	font-size: 40px!important;
}
.midashi_35to18 {
	font-size: 35px!important;
}
.midashi_35to20 {
	font-size: 35px!important;
}
.midashi_35to22 {
	font-size: 35px!important;
}
.midashi_35to25 {
	font-size: 35px!important;
}
.midashi_30to16 {
	font-size: 30px!important;
}
.midashi_30to18 {
	font-size: 30px!important;
}
.midashi_30to20 {
	font-size: 30px!important;
}
.midashi_25to18 {
	font-size: 25px!important;
}
.midashi_25to16 {
	font-size: 25px!important;
}
.midashi_25to14 {
	font-size: 25px!important;
}

.midashi_22to14 {
	font-size: 22px!important;
}
.midashi_22to16 {
	font-size: 22px!important;
}
.midashi_18to11 {
	font-size: 18px!important;
}
.midashi_16to10 {
    font-size: 16px!important;
}
@media screen and (max-width: 1024px) {
	/*----------------
	 計算方法
	 1024p以上は最大として、
	 （最大 - 最小） / 649でパーセンテージを計算
      ※649は1024-375
	----------------*/
	.midashi_50to16 {
		font-size: calc(50px - (1024px - 100vw) * 0.0524 )!important;
	}
	.midashi_50to18 {
		font-size: calc(50px - (1024px - 100vw) * 0.0493 )!important;
	}
	.midashi_50to20 {
		font-size: calc(50px - (1024px - 100vw) * 0.0462 )!important;
	}
	.midashi_50to22 {
		font-size: calc(50px - (1024px - 100vw) * 0.0431 )!important;
	}
	.midashi_50to25 {
		font-size: calc(50px - (1024px - 100vw) * 0.0385 )!important;
	}
	.midashi_50to30 {
		font-size: calc(50px - (1024px - 100vw) * 0.0308 )!important;
	}
	.midashi_40to16 {
		font-size: calc(40px - (1024px - 100vw) * 0.0370 )!important;
	}
	.midashi_40to18 {
		font-size: calc(40px - (1024px - 100vw) * 0.0339 )!important;
	}
	.midashi_40to20 {
		font-size: calc(40px - (1024px - 100vw) * 0.0308 )!important;
	}
	.midashi_40to22 {
		font-size: calc(40px - (1024px - 100vw) * 0.0277 )!important;
	}
	.midashi_40to25 {
		font-size: calc(40px - (1024px - 100vw) * 0.0231 )!important;
	}
	.midashi_35to18 {
		font-size: calc(30px - (1024px - 100vw) * 0.0262 )!important;
	}
	.midashi_35to20 {
		font-size: calc(30px - (1024px - 100vw) * 0.0231 )!important;
	}
	.midashi_35to22 {
		font-size: calc(30px - (1024px - 100vw) * 0.0200 )!important;
	}
	.midashi_35to25 {
		font-size: calc(30px - (1024px - 100vw) * 0.0154 )!important;
	}
	.midashi_30to16 {
		font-size: calc(30px - (1024px - 100vw) * 0.0216 )!important;
	}
	.midashi_30to18 {
		font-size: calc(30px - (1024px - 100vw) * 0.0185 )!important;
	}
	.midashi_30to20 {
		font-size: calc(30px - (1024px - 100vw) * 0.0154 )!important;
	}
	.midashi_30to25 {
		font-size: calc(30px - (1024px - 100vw) * 0.0077 )!important;
	}
    .midashi_25to14 {
        font-size: calc(25px - (1024px - 100vw) * 0.0169 )!important;
    }
    .midashi_25to16 {
        font-size: calc(25px - (1024px - 100vw) * 0.0139 )!important;
    }
    .midashi_25to18 {
        font-size: calc(25px - (1024px - 100vw) * 0.0108 )!important;
    }
	.midashi_22to14 {
		font-size: calc(22px - (1024px - 100vw) * 0.0123 )!important;
	}
	.midashi_18to11 {
		font-size: calc(18px - (1024px - 100vw) * 0.0108 )!important;
	}
	.midashi_16to10 {
		font-size: calc(16px - (1024px - 100vw) * 0.0092 )!important;
	}
}

/* 箇条書き等、2行目以降をインデント */
.indent {
	padding-left: 1em;
	text-indent: -1em;
}

/*----------------
 見出しアイコン付き要素
----------------*/
.iconMidasi {
	/* ※１アイコンのサイズにより、pd-leftも調整する。 */
	/* ※2 見出しごとに別途クラスをつけて、backgroundimageでアイコンを登録 */
    padding-left: 2em;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 1em;
}

/*----------------
 リンク用
----------------*/
.tdn {
	text-decolation: none!important;
	color: #000;
}

/*----------------
 ナビゲーション用スライドバー
----------------*/
#slide-line-pc {
    position: absolute;
    bottom: 5px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

/*----------------
 要素の下に▼
----------------*/
.fukidashi_arrow:after {
	bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    content: "";
    border-style: solid;
    border-width: 10px 7.5px 0 7.5px;
    border-color: #59bac1 transparent transparent transparent;
}

/*----------------
 汎用ボタン
----------------*/
/* Topへ戻る */
#page_top {
	position: fixed;
	right: 5px;
	bottom: 20px;
	display: none;
	z-index: 101;
	width: 70px;
}
.hide_side {
	right: -100%!important;
}
.hide_bottom {
	bottom: -100%!important;
}
/*----------------
 ヘッダー追跡系
----------------*/
.fixedHeader {
	position: fixed;
	top:0;
	z-index: 99;
	width: 100%;
}

/*----------------
 フォームテーブル
----------------*/
input, select, textarea {
    font-size: 16px;
    padding: 5px;
}
input[type="email"], input[type="text"], input[type="tel"], textarea, select{
    width: 100%;
}
textarea {
    height: 170px;
}
/* 幅 */
table.formTable {
	width: 100%;
}
table.formTable th {
	background-color: #F4F5F7;
}
/* パディング */
table.formTable th, table.formTable td {
	padding:20px;
}
/* 必須マーク */
span.required, span.any {
	font-size: 13px;
	background-color: #E43F24;
	color: #ffffff;
	margin-left: 5px;
	padding:2px 5px;
    border-radius: 10px;
    display: inline-block;
    vertical-align: text-top;
}
span.any {
    background-color: #15B8CF;
}

/*----------------
 送信ボタン
----------------*/
.btn_back {
    background-color: #6C6A6A;
}
.btn_submit {
    background-color: #000!important;
}
.btn_back, .btn_submit {
    padding: 8px 20px;
    color: #fff;
    font-weight: 600;
    border: none;
    font-size: 22px;
    margin: auto;
    display: block;
    width: 270px;
}

#cv_btn_conf {
    margin: auto;
}
.contact_btnwrap {
	width:90%;
	padding:0 10%;
	margin: 25px auto;
}
#pagetop {
	opacity:1;
}

/*----------------
 NEWS内記事
----------------*/
.news_img_box.clearfix.t_center {
    float: left;
    margin-right: 8px;
	margin-bottom: 8px;
}
.imgexists {
    clear: both;
    margin-top: 15px;
}
.news_wrap .up_ymd {
	margin-bottom: 15px;
}

/*---------------------------
　準備中ページ
---------------------------*/
.junbi_box  {
	text-align: center;
	padding: 40px 0;
}
.junbi_box img {
	width: 70%;
}

/*===========================================
 以下、メディアクエリ
===========================================*/
/*===========================
 【1024px以下】
 ★タブレット横以下に適用されるCSS
===========================*/
@media screen and (max-width:1024px){
	#page_top img:hover {
		opacity: 1!important;
	}
}
/*===========================
【1023px以下】
 ★PC未満に適用されるCSS
===========================*/
@media screen and (max-width:1023px){
	/*----------------
	 PAGETOPがコンテンツに被るので半透明に変更
	----------------*/
	.page_top_img {
		opacity:0.5;
	}
}
/*===========================
【834px以下】
★タブレット以下に適用されるCSS
  ※2019/8　時点のTB縦最大（iPad Air(3)など）
===========================*/
@media screen and (max-width:834px){
}

/*===========================
【767px以下】
★タブレット未満に適用されるCSS
===========================*/
@media screen and (max-width:767px){
	/*----------------
	 sp時に虫眼鏡を表示（lightboxのa要素に当てる）
	----------------*/
    .sp_mushimegane {
        position: relative;
    }
    .sp_mushimegane::after {
        position: absolute;
        content: url("/common/img/musimegane.jpg");
        right: 10px;
        bottom: 10px;
    }
	/*----------------
	 PC時のみ２列なので解除
	----------------*/
	.pc_2col_img a {
		float: none;
		width: 100%;
	}
	.pc_2col_img .can_zoom {
		position: static;
	}
	.pc_2col_img img.can_zoom:after {
		position: static;
		right: auto;
		bottom: auto;
		content: none;
	}
    /*----------------
     スマホ時に1カラムになるテーブル
    ----------------*/
    .basic_table {
        width: 100%;
    }
    .basic_table tbody ,.basic_table tr ,.basic_table th,.basic_table td{
        display: block;
        width: 100%;
    }
    .basic_table th,.basic_table tr:not(:last-of-type) td {
        border-bottom: none;
    }
	/*----------------
	 PC時は画像30%、テキスト70%のボックスで、
	 スマホ時はいずれのボックスも100%になる
	----------------*/
	/* テキストが左側 */
	.box_textAndImage_textleft .text_box {
		width: 100%;
		padding-right:0;
		float:none;
		margin-bottom:15px
	}
	.box_textAndImage_textleft .img_box {
		width: 100%;
		float:none;
	}
	/* テキストが右側 */
	.box_textAndImage_textright .text_box {
		width: 100%;
		padding-left:0;
		float:none;
	}
	.box_textAndImage_textright .img_box {
		width: 100%;
		float:none;
	}
	.box_textAndImage_textleft .img_box img ,
	.box_textAndImage_textright .img_box img {
		max-width: 100%;
	}

	/*----------------
	 メイン画像レスポンシブページ用の処理
	----------------*/
	.main_img_pc {
		display:none;
	}
	.main_img_sp {
		display:block;
	}
	
	/*----------------
	 テーブル
	----------------*/
	table.formTable th {
		text-align: center;
	}
	table.formTable th , table.formTable td {
		display: block;
		width: 100%;
        border: 1px solid #ddd;
		border-bottom: none;
	}
    table.formTable tr:last-of-type td {
        border-bottom: 1px solid #ddd;
    }

	/*---------------------------
	 お問い合わせ
	---------------------------*/
    .btn_back, .btn_submit {
        display: block;
        width: 250px;
        margin-bottom: 20px;
    }
}

/*===========================
 【666px以下】
 ★iPhone6以降の横未満に適用されるCSS
===========================*/
@media screen and (max-width:666px) {
}
/*===========================
 【567px以下】
★iPhone5横未満まで適用されるCSS
===========================*/
@media screen and (max-width:567px){
}
/*===========================
 【414px以下】
★iPhone6PLUS縦まで適用されるCSS
===========================*/
@media screen and (max-width:414px){
}
/*===========================
 【375px以下】
★iPhone6,7縦まで適用されるCSS
===========================*/
@media screen and (max-width:375px){
}
/*===========================
 【360px以下】
 ★Xperia AX SO-01E以下に適用されるCSS
===========================*/
@media screen and (max-width:360px){
}

/*===========================
 【359px以下】
 ★iphone初期にのみ適用されるCSS
===========================*/
@media screen and (max-width:359px){
}

/*===========================
 【568px以上】
 ★iPhone5横以上から表示されるCSS
===========================*/
@media screen and (min-width:568px) {
}

/*===========================
 【667px以上】
 ★iPhone6以降の横以上に適用されるCSS
===========================*/
@media screen and (min-width:667px){
}

/*===========================
【768px以上】 
★タブレット(最小)以上に適用されるCSS
===========================*/
@media screen and (min-width:768px){
	.tb_center {
		text-align: center;
	}
    /* タブレット以上の時のテーブル */
    table.formTable th , table.formTable td {
        border: 1px solid #ddd;
    }
    table.formTable th {
        width:25%;
        background-color: #F4F5F7;
    }
    table.formTable td {
        width:75%;
    }
    .confirm_btn_box {
        max-width: 555px;
        margin: auto;
    }
    button.btn_back {
        display: inline-block;
        margin-right: 50px;
    }
    button.btn_submit.conf {
        display: inline-block;
    }
}

/*===========================
【835px以上】 
★タブレット縦(最大)より大きい場合に適用されるCSS
===========================*/
@media screen and (min-width:835px){
}

/*===========================
【667px】～【834px】  
★iPhone6以降の横以上かつ、タブレット縦以下まで表示されるCSS
===========================*/
@media screen and (min-width:667px) and (max-width:834px){
}

/*===========================
 【667px】～【1023px】
 ★iphone6横～PC未満まで適用されるCSS
===========================*/
@media screen and (min-width:667px) and (max-width:1023px){
}
/*===========================
 【415px】～【834px】 
 ★スマホ縦より大、かつ、タブレット以下まで表示されるCSS
===========================*/
@media screen and (min-width:415px) and (max-width:834px){
}
/*===========================
 【768px】～【1023px】 
 ★タブレット以上、かつ、PC以下に適用されるCSS
===========================*/
@media screen and (min-width:768px) and (max-width:1023px){
}

/*===========================
 【1024px以上】
 ★PC以上に適用されるCSS
===========================*/
@media screen and (min-width:1024px){
	/*----------------
	 TOPへ戻るボタン
	----------------*/
	#page_top {
		right: 20px;
	}
	#page_top img:hover {
		opacity: 0.7!important;
	}
	.pc_center {
		text-align: center;
	}
}

/*===========================
 【1280px以上】
 ★PC(1280px）以上に適用されるCSS
===========================*/
@media screen and (min-width:1280px){
}
/*===========================
 【1400px以上】
 ★PC(1400px）以上に適用されるCSS
===========================*/
@media screen and (min-width:1400px){
}