@charset "utf-8";
/* 
 style info : 基本共通スタイル

2019/9/25

color 
メインカラーオレンジ　#e7380d
サブカラー
緑　#33b963　
青　#3075fd
ピンク　#f15089

文字色グレー　#333


 */
 
/*----------------------------------------------------
	base	
----------------------------------------------------*/
* {
}
html{
	font-size: 62.5%;/* 16px x 0.625 = 10px(=1rem) */
}
html,
body {
 overflow-x: hidden;
}
body{
	font-size:16px;
	font-size: 1.6rem;/* 16px */
	font-family: Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	line-height:1.6;
	letter-spacing: 0.05em;
	-webkit-text-size-adjust: 100%;/*iphone 調整用*/
	-webkit-font-smoothing: antialiased;/*ちらつき防止用*/
	background:#fff;
	color:#333;
	/*padding-top:100px;*/
}

/*IE11用ハック*/
_:lang(x)::-ms-backdrop, body{
	font-family: Meiryo, Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif; 
} 

@media screen and (max-width: 768px) {
body{
	/*padding-top:50px;*/
}
}
select,input,button,textarea,button{
	font:99% arial,helvetica,clean,sans-serif;
}

table{
	font-size:inherit;font:100%;
}
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* link*/
a {
	text-decoration:none;
	color:#333;
}

a:link {
}

a:visited {
}

a:hover{
	color:#e7380d;
}


a img:hover,.mover:hover{
	-webkit-transition: 0.6s ;
	transition: 0.6s ;
	opacity:0.8;
	filter: alpha(opacity=80);        /* ie lt 8 */
	-ms-filter: "alpha(opacity=80)";  /* ie 8 */
	-moz-opacity:0.8;                 /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.8;              /* Safari 1.x */
}



@media screen and (max-width: 768px) {
img{
	max-width:100%;
	height:auto;
}
}

/*----------------------------------------------------
	layout
----------------------------------------------------*/
#contents{
}
.inner,footer{
	width:980px;
	margin:auto;
}


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

#contents,footer,.inner{
	width:100%;
}
.inner{
	padding:0 10px;
	box-sizing: border-box;
}
}

/*----------------------------------------------------
	wrap
----------------------------------------------------*/
#wrap{
	display: flex;
  flex-direction: column;
  min-height: 100vh;
}




/*----------------------------------------------------
	header
----------------------------------------------------*/



/*----------------------------------------------------
	footer
----------------------------------------------------*/
footer{
	width: 100%;
	padding:10px 5px;
	margin-top: auto;
}

p.copyright{
	font-size:1.4rem;
	text-align: center;
	color: #e7380d;
}
/*TOPへ戻るボタン*/
.totop{
	position:fixed;
	right:30px;
	bottom:50px;
}
.totop a{
	display:block;
	background:rgba(200,200,200,0.7);
	width:70px;
	height:70px;
	line-height:70px;
	border-radius:35px;
	text-align:center;
	color:#333;
}

.totop i{
	font-size:3.0rem;
}
@media screen and (max-width: 768px) {

p.copyright{
	font-size:1.2rem;
}

.totop{
	right:20px;
	bottom:55px;
}
.totop a{
	width:50px;
	height:50px;
	line-height:50px;
	border-radius:25px
}
.totop i{
	font-size:2.0rem;
}

}

/*----------------------------------------------------
	パーツ
----------------------------------------------------*/

/*ボタン
-----------------------------------------*/	
.btn{
	margin: 40px 0;
}
.btn.btn-regist{
	margin: 40px 0 0;
}
.btn a{
	box-sizing:border-box;
	position:relative;
	display:block;
	background:#333;
	color:#fff;
	width: 600px;
	margin:auto;
	padding:20px 0;
	text-align:center;
	font-size:1.8rem;
}
.btn a:after{
	position: absolute;
	top: 50%;
	right: 30px;
	margin-top: -12px;
    content: "\f105";
	color:#fff;
    font-family: FontAwesome;
	}
	
.btn.btn-back a{
	background:#D7CFCC;
	color: #000;
}

