@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	word-break: break-all;
}

body{
	font-family: 'Noto Sans JP', sans-serif;
}

a{
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

.wrapper{
	max-width: 1040px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

li{
	list-style:none;
}

.sp{
	display: none;
}

#top_bg{
	background-image: url("../images/top_bg.webp?0220");
	background-size: cover;
	background-position: center;
	width: 100%;
	padding-top: 40px;
	position: relative;
	z-index: 1;
}

#top_bg h1 {
	text-align: center;
}

#top_bg h1 img{
	width: 100%;
}

#main_bg{
	background-image: url("../images/main_bg.webp");
	background-size: cover;
	background-position: center;
	margin-top: -150px;
	padding-top: 200px;
	position: relative;
	z-index: 0;
	padding-bottom: 100px;
}

#main_bg h2{
	display: block;
	background: linear-gradient(90deg, #ccc 0%, #fff 40%, #ccc 100%);
	background: -webkit-linear-gradient(90deg, #ccc 0%, #fff 40%, #ccc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 36px;
	text-align: center;
	font-weight: 700!important;
	margin-bottom: 30px;
}

.shop_block{
	display: flex;
	margin-bottom: 100px;
}

.shop_left{
	background: rgb(204,204,204);
	background: linear-gradient(-45deg, rgba(204,204,204,1) 0%, rgba(255,255,255,1) 40%, rgba(204,204,204,1) 100%);
	width: 540px;
	display: grid;
	place-content: center start;
	place-items: center start;
}

.shop_left h3{
	border-bottom: solid 2px #1C2E6D;
	font-size: 36px;
	padding-bottom: 10px;
	padding-left: 30px;
	width: 450px;
	margin-bottom: 20px;
	line-height: 1.2!important;
	font-weight: 700!important;
}

.shop_right{
	box-shadow: 15px 15px 0px 0px rgba(95, 0, 0, 0.8);
}

.shop_right img{
	width: 100%;
	height: 100%;
}

.shop_address{
	font-size: 18px;
	padding-left: 30px;
	margin-bottom: 10px;
}

.shop_tel{
	font-size: 36px;
	font-weight: 800;
	padding-left: 30px;
	margin-bottom: 20px;
}

.shop_btn{
	background-color: #011333;
	color: #fff;
	text-align: center;
	display: inline-block!important;
	margin-left: 30px;	
	font-size: 18px;
}

.shop_btn a{
	color: #fff;
	text-decoration: none;
	padding: 5px 20px;
	display: block;
}

.shop_btn a:hover{
	opacity: 0.8;
}

#under_top_bg{
	background: rgb(1,19,51);
	background: linear-gradient(0deg, rgba(1,19,51,1) 80%, rgba(1,19,51,0) 100%);
	margin-top: -150px;
	padding-top: 150px;
	position: relative;
	z-index: 1;
}

#under_bg{
	padding-bottom: 100px;
	background-color: #011333;
	padding-top: 20px;
	position: relative;
	z-index: 1;
}

#style_btn{
	background-color: #ED1C24;
	text-align: center;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
	padding: 20px;
	color: #fff;
	text-decoration: none;
	display: block;
	font-size: 24px;
	font-weight: 700;
}




/*** Store* -------------------------------*/

.storeLists > li {
  margin-top: 85px;
	
}

.storeLists > li:nth-of-type(1) {
  margin-top: 0;
	margin-bottom: 60px;
}

.storeListsTtl {
  line-height: 1;
	width: 100%;
}

.storeListsTtl img{
	width: 100%;
}

.storeListsInfo {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px!important;
  padding: 40px 50px;
  background-color: #EEEEEE;
}

.storeListsInfo > ul:nth-of-type(1) {
  width: 38%;
}

.storeListsInfo > ul:nth-of-type(2) {
  flex: 1;
  margin-top: -15px;
  margin-left: -30px;
}

.storeListsInfo > ul > li {
  font-size: 18px;
  line-height: 1.4;
}

.storeListsInfoTel,
.storeListsInfoAddress,
.storeListsInfoTime {
  position: relative;
  padding-left: 40px;
}

.storeListsInfoAddress,
.storeListsInfoTime {
  display: inline-block;
  margin-top: 15px;
  margin-left: 30px;
}

.storeListsInfoTel {
	margin-bottom: 10px;
	font-size: 36px !important;
	font-weight: 700;
	margin-top: -15px;
}

.storeListsInfoTel::before,
.storeListsInfoAddress::before,
.storeListsInfoTime::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  content: '';
}

.storeListsInfoTel::before {
  background-image: url("../images/icn_tel.svg");
}
.storeListsInfoAddress::before {
  background-image: url("../images/icn_address.svg");
}
.storeListsInfoTime::before {
  background-image: url("../images/icn_time.svg");
}

.storeListsInfoTel::before {
  top: 6px;
}

.storeListsInfoBtn {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.storeListsInfoBtn > a {
  display: inline-block;
  position: relative;
  padding: 10px 35px 10px 15px;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.storeListsInfoBtn > a::after {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: '';
}

.storeListsProductInner {
  margin-top: 35px;
}

.storeListsProductLists > li {
  margin-top: 90px;
}

.storeListsProductLists > li:nth-of-type(1) {
  margin-top: 0;
}

.storeListsProductLists > li .storeListsProductLists > li {
  margin-top: 45px;
}

.storeListsProductListsTtl {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.storeListsProductListsTtl::before {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1px;
  background-color: #d6d6d6;
  content: '';
}

.storeListsProductListsTtl > span {
  display: inline-block;
  padding-right: 20px;
  background-color: #fff;
  font-size: 1.8rem;
}

.storeListsProductListsSubTtl {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}

.storeListsProductListsTable {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.storeListsProductListsTable th,
.storeListsProductListsTable td {
  padding: 12px 15px;
  border: 1px solid #b9b9b9;
  vertical-align: middle;
}

.storeListsProductListsTable th {
  width: 25%;
  background-color: #f2f2f2;
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
}

.storeListsProductListsTable th.lgray {
  background-color: #f2f2f2;
}
.storeListsProductListsTable th.gray {
  background-color: #e6e6e6;
}

.storeListsProductListsTable td {
  width: 75%;
  font-size: 1.5rem;
}

.storeListsProductListsTable td > strong {
  display: inline-block;
  margin-right: 0.8em;
  color: #0074e7;
  font-weight: 600;
}




/*🔲🔲🔲🔲🔲🔲🔲🔲 アコーディオン 🔲🔲🔲🔲🔲🔲🔲🔲🔲🔲*/

/*アコーディオン全体*/
.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: #fff;
	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%;
}