@charset "utf-8";
/*---------------------------
 共通クラス
---------------------------*/
/*----------------
 フォント
----------------*/
body {
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}
.mincho {
	font-family: "游明朝", YuMincho,Yu-Mincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;	
}
/*----------------
 margin
----------------*/
/* 左右marginをauto */
.m_auto {
	margin-left: auto;
	margin-right: auto;
}

.cb {
    clear: both;
}

/*----------------
 親要素の上下中央に文字を配置
----------------*/
.middle_text {
	/* 親要素にrelativeをあてる */
	display: block;
	width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-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;
}
/*----------------
 ズームできる画像
----------------*/
.can_zoom {
	position: relative;
}
.can_zoom:after {
	position: absolute;
	right: 10px;
	bottom: 10px;
	content: url(/img/musimegane.jpg);
	z-index: 9;
}
/*----------------
 要素幅
----------------*/
.w_max {
	width:100%;
}
.w_half {
	width:50%;
}

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

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

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

/*----------------
 アライメント
----------------*/
.t_center {
	text-align: center;
}
.t_right {
	text-align: right;
}
.t_left {
	text-align: left;
}

/*----------------
 中の文字のみ左寄せ
----------------*/
.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;
}


/*---------------------------
 各余白
---------------------------*/
/*----------------
 マージン：上
----------------*/
/* 5px */
.mt5 {
	margin-top: 5px!important;
}
/* 10px */
.mt10 {
	margin-top: 10px!important;
}
/* 15px */
.mt15 {
	margin-top: 15px!important;
}
/* 20px */
.mt20 {
	margin-top: 20px!important;
}
/* 25px */
.mt25 {
	margin-top: 25px!important;
}
/* 30px */
.mt30 {
	margin-top: 30px!important;
}
/* 35px */
.mt35 {
	margin-top: 35px!important;
}
/* 40px */
.mt40 {
	margin-top: 40px!important;
}
/* 45px */
.mt45 {
	margin-top: 45px!important;
}
/* 50px */
.mt50 {
	margin-top: 50px!important;
}
/* 55px */
.mt55 {
	margin-top: 55px!important;
}
/* 60px */
.mt60 {
	margin-top: 60px!important;
}
/* 65px */
.mt65 {
	margin-top: 65px!important;
}
/* 70px */
.mt70 {
	margin-top: 70px!important;
}
/*----------------
 マージン：上（pc基準でレスポンシブ）
----------------*/
.mt_pc80 {
	margin-top: 80px;
}
.mt_pc70 {
	margin-top: 70px;
}
.mt_pc60 {
	margin-top: 60px;
}
.mt_pc50 {
	margin-top: 50px;
}
.mt_pc45 {
	margin-top: 45px;
}
.mt_pc40 {
	margin-top: 40px;
}
.mt_pc35 {
	margin-top: 35px;
}
.mt_pc30 {
	margin-top: 30px;
}
.mt_pc25 {
	margin-top: 25px;
}
@media screen and (max-width: 1024px) {
	.mt_pc80 {
	margin-top: calc(80px - (1024px - 100vw) * 0.0781 );
	}
	.mt_pc70 {
	margin-top: calc(70px - (1024px - 100vw) * 0.0684 );
	}
	.mt_pc60 {
	margin-top: calc(60px - (1024px - 100vw) * 0.0586 );
	}
	.mt_pc50 {
	margin-top: calc(50px - (1024px - 100vw) * 0.0488 );
	}
	.mt_pc45 {
		margin-top: calc(45px - (1024px - 100vw) * 0.0439 );
	}
	.mt_pc40 {
		margin-top: calc(40px - (1024px - 100vw) * 0.0391 );
	}
	.mt_pc35 {
		margin-top: calc(35px - (1024px - 100vw) * 0.0342 );
	}
	.mt_pc30 {
		margin-top: calc(30px - (1024px - 100vw) * 0.0293 );
	}
	.mt_pc25 {
		margin-top: calc(25px - (1024px - 100vw) * 0.0244 );
	}
}

/*----------------
 マージン：下
----------------*/
/* 5px */
.mb10 {
	margin-bottom: 5px!important;
}
/* 10px */
.mb10 {
	margin-bottom: 10px!important;
}