.btn.btn-regist a{
	background:#DF4043;
	color: #fff;
}
.attentionbtn a{
	box-sizing:border-box;
	position:relative;
	display:block;
	background:#333;
	color:#fff;
	margin:auto;
	width:450px;
	padding:8px 0;
	margin:20px 0 10px;
	text-align:center;
}
.attentionbtn  a:after{
	position: absolute;
	top: 50%;
	right: 30px;
	margin-top: -12px;
    content: "\f105";
	color:#fff;
    font-family: FontAwesome;
}
@media screen and (min-width: 768px) {
	.attentionbtn a br{
		display: none;
	}
}
input.btn,input.btn-back{
	cursor:pointer;
}

/*inputボタン装飾*/
input.btn{
	font-family: FontAwesome;
	background:#D27800;
	color: #fff;
	border:0;
	width:600px;
	/*height:50px;*/
	margin:auto;
	padding:20px 0;
	text-align:center;
	font-size:1.8rem;
}
input.btn.btn-back{
	background:#D7CFCC;
	color: #000;
}
input.btn.btn-regist{
	background:#DF4043;
	color: #fff;
}

.btnwrap{
	text-align:center;
}
@media screen and (max-width: 768px) {
	.btn.btn-regist{
	margin: 30px 0 0;
}
	.btn a,input.btn{
		width:90%;
	}
	.attentionbtn a{
		width:100%;
	}
    .btn a:after,.attentionbtn a:after{
	right: 20px;
	}

}
@media screen and (max-width: 320px) {
	.btn a,input.btn{
        font-size: 1.4rem;
	}

}

/* table 表組基本
-----------------------------------------*/	

table {
	border-collapse: collapse;
	width:100%;
	box-sizing: border-box;
}
table:nth-of-type(n+2) {
	margin-top:60px;
}
caption{
	font-size: 2.0rem;
	font-weight: bold;
	padding: 4px;
	border-bottom: 2px solid #333;
}
.liquor table {
	width:70%;
	margin-left:auto;
	margin-right:auto;
}
 table th,table td{
	border-bottom:1px solid  #b3a9a6;
}
 table tr:last-child th,table tr:last-child td{
	border-bottom:none;
}
table th {
	background: #f3f3f3;
	padding: 15px 20px;
	vertical-align:middle;
	white-space:nowrap;
}
table td {
	padding: 10px 20px;
	vertical-align:middle;
}

@media screen and (max-width: 768px) {
	
	table {
    width: 100%;
  }
	
	.liquor table {
	width:100%;
}
  table th {
		padding:10px;
		display:block;
		width:100%;
		box-sizing:border-box;
	  white-space:normal;
	}
	table td {
		padding:10px;
		display:block;
		width:100%;
		box-sizing:border-box;
	}
 table tr:last-child th,table tr:last-child td{
	border-bottom:1px solid  #b3a9a6;
}
}

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



/* clerfix */

.clear {
  clear: both;
}
.cf:after{
	content: "";
	display: block;
	clear: both;
}
.cf:before {
  display: inline-table;
}
.cf {
	zoom:1;
}

/* float */

.floatL {
	float: left;
}
.floatR {
	float: right;
}

/*位置*/
.imgC {
	margin:0 auto 20px;
}

.alL{
	text-align: left;
}

.alC{
	text-align: center;
}
.alR{
	text-align: right;
}
/*fontsize*/

.s-font{
	font-size:1.2rem ;
}
.l-font{
	font-size:1.8rem;
}

.bold{
	font-weight:bold;
}
.red{
	color:#c0272d;
}

.blue{
	color:#006DFF;
}

/*余白*/
.mgt10{
	margin-top: 10px;
}
.mgt20{
	margin-top: 20px;
}
.mgt30{
	margin-top: 30px;
}
.mgb10{
	margin-bottom: 10px;
}
.mgb20{
	margin-bottom: 20px;
}
.mgb30{
	margin-bottom: 30px;
}

.mgtb10{
	margin-top: 10px;
	margin-bottom: 10px;
}
.mgtb20{
	margin-top:20px;
	margin-bottom: 20px;
}
.mgtb30{
	margin-top: 30px;
	margin-bottom: 30px;
}
/*PCだけ非表示*/
.pc-none{
	display:none;
}
@media screen and (max-width: 768px) {
.pc-none{
	display:block;
}
}
/*SPだけ非表示*/

@media screen and (max-width: 768px) {
.sp-none{
	display:none;
}
}
 

