:root{

  /* テキストの設定 */

  --font-size-sm: 16px;  /* スマホの文字サイズ */
  --font-size-md: 20px;  /* タブレットの文字サイズ */
  --font-size-lg: 24px;  /* パソコンの文字サイズ */

  /* ベースカラーの設定 */

  --colors-white:#ffffff;
  --colors-blk:#222222;
  --colors-smbl:#40909C;
  --colors-bsbl:#0092DA;
  --colors-mdbl:#005A99;
  --colors-ambr:#FABE00;
  --colors-mstd:#C07C00;
  --colors-pmkn:#EB6E00;
  --colors-crrd:#BF1826;
  --colors-rspk:#C95989;
  --colors-plum:#894E7B;
  --colors-indg:#474E8F;
  --colors-olgn:#99A100;
  --colors-btgn:#005F3A;
  --colors-nvbl:#00003B;
  --colors-wgry:#B3ADA6;
  --colors-ared:#E60012;
  --colors-agry:#535D64;

  

  /* padddingの設定 */

  --pdg-8:8px;
  --pdg-8-t:8px;
  --pdg-8-r:8px;
  --pdg-8-b:8px;
  --pdg-8-l:8px;

  --pdg-16:16px;
  --pdg-16-t:16px;
  --pdg-16-r:16px;
  --pdg-16-b:16px;
  --pdg-16-l:16px;

  --pdg-24:24px;
  --pdg-24-t:24px;
  --pdg-24-r:24px;
  --pdg-24-b:24px;
  --pdg-24-l:24px;

  --pdg-32:32px;
  --pdg-32-t:32px;
  --pdg-32-r:32px;
  --pdg-32-b:32px;
  --pdg-32-l:32px;

  --pdg-64:64px;
  --pdg-64-t:64px;
  --pdg-64-r:64px;
  --pdg-64-b:64px;
  --pdg-64-l:64px;

  /* marginの設定 */

  --mgn-8:8px;
  --mgn-8-t:8px;
  --mgn-8-r:8px;
  --mgn-8-b:8px;
  --mgn-8-l:8px;

  --mgn-16:16px;
  --mgn-16-t:16px;
  --mgn-16-r:16px;
  --mgn-16-b:16px;
  --mgn-16-l:16px;

  --mgn-24:24px;
  --mgn-24-t:24px;
  --mgn-24-r:24px;
  --mgn-24-b:24px;
  --mgn-24-l:24px;

  --mgn-32:32px;
  --mgn-32-t:32px;
  --mgn-32-r:32px;
  --mgn-32-b:32px;
  --mgn-32-l:32px;

  --mgn-64:64px;
  --mgn-64-t:64px;
  --mgn-64-r:64px;
  --mgn-64-b:64px;
  --mgn-64-l:64px;
  
  /* imageの設定 */

  --img-100:100%;
  --img-90:90%;
  --img-80:80%;

  /* ボーダーの設定 */

  --border-radius-s: 4px;
  --border-radius-m: 8px;
  --border-radius-l: 16px;

  /* シャドウの設定 */

  --shadow-light: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 10px rgba(0, 0, 0, 0.2);
  --shadow-dark: 0 6px 15px rgba(0, 0, 0, 0.3);
  
  /* 透明度の設定 */

  --opacity-low: 0.2;
  --opacity-medium: 0.5;
  --opacity-high: 0.8;

}


body{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
  }

  .solid{
    border: solid 5px var(--colors-ared);
    padding: var(--pdg-32);
    margin: var(--mgn-16);
  }

  /* 画像の調整 */

  .img-80{
    display: block;
    width: var(--img-80);
    margin-top:var(--mgn-32-t);
    margin: auto;
  }

  .img-90{
  display: block;
  width: var(--img-90);
  margin-top:var(--mgn-32-t);
  margin: auto;
  }

  .img-100{
  display: block;
  width: var(--img-100);
  margin-top:var(--mgn-32-t);
  margin: auto;
  }



  /* 文字の調整 */

.txt-xl{
    font-size: clamp(36px, 3vw, 64px);
    font-weight:900;
    text-align: center;
}

.txt-l{
    font-size: clamp(18px, 2vw, 30px);
    line-height: 36px;
    font-weight: bold;
    text-align: center;
}

.txt-m{
  font-size: (18px, 1.7vw, 22px);
  line-height: 36px;
  font-weight: bold;
}

.txt-m2{
  font-size: (18px, 1.7vw, 22px);
  line-height: 26px;
  font-weight: bold;
  text-align: center;
}

.txt_c{
  text-align: center;
}

