@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho+B1&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	color: #040000;
	font-family: "Noto Sans JP", sans-serif;
}

a{
	text-decoration: none;
	transition : all 0.5s ease 0s;
}

a:hover{
	opacity: 0.8;
}

p,li{
	font-size:16px;
	line-height:1.5;
}

.sp{
	display: none;
}

.js-scrollable {
   overflow-x: scroll;
}

.wrapper{
	width: 100%;
	max-width: 1040px;
	margin-left: auto;
	margin-right: auto;
}

.relative{
	position: relative;
}



/*----ロード画面----*/

/* 初期状態のローディング画面 */
#loader {
  position: fixed;
  top: 146px;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.spinner-image {
	margin-top: -100px;
	width: 40px;
	height: 40px;
}

/* コンテンツを最初は非表示かつ透明にしておく */
#content {
  opacity: 0;
  transition: opacity 1s ease;
}



/*----固定バナー----*/

#fixed_banner_box {
  position: fixed;
  top: 80%;
  right: -100%; /* 初期位置を画面外に設定 */
  transition: right 0.8s ease-in-out; /* スライドインのアニメーション */
  z-index: 1000;
  width: 150px; /* バナーの幅 */
}

/* バナーが表示される状態 */
#fixed_banner_box.show {
  right: -2px; /* 画面内にスライドイン */
}



/*----TOP MOVIE----*/

#top_movie{
	width: 100%;
	margin-bottom: -10px;
	position: relative;
}

#top_movie video{
	width: 100%;
}

#top_band{
	background-color: #020009;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 20px;
}

#top_band img{
	max-width: 560px;
}

h1{
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-size: 36px;
	color: #ccc;
	line-height: 1.5;
	margin-bottom: 20px;
}




/*----トップメニュー----*/

#top_menu{
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
	margin-bottom: 60px;
}

#top_menu li{
	border: solid 1px #000;
	position: relative;
	text-align: center;
	width: 30%;
}

#top_menu li::after{
	content: url("../images/under_arrow.svg");
	width: 16px;
	height: 6px;
	position: absolute;
	bottom: 20px;
	left: calc(50% - 9px);
}

#top_menu li:hover::after{
	bottom: 18px;
	transition : all 0.2s ease 0s;
}

#top_menu li a{
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-size: 18px;
	color: #000;
	width: 100%;
	padding-top: 25px;
	padding-bottom: 25px;
	display: block;
}



/*■■■■■■■■■■■■■■■■アルパイン直営店部分■■■■■■■■■■■■■■*/

#direct_bg{
	background-color: #e6e6e6;
	padding-top: 100px;
	padding-bottom: 60px;
	margin-bottom: 100px;
}

.ttl_bar{
	background-color: #020009;
	padding: 10px;
	text-align: center;
	margin-bottom: 40px;
}

.ttl_bar h2{
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-size: 30px;
	color: #ccc;
}

.direct_box{
	background-color: #fff!important;
	width: 320px;
	padding: 25px;
	margin-right: 30px;
	margin-bottom: 50px;
	position: relative;
	z-index: 1;
}

.direct_box:before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #0099d6 0%, #281ab4 45%, #941aab 77%, #e16e21 100% );
    transform: translate3d(8px, 8px, 0);
    filter: blur(0px);
    opacity: var(1);
    transition: opacity 0.3s;
    border-radius: inherit;
}

.direct_box::after {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    border-radius: inherit;
}
        
.direct_box:nth-of-type(3n){
	margin-right: 0px;
}

.direct_box p{
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-size: 16px;
	color: #666;
	margin-bottom: 20px;
	text-align: center;
}

.direct_box2{
	background-color: #fff!important;
	width: 248px;
	padding: 20px;
	margin-right: 16px;
	margin-bottom: 50px;
	position: relative;
	z-index: 1;
}

.direct_box2 img{
	width: 100%;
}