/* 15px */
.mb15 {
	margin-bottom: 15px!important;
}
/* 20px */
.mb20 {
	margin-bottom: 20px!important;
}
/* 25px */
.mb25 {
	margin-bottom: 25px!important;
}
/* 30px */
.mb30 {
	margin-bottom: 30px!important;
}
/* 35px */
.mb35 {
	margin-bottom: 35px!important;
}
/* 40px */
.mb40 {
	margin-bottom: 40px!important;
}
/* 45px */
.mb45 {
	margin-bottom: 45px!important;
}
/* 50px */
.mb50 {
	margin-bottom: 50px!important;
}
/* 55px */
.mb55 {
	margin-bottom: 55px!important;
}
/* 60px */
.mb60 {
	margin-bottom: 60px!important;
}
/* 65px */
.mb65 {
	margin-bottom: 65px!important;
}
/* 70px */
.mb70 {
	margin-bottom: 70px!important;
}

/*----------------
 マージン：下（pc基準でレスポンシブ）
----------------*/
.mb_pc80 {
	margin-bottom: 80px;
}
.mb_pc70 {
	margin-bottom: 70px;
}
.mb_pc60 {
	margin-bottom: 60px;
}
.mb_pc50 {
	margin-bottom: 50px;
}
.mb_pc45 {
	margin-bottom: 45px;
}
.mb_pc40 {
	margin-bottom: 40px;
}
.mb_pc35 {
	margin-bottom: 35px;
}
.mb_pc30 {
	margin-bottom: 30px;
}
.mb_pc25 {
	margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
	.mb_pc80 {
	margin-bottom: calc(80px - (1024px - 100vw) * 0.0781 );
	}
	.mb_pc70 {
	margin-bottom: calc(70px - (1024px - 100vw) * 0.0684 );
	}
	.mb_pc60 {
	margin-bottom: calc(60px - (1024px - 100vw) * 0.0586 );
	}
	.mb_pc50 {
	margin-bottom: calc(50px - (1024px - 100vw) * 0.0488 );
	}
	.mb_pc45 {
		margin-bottom: calc(45px - (1024px - 100vw) * 0.0439 );
	}
	.mb_pc40 {
		margin-bottom: calc(40px - (1024px - 100vw) * 0.0391 );
	}
	.mb_pc35 {
		margin-bottom: calc(35px - (1024px - 100vw) * 0.0342 );
	}
	.mb_pc30 {
		margin-bottom: calc(30px - (1024px - 100vw) * 0.0293 );
	}
	.mb_pc25 {
		margin-bottom: calc(25px - (1024px - 100vw) * 0.0244 );
	}
}

/*----------------
 パディング：上
----------------*/
/* 5px */
.pt5 {
	padding-top: 5px!important;
}
/* 10px */
.pt10 {
	padding-top: 10px!important;
}
/* 15px */
.pt15 {
	padding-top: 15px!important;
}
/* 20px */
.pt20 {
	padding-top: 20px!important;
}
/* 25px */
.pt25 {
	padding-top: 25px!important;
}
/* 30px */
.pt30 {
	padding-top: 30px!important;
}
/* 35px */
.pt35 {
	padding-top: 35px!important;
}
/* 40px */
.pt40 {
	padding-top: 40px!important;
}
/* 45px */
.pt45 {
	padding-top: 45px!important;
}
/* 50px */
.pt50 {
	padding-top: 50px!important;
}
/* 55px */
.pt55 {
	padding-top: 55px!important;
}
/* 60px */
.pt60 {
	padding-top: 60px!important;
}
/* 65px */
.pt65 {
	padding-top: 65px!important;
}
/* 70px */
.pt70 {
	padding-top: 70px!important;
}
/*----------------
 パディング：上（pc基準でレスポンシブ）
----------------*/
.pt_pc80 {
	padding-top: 80px;
}
.pt_pc70 {
	padding-top: 70px;
}
.pt_pc60 {
	padding-top: 60px;
}
.pt_pc50 {
	padding-top: 50px;
}
.pt_pc45 {
	padding-top: 45px;
}
.pt_pc40 {
	padding-top: 40px;
}
.pt_pc35 {
	padding-top: 35px;
}
.pt_pc30 {
	padding-top: 30px;
}
.pt_pc25 {
	padding-top: 25px;
}
@media screen and (max-width: 1024px) {
	.pt_pc80 {
	padding-top: calc(80px - (1024px - 100vw) * 0.0781 );
	}
	.pt_pc70 {
	padding-top: calc(70px - (1024px - 100vw) * 0.0684 );
	}
	.pt_pc60 {
	padding-top: calc(60px - (1024px - 100vw) * 0.0586 );
	}
	.pt_pc50 {
	padding-top: calc(50px - (1024px - 100vw) * 0.0488 );
	}
	.pt_pc45 {
		padding-top: calc(45px - (1024px - 100vw) * 0.0439 );
	}
	.pt_pc40 {
		padding-top: calc(40px - (1024px - 100vw) * 0.0391 );
	}
	.pt_pc35 {
		padding-top: calc(35px - (1024px - 100vw) * 0.0342 );
	}
	.pt_pc30 {
		padding-top: calc(30px - (1024px - 100vw) * 0.0293 );
	}
	.pt_pc25 {
		padding-top: calc(25px - (1024px - 100vw) * 0.0244 );
	}
}