.txt-lf{
  text-align: left;
}

.txt_rt{
  text-align: right;
}


.txt-s{
  font-size: (14px, 1.4vw, 18px);
  line-height: 36px;
  font-weight: bold;
  text-align: center;
}

/* letter-spacingの設定 */

  .letter-012{
    letter-spacing: 0.12em;
  }




.txt__tab{
    margin: 32px 20px 32px 20px;
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 36px;
    font-weight: bold;
    text-align: left;
    color: #333;
}

  /* 色の調整 */

  .color-ared{
    color:var(--colors-ared);
  }

  .color-agry{
    color:var(--colors-agry);
  }

  .color-wh{
    color:var(--colors-white);
  }

/* 背景色の調整 */


.bg-agry{
  display: block;
  background:var(--colors-agry);
  margin-top:var(--mgn-64-t);
  padding: var(--pdg-32-t) 0;
  width: 100%;
  height: 100%;
}

.bg__cl2{
  padding: 16px 8px 32px 8px;
  background: #e50012;
  width: 95%;
  height: 100%;
}

.bg__bl{
  margin-top: 32px;
  padding: 16px 8px 32px 8px;
  background: linear-gradient(135deg, #50ADCE 0, #033E74 100%);
  width: 95%;
  height: 100%;
}

/* BOX */

.op_box_g{
  display: block;
  background:var(--colors-agry);
  margin-top:var(--mgn-32-);
  padding: var(--pdg-32-t) 0;
  width: 90%;
  margin: 0 auto;
  opacity: var(--opacity-high);
  text-align: center;
  color: var(--colors-white);
  margin-bottom: var(--mgn-32-b);
}

.op_box_r{
  display: block;
  background:var(--colors-ared);
  margin-top:var(--mgn-32-);
  padding: var(--pdg-32-t) 0;
  width: 90%;
  margin: 0 auto;
  opacity: var(--opacity-high);
  text-align: center;
  color: var(--colors-white);
}

/* MAP */

.map {
    position: relative;
    width: 80%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
    margin: 0 auto;
    margin-bottom: var(--mgn-32-b);
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* コンテナの調整 */

.container {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: auto;
    margin-bottom: var(--mgn-64-b);
    justify-content:space-around; /* 水平方向に中央配置 */
    align-items: center; /* 垂直方向に中央配置（必要なら） */
}

.btn_container {
    margin-top: 32px;
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 水平方向に中央配置 */
}


.pdg16{
    padding: 32px;
}

.mgn_lr16{
     margin: 
    0 16px 0 16px;
}

.mgn{
  margin: 0 auto;
}

.container img {
  width: 23%;
}

.img_bland {
  width: 90%;
  margin: 0 auto;
}

.img_bland img {
  width: 100%;
}

 @media screen and (max-width: 768px) {

  .container {
    gap: 6px;
  }
  
  .container img {
    width: 32%;
  }
  
  }

/*========= ボタン 赤 -> グレー ===============*/

.button{
    display: flex;
    width: 60%;
    height: auto;
    padding: 12px 16px;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 30px;
    background-color: #e50012;
    color: #fff;
    transition: background-color .3s ease-in-out;
    margin: 64px auto 64px auto ;
  }
  
  
  .button:hover{
    color: #fff;
    background-color: #53575a;
    padding: auto;
  }
  
  .b_text{
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 3.2px;
    }

    .open_text{
        margin: 0 16px 0 16px;
        text-align: center;
        font-size: clamp(14px, 16px, 18px);
        font-style: normal;
        line-height: normal;
        letter-spacing: 3.2px;
        }

        .button a {
            color:#fff;
          }


/*========= メニュー ===============*/

#menu{
    padding: 36px 0;
}

#menu section{
    background: #fff;
    margin: 0 0 10px 0;
}

#menu section h3{
    color: var(--colors-ared);
    font-weight:bold;
    font-size: 1rem;
    margin: 0 0 10px 0;
}

#menu section p{
    font-size: 0.8rem;
}

#menu .menu-area{
    padding: 20px;
    box-shadow: 5px 0 10px #ccc;
}

#menu .menu-btn{
    text-align: center;
    margin: 50px 0 0 0;
}

/*========= メニュー ===============*/

#menu2{
    padding: 36px 0;
}

#menu2 section{
    background: #fff;
    margin: 0 0 10px 0;
}

#menu2 section h3{
    color: #e50012;
    font-weight: bold;
    font-size: 0.9rem;
    margin: 0 0 10px 0;
}

#menu2 section p{
    font-size: 0.8rem;
}