.direct_box2:before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #0099d6 0%, #281ab4 45%, #941aab 77%, #e16e21 100% );
    transform: translate3d(8px, 8px, 0);
    filter: blur(0px);
    opacity: var(1);
    transition: opacity 0.3s;
    border-radius: inherit;
}

.direct_box2::after {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    border-radius: inherit;
}
        
.direct_box2:nth-of-type(4n){
	margin-right: 0px;
}

.direct_box2 p{
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-size: 16px;
	color: #666;
	margin-bottom: 20px;
	text-align: center;
}


.direct_btn{
	background-color: #e6e6e6;
	text-align: center;
	font-size: 16px;
	margin-top: 20px;
	font-weight: 500;
}

.direct_btn label{
	display: block;
	padding: 10px;
}




/*ポップアップここから*/
.popup_wrap input {
  display: none;
}

.popup_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.popup_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.popup_content {
	position: relative;
	align-self: center;
	width: 85%;
	max-width: 1040px;
	height: 80%;
	padding: 5%;
	box-sizing: border-box;
	background: #000;
	line-height: 1.4em;
	transition: 0.5s;
	overflow: auto;
	border: solid 1px #ccc;
	color: #fff;
}

.close_btn {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 36px;
  cursor: pointer;
}

.popup_wrap input:checked ~ .popup_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.open_btn:hover{
    color:#aaa;
    transition: .2s ease;
	cursor:pointer;
}

.inner_content h2{
	border-bottom: 2px solid;
	border-image: linear-gradient(to right, #0099d6, #281ab4,#941aab,#e16e21) 1;
	padding-bottom: 20px;
	margin-bottom: 30px;
	font-size: 30px;
	display: block;
}

.inner_content .flex_bet_start_wrap img{
	width: 48%;
	margin-bottom: 30px;
}

.inner_content h3{
	font-size: 21px;
	padding-bottom: 15px;
	border-bottom: solid 1px #fff;
	margin-bottom: 20px;
}

.inner_content .no_border{
	border-bottom: none;
	margin-bottom: 10px!important;
}

.direct_massage{
	border: solid 1px #fff;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 50px;
}

.inner_content ul{
	margin-bottom: 40px;
	display: flex;
	flex-wrap: wrap;
}

.inner_content ul li{
	width: 50%;
	border-left: solid 5px #fff;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin-bottom: 20px;
	display: flex;
	
	align-items: center;
}

.inner_content p span{
	font-size: 18px;
	margin-bottom: 10px;
	display: inline-block;
}

.direct_tel{
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 20px;
}

.direct_url{
	color: #62a3e6;
	margin-bottom: 50px;
	display: inline-block;
}

.direct_sticker{
	width: 100%;
}






/*■■■■■■■■■■■■■■■■トップページ地図部分■■■■■■■■■■■■■■*/

#map_txt{
	text-align: center;
	margin-bottom: 70px;
}

#japan_map{
	background-image: url("../images/japan_map.svg");
	background-repeat: no-repeat;
	background-position: center;
	width: 1040px;
	height: 860px;
}

#map li{
	display: inline-block;
	border: solid 2px #fff;
	width: 100px;
	text-align: center;
	background-color: #cccccc;
}

.no_store{
	padding: 10px;
	text-align: center;
	color: #fff;
}

#map h3{
	font-size: 16px;
}

/*■■■■■▼北海道■■■■■*/

#area_1{
	width: 110px;
	position: absolute;
	top: 50px;
	left: 880px;
}

#area_1 h3{
	color: #5ccfe6;
}

#area_1 li a{
	background-color: #5ccfe6;
	display: block;
	text-align: center;
	width: 100%;
	padding: 10px;
}

/*■■■■■▼東北■■■■■*/

#area_2{
	width: 210px;
	position: absolute;
	top: 200px;
	left: 780px;
}

#area_2 h3{
	color: #5c8ae6;
}

#area_2 li a{
	background-color: #5c8ae6;
	display: block;
	text-align: center;
	width: 100%;
	padding: 10px;
}