/*----------------
 パディング：下
----------------*/
/* 5px */
.pb5 {
	padding-bottom: 5px!important;
}
/* 10px */
.pb10 {
	padding-bottom: 10px!important;
}
/* 15px */
.pb15 {
	padding-bottom: 15px!important;
}
/* 20px */
.pb20 {
	padding-bottom: 20px!important;
}
/* 25px */
.pb25 {
	padding-bottom: 25px!important;
}
/* 30px */
.pb30 {
	padding-bottom: 30px!important;
}
/* 35px */
.pb35 {
	padding-bottom: 35px!important;
}
/* 40px */
.pb40 {
	padding-bottom: 40px!important;
}
/* 45px */
.pb45 {
	padding-bottom: 45px!important;
}
/* 50px */
.pb50 {
	padding-bottom: 50px!important;
}
/* 55px */
.pb55 {
	padding-bottom: 55px!important;
}
/* 60px */
.pb60 {
	padding-bottom: 60px!important;
}
/* 65px */
.pb65 {
	padding-bottom: 65px!important;
}
/* 70px */
.pb70 {
	padding-bottom: 70px!important;
}
/*----------------
 パディング：下（pc基準でレスポンシブ）
----------------*/
.pb_pc80 {
	padding-bottom: 80px;
}
.pb_pc70 {
	padding-bottom: 70px;
}
.pb_pc60 {
	padding-bottom: 60px;
}
.pb_pc50 {
	padding-bottom: 50px;
}
.pb_pc45 {
	padding-bottom: 45px;
}
.pb_pc40 {
	padding-bottom: 40px;
}
.pb_pc35 {
	padding-bottom: 35px;
}
.pb_pc30 {
	padding-bottom: 30px;
}
.pb_pc25 {
	padding-bottom: 25px;
}
@media screen and (max-width: 1024px) {
	.pb_pc80 {
	padding-bottom: calc(80px - (1024px - 100vw) * 0.0781 );
	}
	.pb_pc70 {
	padding-bottom: calc(70px - (1024px - 100vw) * 0.0684 );
	}
	.pb_pc60 {
	padding-bottom: calc(60px - (1024px - 100vw) * 0.0586 );
	}
	.pb_pc50 {
	padding-bottom: calc(50px - (1024px - 100vw) * 0.0488 );
	}
	.pb_pc45 {
		padding-bottom: calc(45px - (1024px - 100vw) * 0.0439 );
	}
	.pb_pc40 {
		padding-bottom: calc(40px - (1024px - 100vw) * 0.0391 );
	}
	.pb_pc35 {
		padding-bottom: calc(35px - (1024px - 100vw) * 0.0342 );
	}
	.pb_pc30 {
		padding-bottom: calc(30px - (1024px - 100vw) * 0.0293 );
	}
	.pb_pc25 {
		padding-bottom: calc(25px - (1024px - 100vw) * 0.0244 );
	}
}
/*----------------
 背景画像の基準位置
----------------*/
/* 上 */
.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;
}
/* 11px */
.fz11 {
	font-size: 11px;
}
/* 12px */
.fz12 {
	font-size: 12px;
}
/* 13px */
.fz13 {
	font-size: 13px;
}
/* 14px */
.fz14 {
	font-size: 14px;
}
/* 15px */
.fz15 {
	font-size: 15px;
}
/* 16px */
.fz16 {
	font-size: 16px;
}
/* 17px */
.fz17 {
	font-size: 17px;
}
/* 18px */
.fz18 {
	font-size: 17px;
}
/* 20px */
.fz20 {
	font-size: 20px;
}
/* 25px */
.fz25 {
	font-size: 25px;
}
/* 30px */
.fz30 {
	font-size: 30px;
}
/* 35px */
.fz35 {
	font-size: 35px;
}
/* 40px */
.fz40 {
	font-size: 40px;
}
/* 45px */
.fz45 {
	font-size: 45px;
}
/* 50px */
.fz50 {
	font-size: 50px;
}
/* 55px */
.fz55 {
	font-size: 55px;
}
/* 60px */
.fz60 {
	font-size: 60px;
}
/* 太字 */
.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: #313131;
}

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