#menu2 .menu-area{
    padding: 20px;
    box-shadow: 5px 0 10px #ccc;
}

#menu2 .menu-btn{
    text-align: center;
    margin: 50px 0 0 0;
}

/*========= タブ ===============*/

.tab-3 {
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    max-width: 85%;
}

.tab-3 > label {
    flex: 1 1;
    order: -1;
    min-width: 70px;
    padding: 1em 1em 1em;
    background-color: #f2f2f2;
    color: #999;
    font-weight: 600;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
}

.tab-3 > label:hover {
    opacity: .8;
}

.tab-3 input {
    display: none;
}

.tab-3 > div {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
    background-color: #fff;
}

.tab-3 label:has(:checked) {
    border-bottom: 4px solid var(--colors-ared);
    color: var(--colors-ared);
}

.tab-3 label:has(:checked) + div {
    display: block;
}

/*========= 見出し ===============*/

.heading {
    margin-top: 24px;
    padding: .5em .9em;
    border-left: 10px solid var(--colors-ared);
    color: #333333;
}


.btn-default, .btn_default, input[type="button"], button, input[type="reset"], .btn-navy, .btn_navy, input[type="submit"], button[type="submit"], .btn-impact, .btn_impact {
    display: inline-block;
    border: none;
    padding: 8px 8px;
}

/*========= QA ===============*/

.qa-7 {
    max-width: 90%;
    margin: 10px auto 14px auto ;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
    background-color: #fff;
}

.qa-7 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qa-7 summary::before,
.qa-7 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-7 summary::before {
    color: #333;
    content: "Q";
}

.qa-7 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-7[open] summary::after {
    transform: rotate(225deg);
}

.qa-7 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-7[open] p {
    transform: none;
    opacity: 1;
}

.qa-7 p::before {
    color: #e50012;
    line-height: 1.2;
    content: "A";
}

.button{
    background:var(--colors-ared);
    color:#fff;
    border:none;
    position:relative;
    font-size:1rem;
    padding: 1.5em 1em;
    margin: 2em auto;
    text-align: center;
    cursor:pointer;
    transition:800ms ease all;
    outline:none;
    border-radius:var(--border-radius-l);
    max-width: 300px;
  }

  .button:hover{
    background:var(--colors-white);
    color:var(--colors-agry);
  }

  .button:before,.button:after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    height:2px;
    width:0;
    background: var(--colors-agry);
    transition:400ms ease all;
  }

  .button:after{
    right:inherit;
    top:inherit;
    left:0;
    bottom:0;
  }

  .button:hover:before,.button:hover:after{
    width:100%;
    transition:800ms ease all;
  }

  .flex {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  
  
  
  
  .flex-reverse {
    flex-direction: row-reverse;
  }
  
  .flex .flex_box {
    width: 49%;
  }
  
  .flex .flex_box img {
    width: 100%;
  }
  
  
  .ttl {
    border: solid 2px #0085ca;
    padding:16px;
    color: #fff;
  }

  
  @media screen and (max-width: 768px) {

  
    .flex {
      display: block;
      margin: 10px 10px 60px ;
    }
  
  
    .flex .flex_box {
      width: 100%;
    }
  
  }


  .item_box{
    max-width:70%;
    margin:fit-content 16px;
    padding: 8px;
    border: solid 3px #0085ca;
  }


  .item_img{
    display: flex;
    width: 80%;
    margin: auto;
    padding: auto;

  }

  
  .item_txt{
    display: flex;
    width: 60%;
    margin: auto;
    padding: auto;

  }

  .heading2 {
    margin-top: 24px;
    margin-left: 24px;
    margin-bottom: 24px;
    padding: .5em .5em;
    border-left: 5px solid #0084bd;
    color: #333333;
}

@media screen and (max-width: 768px) {

  
    .flex {
      display: block;
      margin:16px 16px 40px ;
    }
  
  
    .flex .flex_box .item_box.flex_img {
      width: 100%;
    }

    }
  
  
    /* News */

div.newsframe{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 80%;
  padding:var(--pdg-16) var(--pdg-32);
  margin-top: var(--mgn-64-t);
  margin-bottom: var(--mgn-64-b);
  margin-left: auto;
  margin-right: auto;
  gap: 1px;
  border-radius:var(--border-radius-l);
  box-shadow: var(--shadow-medium);
  border:  var(--colors-ared);
  background: var(--Background-Default-Default, #FFF);
}

p.news{
  align-self: stretch;
  color: var(--colors-ared);
  font-size: 28px;
  font-style:normal;
  font-weight: 900;
  line-height: normal;
}

p.newstips{
  align-self: stretch;
  color: var(--colors-ared);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 1.3px;
}

/*==================================================
ニュースティッカーのためのcss
===================================*/


/*ニュース1行の周りの余白*/
.slider1 li {
  display: block;
  align-self: stretch;
  color: var(--colors-nvbl);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.3px;
  padding: 16px;
}

/*日付*/
.slider1 span {
  display:inline-block;
  font-size:0.8rem;
  margin-right:16px;
  color:var(--colors-agry);
}

.bx-wrapper{
  position:relative;
  padding:0;
  -ms-touch-action:pan-y;
  touch-action:pan-y;
  -moz-box-shadow:none ;
  -webkit-box-shadow:none;
  box-shadow:none;
  border:5px solid #fff;
  background:#fff
}

.bx-wrapper img{
  max-width:100%;
  display:block
}

.bxslider{
  margin:0;
  padding:0;
  -webkit-perspective:1000
}

ul.bxslider{
  list-style:none
}

.bx-viewport{
  -webkit-transform:translateZ(0)
}

.bx-wrapper .bx-controls-auto,.bx-wrapper .bx-pager{
  position:absolute;
  bottom:-30px;
  width:100%
}

.bx-wrapper .bx-loading{
  min-height:50px;
  background:url(images/bx_loader.gif) center center no-repeat #fff;
  height:100%;
  width:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:2000
}

.bx-wrapper .bx-pager{
  text-align:center;
  font-size:.85em;
  font-weight:700;
  color:#666;
  padding-top:20px
}

.bx-wrapper .bx-pager.bx-default-pager a{
  background:#666;
  text-indent:-9999px;
  display:block;
  width:10px;
  height:10px;
  margin:0 5px;
  outline:0;
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
  border-radius:5px
}




/*768px以下の見た目*/
@media screen and (max-width:768px) {
  .slider1 {
      padding:20px;
      background:#fff;
  }

  .slider1 li {
      border-bottom:1px dashed #ccc;
  }

  .slider1 li:last-child {
      border-bottom:none;
  }
  .slider1 span {
    display:block;
    padding-bottom:10px;
  }
}


/*---------------タブ実装部分------------------------*/

.tab-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 60px;
    max-width: 940px;
  }

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
  }

