@charset "utf-8";
/*--------------------------------------------------------------
1. RESET
--------------------------------------------------------------*/
html{color:#000;background:#FFF}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,figure{margin:0;padding:0}
table{border-collapse:collapse;border-spacing:0}
fieldset,img{border:0}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}
ol,ul{list-style:none}
caption,th{text-align:left}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}
q:before,q:after{content:''}
abbr,acronym{border:0;font-variant:normal}
sup{vertical-align:text-top}
sub{vertical-align:text-bottom}
input,textarea,select{font-size:inherit;font-weight:inherit;}
legend{color:#000}
*{zoom: 1;}
img{vertical-align: bottom;}
:focus{outline:none;}
*{box-sizing: border-box;}
/*--------------------------------------------------------------
2. BASE
--------------------------------------------------------------*/
html {
  font-size: 62.5%; /* 1rem = 10px */
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  font-size: 1.4rem;
  min-height: 100vh; /* fallback 古いブラウザ対応 */
  min-height: 100dvh; /* アドレスバーの影響を受けずに画面全体をカバー */
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  box-sizing: border-box;
  color: #383838;

  /* overflow: hidden; スクロール不要時使用*/
  }

  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }

  .store-list {
    margin-top: 60px;
  }
  
  .store-item {
    display: flex;
    align-items: stretch;
    text-decoration: none;
    color: #222;
    border-bottom: 1px solid #fff;
  }
  
  .store-item:last-child {
    border-bottom: none;
  }
  
  .store-image {
    min-width: 105px;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .bg-luck {
    background-image: url('../img/shop_bk_luck.jpg');
  }
  .bg-2nd {
    background-image: url('../img/shop_bk_2nd.jpg');
  }
  .bg-rouis {
    background-image: url('../img/shop_bk_rouis.jpg');
  }
  .bg-funabashi {
    background-image: url('../img/shop_bk_funabashi.jpg');
  }
  .bg-attract {
    background-image: url('../img/shop_bk_attract.jpg');
  }
  .bg-tokyo {
    background-image: url('../img/shop_bk_tokyo.jpg');
  }
  .bg-loute {
    background-image: url('../img/shop_bk_loute.jpg');
  }
  
  .store-info {
    background-color: #e9e9e9;
    padding: 12px;
    width: 100%;
    font-size: clamp(1.4rem, 2.5vw, 1.6rem);
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .store-subtext {
    display: block;
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 4px;
  }


  footer {
    background: #000;
    height: auto;
    color: #fff;
    text-align: center;
    padding: 6px;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  /* ==== PC用レイアウト ==== */
  @media screen and (min-width: 768px) {

    

    .sp-only {
      display: none !important;
    }

    .pc-only {
      display: block;
    }
  }