@charset "UTF-8";

/* CSS の最初の行に置く */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');


/*---------------------------
layout
---------------------------*/
:root{
  --main-color:#FD9539;
  --accent-color:#F45D25;
  --deep-color:#FF9300;
  --white-color:#fff;
  --black-color:#000;
  --gray-color:#F0F0F0;
  --width-ratio: 1px / 1;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --font-cinzel: "Cinzel", serif;
  --max-width: 1240px;
  --vw: 100vw;
  --side-padding: 30px;  /* 左右の最小余白 */
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}


@media screen and (max-width: 728px) {
  html {
    font-size: 62.5%;
    overflow-x: hidden;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  color:#fff;
  overflow-x: hidden;
  font-weight:300;
  line-height:1.8;
}
@media screen and (max-width: 728px) {
  body {
    overflow-x: hidden;
  }
}
ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a img:hover,
a:hover {
  opacity: 0.8;
}

img {
  width: 100%;
  height: auto;
}

/*---------------------------
object-utility
---------------------------*/
/*---------    ---------*/
.u-sans {
  font-family:var(--font-sans);
}

.u-serif {
  font-family:var(--font-serif);
}
.u-wrap{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
  max-width:1260px;
}

@media screen and (max-width: 768px) {
  .u-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding:0 5%;
  }
}
.u-flex {
  display: flex;
  flex-wrap: wrap;
}
.u-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

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

.u-po-re {
  position: relative;
}

.u-jcc {
  justify-content: center;
}

.u-aic {
  align-items: center;
}

.u-jcsb {
  justify-content: space-between;
}

.u-jcsa {
  justify-content: space-around;
}

.u-jcfe {
  justify-content: flex-end;
}

.u-tac {
  text-align: center;
}

.u-tar {
  text-align: right;
}

.u-bold {
  font-weight: bold;
}

.u-text__tiny {
  font-size: 1.2rem;
}

/*---------------------------
object-component
---------------------------*/
.c-ttl{
  font-size:64px;
  font-family:var(--font-cinzel);
  font-weight:400;
  position: relative;
  margin-bottom:47px;
  text-align: center;
}
.c-ttl::after{
  content: "";
  position: absolute;
  pointer-events: none;
  /* 左右が #fff で opacity:0（=透明）→ 中央は白 */
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,0) 100%
  );
  display: block;
  width: 508px;
  height: 1px;
  bottom:-4px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.c-text {
  font-size: 2rem;
  font-weight: 300;
  line-height:1.8;
}
    @media screen and (max-width: 728px){
      .c-ttl{
        font-size:36px;
        margin-bottom:44px;
      }
      .c-ttl::after{
        width: 100%;
        max-width: 375px;
        bottom:-10px;
      }
      .c-text {
        font-size: 1.6rem;
        font-weight: 300;
      }
    }