/*■■■■■▼関東■■■■■*/

#area_3{
	width: 210px;
	position: absolute;
	top: 400px;
	left: 780px;
}

#area_3 h3{
	color: #735ce6;
}

#area_3 li a{
	background-color: #735ce6;
	display: block;
	text-align: center;
	width: 100%;
	padding: 10px;
}

/*■■■■■▼中部■■■■■*/

#area_4{
	width: 240px;
	position: absolute;
	top: 140px;
	left: 320px;
}

#area_4 h3{
	color: #b85ce6;
}

#area_4 li a{
	background-color: #b85ce6;
	display: block;
	text-align: center;
	width: 100%;
	padding: 10px;
}

/*■■■■■▼関西■■■■■*/

#area_5{
	width: 240px;
	position: absolute;
	top: 640px;
	left: 500px;
}

#area_5 h3{
	color: #e65ccf;
}

#area_5 li a{
	background-color: #e65ccf;
	display: block;
	text-align: center;
	width: 100%;
	padding: 10px;
}

/*■■■■■▼中国■■■■■*/

#area_6{
	width: 110px;
	position: absolute;
	top: 140px;
	left: 170px;
}

#area_6 h3{
	color: #e65c8a;
}

#area_6 li a{
	background-color: #e65c8a;
	display: block;
	text-align: center;
	width: 100%;
	padding: 10px;
}

/*■■■■■▼四国■■■■■*/

#area_7{
	width: 110px;
	position: absolute;
	top: 640px;
	left: 350px;
}

#area_7 h3{
	color: #e6735c;
}

#area_7 li a{
	background-color: #e6735c;
	display: block;
	text-align: center;
	width: 100%;
	padding: 10px;
}

/*■■■■■▼九州・沖縄■■■■■*/

#area_8{
	width: 110px;
	position: absolute;
	top: 350px;
	left: 20px;
}

#area_8 h3{
	color: #e6a95c;
}

#area_8 li a{
	background-color: #e6a95c;
	display: block;
	text-align: center;
	width: 100%;
	padding: 10px;
}

#map{
	margin-bottom: 150px;
}

#map li a{
	color: #fff;
}


/*■■■■■■■■■■■■■■■■アルパインオフィス■■■■■■■■■■■■■■*/

.office_box p{
	font-size: 21px;
	color: #040000;
}

.office_box p span{
	font-size: 18px;
	color: #666;
}

#office_h3{
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #333;
}

.office_reserve{
	width: 31%;
	padding: 30px;
	border: solid 1px #999;
	background-color: #fff;
}

.office_reserve img{
	width: 40px;
	vertical-align: middle;
	margin-right: 10px;
}

.office_reserve a{
	text-decoration: underline;
	color: #004898;
}




/*■■■■■■■■■■■■■■■■イベント情報■■■■■■■■■■■■■■*/

.event_bg{
	background-color: #e6e6e6;
	padding-top: 100px;
	padding-bottom: 100px;
	margin-bottom: 100px;
}

