@charset "utf-8";

#head-top .site-title img {
  max-width: 250px;
  height: auto;
	margin-top: -15px;
}
@media screen and (max-width: 600px) {
#head-top .site-title img {
	max-width: 70%;
	height: auto;
	margin-top: -15px;
}
}

/**********************************/
/*** 右上固定のお問い合わせボタン ****/
/**********************************/

.fixed-contact-btn{
	position: fixed;
	top: 100px;
	right: 0;
	z-index: 9998;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 56px;
	padding: 14px 8px 12px;
	background: #5b2a86;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 3px 10px rgba(0,0,0,0.18);

	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.fixed-contact-btn.is-show{
	opacity: 1;
	transform: translateY(0);
}

.fixed-contact-icon{
	margin-bottom:8px;
}

.fixed-contact-icon i{
	font-size:22px;
}

.fixed-contact-text{
	font-size:14px;
	font-weight:bold;
	line-height:1.3;
	text-align:center;
}

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

	.fixed-contact-btn{
		top: auto;
		bottom: 40px;
		right: 0;

		width: 38px;
		padding: 8px 4px 6px;
	}

	.fixed-contact-icon{
		margin-bottom:6px;
	}

	.fixed-contact-icon i{
		font-size:16px;
	}

	.fixed-contact-text{
		font-size:11px;
		line-height:1.2;
	}

}

/* タブレット（601〜768px） */
@media screen and (min-width: 601px) and (max-width: 768px){
	.fixed-contact-btn{
		bottom: 80px;
	}

}
/**********************************/
/*** リキャプチャのアイコン ****/
/**********************************/
.grecaptcha-badge {
    bottom: 80px !important;
    opacity: 0;
    transition: opacity 0.4s ease;
}
@media (max-width: 768px) {
    .grecaptcha-badge {
        visibility: hidden !important;
    }
}

/**********************************/
/*** スライドショー ****/
/**********************************/
.custom-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 10 / 7;
  margin: 10px auto 30px;
  overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.custom-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 0;
}

.custom-slide.active {
  opacity: 1;
  z-index: 1;
}

.custom-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  top: 50%;
  left: 50%;
transform: translate(-50%, -55%);/** -55% にすることで、中央よりやや上に移動（マイナス値が大きいほど上に） **/
  color: white;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  padding: 0 10px;
  width: 90%;
  box-sizing: border-box;
text-shadow:
  1px 1px 4px rgba(0, 0, 0, 1),
 -1px -1px 4px rgba(0, 0, 0, 1),
  0px 0px 8px rgba(0, 0, 0, 1),
  0px 0px 10px rgba(0, 0, 0, 0.9);
}

.slide-caption div {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
}
.slide-caption span {
	white-space: nowrap;
}

/* スマホ対応（横幅768px以下） */
@media screen and (min-width: 1150px) {
  .slide-caption {
    font-size: 38px;
  }

  .slide-caption div {
    font-size: 20px;
	  margin-top: 24px;
  }
}
@media screen and (max-width: 660px) {
  .slide-caption {
    font-size: 20px;
  }

  .slide-caption div {
    font-size: 14px;
  }
}

/* さらに小さいスマホ（横幅480px以下）用 */
@media screen and (max-width: 480px) {
  .slide-caption {
    font-size: 18px;
  }

  .slide-caption div {
    font-size: 12px;
  }
}

/**************************************************************************************************************/

/** ヘッダー画像 クリック後に点線の枠が出るの防止 **/

.header_creditcard a {
    outline: none;
}
.header_creditcard a:focus {
    outline: none;
}

/****/
h1#head_h1_title{
	margin: 2px 0 -6px 10px;
	padding: 0;
	line-height: 1.6em;
}
@media screen and (max-width: 660px) {
h1#head_h1_title{
	margin: 0;
	padding: 0;
	line-height: 1.6em;
	text-align: center;
	font-size: 11px;
}
}

/** ブレイクポイント1 **/
@media screen and (max-width:800px) {
}
/** ブレイクポイント2 **/
@media screen and (max-width: 660px) {
}
/** スマホ用 **/
@media screen and (max-width: 480px) {
}

#fukusu_pankuzulist{
	margin:0 0 10px 0;
	font-size: 13px;
}
#fukusu_pankuzulist a{
	color: #0000FF;
}
#fukusu_pankuzulist a:hover{
	color: #595959;
}

@media screen and (max-width:1000px) {
	#fukusu_pankuzulist{
		padding: 0 8px 0 12px;
		margin:0 0 4px 0;
	}
}

/**********************/
/** トップページ **/
/**********************/

#top_banner_aria_wrap .top_banner_aria{
	display: inline-block;
	width: calc((100% / 3) - 5px);
}
#top_banner_aria_wrap .top_banner_aria img{
	width: 100%;
	height: auto;
}
@media screen and (max-width: 480px) {
	#top_banner_aria_wrap .top_banner_aria{
		display: block;
		width: 100%;
	}
}


/**********************/
/** 特商法ページ **/
/**********************/

@media only screen and (max-width:700px){
	#tokushoho_page table th,#tokushoho_page table td{
		display: block;
	}
	#tokushoho_page table th{
		background-color: #FFF9C0;
	}
}

/**********************/
/** プライバシーページ **/
/**********************/

#privacy_page dt{
	font-weight: bold;
	margin: 20px 0px 10px 0px;
}
#privacy_page dd{
	margin: 5px 0px 5px 0px;
}

/**********************/
/** はじめての方へ **/
/**********************/