.midashi_40to16 {
	font-size: 40px;
}
.midashi_40to18 {
	font-size: 40px;
}
.midashi_40to20 {
	font-size: 40px;
}

.midashi_30to16 {
	font-size: 30px;
}
.midashi_30to18 {
	font-size: 30px;
}
.midashi_30to20 {
	font-size: 30px;
}
.midashi_25to18 {
	font-size: 25px;
}
.midashi_22to14 {
	font-size: 22px;
}
.midashi_18to11 {
	font-size: 18px;
}
.midashi_16to10 {
    font-size: 16px;
}

@media screen and (max-width: 1024px) {
	/*----------------
	 計算方法
	 1024p以上は最大として、
	 （最大 - 最小） / (1024-375：649)でパーセンテージを計算
	----------------*/
	.midashi_50to16 {
		font-size: calc(50px - (1024px - 100vw) * 0.0524 )
	}
	.midashi_50to18 {
		font-size: calc(50px - (1024px - 100vw) * 0.0493 )
	}
	.midashi_50to20 {
		font-size: calc(50px - (1024px - 100vw) * 0.0462 )
	}
	.midashi_50to22 {
		font-size: calc(50px - (1024px - 100vw) * 0.0431 )
	}
	.midashi_50to25 {
		font-size: calc(50px - (1024px - 100vw) * 0.0385 )
	}
	.midashi_40to16 {
		font-size: calc(40px - (1024px - 100vw) * 0.0370 )
	}
	.midashi_40to18 {
		font-size: calc(40px - (1024px - 100vw) * 0.0339 )
	}
	.midashi_40to20 {
		font-size: calc(40px - (1024px - 100vw) * 0.0308 )
	}

	.midashi_30to16 {
		font-size: calc(30px - (1024px - 100vw) * 0.0216 )
	}
	.midashi_30to18 {
		font-size: calc(30px - (1024px - 100vw) * 0.0185 )
	}
	.midashi_30to20 {
		font-size: calc(30px - (1024px - 100vw) * 0.0154 )
	}
    .midashi_25to18 {
        font-size: calc(25px - (1024px - 100vw) * 0.0108 )
    }
	.midashi_22to14 {
		font-size: calc(22px - (1024px - 100vw) * 0.0123 )
	}
	.midashi_18to11 {
		font-size: calc(18px - (1024px - 100vw) * 0.0108 )
	}
	.midashi_16to10 {
		font-size: calc(16px - (1024px - 100vw) * 0.0092 )
	}
}

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

/* コンテンツ幅 */
.cont{
	margin-left:auto;
	margin-right: auto;
	max-width: 1024px;
}

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

/*----------------
 ClearFix
----------------*/
.clearfix:after{
	content: "";
	clear: both;
	display: block;
}

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