.event_block{
	border: 5px solid;
	background-color: #fff;
	border-image: linear-gradient(to right, #0099d6, #281ab4, #941aab, #e16e21) 1;
	padding: 25px;
	margin-bottom: 20px;
}

.event_block h3{
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.5;
	border-bottom: solid 2px;
	border-image: linear-gradient(to right, #0099d6, #281ab4, #941aab, #e16e21) 1;
	margin-bottom: 25px;
	padding-bottom: 10px;
}

.event_l{
	width: 58%;
}

.event_l_full{
	width: 100%;
}

.event_r{
	width: 40%;
	text-align: right;
}

.event_r img{
	max-height: 320px;
}

.event_block dl {
  display: flex;
  flex-wrap: wrap;
	align-items: center;
  width: 100%;
}

.event_block dt {
	width: 18%;
	margin-bottom: 10px;
	background-color: #666;
	text-align: center;
	color: #fff;
	padding: 10px;
}

.event_block dd {
	width: 78%;
	margin-bottom: 10px;
	margin-left: 4%;
}

.past_btn{
	background-color: #333;
	text-align: center;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 15px;
	color: #fff;
	text-decoration: none;
	display: block;
	font-size: 18px;
	font-weight: 700;
	margin-top: 50px;
	margin-bottom: 30px;
}


.goods_block{
	background: rgb(0,153,214);
	background: linear-gradient(90deg, rgba(0,153,214,1) 1%, rgba(40,26,180,1) 45%, rgba(148,26,171,1) 77%, rgba(225,110,33,1) 99%);
	text-align: center;
	padding: 30px;
}

.goods_block p{
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-size: 27px;
	color: #fff;
}

.goods_block p::before{
	content: "――";
	margin-right: 10px;
}

.goods_block p::after{
	content: "――";
	margin-left: 10px;
}





/*■■■■■■■■■■■■■■■■店舗一覧■■■■■■■■■■■■■■*/

#store_top_bg{
	background-image: url("../images/store_top_bg.webp");
	background-size: cover;
	background-position: center;
	height: 620px;
	width: 100%;
	text-align: center;
	padding-top: 120px;
	margin-bottom: 0px;
}

#store h1{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 48px;
	line-height: 1.5;
	margin-bottom: 100px;
	font-weight: 800;
	text-align: center;
	letter-spacing: 5px;
	background: linear-gradient(-90deg, #ccc 50%, #fff 72%, #ccc 100%);
	background: -webkit-linear-gradient(-90deg, #ccc 75%, #fff 85%, #ccc 95%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#store h1 img{
	max-width: 720px;
}

#store_top_band{
	background-color: #000;
	padding: 15px;
}

#store_top_band h2{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 30px;
	line-height: 1.5;
	font-weight: 800;
	text-align: center;
	letter-spacing: 5px;
	margin-bottom: 10px;
	background: linear-gradient(-90deg, #ccc 50%, #fff 72%, #ccc 100%);
	background: -webkit-linear-gradient(-90deg, #ccc 20%, #fff 50%, #ccc 90%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.return_btn{
	text-align: center;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 60px;
	border: solid 1px #fff;
	position: relative;
}

.return_btn a{
	color: #fff;
	display: block;
	padding: 25px 80px;
}

.return_btn::after{
	content: "";
	background-image: url("../images/right_arrow_w.svg");
	width: 8px;
	height: 18px;
	position: absolute;
	top: calc(50% - 9px);
	right: 20px;
}

#under_bg{
	background-image: url("../images/store_under_bg.webp");
	background-repeat: repeat-y;
	background-size: cover;
	background-position: top;
	width: 100%;
	padding-bottom: 80px;
}

.store_block{
	color: #e6e6e6;
	margin-bottom: 80px;
}

.store_block h3{
	font-size: 30px;
	text-align: left;
	border-bottom: solid 2px;
	border-image: linear-gradient(to right, #0099d6, #281ab4, #941aab, #e16e21) 1;
	margin-bottom: 30px;
	padding-bottom: 10px;
}

.store_2box{
	width: 50%;
	text-align: left;
}

.store_2box img{
	max-width: 460px;
}

.store_2box p{
	font-size: 18px;
	line-height: 1.8;
}

.store_tel{
	font-size: 30px!important;
	font-weight: 800;
	margin-bottom: 20px;
}

.store_car{
	border: solid 1px #e6e6e6;
	padding: 15px;
}

.store_btn{
	background-color: #e6e6e6;
	text-align: center;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 15px;
	color: #000;
	text-decoration: none;
	display: block;
	font-size: 18px;
	font-weight: 700;
}

.detail_2box{
	width: 48%;
}

.rainbow_band{
	background: rgb(0,153,214);
	background: linear-gradient(90deg, rgba(0,153,214,1) 0%, rgba(40,26,180,1) 36%, rgba(148,26,171,1) 68%, rgba(225,110,33,1) 100%);
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-size: 30px;
	padding: 15px 20px;
	margin-bottom: 20px;
}

.other_box img{
	width: 32%;
	margin-right: 2%;
	margin-bottom: 10px;
}

.other_box img:last-child{
	margin-right: 0%;
}

.accordion_contents h4{
	font-size: 18px;
	font-weight: 700;
	text-align: left;
	margin-bottom: 10px;
}

.baloon{
	text-align: left;
	padding: 15px;
	border-radius: 15px;
	margin-bottom: 30px;
	font-weight: 600;
	border: solid 1.5px #e6e6e6;
}




/*🔲🔲🔲🔲🔲🔲🔲🔲 アコーディオン 🔲🔲🔲🔲🔲🔲🔲🔲🔲🔲*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 100%;
    margin-bottom: 80px;
}

/*アコーディオンタイトル*/
.accordion_ttl{
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.accordion_ttl::before,
.accordion_ttl::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #000;
	transition: all .2s ease;   
}

.accordion_ttl::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);
    
}
.accordion_ttl::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.accordion_ttl.close::before{
  transform: rotate(45deg);
}