#beginners_page h3{
	color:#8b4513;
	border-bottom: 1px solid #8b4513;
	font-weight: bold;
}
#beginners_page h4{
	font-weight: bold;
}
#beginners_page h5{
	font-weight: bold;
	margin-bottom: 6px;
}

/**********************/
/** お問い合せ **/
/**********************/
#otoiawase_form_wrap{
	margin: 0 2px 0px 2px;
	border: 1px dotted #666666;
	padding: 10px;
}

#otoiawase_page{
	background-color: #EEFFFF;
	margin: 0 2px 30px 2px;
	border: 2px dotted #BAD3FF;
	padding: 10px;
	font-size: 0.9em;
}
#otoiawase_page h4{
	margin: 6px 0 6px 0;
	font-weight: bold;
}
#otoiawase_page p{
	
}
#otoiawase_page ul{
	margin: 4px 0 6px 20px;
}
#otoiawase_page ul li{
	list-style: disc;
}


/**********************/
/** アルコール **/
/**********************/

#alcohol_ea58_page #alcohol_ea75_page h2{
padding-left: 0px;
}

#alcohol_ea75_page{
}
#alcohol_ea75_page br{
	display: none;
}
#alcohol_ea75_page p{
	line-height: 24px;
	font-size:16px;
	margin-top: 5px;
	margin-bottom: 5px;
}
#alcohol_ea75_page .alcohol_ea75_price{
	font-size:22px;
}
#alcohol_ea75_page .alcohol_ea75_ea01{
	margin-top: 20px;
	margin-bottom:20px;
	width: 80%;
}
#alcohol_ea75_page .alcohol_ea75_ea01 img{
	width: 100%;
	height: auto;
}
@media screen and (max-width: 600px){
	#alcohol_ea75_page .alcohol_ea75_ea01{
		width: 100%;
	}
}
#alcohol_ea75_page h1{
  margin-top:-20px;
  padding: 0.5em;/*文字周りの余白*/
  color: #494949;/*文字色*/
  background: #fffaf4;/*背景色*/
  border-left: solid 5px #ffaf58;/*左線（実線 太さ 色）*/

}
#alcohol_ea75_page h2{
padding-left: 40px;
line-height: 36px;
font-size: 26px;
margin-top: 40px;
color: #ff4500;
font-weight: bold;
}
#alcohol_ea75_page h2.no1{
background: url(https://file002.shop-pro.jp/PA01351/782/alcohol_ea75_page/no1.png) no-repeat;
}
#alcohol_ea75_page h2.no2{
background: url(https://file002.shop-pro.jp/PA01351/782/alcohol_ea75_page/no2.png) no-repeat;
}
#alcohol_ea75_page h2.no3{
background: url(https://file002.shop-pro.jp/PA01351/782/alcohol_ea75_page/no3.png) no-repeat;
}
#alcohol_ea75_page h2.no4{
background: url(https://file002.shop-pro.jp/PA01351/782/alcohol_ea75_page/no4.png) no-repeat;
}
#alcohol_ea75_page h2.no5{
background: url(https://file002.shop-pro.jp/PA01351/782/alcohol_ea75_page/no5.png) no-repeat;
}
#alcohol_ea75_page h2.no6{
background: url(https://file002.shop-pro.jp/PA01351/782/alcohol_ea75_page/no6.png) no-repeat;
}
#alcohol_ea75_page h2.no7{
background: url(https://file002.shop-pro.jp/PA01351/782/alcohol_ea75_page/no7.png) no-repeat;
}
#alcohol_ea75_page .li_no1{
	display: block;
	font-weight: bold;
	font-size: 18px;
	color: #FF0000;
	margin-bottom: 8px;
}
#alcohol_ea75_page ol li{
	line-height: 24px;
	font-size:16px;
	margin-top: 5px;
	margin-bottom: 8px;
}
#alcohol_ea75_page .alcohol_ea75_ea02{
	margin-left: 10px;
	margin-bottom:30px;
	max-width: 90%;
}
.alcohol_ea75_ea0304_wrap{
}
.alcohol_ea75_ea03{
	display: inline-block;
	margin: 10px 10px;
}
.alcohol_ea75_ea04{
	display: inline-block;
	margin: 0 10px;
}
.alcohol_ea75_ea0506_wrap{
}
.alcohol_ea75_ea05{
	display: inline-block;
	margin: 10px 10px;
}
.alcohol_ea75_ea06{
	display: inline-block;
	margin: 0 10px;
}
.alcohol_ea75_ea07{
	margin: 10px 0 0 10px;
	max-width: 90%;
}
#alcohol_ea75_page table{
	margin: 20px 0 0 0;
}
#alcohol_ea75_page table th{
	background-color: #FF0000;
	color: #ffffff;
	padding: 10px 0;
}
#alcohol_ea75_page table td{
	text-align: center;
}
#alcohol_ea75_page table td.meca_number{
	padding-top: 20px;
	font-weight: bold;
}
#alcohol_ea75_page table td.meca_setsumei{
	padding: 0 10px;
}
#alcohol_ea75_page .ea75_guid{
    padding: 0.5em 1em;
    margin: 10px 0 30px 0;
    background: #ffffe0;
    border: dashed 2px #ff7f50;/*点線*/
}
.ea75_chuuki ul{
	margin: 30px 0 0px 0;
	border-bottom: 1px solid #d3d3d3;
	padding-bottom: 30px;
}
.ea75_chuuki ul li{
	list-style: none;
	padding: 0 0 4px 0;
	font-size: 11px;
}

/************************************************/
/*********************************************/
/***************************************************/
.general_table_yyy table,
.general_table_yyy td,
.general_table_yyy th{
	border: 1px solid #595959;
	border-collapse: collapse;
}