ol, ul {
    box-sizing: border-box;
  }

.panel.active {
    display: block;
  }

.panel .linklist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }



  .tab.active {
    background: #e50012;
    color: #fff;
}
.tab {
    align-items: center;
    border: solid 1px #e50012;
    line-height: 1.2;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: bold;
    height: 50px;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: .2s;
    width: calc((100% - 40px) / 2);
    border-radius: var(--border-radius-l);
}

.panel {
    display: none;
}
.panel.show {
    display: block;
}

/*ブランド エリア*/

.bland_tab .panel .linklist a.link {
    width: 18%;
}

.bland_tab .tab {
    align-items: center;
    border: solid 1px #e50012;
    line-height: 1.2;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: bold;
    height: 50px;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: .2s;
    width: calc((100% - 40px) / 4);
    border-radius: var(--border-radius-l);
}

/* 出店カレンダー */

.list-4 {
    width: 85%;
    margin: 0 auto;
    border: 2px solid var(--colors-ared);
}

.list-4 div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 16px 0;
    background-color: var(--colors-ared);
    color: #fff;
    font-weight: 600;
}

.list-4 ul {
    list-style-type: disc;
    margin: 0;
    padding: 1em 2.5em 1em 2.5em;
}

.list-4 li {
    padding: .3em .3em .3em 0;
}

.list-4 li::marker {
    color: var(--colors-ared);
    font-size: 1.1em;
}

.calendar-container {
  width: 100%;
  margin: 0 auto;
  border-radius: 5px;
  background: #f2f2f2;
  color: #1a1a1a;
  margin-top: 32px;
  margin-bottom: 64px;
}

h1 {
  height: 90%;
  line-height: 80px;
  text-align: center;
  font-size: 24px;
  margin: 0;
}
.calendar {
  width: 90%;
  padding: 0 30px 30px 30px;
  margin: 0 auto;
}
table {
  width: 90%;
}

.tr {
  width: 90%;
}

th, td {
  text-align: center;
  padding: 10px;
}
th {
  font-weight: normal;
  font-size: 14px;
}
td {
  font-weight: bold;
}

td.y{
background:#ff7f7f;
}

.day *:first-child {
  color: var(--colors-ared);
}
.day *:last-child {
  color: var(--colors-bsbl);
}