.accordion_ttl.close::after{
  transform: rotate(135deg);
}

/*アコーディオンで現れるエリア*/
.accordion_contents {
    display: none;/*はじめは非表示*/
	width: 100%;
	border: solid 1px #e6e6e6;
	padding: 30px;
	background-color: rgba(0, 0, 0, 0.8);
}

#past_wrap .accordion_contents {
	padding: 0px;
	background-color:#e6e6e6;
}

#past_wrap .accordion_ttl::before,
#past_wrap .accordion_ttl::after{
    background-color: #fff; 
}




/*■■■■■■■■■■■■■■■■■■■■スマホ用■■■■■■■■■■■■■■■■■■■■■■■*/

@media screen and (max-width:870px){

/* 初期状態のローディング画面 */
#loader {
  top: 48px;
}
	
.spinner-image {
	margin-top: -40px;
}
	
.wrapper{
	width: 92%;
	margin-left: 4%;
	margin-right: 4%;
}

img{
	width: 100%;
}

p,li{
	font-size:16px;
	line-height:1.7;
}
	
.pc{
	display: none;
}

.sp{
	display: block;
}
	
#top_bg{
	background-position: center;
	height: calc(100vw / 1.2);
	min-height: 320px;
	width: 100%;
	text-align: center;
	padding-top: 50px;
	margin-bottom: 30px;
}

#top_copy{
	font-size: 18px;
	letter-spacing:8px;
}

h1{
	font-size: calc(100vw / 21);
	line-height: 1.3;
	margin-bottom: 15px;
}

.txt16{
	font-size: 16px!important;
}
	
.mb50{
	margin-bottom: 30px;
}
	
#top_movie{
	width: 100%;
	margin-bottom: -10px;
	position: relative;
	overflow: hidden;
	text-align: center;
}

#top_movie video{
	width: 170%;
	margin-left: -35%;
}
	
#top_band img{
	width: 70%;
}
	
	

/*----固定バナー SP----*/

#fixed_banner_box {
	position: fixed;
	top: auto;
	right: auto; /* 初期位置を画面外に設定 */
	bottom: -100%;
	transition: bottom 0.8s ease-in-out; /* スライドインのアニメーション */
	z-index: 1000;
	width: 100%; /* バナーの幅 */
}

/* バナーが表示される状態 */
#fixed_banner_box.show {
	right: auto; /* 画面内にスライドイン */
	bottom: 0px;
}	

#fixed_banner{
	width: 100%;
}
	
#fixed_banner img{
	width: 100%;
}
	


	
/*----トップメニュー SP----*/

#top_menu{
	margin-top: 40px;
	margin-bottom: 40px;
}
	
#top_menu li{
	width: 32%;
}

