@charset "UTF-8";

.page-shop header{
	width: 100%;
	height: 87px;
	background-color: #00368f;
}
@media screen and (max-width: 640px) {
	.page-shop header{
		width: 100%;
		height: 63px;
		background-color: #00368f;
	}
}

/* 画面下部に固定 */
.page-shop .fixedbtn {
  /* height: 100px; */
  background-color: #d9f9fe;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.05);
  padding: 30px 0;
}
/* ボタンのレイアウト */
.page-shop .fixedbtn .list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.page-shop .fixedbtn .list .list__item{
  width: calc(( 100% - 20px ) / 2 ); /* 必要なら調整 */
  height: auto;
}
.page-shop .fixedbtn .list .list__item a{
	width: 100%;
	height: 100%;
}
.page-shop .fixedbtn .list .list__item a img{
	width: 100%;
	height: auto;
}
@media screen and (max-width: 640px) {
	.page-shop .fixedbtn{
		padding: 10px 0;
		background-color: #00368f;
	}
	.page-shop .fixedbtn .list .list__item{
	  width: calc(( 100% - 10px ) / 2 ); /* 必要なら調整 */
	  height: auto;
	}
}
/*-----------------------------------

	store_list

-----------------------------------*/
.page-shop .sec-shop{
	color: #fff;
    background-color: #00368f;
}
.shopt__title{
	margin-bottom: 74px;
}
.section--pb_sm {
    padding-bottom: 70px;
}
/* タブボタンのレイアウト */
.tab__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  list-style: none;
  margin-bottom: 66px;
}

.tab__btns li {
  width: calc((100% - 20px) / 2);
  cursor: pointer;
}

.tab__btns li img {
  width: 100%;
  height: auto;
  display: block;
}

/* タブコンテンツ */
.tab__content {
  display: none;
}

.tab__content.is-active {
  display: block;
  margin-bottom: 66px;
}
.btn__back{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}
/* PC用の表示設定（スマホ時は非表示） */
.tab__btns .pc { display: block; }
.tab__btns .sp { display: none; }

/* スマホ用の表示設定（ブレイクポイントはプロジェクトに合わせて調整してください） */
@media screen and (max-width: 640px) {
	.shopt__title{
		margin-bottom: 30px;
	}
  .tab__btns .pc { display: none; }
  .tab__btns .sp { display: block; }
  .tab__btns li {
	  width: calc((100% - 10px) / 2);
	  cursor: pointer;
	}
	.tab__btns {
	  gap: 10px;
	  margin-bottom: 34px;
	}
	.tab__content.is-active {
	  display: block;
	  margin-bottom: 34px;
	}
	.btn__back{
		max-width: 121px;
		margin: 0 auto;
	}
	.section--pb_sm {
	    padding-bottom: 34px;
	}
}


/*-----------------------------------

	banner

-----------------------------------*/
#banner{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
	gap: 48px;
	margin-top: 66px;
	width: 90%;
	    max-width: 936px; 
}
#banner img {
    display: block;    /* ブロック化する */
    width: 100%;       /* 基本は100% */ /* ここで止める */
    height: auto;      /* 高さを維持 */
    margin: 0 auto;    /* 念のため中央寄せ */
}

@media screen and (max-width: 640px) {
	#banner{
		gap: 40px;
	}
	#banner{
		gap: 18px;
		margin-top: 35px;
		width: 95%;
		    max-width: 936px; 
	}
}


