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




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

　　　　↓テーブル↓

===========================================================================*/
table {
	border: solid 1px #DADADA;
}

caption {
	background: #3e3e3e;
	color: #fff;
	padding: .5em;
	border-radius: 5px 5px 0 0;
}

table tr {
	border-bottom: solid 1px #ddd;
}

table th {
	border-right: solid 1px #ddd;
	font-weight: 400;
	background: #3E3E3E;
	padding: 1em 1em;
	color: #fff;
	width: 23%;
}

table td {
	padding: 0.5em;
	/* text-align: right; */
	border: solid 1px #797979;
}

@media screen and (max-width: 435px) {
	/* 表示領域が435px以下の場合に適用するスタイル */
	table:not(.table_ichiran),table:not(.table_ichiran) tr,table:not(.table_ichiran) th,table:not(.table_ichiran) td,table:not(.table_ichiran) tbody,caption {
		width: 100%;
		display: block;
		box-sizing: border-box;
	}

	table th {
		padding: .5em;
		border: 0;
	}
	
}

#send-table {
	border-left: 1px solid #dcdcc1;
	border-top: 1px solid #dcdcc1;
	font-size: 100%;
}

#send-table th {
	background-color: #656565;
	text-align: left;
	border-right: 1px solid #dcdcc1;
	border-bottom: 1px solid #dcdcc1;
	color: #fff;
}

#send-table td {
	background-color: #fff;
	border-right: 1px solid #dcdcc1;
	border-bottom: 1px solid #dcdcc1;
}

#send-table caption {
	background: #7FBFFF;
	padding: 8px 12px;
	margin: 5px 0;
	color: #fff;
	font-size: 130%;
	font-weight: 700;
}

.hissu {
    background: #fffc80;
    border-radius: 3px;
    padding: 0 3px;
    font-size: 80%;
    color: #080808;
}

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

　　　　↓Q&A↓

===========================================================================*/
.qa {
	background: #fff;
}

.qa dl {
	border-radius: 5px;
	margin: 0 0 1em;
}