#top_menu li::after{
	content: url("../images/under_arrow.svg");
	width: 16px;
	height: 6px;
	position: absolute;
	bottom: 20px;
	left: calc(50% - 9px);
}

#top_menu li:hover::after{
	bottom: 18px;
	transition : all 0.2s ease 0s;
}

#top_menu li a{
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-size: calc(100vw / 36);
	line-height: 1.4em;
	color: #000;
	padding: 20px 8px;
	padding-bottom: 25px;
	display: block;
	width: 100%;
	text-align: center;
}
	
	
	

/*■■■■■■■■■■■■■■■■アルパイン直営店部分 SP■■■■■■■■■■■■■■*/

#direct_bg{
	padding-top: 70px;
	padding-bottom: 40px;
	margin-bottom: 70px;
}

.ttl_bar{
	padding: 10px;
	text-align: center;
	margin-bottom: 30px;
}

.ttl_bar h2{
	font-size: 21px;
}

.direct_box,.direct_box2{
	width: 48%;
	padding: 15px;
	margin-right: 4%;
	margin-bottom: 30px;
}

.direct_box:before,.direct_box2:before {
    transform: translate3d(6px, 6px, 0);
}
        
.direct_box:nth-of-type(3n),.direct_box2:nth-of-type(3n){
	margin-right: 4%;
}
	
.direct_box:nth-of-type(2n),.direct_box2:nth-of-type(2n){
	margin-right: 0%;
}

.direct_box p,.direct_box2 p{
	font-size: 15px;
	margin-bottom: 15px;
}

.direct_btn{
	font-size: 16px;
	margin-top: 15px;
}




/*ポップアップここから SP*/

.popup_content {
	width: 90%;
	max-width: 1040px;
	height: 80%;
	padding: 5%;
}

.close_btn {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
}

.inner_content h2{
	border-bottom: 2px solid;
	padding-bottom: 15px;
	margin-bottom: 20px;
	font-size: 21px;
}

.inner_content .flex_bet_start_wrap img{
	width: 48%;
	margin-bottom: 20px;
}

.inner_content h3{
	font-size: 18px;
	padding-bottom: 12px;
	border-bottom: solid 1px #fff;
	margin-bottom: 15px;
}

.inner_content .no_border{
	border-bottom: none;
	margin-bottom: 8px!important;
}

.direct_massage{
	border-radius: 10px;
	padding: 15px;
	margin-bottom: 30px;
}

.inner_content ul{
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
}

.inner_content ul li{
	width: 100%;
	border-left: solid 4px #fff;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 10px;
	margin-bottom: 15px;
	font-size: 15px;
}

.inner_content p span{
	font-size: 16px;
	margin-bottom: 10px;
	display: inline-block;
}

.direct_tel{
	font-size: 30px;
	margin-bottom: 20px;
}
	
.direct_url{
	margin-bottom: 30px;
}

.direct_sticker{
	margin-top: 30px;
}	
	
	
	
/*■■■■■■■■■■■■■■■■トップページ地図部分SP■■■■■■■■■■■■■■*/

#map_txt{
	text-align: center;
	margin-bottom: 20px;
}

#japan_map{
	background-image: url("../images/japan_map.svg");
	background-repeat: no-repeat;
	background-position: center;
	width: 90%;
	height: calc(100vw / 1.4);
}

#area_1,#area_2,#area_3,#area_4,#area_5,#area_6,#area_7,#area_8{
	background-color: #fff;
	width: 100%;
	position: static;
	margin-bottom: 30px;
}
	
#area_1 li,#area_2 li,#area_3 li,#area_4 li,#area_5 li,#area_6 li,#area_7 li,#area_8 li{
	width: 32%;
}

#map{
	margin-bottom: 80px;
}

#map li{
	display: inline-block;
}

	
	
	
/*■■■■■■■■■■■■■■■■アルパインオフィス SP■■■■■■■■■■■■■■*/

.office_box p{
	font-size: 18px;
}