/*----------------
 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;
}
/*----------------
 フォームテーブル
----------------*/
input[type=text] , textarea , input[type=email]{
    font-size: 16px;    
    padding: 5px;
    width: 100%;
}
textarea {
    height: 170px
}
/* 幅 */
table.formTable {
	width: 100%;
	font-size: 15px;
}
table.formTable th {
	width:25%;	
}
table.formTable td {
	width:75%;	
}
/* パディング */
table.formTable th , table.formTable td {
	padding:20px;
    word-break: break-all;
}
/* ボーダー */
table.formTable tbody  {
	border: 3px solid #23475F;
}
table.formTable tr {
	border-bottom: 2px solid #23475F;
}
table.formTable tr:last-child {
	border-bottom: none;
}
table.formTable th  {
	border-right: 2px solid #23475F;
	background: #F4F5F7;
}
.formTable input {
	padding-left: 10px;
	width:100%;
}
table.formTable.kakunin_table {
    font-size: 16px;
}
#txtContents {
	width: 100%;
}
/* 必須マーク */
span.required , span.any {
	font-size: 13px;
	background-color: #E43F24;
	color: #ffffff;
	margin-left: 5px;
	padding:2px 5px;
    border-radius: 10px;
}
span.any {
    background-color: #15B8CF;
}
/* 氏名欄 */
div.contact_input_name table {
	width: 100%;
}
div.contact_input_name tbody {
	border:none;
}
div.contact_input_name tr {
	width: 45%;
	border:none;
	float: left;
	margin: 0 1.25%;
}
div.contact_input_name th {
	padding:0;
}
div.contact_input_name th , .contact_input_name td {
	width:100%;
	border:none;
}
div.contact_input_name tr , div.contact_input_name th , .contact_input_name td {
	display: block;
}

/*----------------
 送信ボタン
----------------*/
.btn_back {
    background-color: #6C6A6A;
}
#cv_btn_conf {
    margin: auto;
}
.btn_submit {
    background-color: #000!important;
}
.btn_back, .btn_submit {
    padding: 8px 20px;
    color: #fff;
    font-weight: 600;
    border: none;
    font-size: 22px;
	width: 100%;
}
.contact_btnwrap {
	width:90%;
	padding:0 10%;
	margin: 25px auto;
}
.btn_contact_next {
	/* paddingを一時リセット */
	padding:0!important;
	background: url(/contact/img/btn_send.png) 0 0 no-repeat;
	margin: auto;
	height:0px;
	border: 0px;
	width: 300px;
	background-size: contain;
	/* calc ( widthの値 * (表示画像の高さ ÷ 表示画像の幅) */
	padding-top: calc(300px * 0.1848)!important;
	cursor: pointer;
	display: block;
}
#send_btn {
	background: url(/contact/img/btn_send.png) 0 0 no-repeat;
	float:right;
}
#reset_btn {
	background: url(/contact/img/btn_back.png) 0 0 no-repeat;
	float:left;
}
#send_btn , #reset_btn {
	/* paddingを一時リセット */
	padding:0!important;
	height:0px;
	border: 0px;
	width: 45%;
	background-size: contain;
	/* 表示画像の高さ ÷ 表示画像の幅 × 100 */
	padding-top: calc(45% * 0.1848)!important;
	cursor: pointer;
}
#top_btn:hover , #reset_btn:hover , #send_btn:hover{
	opacity: 0.8;
}
#pagetop {
	opacity:1;
}
/*---------------------------
　準備中ページ
---------------------------*/
.junbi_box  {
	text-align: center;
	padding: 40px 0;
}
.junbi_box img {
	width: 70%;
}
/*===========================================
 以下、メディアクエリ
===========================================*/
/*===========================
 【359px未満】
 ★iphone初期にのみ適用されるCSS
===========================*/
@media screen and (max-width:359px){
    .header_link_sp {
        height: 28px!important;
        top: 15px!important;
    }
    .header_link_sp img {
        height: 28px!important;
    }
}

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

/*===========================
 【360px以下】
 ★Xperia AX SO-01E以下に適用されるCSS
===========================*/
@media screen and (max-width:360px){
    .header_link_sp img {
        
    }
}

/*===========================
 【375px以下】
★iPhone6,7縦まで適用されるCSS
===========================*/
@media screen and (max-width:375px){
}

/*===========================
 【414px以下】
★iPhone6PLUS縦まで適用されるCSS
===========================*/
@media screen and (max-width:414px){
}

/*===========================
 【567px以下】
★iPhone5横未満まで適用されるCSS
===========================*/
@media screen and (max-width:567px){
}

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

/*===========================
 【415px】～【800px】 
 ★スマホ縦より大、かつ、タブレット以下まで表示されるCSS
===========================*/
@media screen and (min-width:415px) and (max-width:800px){
}

/*===========================
 【666px以下】
 ★iPhone6以降の横未満に適用されるCSS
===========================*/
@media screen and (max-width:666px) {
}

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

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