.c-link {
  text-decoration: underline;
}
.c-list{
  gap:24px;
}
.c-list__item{
  width:calc((100% - 72px) / 4);
  position: relative;
  background: linear-gradient(155deg, #163164 0%, #070E20 100%);
  padding-bottom:30.5px;
  text-align: center;
}

.c-list__item::before,
.c-list__item::after{
  content: "";
  position: absolute;
  pointer-events: none;
  /* 左右が #fff で opacity:0（=透明）→ 中央は白 */
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,0) 100%
  );
  display: block;
  width: 100%;
  height: 1px
}
.c-list__item::before{
  top:0;
}
.c-list__item::after{
  bottom:0;
}
.c-list__item-img{
  width:64.18%;
  margin:0 auto 15.6px;
  position: relative;
}
.c-list__item-img::after{
  content: "";
  position: absolute;
  pointer-events: none;
  /* 左右が #fff で opacity:0（=透明）→ 中央は白 */
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,0) 100%
  );
  display: block;
  width: 80px;
  height: 1px;
  bottom:0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.c-list__item-brand{
  font-size:13px;
  font-family:var(--font-sans);
  font-weight:400;
  margin-bottom:8px;
}
.c-list__item-name{
  font-size:22px;
  font-family:var(--font-cinzel);
  font-weight:400;
}
.c-list__item-note{
  font-size:12px;
  font-family:var(--font-sans);
  font-weight:400;
  margin-bottom:10px;
}
.c-list__item-price{
  font-size:12px;
  font-family:var(--font-sans);
  font-weight:500;
  margin-bottom:19px;
}
.c-list__item-num{
  font-size:22px;
  font-family:var(--font-serif);
  margin-right:6px;
}
.c-list__item-tax{
  margin-left:-4px;
}
.c-btn{
  position: relative;
  border: 1px solid transparent;
  border-image: linear-gradient(to right,
    #CA9634, #CA8034, #F2E8BF, #CA8034, #CA9034) 1;
  padding:8px 22.6px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:11px;
  color:#fff;
  font-family:var(--font-sans);
  font-size:13px;
  font-weight:500;
  line-height: 1;
  width: fit-content;
  margin:0 auto;
}
.c-btn::after{
  content:"";
  background-image:url(../img/arrow.svg);
  background-position:center;
  background-size:100% 100%;
  display:block;
  width:4.9px;
  height:4px;
}


    @media screen and (max-width: 768px){
      .c-list{
        gap:18px;
      }
      .c-list__item{
        width:calc((100% - 18px) / 2);
        padding-bottom:18px;
      }
      .c-list__item-img{
        width:64.18%;
        margin:0 auto 14.3px;
      }
      .c-list__item-img::after{
        width: 44px;
        bottom:-6px;
      }
      .c-list__item-brand{
        font-size:10px;
        margin-bottom:5px;
      }
      .c-list__item-name{
        font-size:18px;
      }
      .c-list__item-note{
        font-size:10px;
        margin-top:-3.4px;
        margin-bottom:5px;
      }
      .c-list__item-price{
        font-size:10px;
        margin-bottom:10px;
      }
      .c-list__item-num{
        font-size:18px;
        margin-right:5px;
      }
      .c-list__item-tax{
        margin-left:-4px;
      }
      .c-btn{
        padding:7px 10px 8px;
        gap:5.8px;
        font-size:12px;
        width: fit-content;
        margin:0 auto;
      }
    }

/*---------------------------
object-project
---------------------------*/
.l-logo{
  width:160px;
  position: relative;
  top:20px;
  left:20px;
}

.wrapper{
  background-color:#060E20;
  background-image:url(../img/main-bg.webp);
  background-position:top;
  background-size:100%;
  display: block;
  width:100%;
  height: 100%;
  background-repeat: no-repeat;
}

.mv-section{

}
.mv-under-section{
  background-image:url(../img/main-bg02.webp);
  background-position:top;
  background-size:100%;
  display: block;
  width:100%;
  height: 100%;
  background-repeat: no-repeat;
  padding-bottom:134px;
}
.main-text{
  margin:82px 0;
}
.mv-img{
  margin-bottom:80px;
}
.mv-under-section .c-text{
  text-align: center;
}
.mv-section__catch{
  margin:47px auto 38px;
  width:503px;
}
.mv-section__catch::after{
  content: "";
  display: inline-block;
  width: 100%;       /* 線の長さ */
  height: 1px;       /* 線の太さ */
  margin-top: 13.6px;
  background: linear-gradient(
    to right,
    rgba(202, 150, 52, 0) 0%,   /* 左端 透明で尖らせる */
    #CA9634 10%,
    #CA8034 25%,
    #F2E8BF 50%,                /* 中央が最も明るい */
    #CA8034 75%,
    #CA9634 90%,
    rgba(202, 150, 52, 0) 100%  /* 右端も透明で尖らせる */
  );
}
.mv-section__brand{
  width:765px;
  margin:52px auto 38px;
}
    @media screen and (max-width: 768px){
      .l-logo{
        width:110px;
        position: relative;
        top:12px;
        left:12px;
      }
      .wrapper{
        background-image:url(../img/sp/main-bg-sp.webp);
        background-color:#060E20;
      }

      .mv-section{
        padding-bottom:134px;
      }
      .mv-under-section{
        background-image:unset;
        background-color:#060E20;
        padding-bottom:92px;
      }
      .main-text{
        margin:35px 0 82px;
      }
      .mv-img{
        margin-bottom:0;
      }
      .mv-under-section .c-text{
        text-align: left;
        letter-spacing: 0.01em;
      }
      .mv-section__catch{
        margin:24px auto 24px;
        width:100%;
      }
      .mv-section__brand{
        width:100%;
        margin:51px auto 24px;
      }
    }

.fair-ttl-area{
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 52px 0 0;
}
.fair-ttl-area::before,
.fair-ttl-area::after {
  content: "";
  display: block;
  width: 100%;
  height:2px;
  flex:1;
  margin-top:15px;
}
/* 左側の線：右に向かってフェードアウト */
.fair-ttl-area::before {
  background: linear-gradient(
    to right,
    rgba(202, 150, 52, 0) 0%,   /* 透明 → */
    #CA9634 20%,
    #CA8034 50%,
    #F2E8BF 100%                /* ←中央側は明るく */
  );
}

/* 右側の線：左に向かってフェードアウト */
.fair-ttl-area::after {
  background: linear-gradient(
    to left,
    rgba(202, 150, 52, 0) 0%,   /* 透明 → */
    #CA9634 20%,
    #CA8034 50%,
    #F2E8BF 100%
  );
}
.fair-ttl {
  position: relative;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  color:#CA9634;
  background-image:url(../img/deco.webp);
  background-size:100% 100%;
  width:300px;
  height:80px;
  padding-top:12px;
  filter: drop-shadow(3px 3px 3px rgba(35,24,21,0.45));
}

.fair-line {
  display: inline-block;
  width: 100%;       /* 線の長さ */
  height: 1px;       /* 線の太さ */
  margin-top: 52px;
  background: linear-gradient(
    to right,
    rgba(202, 150, 52, 0) 0%,   /* 左端 透明で尖らせる */
    #CA9634 10%,
    #CA8034 25%,
    #F2E8BF 50%,                /* 中央が最も明るい */
    #CA8034 75%,
    #CA9634 90%,
    rgba(202, 150, 52, 0) 100%  /* 右端も透明で尖らせる */
  );
}

    @media screen and (max-width: 768px){
      .fair-ttl-area{
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin: 52px 0 0;
      }
      .fair-ttl {
        font-size: 2rem;
        font-weight: 600;
        width:220px;
        height:58.6px;
        padding-top:4px;
      }
      .fair-ttl-area::before,
      .fair-ttl-area::after {
        margin-top:10px;
      }
      .fair-line {
        margin-top:52px;
      }
    }
.info-section{
  position:relative;
  background-image:url(../img/bg01.webp);
  background-position:center;
  background-size:cover;
  width:100%;
  height:100%;
  min-height:676px;
}
.info-section__flex{
  gap:13px;
  justify-content: center;
}
.info-section__contents{
  text-align: center;
}
.info-section__logo-img{
  width:175px;
  margin:0 auto 38.4px;
}
.info-section__catch{
  font-size:18px;
  line-height:1.6;
  position:relative;
  margin-bottom:50px;
}
.info-section__catch::after{
  content:"";
  position:absolute;
  bottom:-24.2px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display:block;
  background-color:#fff;
  width:84px;
  height:1px;
}
.info-section__ttl{
  font-family:var(--font-cinzel);
  font-weight:400;
  font-size:46px;
  margin-bottom:2px;
}
.info-section__note{
  font-size:13px;
  margin-bottom:14.4px;
  font-family:var(--font-sans);
  font-weight:400;
}
.info-section__price{
  font-size:16px;
  font-weight:500;
  font-family:var(--font-sans);
  margin-bottom:51.6px;
}
.info-section__num{
  font-size:28px;
  font-weight:300;
  margin-right:8px;
  display: inline-block;
  font-family:var(--font-serif);
}
.info-section__tax{
  margin-left:-5px;
  display: inline-block;
}
.info-section__btn{
  position:relative;
  width:213px;
  height:50px;
  display:flex;
  font-family:var(--font-sans);
  gap:11px;
  color:#fff;
  font-size:15px;
  font-weight:500;
  margin:0 auto 15.5px;
  align-items: center;
  justify-content: center;
}
.info-section__btn::after{
  content:"";
  background-image:url(../img/arrow.svg);
  background-position:center;
  background-size:100% 100%;
  display:block;
  width:4.9px;
  height:4px;
}
.info-section__text{
  font-size:10px;
  font-family:var(--font-sans);
  font-weight:400;
}
.info-section__img{
  width:634px;
}
    @media screen and (max-width: 768px){
      .info-section{
        position:relative;
        background-image:unset;
        width:100%;
        height:100%;
        min-height:unset;
        background-color:#060E20;
      }
      .info-section__flex{
        gap:0;
        justify-content: center;
        flex-direction: column-reverse;
      }
      .info-section__contents{
        text-align: center;
      }
      .info-section__logo-img{
        width:110px;
        margin:0 auto 31px;
      }
      .info-section__catch{
        font-size:16px;
        line-height:1.6;
        margin-bottom:32px;
      }
      .info-section__catch::after{
        bottom:-16px;
      }
      .info-section__ttl{
        font-size:32px;
        margin-bottom:1px;
      }
      .info-section__note{
        font-size:13px;
        margin-bottom:20px;
      }
      .info-section__price{
        margin-bottom:15.4px;
      }
      .info-section__num{
        font-size:28px;
      }
      .info-section__tax{
        margin-left:-5px;
        display: inline-block;
      }
      .info-section__btn{
        width:172px;
        height:50px;
        gap:8px;
        font-size:14px;
        margin:0 auto 48px;
      }
      .info-section__img{
        width:100%;
        margin: 0 auto;
      }
    }
.seiko-section{
  padding:96px 0 285px;
  position: relative;
  z-index: 0;
  background-image:url(../img/main-bg02.webp);
  background-position:top;
  background-size:100%;
  display: block;
  width:100%;
  height: 100%;
  background-repeat: repeat;
}
.seiko-section__logo{
  width:193px;
  margin:0 auto 28.6px;
}
.seiko-section__text{
  font-size:16px;
  font-weight:300;
  line-height: 1.8;
  text-align: center;
  font-family:var(--font-sans);
  margin-bottom:28.6px;
}
.seiko-section__btn{
  position:relative;
  width:327px;
  height:50px;
  display:flex;
  gap:11px;
  color:#fff;
  font-family:var(--font-sans);
  font-size:15px;
  font-weight:500;
  margin:0 auto 72.3px;
  align-items: center;
  justify-content: center;
}
.seiko-section__btn::after{
  content:"";
  background-image:url(../img/arrow.svg);
  background-position:center;
  background-size:100% 100%;
  display:block;
  width:4.9px;
  height:4px;
}

.info-section02__wrap{
  padding-bottom:285px;
  position: relative;
  z-index: 0;
  background-image:url(../img/main-bg02.webp);
  background-position:top;
  background-size:100%;
  display: block;
  width:100%;
  height: 100%;
  background-repeat: repeat;
}
.info-section.info-section02,
.info-section.info-section03{
  background-image:url(../img/bg02.webp);
}
.info-section02 .info-section__flex{
  flex-direction: row-reverse;
}
.under-text{
  font-size:213px;
  line-height:1;
  font-family: "EB Garamond", serif;
  font-weight:400;
  /* フォールバック（古い環境向け） */
  color: rgba(7, 14, 32, 0.1);

  /* グラデーションで文字を塗る */
  background: linear-gradient(
    180deg,
    rgba(7, 14, 32, 0.10) 0%,   /* #070E20 @10% */
    rgba(255, 255, 255, 0.10) 100%  /* #fff @10% */
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent; /* 一部ブラウザで必要 */
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  bottom:126px;
  z-index: -1;
}
.info-section-list{
  margin-top:-52.3px;
}
.info-section03__wrap{
  padding-bottom:256px;
  position: relative;
  z-index: 0;
  background-image:url(../img/main-bg02.webp);
  background-position:top;
  background-size:100%;
  display: block;
  width:100%;
  height: 100%;
  background-repeat: repeat;
}
.info-section03__wrap{
  margin-top:auto;
  margin-bottom:0;
}
    @media screen and (max-width: 768px){
      .seiko-section{
        padding:56px 0 129px;
        background-image:unset;
        background-color:#060E20;
      }
      .seiko-section__logo{
        width:154px;
        margin:0 auto 24px;
      }
      .seiko-section__text{
        font-size:15px;
        line-height: 1.6;
        text-align: left;
        margin-bottom:25px;
      }
      .seiko-section__btn{
        width:280px;
        height:50px;
        gap:9px;
        font-size:14px;
        margin:0 auto 46.8px;
      }

      .info-section02__wrap{
        padding-bottom:129px;
        z-index: 0;
        background-image:unset;
        background-color:#060E20;
      }
      .info-section.info-section02,
      .info-section.info-section03{
        background-image:unset;
        background-color:#060E20;
      }
      .info-section02 .info-section__flex{
        flex-direction: column-reverse;
      }
      .under-text{
        font-size:100px;
        bottom:74px;
      }
      .info-section-list{
        margin-top:0;
      }
      .info-section03__wrap{
        padding-bottom:113px;
        background-image:unset;
        background-color:#060E20;
      }
      .info-section03__wrap{
        margin-top:auto;
        margin-bottom:0;
      }
    }
.seiko-section__info{
  margin-top:-50px;
  position: relative;
  z-index: 1;
  padding-bottom:50px;
}
.novelty-section{
  padding-bottom:177px;
  position: relative;
  z-index: 0;
  background-image:url(../img/main-bg02.webp);
  background-position:top;
  background-size:100%;
  display: block;
  width:100%;
  height: 100%;
  background-repeat: repeat;
}
.novelty-section .c-text{
  margin-bottom:20px;
  text-align: center;
}
.novelty-section__text{
  text-align: center;
  font-size:16px;
  font-weight:300;
  font-family:var(--font-sans);
  margin-bottom:41.4px;
}
.novelty-section__flex{
  gap:63px;
}
.novelty-section__box{
  width:calc((100% - 63px) / 2);
  text-align: center;
}
.novelty-section__img{
  margin-bottom:25px;
}
.novelty-section__ttl{
  font-size:24px;
  line-height:1.375;
  margin-bottom:20px;
}
.novelty-section__target{
  font-size:16px;
  font-weight:300;
  font-family:var(--font-sans);
  margin-bottom:9px;
}
.novelty-section__note{
  font-size:12px;
  font-weight:300;
  font-family:var(--font-sans);
}
    @media screen and (max-width: 768px){
      .novelty-section{
        padding-bottom:56px;
        background-image:unset;
        background-color:#060E20;
      }
      .novelty-section .c-text{
        margin-bottom:20px;
        text-align: left;
      }
      .novelty-section__text{
        text-align: center;
        font-size:14px;
        margin-bottom:32px;
      }
      .novelty-section__flex{
        gap:32px;
      }
      .novelty-section__box{
        width:100%;
        text-align: center;
      }
      .novelty-section__img{
        margin-bottom:18px;
      }
      .novelty-section__ttl{
        font-size:16px;
        line-height:1.43;
        margin-bottom:16px;
      }
      .novelty-section__target{
        font-size:14px;
        margin-bottom:8px;
      }
      .novelty-section__note{
        font-size:10px;
      }
    }



footer{
  background-color:#FAFAFA;
  padding:93px 0 75px;
  color:#060D1D;
}
.store_container{
  margin-bottom:28px;
}
.shop_ttl{
  font-size:64px;
  font-family:var(--font-cinzel);
  font-weight:400;
  position: relative;
  margin-bottom:47px;
  text-align: center;
  color:#060D1D;
}
.shop_ttl::after{
  content: "";
  position: absolute;
  pointer-events: none;
  /* 左右が #fff で opacity:0（=透明）→ 中央は白 */
  background: linear-gradient(
    90deg,
    rgba(6,14,31,0) 0%,
    rgba(6,14,31,1) 50%,
    rgba(6,14,31,1) 50%,
    rgba(6,14,31,0) 100%
  );
  display: block;
  width: 508px;
  height: 1px;
  bottom:-4px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.storebox{
  align-items: flex-start;
  margin-bottom:60px;
  flex:1;
  display:flex;
}
.storebox_ttl{
  background-color:#060D1D;
  width:132px;
  height:130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:20px;
  font-family:var(--font-sans);
  font-weight:400;
  color:#fff;
}
.store-item-wrap{
  width:calc(100% - 132px);
}
.store_box ul {
  list-style: none;
  padding: 24px;
  min-height:130px;
  align-items: center;
  margin: 0;
  background: #fff;
  gap: 24px;
  display: flex;
  flex-wrap:wrap;
  border: 1px #707070 solid;
  width: 100%;
}
.store_box .tab li a {
  padding: 14px 38px;
  text-align: center;
  display: block;
  border: 1px #707070 solid;
  background: #fff;
  font-weight: 700;
  font-size: 18px;
  color:#707070;
  font-family:var(--font-sans);
  font-weight:400;
}
.tabContent,
.tabContent .store-item-wrap{
  width:100%;
}
.store_areabox{
  flex:1;
}
.store-ttl{
   margin-bottom: 0;
   font-size:20px;
   font-family:var(--font-sans);
   font-weight: 500;
   margin-bottom:16px;
}
.store-item-inner{
  width:100%;
  padding: 24px;
  border: 1px #707070 solid;
  margin-bottom:24px;
  padding: 24px;
  display:flex;
  flex-wrap: wrap;
}
.store-item-inner:last-child{
  margin-bottom:0;
}
.store_box .store-item-inner-ttlbox{
  width: 39%;
}
.store_box .store-item-inner-description {
  margin-left: 24px;
  flex:1;
}
.store-item-inner-ttl{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  font-weight:400;
  font-family:var(--font-sans);
}
.store-item-inner-address{
  font-size: 18px;
  margin-bottom: 8px;
  font-weight:400;
  font-family:var(--font-sans);
}
.store-item-inner-tel{
  font-size: 18px;
  margin-bottom: 0;
  font-weight:400;
  font-family:var(--font-sans);
}
.store_box .store-item-inner-label{
  font-size: 10px;
  padding: 6px 8px;
  background: #060E20;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-weight:400;
  font-family:var(--font-sans);
}
.store-item-inner-note{
  color: #F53906;
  margin-top: 8px;
  font-weight:400;
  font-family:var(--font-sans);
}
.store_box .store-item-inner-label.--sws{
  background-color:#CA9634;
}


.banner_box{
  max-width:1260px;
  margin:0 auto;
  padding:0 30px;
}
.banner_box ul{
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  justify-content: center;
  gap: 2%;
  display: flex;
  flex-wrap: wrap;
}
.banner_box li {
    margin-bottom: 40px;
    width: 18.4%;
    padding: 0;
}
.banner_box li a {
    text-decoration: none;
    color: #000000;
    transition: 0.5s;
    font-family:var(--font-sans);
    font-weight:400;
}
.banner_box li a p {
    margin-top: 16px;
    line-height: 1.8;
    font-size: 14px;
    font-family:var(--font-sans);
    font-weight:400;
}
.splide{
  visibility:unset;
}
    @media screen and (max-width: 768px){
      footer{
        background-color:#FAFAFA;
        padding:59px 0 70px;
      }
      .shop_ttl{
        font-size:36px;
        margin-bottom:44px;
      }
      .shop_ttl::after{
        width: 100%;
        max-width: 375px;
        bottom:-10px;
      }
      .storebox{
        align-items: center;
        margin-bottom:34px;
        flex-wrap: wrap;
      }
      .storebox_ttl{
        width:100%;
        height:45px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size:16px;
      }
      .store-item-wrap{
        flex: 1;
      }
      .store_box ul {
        padding: 18px 0;
        height:auto;
        align-items: center;
        margin: 0;
        background: #fff;
        gap: 10px;
        display: flex;
        flex-wrap: wrap;
        border: unset;
      }
      .store_box .tab li {
        width:calc((100% - 20px) / 3);
      }
      .store_box .tab li a {
        padding: 14px 0;
        font-size: 14px;

      }


      .store_box .store-item-inner-ttlbox{
        width: 100%;
      }
      .store_box .store-item-inner-description {
        margin-left: 0;
        flex:1;
      }
      .store-item-inner-ttl{
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
      }
      .store-item-inner-address{
        font-size: 14px;
        margin-bottom: 8px;
      }
      .store-item-inner-tel{
        font-size: 14px;
        margin-bottom: 0;
      }
      .store_box .store-item-inner-label{
        font-size: 10px;
        padding: 6px 8px;
        background: #060E20;
        border-radius: 4px;
        color: #fff;
        display: inline-block;
        margin-bottom:10px;
      }


      .banner_box{
        max-width:1260px;
        margin:0 auto;
        padding:0 24px;
      }
      .banner_box ul{
        list-style: none;
        margin: 0;
        padding: 0;
        text-align: left;
        justify-content: center;
        gap: unset;
        display: flex;
        flex-wrap: wrap;
      }
      .banner_box ul li{
          margin-bottom: 40px;
          width: 100%;
          padding: 0;
      }
      .banner_box li a {
          text-decoration: none;
          color: #000000;
          transition: 0.5s;
      }
      .banner_box li a p {
          margin-top: 16px;
          line-height: 1.8;
          font-size: 14px;
      }


    }