.qa dt {
	background-image: url(https://s3-ap-northeast-1.amazonaws.com/j-i-s-sl/temp/img/q01.jpg);
	background-position: left top;
	background-size: 1.3em;
	padding: 0 0 4px 2em;
	background-repeat: no-repeat;
	font-size: 1.2em;
	font-weight: 700;
	border-bottom: solid 1px #d10014;
	margin: 0 0 .5rem;
}

.qa dd {
	background-image: url(https://s3-ap-northeast-1.amazonaws.com/j-i-s-sl/temp/img/a01.jpg);
	background-position: left top;
	background-size: 1.3em;
	padding: 0 0 1em 2em;
	background-repeat: no-repeat;
	margin: 0;
}

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

　　　　↓画像系↓

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

.right_pic {
	padding: 0 0 1em 1em;
	float: right;
}

.left_pic {
	padding: 0 1em 1em 0;
	float: left;
}

@media screen and (max-width: 600px) {
	/* 表示領域が600px以下の場合に適用するスタイル */
	.right_pic {
		padding: 0 0 1em 1em;
		float: right;
		width: 50%;
	}
	.left_pic {
		padding: 0 1em 1em 0;
		float: left;
		width: 50%;
	}
}

@media screen and (max-width: 435px) {
	/* 表示領域が435px以下の場合に適用するスタイル */
	.right_pic {
		padding: 0 0 1em;
		float: none;
		width: 60%;
		display: block;
		margin: 0 auto;
	}
	.left_pic {
		padding: 0 0 1em;
		float: none;
		width: 60%;
	}
}

.sankaku {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 1em 2em 0;
	border-color: #d60000 transparent transparent;
	display: block;
	text-align: center;
	margin: 0 auto -1em;
}
.movie {position: relative;width: 100%;margin:0 auto;padding-top: 56.25%;border: solid 4px #bebebe;box-sizing: border-box;}
.movie iframe { position: absolute; top: 0; left: 0; width: 100%;height: 100%;}
/*=========================================================================

　　　　↓フォーム↓

===========================================================================*/
input {
	padding: 7px 8px;
	font-size: 100%;
	margin: 8px 0 6px;
	border-radius: 5px;
	border: solid 1px #A2A2A2;
}

input[type="submit"] {
	background-color: #5DC11A;
	box-shadow: 1px 2px 0 #149421;
	text-shadow: 0 -1px #149421;
	position: relative;
	padding: .5em 1em;
	border-radius: 5px;
	color: #FFF;
	font-weight: 700;
	text-decoration: none;
	border: solid 1px;
}

input[type="submit"]:hover {
	top: 3px;
	box-shadow: none;
	color: #fff;
}

label:hover {
	background: #FFEFB7;
	cursor: pointer;
	border-radius: 6px;
}

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

　　　　↓レイアウト↓

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

.space-between {
  display: flex;
  justify-content: space-between;
}

.space-around {
  display: flex;
  justify-content: space-around;
}

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

.space-between {
  display: block;
}

.space-around {
  display: block;
  width: 83%;
  margin: 0 auto;
}

}


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

　　　　↓決済↓

===========================================================================*/
.order {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 3px 3px 10px 3px #8c8c8c;
}

.order h3 {
	background: #1f1f1f;
	text-align: center;
	padding: .5em 0;
	color: #fff;
}

.bar {
	background: #feffc6;
	display: block;
	padding: .5em 0;
	border: double 3px #dcb90f;
}

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

　　　　↓ボタン↓

===========================================================================*/
.submit {
	background-color: #48bb00;
	box-shadow: 0 8px 0 #399400;
	text-shadow: 0 -1px #007b15;
	position: relative;
	padding: .5em;
	border-radius: 5px;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	display: inline-block;
	margin: .3em 1em 1.7rem;
	text-align: center;
	box-sizing: border-box;
}

.submit:active,.submit:hover {
	top: 8px;
	box-shadow: none;
}

.submit02 {
    background-color: #dc8e00;
    box-shadow: 0 8px 0 #945a00;
    text-shadow: 0 -1px #a36900;
    position: relative;
    padding: .5em;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    margin: .3em 1em 1.7rem;
    text-align: center;
    box-sizing: border-box;
}
.submit02:active,.submit02:hover {
	top: 8px;
	box-shadow: none;
}

.imgbtn {
	display: block;
	margin: 30px auto;
}

.head_btn01 {
	display: block;
	right: 0;
	color: #000;
	font-size: 32px;
	background: #208F02;
	padding: 1.5em 0;
}

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

　　　　↓フッター↓

===========================================================================*/
footer {
	width: 100%;
	padding: 2em 0 1em;
	font-size: 80%;
	color: #5F5F5F;
	margin-top: 3em;
}

.footer_in {
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 1em;
}

footer a {
	color: #3C3C3C;
}

footer a:hover {
	color: #fff;
}

.page_top a {
	position: fixed;
	bottom: 10px;
	right: 10px;
	display: block;
	text-align: center;
	text-decoration: none;
	background: rgba(72, 187, 0, 0.83);
	color: #fff;
	padding: .5em;
	line-height: 1.4;
	width: 3.5em;
	height: 3.5em;
}

.page_top a:hover {
	background: rgba(121,121,121,0.7);
}

@media screen and (max-width: 435px) {
	/* 表示領域が320px以下の場合に適用するスタイル */
	.page_top a {
		display: none;
	}
}

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

　　　　↓リンク↓

===========================================================================*/
a img {
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

a img:hover {
	opacity: .7;
	filter: alpha(opacity=70);
}



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

　　　　↓デフォルト/フォント↓

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

.align_l{text-align:left;} 
.align_r{text-align:right;}
.align_c{text-align:center;}
.red{color: #d8080c;}
.pink {color: #FF2761;}
.blue{color:#03F;}
.yellow {background-color: #ffffa2;}
.bold { font-weight: bold;}
.no_bold { font-weight: normal;}
.under { text-decoration: underline;}
a.n_link {color: #0041FF;border-bottom: solid 1px;}
.red_box {
    border: solid 1px #f22;
    padding: 1em;
    background: #fffee5;
    display: block;
}
.box {
    border: solid 1px #aaa;
    margin-bottom: 1em;
}
.box p{
padding:0.3em 0.5em;
}
.midasi01 {
    border-left: solid 0.3em #da0001;
    padding-left: 0.7em;
    margin: 1em 0;
}

.fs_s{
	font-size: 80%;
}
.fs_b{
	font-size: 120%;
}
.fs_b{
	font-size: 150%;
}
.fs_b{
	font-size: 200%;
}





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

　　　　↓デフォルト/レイアウト調整↓

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

.ov_h{overflow:hidden;}
.fr { float: right}
.fl { float: left;}
.clearb { clear: both; }
.position_re{position:relative;}
.center { text-align: center;}
.aligncenter { margin: 0 auto; display: block; }
.scroll_box {
    max-height: 11em;
    overflow: auto;
    padding: 1em;
    border: solid 1px #b7b7b7;
    box-sizing: border-box;
    background: #fff;
    margin: 0 0 1em 0;
}
	.shadow_box{
			box-shadow: 2px 2px 3px #9E9E9E;
	} 



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

↓クリアフィックス↓   */

.cf:before,
.cf:after {content: " ";display: table;}
.cf:after {    clear: both;}

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




/*=========================================================================
	
	　　　　↓SP/調整↓
	
===========================================================================*/


@media screen and (max-width: 435px) {
   /* 表示領域が320px以下の場合に適用するスタイル */
	
    
   /*=========================================================================
	
	　　　　↓SP/レイアウト調整↓
	
	===========================================================================*/
	
	.ov_h{overflow:hidden;}
	.fr { float: right}
	.fl { float: left;}
	.clearb { clear: both; }
	.position_re{position:relative;}
	.center { text-align: center;}
	.aligncenter {margin: 0 auto;max-width: 100%;}
	.sc_box {
		border: solid 1px #DADADA;
		height: 350px;
		overflow: scroll;
		padding: 0 1em;
		font-size: 90%;
		line-height: 1.6;	
		border-radius: 5px;
	}
	.shadow_box{
			box-shadow: 2px 2px 3px #9E9E9E;
	}
	


	.fs_s{
		font-size: 80%;
	}
	.fs_b{
		font-size: 110%;
	}
	.fs_b{
		font-size: 130%;
	}
	.fs_b{
		font-size: 150%;
	}
	

}