/*===========================
【767px以下】
★タブレット未満に適用されるCSS
===========================*/
@media screen and (max-width:767px){
	/*----------------
	 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;
	}

	/*----------------
	 メイン画像レスポンシブページ用の処理
	----------------*/
	.main_img_pc {
		display:none;
	}
	.main_img_sp {
		display:block;
	}
	
	/*----------------
	 テーブル
	----------------*/
	table.formTable {
		width: 100%;
	}
	/* 会社情報 */
	table.formTable tr {
		border: none;
	}
	table.formTable th {
		text-align: center;
	}
	table.formTable th , table.formTable td {
		display: block;
		width: 100%;
		/* 一旦borderをクリア */
		border: none;
		/* bottomのみ復活 */
		border-bottom: 2px solid #23475F;
	}
	table.formTable tr:last-child td {
		border: none;
	}
	div.contact_input_name th , div.contact_input_name td {
		padding: 2px;
		border:none;
	}
    .btn_back, .btn_submit {
        display: block;
        width: 250px;
        margin-bottom: 20px;
    }
}
/*===========================
【800px以下】
★タブレット以下に適用されるCSS
===========================*/
@media screen and (max-width:800px){
}

/*===========================
 【667px】～【1023px】
 ★iphone6横～PC未満まで適用されるCSS
===========================*/
@media screen and (min-width:667px) and (max-width:1023px){
}

/*===========================
【768px以上】 
★タブレット(最小)以上に適用されるCSS
===========================*/
@media screen and (min-width:768px){
	.tb_center {
		text-align: center;
	}
}

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

/*===========================
 【768px】～【1023px】 
 ★タブレット以上、かつ、PC以下に適用されるCSS
===========================*/
@media screen and (min-width:768px) and (max-width:1023px){
}