.office_box p span{
	font-size: 14px;
}

#office_h3{
	font-size: 21px;
	margin-bottom: 15px;
}

.office_reserve{
	width: 100%;
	padding: 20px;
	margin-bottom: 15px;
	text-align: center!important;
}

.office_reserve img{
	width: 36px;
}

	
	


/*■■■■■■■■■■■■■■■■イベント情報 SP■■■■■■■■■■■■■■*/

.event_bg{
	padding-top: 70px;
	padding-bottom: 70px;
	margin-bottom: 70px;
}

.event_block{
	padding: 20px;
}

.event_block h3{
	font-size: 18px;
	border-bottom: solid 2px;
	margin-bottom: 20px;
	padding-bottom: 8px;
}

.event_l,.event_l_full{
	width: 100%;
	margin-bottom: 20px;
}

.event_r{
	width: 100%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
	
.event_r img{
	max-height: auto!important;
	object-fit: cover;
	width: auto;
}

.event_block dl {
  display: flex;
  flex-wrap: wrap;
	align-items: center;
  width: 100%;
	
}

.event_block dt {
	width: 18%;
	margin-bottom: 10px;
	padding: 10px;
	font-size: 15px!important;
}

.event_block dd {
	width: 78%;
	margin-bottom: 10px;
	margin-left: 4%;
	font-size: 15px!important;
}

.event_block dd a{
	word-break: break-all;
}	
	
.goods_block{
	padding: 15px;
}

.goods_block p{
	font-size: 18px;
}

.goods_block p::before{
	content: "";
	margin-right: 0px;
}

.goods_block p::after{
	content: "";
	margin-left: 0px;
}



/*■■■■■■■■■■■■■■■■店舗一覧SP■■■■■■■■■■■■■■*/

#store_top_bg{
	background-size: cover;
	background-position: center;
	height: 480px;
	width: 100%;
	text-align: center;
	padding-top: 80px;
	margin-bottom: 0px;
}

#store h1{
	font-size: 30px;
	margin-bottom: 80px;
	font-weight: 800;
}

#store h1 img{
	max-width: 540px;
	width: 80%;
}

#store_top_band{
	padding: 10px;
}

#store_top_band h2{
	font-size: 24px;
	margin-bottom: 8px;
}

#under_bg{
	width: 100%;
	padding-bottom: 60px;
}

.store_block{
	margin-bottom: 60px;
}

.store_block h3{
	font-size: 24px;
	border-bottom: solid 2px;
	margin-bottom: 20px;
	padding-bottom: 8px;
}

.store_2box{
	width: 100%;
	text-align: left;
	margin-bottom: 20px;
}

.store_2box img{
	max-width: 460px;
}

.store_2box p{
	font-size: 16px;
	line-height: 1.8;
}

.store_tel{
	font-size: 24px!important;
	font-weight: 800;
	margin-bottom: 20px;
}

.store_car{
	padding: 10px;
}

.store_btn{
	padding: 12px;
	display: block;
	font-size: 16px;
}

.detail_2box{
	width: 100%;
	margin-bottom: 20px;
}

.rainbow_band{
	font-weight: 400;
	font-size: 21px;
	padding: 15px 20px;
	margin-bottom: 20px;
}
	
/*アコーディオンで現れるエリア*/
.accordion_contents {
	padding: 20px;
}
	
.other_box img{
	width: 48%!important;
	margin-right: 4%;
	margin-bottom: 10px;
}
	
.other_box img:nth-child(even){
	margin-right: 0%;
}	

.other_box img:last-child{
	margin-right: 0%;
}
	
.accordion_contents h4{
	font-size: 16px;
	font-weight: 700;
	text-align: left;
	margin-bottom: 10px;
}

.baloon{
	text-align: left;
	padding: 10px;
	border-radius: 15px;
	margin-bottom: 30px;
	font-weight: 500;
	border: solid 1px #e6e6e6;
}

	
}