:root{

  /* テキストの設定 */

  --font-sm: 14px;
  --font-base: 16px;
  --font-md: 20px;
  --font-lg: 24px;
  --font-xl: clamp(28px, 3vw, 48px);

  /* ベースカラーの設定 */

  --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 margin の設定 */

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 64px;


  
  /* ボーダーの設定 */

  --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-40{
    width: 50%;
    margin:var(--space-4);
  }

  .img-50{
    display: block;
    width: var(--img-50);
    margin-top:var(--space-4);
    margin: auto;
  }

  .img-80{
    width: 80%;
    margin-top:var(--space-4);
    margin: auto;
  }

  .img-90{
    display: flex;
  width: 90%;
  margin-top:var(--space-4);
  margin: auto;
  margin-bottom: 32px;
  }

  .img-100{
  display: block;
  width: var(--img-100);
  margin-top:var(--space-4);
  margin: auto;
  }



  /* 文字の調整 */

.txt-xl{
    font-size: clamp(36px, 3vw, 64px);
    font-weight:900;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 32px;
}

.txt-l{
    color: #222222;
    font-size: clamp(16px, 1.2vw, 22px);
    line-height: 36px;
    font-weight: bold;
    text-align: center;
    margin: 24px;
    text-align: left;
}



@media screen and (max-width: 768px) {
    .txt-l{
      line-height: 1.4;
      font-size: 0.6rem;
      font-weight: 600;
    }
}

.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-wh{
  display: block;
  margin-top: 32px;
  background:var(--colors-white);
  margin: auto;
  margin-bottom: 32px;
  padding: var(--space-4) 0;
  width: 90%;
  height: 100%;
  opacity: 80%;
  color: #222;
}

@media screen and (max-width:768px) {
  #box4 .bg-wh {
    padding: 10px ;
  }
}



.bg-agry{
  display: block;
  background:var(--colors-agry);
  margin-top:var(--mgn-64-t);
  padding: var(--space-4) 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(--space-4);
  padding: var(--space-4) 0;
  width: 90%;
  margin: 0 auto;
  opacity: var(--opacity-high);
  text-align: center;
  color: var(--colors-white);
  margin-bottom: var(--space-4);
}

.op_box_r{
  display: block;
  background:var(--colors-ared);
  margin-top:var(--space-4);
  padding: var(--space-4) 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(--space-4);
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* コンテナの調整 */

.areacontainer {
   width:100%;
   margin: 0 auto;
   padding: 32px;
}

.container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 auto;
    margin-bottom: var(--space-5);
    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;
}

.pdg20{
    padding: 20px;
}

.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%;
}

.img_instagram {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 20px 0;
}


#box2 .areacontainer {
  position: relative;
  bottom: -230px;
  width: 100%;
  padding: 0;
}

#box2 .areacontainer .bg-wh {
  margin: 0 auto;
  max-width: 1000px;
}

#box2 .areacontainer .bg-wh .txt-l {
  font-size: 1rem;
  line-height: 20px;
}


#box2 .areacontainer .bg-wh .txt-l.center {
  text-align: center;
  line-height: 1.2;
  font-size: 1.5rem;
}


 @media screen and (max-width: 768px) {

  .container {
    gap: 6px;
  }
  
  .container img {
    width: 32%;
  }

  .txt-xl{
    font-size: clamp(24px, 3vw, 64px);
    margin-bottom: 10px;
}
	#box3 .areacontainer {
		padding: 0;
	}
  
  }

/*========= ボタン 赤 -> グレー ===============*/

.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;
}


/*========= 見出し ===============*/

.heading {
    margin-top: 20px;
    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 {
    width: 100%;
    padding: 1em 2em 1em 3em;
    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;
    text-align: left;
    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: .4em 4em 2em;
    text-align: left;
    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";
}

@media screen and (max-width: 768px) {
.qa-7 {
    max-width: 700px;
    width: 80%;
    padding: 1rem;
}

.qa-7 summary {
  font-size: 0.7rem;
  padding: 1rem 1rem 1rem 2.5rem;
}

}

.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;
}


.event_calendar {
  margin: 30px auto;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0 0 8px rgba(0, 0, 0, .16);
  border-radius: 5px;
}

  .heading3 {
    width: 100%;
    display: flex;
    background-color: #e50012;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-weight: bold;
      font-size: 1.2rem;
    color: #fff;
    padding: 20px 0;
}


.time {
  position: relative;
  left: 3%;
}

.calender_ttl {
  position: relative;
  left: 7%;
}

.event_calendar .sub_ttl {
  color: #e50012;
  font-weight: bold;
  padding: 20px;
  font-size: 1rem;
}



@media screen and (max-width: 768px) {

  
    .flex {
      display: block;
      margin:16px 16px 40px ;
    }
  
  
    .flex .flex_box .item_box.flex_img {
      width: 100%;
    }

  .heading3 {
    display:block;
}

.calender_ttl {
  position: relative;
  left: 3%;
}

.event_calendar .sub_ttl {
  font-size: 0.8rem;
}

    }
  
  

/*ブランド エリア*/

.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) / 3);
    border-radius: var(--border-radius-l);
}

.link-image img {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width:768px) {
  .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) / 2);
      border-radius: var(--border-radius-l);
  }


  .link-image {
  width: 20%;
  margin: 0 auto;
  }
}


/*----------------------------------------------*/

.bg_base {
  background-color:#ffffff ;
  padding-top: 32px;
}

/*----------------------------------------------*/