/*===========================
【1023px以下】
 ★PC未満に適用されるCSS
===========================*/
@media screen and (max-width:1023px){
	/* メニューバー */
	.sp_mail {
		right: 125px;
	}
	.sp_tel {
		right: 80px;
	}
	.header_link_sp, .link_img {
		display: block;
		position: fixed;
		top: 0px;
		height: 45px;
		z-index: 99;
		text-decoration: none;
		color: #ffffff;
	}
	.sp_mail img, .sp_tel img, .sp_insta img, .sp_facebook img {
		height: 28px!important;
		margin-top: 13px;
	}
	header {
		padding-top: 56px;
	}

	.header_link_sp img {
		height: 45px;
		width: auto!important;
		line-height: 45px;
	}

	/* ロゴ部のリンク */
	.header_link_sp {
		display:block;
		position: fixed;
		left:8px;
		top:5px;
		height: 38px;
		z-index: 99;
	}
	.header_link_sp a {
		text-decoration: none;
		color: #ffffff;
	}
	.header_link_sp span {
		font-size: 20px;
		line-height: 45px;
	}
	.header_link_sp img {
		width: 100%;
	}
    /* drawer menu */
    #header_sp {
    background-color: #000000;
    position: fixed;
    top: 0;
    z-index: 99;
    height: 57px;
    width: 100%;
    border-bottom: 1px solid gray;
    }
    .drawer-menu p {
        transform: translateX(-800px)
    }
    .check:checked ~ .drawer-menu p {
        display: block;
        position: absolute;
        top:30px;
        left:30px;
        font-size: 20px;
        border-bottom: 1px solid #fff;
        -webkit-transition-delay: .6s;
        transition-delay: .6s;
        transform: translateX(0);
        transition-property: all;
		-webkit-transition-property: all;
        transition-duration: .5s;
        -webkit-transition-duration: .5s;
    }
    .drawer-menu {
        box-sizing: border-box;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100%;
        padding: 100px 0;
        background: #222;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: perspective(500px) rotateY(-90deg);
        transform: perspective(500px) rotateY(-90deg);
        transform-style: preserve-3d;
        opacity: 0;
    }

    .drawer-menu li {
        text-align: center;
    }
    .drawer-menu li a {
        display: block;
        height: 50px;
        line-height: 50px;
        font-size: 14px;
        color: #fff;
        -webkit-transition: all .8s;
        transition: all .8s;
        border-bottom: 1px solid #666666;
        text-decoration: none;
    }
    .drawer-menu li:first-child {
        border-top: 1px solid #666666;
    }
    .drawer-menu li a:hover {
        color: #1a1e24;
        background: #fff;
    }

    /* checkbox */
    .check {
        display: none;
    }

    /* menu button - label tag */
    .menu-btn {
        position: fixed;
        display: block;
        top: 0;
        right: 0;
        width: 60px;
        height: 55px;
        font-size: 10px;
        text-align: center;
        cursor: pointer;
        background-color: #313131;
        z-index: 101;
    }

    .bar {
        position: absolute;
        top: 10px;
        left: 10px;
        display: block;
        width: 40px;
        height: 1px;
        background: #fff;
        -webkit-transition: all .5s;
        transition: all .5s;
        -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
        transform-origin: left top;
        z-index: 4;
    }

    .bar.middle {
        top: 20px;
        opacity: 1;
        z-index: 4;
    }

    .bar.bottom {
        top: 30px;
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        z-index: 4;
    }

    .menu-btn__text {
        position: absolute;
        bottom: 0px;
        left: 0;
        right: 0;
        margin: auto;
        color: #fff;
        -webkit-transition: all .5s;
        transition: all .5s;
        display: block;
        visibility: visible;
        opacity: 1;
        z-index: 4;
    }

    .close-menu {
        position: fixed;
        top: 0;
        right: 300px;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0);
        -webkit-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: .3s;
        transition-duration: .3s;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
        visibility: hidden;
        opacity: 0;
        z-index: 4;
    }

    /* checked */
    .check:checked ~ .drawer-menu {
        -webkit-transition-delay: .3s;
        transition-delay: .3s;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
        z-index: 100;
        -webkit-backface-visibility:visible;
        backface-visibility:visible;
        -webkit-transition-duration: .6s;
        transition-duration: .6s;
    }

    .check:checked ~ .contents {
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
        -webkit-transform: translateX(-300px);
        -ms-transform: translateX(-300px);
        transform: translateX(-300px);
    }

    
    /*---------------------------
     メニューボタン
    ---------------------------*/
    .check:checked ~ .menu-btn .menu-btn__text {
        visibility: hidden;
        opacity: 0;
    }

    .check:checked ~ .menu-btn .bar.top {
        width: 56px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .check:checked ~ .menu-btn .bar.middle {
        opacity: 0;
    }

    .check:checked ~ .menu-btn .bar.bottom {
        width: 56px;
        top: 50px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .check:checked ~ .close-menu {
        -webkit-transition-duration: .3s;
        transition-duration: .3s;
        -webkit-transition-delay: .3s;
        transition-delay: .3s;
        background: rgba(0,0,0,.5);
        visibility: visible;
        opacity: 1;
        z-index: 100;
    }
	/*----------------
	 PAGETOPがコンテンツに被るので半透明に変更
	----------------*/
	.page_top_img {
		opacity:0.5;
	}
}

/*===========================
 【1024px以下】
 ★タブレット横以下に適用されるCSS
===========================*/
@media screen and (max-width:1024px){
	.cont {
		padding-left :15px;
		padding-right :15px;
	}
	#page_top img:hover {
		opacity: 1!important;
	}
}

/*===========================
 【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){
}



/*======================================================*/
/* これより下は編集しないこと							   */
/*======================================================*/
/*===========================
 ★表示切替
===========================*/
/*----------------
 360px以下のみ表示
----------------*/
@media screen and (min-width:361px){
	.disp_360ika {
		display: none!important;
	}
}
/*----------------
 タブレット未満で表示
----------------*/
@media screen and (min-width:768px){
	.disp_tb_miman {
		display: none!important;
	}
}

/*----------------
 タブレット以下で表示
----------------*/
@media screen and (min-width:801px){
	.disp_tb_ika {
		display: none!important;
	}
}
/*----------------
 タブレット縦以上で表示 
----------------*/
@media screen and (max-width:767px){
	.disp_tb_over {
		display: none!important;
	}
}
/*----------------
 タブレット縦を超す幅で表示 
----------------*/
@media screen and (max-width:800px){
	.disp_tb_801over {
		display: none!important;
	}
}

/*----------------
 PC未満で表示 
----------------*/
@media screen and (min-width:1024px){
	.disp_pc_miman {
		display: none!important;
	}
}

/*----------------
 pc以上で表示 
----------------*/
@media screen and (max-width:1023px){
	.disp_pc_over {
		display: none!important;
	}
}