@charset "UTF-8";
/*--------------------------------------------------
**************************************************
  ボックスレイアウト（基本）
**************************************************
--------------------------------------------------*/
* {
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  border: 0px none;
  margin: 0px;
  padding: 0px;
}

.block {
  display: block;
}

.block_center {
  display: block;
  margin-left: auto;
  margin-right: auto;
} /* width の指定が必要 */
/* フロート */
.float_l {
  float: left;
}

.float_r {
  float: right;
}

/* フロート解除 */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.clearfix {
  zoom: 1;
}

/* Flexbox(フロート系) */
.flexbox { /*--- Safari,iOS,android ---*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /*--- Safari,iOS,android ---*/
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; /*--- 左から右に水平方向に配置 ---*/
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
} /*--- 横複数行(折り返し有り)の配置 ---*/
.flex-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
} /*--- 最初と最後は端に、残りは等間隔 ---*/
/* PCの場合 */
@media (min-width: 751px) {
  .spOnly {
    display: none !important;
  } /* PCでは非表示 */
  .flexbox-pc { /*--- Safari,iOS,android ---*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; /*--- Safari,iOS,android ---*/
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; /*--- 左から右に水平方向に配置 ---*/
  }
  .flex-wrap-pc {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  } /*--- 横複数行(折り返し有り)の配置 ---*/
  .flex-space-between-pc {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  } /*--- 最初と最後は端に、残りは等間隔 ---*/
  .mt5, .mt5-10, .mt5-20, .mt5-30, .mt5-40, .mt5-50, .mt5-60, .mt5-70, .mt5-80, .mt5-90, .mt5-100 {
    margin-top: 5px !important;
  }
  .mt10, .mt10-5, .mt10-20, .mt10-30, .mt10-40, .mt10-50, .mt10-60, .mt10-70, .mt10-80, .mt10-90, .mt10-100 {
    margin-top: 10px !important;
  }
  .mt20, .mt20-5, .mt20-10, .mt20-30, .mt20-40, .mt20-50, .mt20-60, .mt20-70, .mt20-80, .mt20-90, .mt20-100 {
    margin-top: 20px !important;
  }
  .mt30, .mt30-5, .mt30-10, .mt30-20, .mt30-40, .mt30-50, .mt30-60, .mt30-70, .mt30-80, .mt30-90, .mt30-100 {
    margin-top: 30px !important;
  }
  .mt40, .mt40-5, .mt40-10, .mt40-20, .mt40-30, .mt40-50, .mt40-60, .mt40-70, .mt40-80, .mt40-90, .mt40-100 {
    margin-top: 40px !important;
  }
  .mt50, .mt50-5, .mt50-10, .mt50-20, .mt50-30, .mt50-40, .mt50-60, .mt50-70, .mt50-80, .mt50-90, .mt50-100 {
    margin-top: 50px !important;
  }
  .mt60, .mt60-5, .mt60-10, .mt60-20, .mt60-30, .mt60-40, .mt60-50, .mt60-70, .mt60-80, .mt60-90, .mt60-100 {
    margin-top: 60px !important;
  }
  .mt70, .mt70-5, .mt70-10, .mt70-20, .mt70-30, .mt70-40, .mt70-50, .mt70-60, .mt70-80, .mt70-90, .mt70-100 {
    margin-top: 70px !important;
  }
  .mt80, .mt80-5, .mt80-10, .mt80-20, .mt80-30, .mt80-40, .mt80-50, .mt80-60, .mt80-70, .mt80-90, .mt80-100 {
    margin-top: 80px !important;
  }
  .mt90, .mt90-5, .mt90-10, .mt90-20, .mt90-30, .mt90-40, .mt90-50, .mt90-60, .mt90-70, .mt90-80, .mt90-100 {
    margin-top: 90px !important;
  }
  .mt100, .mt100-5, .mt100-10, .mt100-20, .mt100-30, .mt100-40, .mt100-50, .mt100-60, .mt100-70, .mt100-80, .mt100-90 {
    margin-top: 100px !important;
  }
  .mb5, .mb5-10, .mb5-20, .mb5-30, .mb5-40, .mb5-50, .mb5-60, .mb5-70, .mb5-80, .mb5-90, .mb5-100 {
    margin-bottom: 5px !important;
  }
  .mb10, .mb10-5, .mb10-20, .mb10-30, .mb10-40, .mb10-50, .mb10-60, .mb10-70, .mb10-80, .mb10-90, .mb10-100 {
    margin-bottom: 10px !important;
  }
  .mb20, .mb20-5, .mb20-10, .mb20-30, .mb20-40, .mb20-50, .mb20-60, .mb20-70, .mb20-80, .mb20-90, .mb20-100 {
    margin-bottom: 20px !important;
  }
  .mb30, .mb30-5, .mb30-10, .mb30-20, .mb30-40, .mb30-50, .mb30-60, .mb30-70, .mb30-80, .mb30-90, .mb30-100 {
    margin-bottom: 30px !important;
  }
  .mb40, .mb40-5, .mb40-10, .mb40-20, .mb40-30, .mb40-50, .mb40-60, .mb40-70, .mb40-80, .mb40-90, .mb40-100 {
    margin-bottom: 40px !important;
  }
  .mb50, .mb50-5, .mb50-10, .mb50-20, .mb50-30, .mb50-40, .mb50-60, .mb50-70, .mb50-80, .mb50-90, .mb50-100 {
    margin-bottom: 50px !important;
  }
  .mb60, .mb60-5, .mb60-10, .mb60-20, .mb60-30, .mb60-40, .mb60-50, .mb60-70, .mb60-80, .mb60-90, .mb60-100 {
    margin-bottom: 60px !important;
  }
  .mb70, .mb70-5, .mb70-10, .mb70-20, .mb70-30, .mb70-40, .mb70-50, .mb70-60, .mb70-80, .mb70-90, .mb70-100 {
    margin-bottom: 70px !important;
  }
  .mb80, .mb80-5, .mb80-10, .mb80-20, .mb80-30, .mb80-40, .mb80-50, .mb80-60, .mb80-70, .mb80-90, .mb80-100 {
    margin-bottom: 80px !important;
  }
  .mb90, .mb90-5, .mb90-10, .mb90-20, .mb90-30, .mb90-40, .mb90-50, .mb90-60, .mb90-70, .mb90-80, .mb90-100 {
    margin-bottom: 90px !important;
  }
  .mb100, .mb100-5, .mb100-10, .mb100-20, .mb100-30, .mb100-40, .mb100-50, .mb100-60, .mb100-70, .mb100-80, .mb100-90 {
    margin-bottom: 100px !important;
  }
  .mr5, .mr5-10, .mr5-20, .mr5-30, .mr5-40, .mr5-50, .mr5-60, .mr5-70, .mr5-80, .mr5-90, .mr5-100 {
    margin-right: 5px !important;
  }
  .mr10, .mr10-5, .mr10-20, .mr10-30, .mr10-40, .mr10-50, .mr10-60, .mr10-70, .mr10-80, .mr10-90, .mr10-100 {
    margin-right: 10px !important;
  }
  .mr20, .mr20-5, .mr20-10, .mr20-30, .mr20-40, .mr20-50, .mr20-60, .mr20-70, .mr20-80, .mr20-90, .mr20-100 {
    margin-right: 20px !important;
  }
  .mr30, .mr30-5, .mr30-10, .mr30-20, .mr30-40, .mr30-50, .mr30-60, .mr30-70, .mr30-80, .mr30-90, .mr30-100 {
    margin-right: 30px !important;
  }
  .mr40, .mr40-5, .mr40-10, .mr40-20, .mr40-30, .mr40-50, .mr40-60, .mr40-70, .mr40-80, .mr40-90, .mr40-100 {
    margin-right: 40px !important;
  }
  .mr50, .mr50-5, .mr50-10, .mr50-20, .mr50-30, .mr50-40, .mr50-60, .mr50-70, .mr50-80, .mr50-90, .mr50-100 {
    margin-right: 50px !important;
  }
  .ml5, .ml5-10, .ml5-20, .ml5-30, .ml5-40, .ml5-50, .ml5-60, .ml5-70, .ml5-80, .ml5-90, .ml5-100 {
    margin-left: 5px !important;
  }
  .ml10, .ml10-5, .ml10-20, .ml10-30, .ml10-40, .ml10-50, .ml10-60, .ml10-70, .ml10-80, .ml10-90, .ml10-100 {
    margin-left: 10px !important;
  }
  .ml20, .ml20-5, .ml20-10, .ml20-30, .ml20-40, .ml20-50, .ml20-60, .ml20-70, .ml20-80, .ml20-90, .ml20-100 {
    margin-left: 20px !important;
  }
  .ml30, .ml30-5, .ml30-10, .ml30-20, .ml30-40, .ml30-50, .ml30-60, .ml30-70, .ml30-80, .ml30-90, .ml30-100 {
    margin-left: 30px !important;
  }
  .ml40, .ml40-5, .ml40-10, .ml40-20, .ml40-30, .ml40-50, .ml40-60, .ml40-70, .ml40-80, .ml40-90, .ml40-100 {
    margin-left: 40px !important;
  }
  .ml50, .ml50-5, .ml50-10, .ml50-20, .ml50-30, .ml50-40, .ml50-60, .ml50-70, .ml50-80, .ml50-90, .ml50-100 {
    margin-left: 50px !important;
  }
}
/* スマホの場合 */
@media (max-width: 750px) {
  .pcOnly {
    display: none !important;
  } /* スマホでは非表示 */
  .flexbox-sp { /*--- Safari,iOS,android ---*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; /*--- Safari,iOS,android ---*/
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; /*--- 左から右に水平方向に配置 ---*/
  }
  .flex-wrap-sp {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  } /*--- 横複数行(折り返し有り)の配置 ---*/
  .flex-space-between-sp {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  } /*--- 最初と最後は端に、残りは等間隔 ---*/
  .mt5, .mt10-5, .mt20-5, .mt30-5, .mt40-5, .mt50-5, .mt60-5, .mt70-5, .mt80-5, .mt90-5, .mt100-5 {
    margin-top: 5px !important;
  }
  .mt10, .mt5-10, .mt20-10, .mt30-10, .mt40-10, .mt50-10, .mt60-10, .mt70-10, .mt80-10, .mt90-10, .mt100-10 {
    margin-top: 10px !important;
  }
  .mt20, .mt5-20, .mt10-20, .mt30-20, .mt40-20, .mt50-20, .mt60-20, .mt70-20, .mt80-20, .mt90-20, .mt100-20 {
    margin-top: 20px !important;
  }
  .mt30, .mt5-30, .mt10-30, .mt20-30, .mt40-30, .mt50-30, .mt60-30, .mt70-30, .mt80-30, .mt90-30, .mt100-30 {
    margin-top: 30px !important;
  }
  .mt40, .mt5-40, .mt10-40, .mt20-40, .mt30-40, .mt50-40, .mt60-40, .mt70-40, .mt80-40, .mt90-40, .mt100-40 {
    margin-top: 40px !important;
  }
  .mt50, .mt5-50, .mt10-50, .mt20-50, .mt30-50, .mt40-50, .mt60-50, .mt70-50, .mt80-50, .mt90-50, .mt100-50 {
    margin-top: 50px !important;
  }
  .mt60, .mt5-60, .mt10-60, .mt20-60, .mt30-60, .mt40-60, .mt50-60, .mt70-60, .mt80-60, .mt90-60, .mt100-60 {
    margin-top: 60px !important;
  }
  .mt70, .mt5-70, .mt10-70, .mt20-70, .mt30-70, .mt40-70, .mt50-70, .mt60-70, .mt80-70, .mt90-70, .mt100-70 {
    margin-top: 70px !important;
  }
  .mt80, .mt5-80, .mt10-80, .mt20-80, .mt30-80, .mt40-80, .mt50-80, .mt60-80, .mt70-80, .mt90-80, .mt100-80 {
    margin-top: 80px !important;
  }
  .mt90, .mt5-90, .mt10-90, .mt20-90, .mt30-90, .mt40-90, .mt50-90, .mt60-90, .mt70-90, .mt80-90, .mt100-90 {
    margin-top: 90px !important;
  }
  .mt100, .mt5-100, .mt10-100, .mt20-100, .mt30-100, .mt40-100, .mt50-100, .mt60-100, .mt70-100, .mt80-100, .mt90-100 {
    margin-top: 100px !important;
  }
  .mb5, .mb10-5, .mb20-5, .mb30-5, .mb40-5, .mb50-5, .mb60-5, .mb70-5, .mb80-5, .mb90-5, .mb100-5 {
    margin-bottom: 5px !important;
  }
  .mb10, .mb5-10, .mb20-10, .mb30-10, .mb40-10, .mb50-10, .mb60-10, .mb70-10, .mb80-10, .mb90-10, .mb100-10 {
    margin-bottom: 10px !important;
  }
  .mb20, .mb5-20, .mb10-20, .mb30-20, .mb40-20, .mb50-20, .mb60-20, .mb70-20, .mb80-20, .mb90-20, .mb100-20 {
    margin-bottom: 20px !important;
  }
  .mb30, .mb5-30, .mb10-30, .mb20-30, .mb40-30, .mb50-30, .mb60-30, .mb70-30, .mb80-30, .mb90-30, .mb100-30 {
    margin-bottom: 30px !important;
  }
  .mb40, .mb5-40, .mb10-40, .mb20-40, .mb30-40, .mb50-40, .mb60-40, .mb70-40, .mb80-40, .mb90-40, .mb100-40 {
    margin-bottom: 40px !important;
  }
  .mb50, .mb5-50, .mb10-50, .mb20-50, .mb30-50, .mb40-50, .mb60-50, .mb70-50, .mb80-50, .mb90-50, .mb100-50 {
    margin-bottom: 50px !important;
  }
  .mb60, .mb5-60, .mb10-60, .mb20-60, .mb30-60, .mb40-60, .mb50-60, .mb70-60, .mb80-60, .mb90-60, .mb100-60 {
    margin-bottom: 60px !important;
  }
  .mb70, .mb5-70, .mb10-70, .mb20-70, .mb30-70, .mb40-70, .mb50-70, .mb60-70, .mb80-70, .mb90-70, .mb100-70 {
    margin-bottom: 70px !important;
  }
  .mb80, .mb5-80, .mb10-80, .mb20-80, .mb30-80, .mb40-80, .mb50-80, .mb60-80, .mb70-80, .mb90-80, .mb100-80 {
    margin-bottom: 80px !important;
  }
  .mb90, .mb5-90, .mb10-90, .mb20-90, .mb30-90, .mb40-90, .mb50-90, .mb60-90, .mb70-90, .mb80-90, .mb100-90 {
    margin-bottom: 90px !important;
  }
  .mb100, .mb5-100, .mb10-100, .mb20-100, .mb30-100, .mb40-100, .mb50-100, .mb60-100, .mb70-100, .mb80-100, .mb90-100 {
    margin-bottom: 100px !important;
  }
  .mr5, .mr10-5, .mr20-5, .mr30-5, .mr40-5, .mr50-5, .mr60-5, .mr70-5, .mr80-5, .mr90-5, .mr100-5 {
    margin-right: 5px !important;
  }
  .mr10, .mr5-10, .mr20-10, .mr30-10, .mr40-10, .mr50-10, .mr60-10, .mr70-10, .mr80-10, .mr90-10, .mr100-10 {
    margin-right: 10px !important;
  }
  .mr20, .mr5-20, .mr10-20, .mr30-20, .mr40-20, .mr50-20, .mr60-20, .mr70-20, .mr80-20, .mr90-20, .mr100-20 {
    margin-right: 20px !important;
  }
  .mr30, .mr5-30, .mr10-30, .mr20-30, .mr40-30, .mr50-30, .mr60-30, .mr70-30, .mr80-30, .mr90-30, .mr100-30 {
    margin-right: 30px !important;
  }
  .mr40, .mr5-40, .mr10-40, .mr20-40, .mr30-40, .mr50-40, .mr60-40, .mr70-40, .mr80-40, .mr90-40, .mr100-40 {
    margin-right: 40px !important;
  }
  .mr50, .mr5-50, .mr10-50, .mr20-50, .mr30-50, .mr40-50, .mr60-50, .mr70-50, .mr80-50, .mr90-50, .mr100-50 {
    margin-right: 50px !important;
  }
  .ml5, .ml10-5, .ml20-5, .ml30-5, .ml40-5, .ml50-5, .ml60-5, .ml70-5, .ml80-5, .ml90-5, .ml100-5 {
    margin-left: 5px !important;
  }
  .ml10, .ml5-10, .ml20-10, .ml30-10, .ml40-10, .ml50-10, .ml60-10, .ml70-10, .ml80-10, .ml90-10, .ml100-10 {
    margin-left: 10px !important;
  }
  .ml20, .ml5-20, .ml10-20, .ml30-20, .ml40-20, .ml50-20, .ml60-20, .ml70-20, .ml80-20, .ml90-20, .ml100-20 {
    margin-left: 20px !important;
  }
  .ml30, .ml5-30, .ml10-30, .ml20-30, .ml40-30, .ml50-30, .ml60-30, .ml70-30, .ml80-30, .ml90-30, .ml100-30 {
    margin-left: 30px !important;
  }
  .ml40, .ml5-40, .ml10-40, .ml20-40, .ml30-40, .ml50-40, .ml60-40, .ml70-40, .ml80-40, .ml90-40, .ml100-40 {
    margin-left: 40px !important;
  }
  .ml50, .ml5-50, .ml10-50, .ml20-50, .ml30-50, .ml40-50, .ml60-50, .ml70-50, .ml80-50, .ml90-50, .ml100-50 {
    margin-left: 50px !important;
  }
}
/*--------------------------------------------------
**************************************************
  テキスト・フォント
**************************************************
--------------------------------------------------*/
.bold {
  font-weight: bold;
}

strong {
  font-size: 130%;
}

.small {
  font-size: 85%;
}

.line_through {
  text-decoration: line-through;
} /* 打消し線 */
.italic {
  font-style: italic;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.fs50 {
  font-size: 50%;
}

.fs60 {
  font-size: 60%;
}

.fs70 {
  font-size: 70%;
}

.fs80 {
  font-size: 80%;
}

.fs90 {
  font-size: 90%;
}

.fs100 {
  font-size: 100%;
}

.fs110 {
  font-size: 110%;
}

.fs120 {
  font-size: 120%;
}

.fs130 {
  font-size: 130%;
}

.fs140 {
  font-size: 140%;
}

.fs150 {
  font-size: 150%;
}

.fs160 {
  font-size: 160%;
}

.fs170 {
  font-size: 170%;
}

.fs180 {
  font-size: 180%;
}

.fs190 {
  font-size: 190%;
}

.fs200 {
  font-size: 200%;
}

/* -- 文字幅 letter-spacing -- */
.ls01 {
  letter-spacing: 0.1em !important;
}

.ls005 {
  letter-spacing: 0.05em !important;
}

.ls002 {
  letter-spacing: 0.02em !important;
}

.ls001 {
  letter-spacing: 0.01em !important;
}

/*--------------------------------------------------
**************************************************
  その他
**************************************************
--------------------------------------------------*/
ul {
  list-style-type: none;
}

.ul {
  list-style-type: disc;
  list-style-position: inside;
}

/* CSS Document */
@media screen and (min-width: 751px) {
  * {
    margin: 0;
    padding: 0;
  }
  body,
  div,
  dl,
  dt,
  dd,
  ul,
  ol,
  li,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  pre,
  code,
  form,
  fieldset,
  legend,
  input,
  button,
  textarea,
  p,
  blockquote,
  th,
  td {
    margin: 0;
    padding: 0;
  }
  html {
    color: #333333;
    background: none repeat scroll 0 0 white;
    height: 100%;
  }
  .text_L {
    text-align: left;
  }
  .float_R {
    float: right;
  }
  .float_L {
    float: left;
  }
  /* clearfix */
  .clearfix:after,
  #wrap:after,
  #side:after,
  #side #gnav ul:after,
  .grid:after,
  .grid .col:after,
  .grid .col .inr:after,
  .anchorList:after,
  dl.table:after,
  dl.list:after,
  ul.list-mat:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }
  .clearfix {
    display: inline-block;
  }
  /* Hides from IE Mac */
  * html .clearfix {
    height: 1%;
  }
  .clearfix {
    display: block;
  }
  .inline_block,
  img,
  .slider .paging a,
  .roles li,
  .roles li span {
    display: inline-block;
  }
  body {
    font-family: "Noto Sans JP", YakuHanJPs, 游ゴシック体, YuGothic, "YuGothic M", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Open Sans", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, serif;
    color: #333;
    min-height: 100%;
    text-align: center;
  }
  img {
    border-width: 0;
    vertical-align: top;
  }
  a {
    outline: medium none;
    text-decoration: underline;
  }
  a:focus {
    outline: none;
  }
  a:hover {
    text-decoration: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: inherit;
  }
  fieldset,
  img {
    border: 0 none;
  }
  li {
    list-style: none outside 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 none;
    font-variant: normal;
  }
  article,
  aside,
  dialog,
  figure,
  footer,
  header,
  hgroup,
  nav,
  section,
  .article,
  .aside,
  .dialog,
  .figure,
  .footer,
  .header,
  .hgroup,
  .nav,
  .section {
    display: block;
  }
  select,
  input,
  button,
  textarea {
    font: 99% arial, helvetica, clean, sans-serif;
  }
  pre,
  code,
  kbd,
  samp,
  tt {
    font-family: monospace;
    line-height: 100%;
  }
  #logtag {
    display: none;
  }
  img {
    border: none;
    vertical-align: top;
  }
  p {
    text-align: justify;
  }
  header {
    padding: 25px 0;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: fixed;
    z-index: 100;
    background: #ffffff;
  }
  header h1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header h1 a {
    margin: 0 15px;
  }
  .main h2 {
    margin-top: 120px;
  }
  .wrapper {
    max-width: 1040px;
    padding: 0px 3%;
    margin: 0 auto;
  }
  .fes_title {
    margin: 50px auto 0;
  }
  .main_image {
    margin-top: 50px;
    position: relative;
  }
  .main_image .image_inner ul {
    position: absolute;
    bottom: 7vw;
    left: 0;
    right: 0;
  }
  .main_image .image_inner ul li a {
    /* border-bottom: 1px solid #ededed; */
    padding: 1vw 0;
    display: inline-block;
  }
  .main_image .image_inner ul li a img {
    max-width: 25vw;
  }
  .content_btn a {
    color: #333;
    text-decolation: none;
    just-content: middle;
  }
  .content_btn {
    position: absolute;
    left: 0;
    right: 0;
    width: 300px;
  }
  .btn01 {
    bottom: 210px;
    border-bottom: 1px solid #ededed;
  }
  .btn02 {
    bottom: 140px;
    border-bottom: 1px solid #ededed;
  }
  .btn03 {
    bottom: 70px;
    border-bottom: 1px solid #ededed;
  }
  .content_btn img {
    width: 50px;
  }
  .content_btn a {
    color: #333;
    text-decoration: none;
  }
  .c_btn {
    position: fixed;
    left: 1.6%;
    bottom: 5%;
    z-index: 100;
  }
  .nav_area {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* background:rgba(255,255,255,.85); */
    background: rgba(255, 255, 255, 0.5);
    /* padding: 0 12px; */
    z-index: 100;
  }
  .nav_area ul li,
  .nav_area p {
    margin: 0px 0;
  }
  #sp01 {
    width: 100%;
  }
  .sp_inner {
    width: 1440px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 0;
  }
  .sp_title {
    font-size: 20px;
    font-style: italic;
    letter-spacing: 0.23em;
  }
  .item_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 30px;
  }
  .item_box .item {
    /* width: 309px; */
    max-width: 24.25%;
    margin-right: 1%;
    margin-bottom: 50px;
  }
  .item_box .item:nth-child(4n) {
    margin-right: 0;
  }
  .item_box .item .item_catch {
    margin: 15px 12px 0;
    /*font-weight:500;*/
    font-size: 14px;
    letter-spacing: 0.03em;
    /* padding: 10px; */
  }
  .item_box .item .item_name {
    /*font-weight:500;*/
    font-size: 14px;
    letter-spacing: 0.03em;
    margin: 15px 12px 0;
    margin: 5px 12px 0;
  }
  .item_box .thumb {
    position: relative;
    width: 100%;
  }
  .item_box .thumb::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .item_box .thumb img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -o-object-fit: contain;
       object-fit: contain;
  }
  /* .items .thumb::before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 17px 17px;
    border-color: transparent transparent #aba169 transparent;
    bottom: 0;
    right: 0;
    z-index: 1;
  } */
  .relax_items .thumb::before {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 17px 17px;
    border-color: transparent transparent #96a797 transparent;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
  .movie_items .thumb::before {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 17px 17px;
    border-color: transparent transparent #dbc09f transparent;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
  .item_box .thumb::after {
    content: "";
    background: url(../images/search.png);
    background-size: cover;
    width: 20px;
    height: 21px;
    position: absolute;
    z-index: 1;
    right: 10px;
    top: 10px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .item_box .thumb:hover::after {
    content: "";
    background: url(../images/search.png);
    background-size: cover;
    width: 33px;
    height: 34px;
    position: absolute;
    z-index: 1;
    right: 10px;
    top: 10px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .item_box .item .item_name a {
    color: #000;
    text-decoration: none;
    line-height: 1.6em;
  }
  .item_box .item .item_text {
    margin: 15px 12px 0;
    font-size: 14px;
    letter-spacing: 0.03em;
    color: #5d5d5d;
    line-height: 1.5em;
    text-align: left;
  }
  .item_box .item .item_text a {
    color: #5d5d5d;
  }
  .bottom_notes {
    width: 1000px;
    max-width: 98%;
    margin: 40px auto 0;
    font-size: 14px;
    color: #666;
  }
  /* #sp02 {
    background: #e9f0e9;
    padding-bottom: 90px;
  } */
  #sp02 .sp_title {
    font-size: 30px;
  }
  /* #sp03 {
    background: #f6eee4;
    padding: 100px 0;
  } */
  .movie_content {
    width: 1260px;
    max-width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .movie_content .movie_title {
    width: 50%;
    padding: 0 56px;
  }
  .movie_content .movie_title .column_bnr {
    margin-top: 40px;
  }
  .movie_content .movie_title .column_bnr img {
    width: 487px;
    max-width: 100%;
  }
  .movie_content .movie_items {
    width: 50%;
  }
  .movie_content .movie_items .item {
    max-width: 48.8% !important;
    width: 309px;
    margin-right: 8px;
    margin-bottom: 50px;
  }
  .movie_content .movie_items .item:nth-child(2) {
    margin-right: 0;
  }
  .modal-content {
    position: fixed;
    display: none;
    z-index: 20;
    top: 0 !important;
    bottom: 0;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto;
    padding: 0;
    z-index: 30000 !important;
  }
  .modal-overlay {
    z-index: 1;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 20000 !important;
  }
  .modal-open:hover,
  .modal-close:hover {
    cursor: pointer;
  }
  .modal_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #fff;
    width: 1000px;
    max-width: 90%;
    height: 570px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow-y: auto;
    /* overflow: scroll; */
  }
  .modal_inner .thumb {
    width: 52%;
  }
  .modal_inner .text_area {
    width: 45%;
    padding-right: 4%;
  }
  .modal_inner .item_catch {
    font-size: 18px;
    font-weight: 700;
    padding: 15px 0;
    border-top: 1px solid #000;
    letter-spacing: 0.07em;
  }
  .modal_inner.rx .item_catch {
    background: #eff4ef !important;
  }
  .modal_inner.mo .item_catch {
    background: #f8f3eb !important;
  }
  .modal_inner .item_name {
    font-size: 14px;
    /* font-weight: bold; */
  }
  .modal_inner .item_name a {
    color: #000;
    text-decoration: none;
    line-height: 2em;
  }
  .modal_inner .item_name span.notes {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5em;
    margin-top: 5px;
  }
  .modal_inner .catch {
    margin-top: 30px;
    font-weight: 500;
    font-size: 16px;
  }
  .modal_inner .item_text,
  .modal_inner .item_notes {
    margin-top: 15px;
    font-size: 14px;
    letter-spacing: 0.03em;
    color: #5d5d5d;
    line-height: 1.5em;
  }
  .modal_inner .item_text a {
    color: #5d5d5d;
  }
  .modal_inner .int {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.8em;
  }
  .close_btn {
    position: absolute;
    right: 20px;
    top: 20px;
  }
  .modal_inner.column {
    padding: 50px !important;
    display: block !important;
    text-align: left;
  }
  .modal_inner.column .c_title {
    text-align: center;
    font-size: 25px;
    color: #1c9532 !important;
    font-weight: 700;
  }
  .modal_inner.column dl dt {
    margin-top: 30px;
    background: #f8f8f8;
    font-size: 20px;
    font-weight: 700;
    padding: 10px;
  }
  .modal_inner.column dl dt::before {
    content: "Q.";
    color: #1c9532;
    margin-right: 5px;
  }
  .modal_inner.column dl dd {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-left: 1em;
    background: url(../images/column_dd.png) no-repeat left 8px;
    background-size: 9px 9px;
  }
  .modal_inner.column dl dd span {
    color: #5d5d5d;
    font-weight: 400;
    display: block;
  }
  #campaign_area {
    margin: 100px 0 20px;
  }
  #campaign_area ul {
    width: 1360px;
    max-width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  #campaign_area ul li {
    width: 50%;
  }
  #campaign_area ul li img {
    width: 100%;
    display: bloc;
  }
  .campaign_bottom {
    padding: 40px 0;
    background: #f5f3ef;
    text-align: center;
  }
  .campaign_bottom p {
    font-size: 21px;
    font-weight: 700;
    text-align: center;
  }
  .campaign_bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 30px auto 0;
    width: 1240px;
    max-width: 100%;
    padding: 20px;
    background: #fff;
  }
  footer {
    padding: 50px 0 70px;
    background: #fff;
  }
  .footer_logo {
    margin-bottom: 36px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer_logo a {
    margin: 0 20px;
  }
  .sns_list {
    margin-bottom: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sns_item {
    width: 40px;
    height: 40px;
    margin: 0 15px;
  }
  .sns_item a {
    display: block;
  }
  .copyright {
    text-align: center;
  }
  .img100 {
    width: 100%;
  }
  nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 15vh;
  }
  .navitem {
    width: 31.25%;
  }
  .navitem img {
    width: 100%;
  }
  .mt_100 {
    margin-top: 100px;
  }
  .mt_80 {
    margin-top: 80px;
  }
  .mb_100 {
    margin-bottom: 100px;
  }
  .mb_50 {
    margin-bottom: 50px;
  }
  #thanks {
    margin-top: 100px;
    background: url(../images/3rd_backgroundimage.jpg) repeat;
    padding-bottom: 100px;
  }
  .wrapper_thanks {
    padding-left: 5%;
    padding-right: 5%;
  }
  .wrapper_thanks_inner {
    max-width: 940px;
    padding: 50px 50px 5px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
  }
  .thanks_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 30px;
  }
  .thanks_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 50px;
  }
  .wrapper_thanks ul li {
    width: 31.25%;
    margin-right: 3.125%;
  }
  .wrapper_thanks ul li:nth-child(3) {
    margin-right: none;
  }
  /* #ページトップへ戻る CSS */
  #pageTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
  }
  #pageTop i {
    padding-top: 0px;
  }
  #pageTop a {
    display: block;
    z-index: 999;
    padding-top: 0px;
    border-radius: 35px;
    width: 70px;
    height: 70px;
    background-color: #aaa;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    font-size: 35px;
    line-height: 65px;
  }
  #pageTop a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  /* #java ふわっとアクション CSS */
  .fuwatAnime {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-name: fuwatAnime;
    animation-name: fuwatAnime;
    visibility: visible !important;
  }
  @-webkit-keyframes fuwatAnime {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
    }
  }
  @keyframes fuwatAnime {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-20px);
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  /* ACCA KAPPA調整 */
}
@media screen and (min-width: 751px) and (max-width: 1350px) {
  .main_image .image_inner ul li a img {
    width: 50px;
  }
}
@media screen and (min-width: 751px) {
  .modal_inner_2-5 {
    width: 1500px;
  }
  .thumb_2-5 {
    width: 60% !important;
  }
  .text_area_2-5 {
    width: 38% !important;
  }
  .item_catch_little {
    font-size: 14px;
  }
  .tab_only {
    display: none;
  }
}
@media screen and (min-width: 751px) and (max-width: 1350px) {
  .tab_only {
    display: block;
  }
}
/* CSS Document */
@media screen and (max-width: 750px) {
  * {
    margin: 0;
    padding: 0;
  }
  body,
  div,
  dl,
  dt,
  dd,
  ul,
  ol,
  li,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  pre,
  code,
  form,
  fieldset,
  legend,
  input,
  button,
  textarea,
  p,
  blockquote,
  th,
  td {
    margin: 0;
    padding: 0;
  }
  html {
    color: #333333;
    background: none repeat scroll 0 0 white;
    height: 100%;
  }
  .text_L {
    text-align: left;
  }
  .float_R {
    float: right;
  }
  .float_L {
    float: left;
  }
  .clearfix:after,
  #wrap:after,
  #side:after,
  #side #gnav ul:after,
  .grid:after,
  .grid .col:after,
  .grid .col .inr:after,
  .anchorList:after,
  dl.table:after,
  dl.list:after,
  ul.list-mat:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }
  .clearfix {
    display: inline-block;
  }
  /* Hides from IE Mac */
  * html .clearfix {
    height: 1%;
  }
  .clearfix {
    display: block;
  }
  .inline_block,
  img,
  .slider .paging a,
  .roles li,
  .roles li span {
    display: inline-block;
  }
  body {
    font-family: "Noto Sans JP", YakuHanJPs, 游ゴシック体, YuGothic, "YuGothic M", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Open Sans", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, serif;
    color: #333;
    min-height: 100%;
    text-align: center;
  }
  img {
    border-width: 0;
    vertical-align: top;
  }
  a {
    outline: medium none;
    text-decoration: underline;
  }
  a:focus {
    outline: none;
  }
  a:hover {
    text-decoration: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: inherit;
  }
  li {
    list-style: none outside 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 none;
    font-variant: normal;
  }
  article,
  aside,
  dialog,
  figure,
  footer,
  header,
  hgroup,
  nav,
  section,
  .article,
  .aside,
  .dialog,
  .figure,
  .footer,
  .header,
  .hgroup,
  .nav,
  .section {
    display: block;
  }
  select,
  input,
  button,
  textarea {
    font: 99% arial, helvetica, clean, sans-serif;
  }
  pre,
  code,
  kbd,
  samp,
  tt {
    font-family: monospace;
    line-height: 100%;
  }
  #logtag {
    display: none;
  }
  p {
    text-align: justify;
  }
  header {
    position: fixed;
    top: 0;
    padding: 5vw 0;
    background: #fff;
    left: 0;
    right: 0;
    z-index: 10;
  }
  header h1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header h1 a {
    margin: 0 10px;
    max-width: 38%;
  }
  header h1 a:nth-child(1) img {
    width: 100%;
  }
  header h1 a:nth-child(2) img {
    width: 80%;
  }
  .main h2 {
    width: 90%;
    margin: 20vw auto 0;
  }
  #dessert_menu h2 {
    width: 100%;
  }
  .main h2 img {
    width: 100%;
  }
  .fes_title {
    width: 78%;
    margin: 30px auto 0;
  }
  .fes_title img {
    width: 100%;
  }
  .main_image {
    margin-top: 40px;
    margin-top: 5px;
  }
  .image_inner {
    position: relative;
  }
  .image_inner ul {
    position: absolute;
    width: 100%;
    bottom: 7vw;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    display: none;
  }
  .image_inner ul li {
    width: 33.33%;
  }
  .image_inner ul li img {
    width: 100%;
    display: block;
  }
  .content_btn a {
    color: #333;
    text-decoration: none;
    -webkit-box-pack: middle;
        -ms-flex-pack: middle;
            justify-content: middle;
    display: block;
    font-size: 3.5vw;
    padding-bottom: 15px;
  }
  .content_btn {
    position: absolute;
    width: 33%;
    bottom: 30px;
  }
  .btn01 {
    left: 0;
    border-right: 1px solid #ededed;
  }
  .btn02 {
    left: 33%;
    border-right: 1px solid #ededed;
  }
  .btn03 {
    right: 0;
  }
  .content_btn img {
    width: 50px;
    margin-bottom: 15px;
  }
  .content_btn a {
    color: #333;
    text-decoration: none;
  }
  .scroll_btn {
    margin: 70px auto;
  }
  .nav_area {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 10;
  }
  .sp_navi {
    padding: 10px 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sp_navi ul {
    width: 85%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sp_navi ul li {
    width: 30%;
  }
  .sp_navi ul li img {
    width: 100%;
  }
  .sp_navi p {
    width: 10%;
    margin-top: 5px;
  }
  .sp_navi p img {
    width: 100%;
  }
  .nav_area > p {
    width: 100%;
  }
  #sp01 {
    width: 100%;
    background: #f5f3e8;
    padding-bottom: 30px;
  }
  .sp_inner {
    width: 100%;
    margin: 0px auto 0;
  }
  .sp_title {
    font-size: 6vw;
    font-style: italic;
    letter-spacing: 0.23em;
    text-align: center;
  }
  .item_box,
  .item_box_movie {
    margin-top: 30px;
  }
  .item_box .item,
  .item_box_movie .item {
    width: 48%;
    margin-bottom: 50px;
  }
  .item_box .thumb {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
  .relax_items .thumb::before {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 25px 25px;
    border-color: transparent transparent #96a797 transparent;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
  .movie_items .thumb::before {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 25px 25px;
    border-color: transparent transparent #dbc09f transparent;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
  .item_box .thumb::after {
    content: "";
    background: url(../images/search.png);
    background-size: cover;
    width: 30px;
    height: 32px;
    position: absolute;
    z-index: 1;
    right: 20px;
    top: 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .item_box .item .item_catch,
  .item_box_movie .item_catch {
    font-weight: 500;
    font-size: 3.6vw;
    letter-spacing: 0.03em;
    padding: 10px 0;
  }
  .item_box .item .item_name,
  .item_box_movie .item_name {
    font-size: 3.2vw;
    letter-spacing: 0.03em;
    margin: 0 0 0;
  }
  .item_box .item .item_name a,
  .item_box_movie .item_name a {
    color: #000;
    text-decoration: none;
    line-height: 1.8em;
  }
  .item_box .item .item_text,
  .item_box_movie .item_text {
    margin: 10px 0 0;
    font-size: 3.2vw;
    letter-spacing: 0.03em;
    color: #5d5d5d;
    line-height: 1.5em;
    text-align: left;
    width: 90%;
  }
  .item_box .item .item_text a,
  .item_box_movie .item_text a {
    color: #5d5d5d;
    /* text-decoration: none; */
  }
  .more_btn {
    width: 20%;
    margin: 0 auto;
    padding-bottom: 40px;
  }
  .more_btn img {
    display: block;
    width: 100%;
  }
  .bottom_notes {
    width: 86%;
    margin: 20px auto;
    font-size: 3vw;
    color: #666;
  }
  /* #sp02 {
    background: #e9f0e9;
    padding-bottom: 50px;
  } */
  #sp02 .sp_title {
    font-size: 8vw;
  }
  /* #sp03 {
    background: #f6eee4;
    padding: 0 0 50px;
  } */
  .column {
    width: 81.7%;
    margin: 0 auto;
  }
  .modal_inner.column {
    padding: 30px !important;
    display: block !important;
    text-align: left;
  }
  .modal_inner.column .c_title {
    text-align: center;
    font-size: 4.2vw;
    color: #1c9532 !important;
    font-weight: 700;
  }
  .modal_inner.column dl dt {
    margin-top: 30px;
    background: #f8f8f8;
    font-size: 3.8vw;
    font-weight: 700;
    padding: 15px;
    text-indent: -2.35em;
    padding-left: 2.5em;
  }
  .modal_inner.column dl dt::before {
    content: "Q.";
    color: #1c9532;
    margin-right: 5px;
    margin-left: 1em;
  }
  .modal_inner.column dl dd {
    margin-top: 10px;
    font-size: 3.2vw;
    font-weight: 500;
    position: relative;
    padding-left: 1em;
    background: url(../images/column_dd.png) no-repeat left 8px;
    background-size: 9px 9px;
  }
  .modal_inner.column dl dd span {
    color: #5d5d5d;
    font-weight: 400;
    display: block;
  }
  .modal-content {
    position: fixed;
    display: none;
    z-index: 20;
    top: 0 !important;
    bottom: 0;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto;
    padding: 0;
    z-index: 30000 !important;
  }
  .modal-overlay {
    z-index: 1;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 20000 !important;
  }
  .modal-open:hover,
  .modal-close:hover {
    cursor: pointer;
  }
  .modal_inner {
    background: #fff;
    width: 90%;
    height: auto;
    max-height: 90%;
    overflow-y: auto;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .modal_inner .thumb {
    width: 100%;
  }
  .modal_inner .text_area {
    width: 90%;
    margin: 20px auto;
  }
  .modal_inner .text_area .nation {
    margin-bottom: 10px;
    font-size: 4vw;
    font-weight: 500;
  }
  .modal_inner .text_area .nation span {
    border: 1px solid #8b634b;
    width: 35vw;
    display: block;
    text-align: center;
    margin: 10px 0 0;
  }
  .modal_inner .item_catch {
    font-size: 4vw;
    font-weight: 700;
    padding: 15px;
    margin-bottom: 15px;
    color: #000 !important;
    border-top: 1px solid #aaa;
  }
  .modal_inner.rx .item_catch {
    background: #eff4ef !important;
  }
  .modal_inner.mo .item_catch {
    background: #f8f3eb !important;
  }
  .modal_inner .item_name {
    font-size: 3vw;
    font-weight: bold;
  }
  .modal_inner .item_name span.notes {
    display: block;
    font-weight: 400;
    line-height: 1.5em;
    margin-top: 5px;
  }
  .modal_inner .item_name a {
    color: #000;
    text-decoration: none;
    line-height: 2em;
  }
  .modal_inner .catch {
    margin-top: 20px;
    font-weight: 500;
    font-size: 3.5vw;
  }
  .modal_inner .item_text,
  .modal_inner .item_notes {
    margin-top: 10px;
    font-size: 3vw;
    letter-spacing: 0.03em;
    color: #5d5d5d;
    line-height: 1.5em;
  }
  .modal_inner .item_text a {
    color: #5d5d5d;
    /* text-decoration: none; */
  }
  .modal_inner .int {
    margin-top: 20px;
    font-size: 3.5vw;
    line-height: 1.8em;
  }
  .close_btn {
    position: absolute;
    right: 20px;
    top: 20px;
  }
  #campaign_area {
    margin: 50px 0 0;
  }
  #campaign_area ul {
    width: 90%;
    margin: 20px auto;
  }
  #campaign_area ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  #campaign_area ul li img {
    width: 100%;
    display: block;
  }
  .campaign_bottom {
    padding: 40px 0;
    background: #f5f3ef;
    text-align: center;
  }
  .campaign_bottom p {
    font-size: 4.5vw;
    font-weight: 700;
    text-align: center;
  }
  .campaign_bottom ul {
    margin: 30px auto 0;
    width: 90%;
    padding: 10px 20px;
    background: #fff;
  }
  .campaign_bottom ul li {
    margin: 10px 0;
  }
  .point p {
    margin: 30px 0 0;
    text-align: center;
    font-size: 3vw;
    color: #666;
  }
  .point ul {
    width: 95%;
    margin: 10px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .point ul li {
    width: 46%;
    margin: 15px 2% 0;
    padding: 10px;
    background: #fff;
    font-size: 3vw;
    font-weight: 500;
    border: 2px solid #ffe765;
    border-radius: 5vw;
    color: #000;
    display: block;
    cursor: pointer;
  }
  .point ul li.select {
    background: #ffe765;
    color: #000;
  }
  footer {
    padding: 50px 0;
    background: #fff;
  }
  .footer_logo {
    margin-bottom: 50px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 90%;
    margin: 0 auto 30px auto;
  }
  .footer_logo a:nth-child(1) img {
    width: 90%;
    margin-right: 20px;
  }
  .footer_logo a:nth-child(2) img {
    width: 90%;
  }
  .sns_list {
    margin-bottom: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sns_item {
    width: 40px;
    height: 40px;
    margin: 0 15px;
  }
  .sns_item a {
    display: block;
  }
  .copyright {
    text-align: center;
  }
  .img100 {
    width: 100%;
  }
  nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /* margin-top: 20px; */
  }
  .navitem {
    width: 31.25%;
  }
  .navitem img {
    width: 100%;
  }
  .mt_100 {
    margin-top: 100px;
  }
  .mt_80 {
    margin-top: 80px;
  }
  .mb_100 {
    margin-bottom: 100px;
  }
  .mb_50 {
    margin-bottom: 50px;
  }
  #thanks {
    margin-top: 100px;
    background: url(../images/3rd_backgroundimage.jpg) repeat;
    padding-bottom: 100px;
  }
  .wrapper_thanks {
    padding-left: 5%;
    padding-right: 5%;
  }
  .wrapper_thanks_inner {
    max-width: 940px;
    padding: 50px 50px 5px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
  }
  .thanks_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 30px;
  }
  .thanks_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 50px;
  }
  .wrapper_thanks ul li {
    width: 31.25%;
    margin-right: 3.125%;
  }
  .wrapper_thanks ul li:nth-child(3) {
    margin-right: none;
  }
  /* #映画関連グッズ CSS */
  #movie {
    background-color: #f6eee4;
  }
  /* #ページトップへ戻る CSS */
  #pageTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
  }
  #pageTop i {
    padding-top: 0px;
  }
  #pageTop a {
    display: block;
    z-index: 999;
    padding-top: 0px;
    border-radius: 35px;
    width: 70px;
    height: 70px;
    background-color: #aaa;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    font-size: 35px;
    line-height: 65px;
  }
  #pageTop a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  /* #java ふわっとアクション CSS */
  .fuwatAnime {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-name: fuwatAnime;
    animation-name: fuwatAnime;
    visibility: visible !important;
  }
  @-webkit-keyframes fuwatAnime {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
    }
  }
  @keyframes fuwatAnime {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-20px);
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  .item_catch_little {
    font-size: 3.3vw !important;
  }
  .main_image {
    margin-top: 50px;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .slick-dots li {
    width: 15px;
  }
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 30px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 750px) {
  .slick-dots li button:before {
    font-size: 20px;
  }
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/* 初期描画で必ず適用されるガード */
.KV_visual {
  position: relative;
  width: 100%;
}

/* slick初期化までは非表示（FOUC防止） */
p {
  text-align: left;
}

a:link {
  text-decoration: none;
  color: black;
}

a:active {
  text-decoration: none;
  color: black;
}

a:hover {
  text-decoration: none;
  color: black;
}

a:visited {
  text-decoration: none;
  color: black;
}

header h1 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

header .wrapper {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1240px;
  width: 100%;
}

.header-menu {
  display: -webkit-box;
  display: -ms-flex box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-menu a {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
  color: white;
  position: relative;
}
.header-menu a ::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  right: -14px;
  top: 41%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  .header-menu a ::after {
    content: none;
  }
}

.header-menu a:first-of-type {
  margin-right: 50px;
}

.header-menu a:last-of-type {
  margin-left: 30px;
}

.header-menu a:link {
  color: white;
}

.header-menu a:visited {
  color: white;
}

.main .category_title {
  width: 355px;
  margin: 0 auto 66px;
}
@media screen and (max-width: 750px) {
  .main .category_title {
    width: min(62%, 355px);
  }
}
.main .category_title img {
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .main .category_title img {
    margin-bottom: 11px;
  }
}
.main .category_title .ja {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .main .category_title .ja {
    font-size: 13px;
  }
}
@media screen and (max-width: 750px) {
  .main .category_title {
    margin-bottom: 46px;
    width: min(53%, 355px);
  }
}

.image_inner {
  position: relative;
  /* max-width: 1440px; */
  width: 100%;
  display: block;
  margin: 0 auto;
}

:root {
  --green01-color: #84AFAC;
  --gold01-color: #928051;
  --gold02: #B39452;
  --pink01: #EA6697;
}

.pt100 {
  padding-bottom: 90px;
  padding-top: 20px;
}

.item__map {
  /* max-width: 630px; */
  margin: auto;
  height: auto;
  margin-top: 34px;
  width: 100%;
}

.item__map img {
  width: 90%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.item__logo {
  width: 100%;
  margin: 10px 0 10px 0;
  position: relative;
  padding-bottom: 20px;
}

.item__logo::before {
  content: "";
  display: block;
  padding-top: 25%;
}

.item__logo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
}

.item__text {
  font-size: 16px;
  padding-top: 10px;
  letter-spacing: 0.03em;
  line-height: 1.8;
}

h2 {
  margin: 0 auto 70px;
  white-space: nowrap;
}

h2 img {
  width: 100%;
}

.item_box.items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  justify-content: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.item {
  width: 45%;
}

.park_view {
  background-color: #fff;
  max-width: 800px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

.park_view__sub {
  width: 90%;
  margin: auto;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 2%;
  border: 1px solid #000;
}

.park_view__title {
  font-size: 1.5rem;
  font-weight: bold;
  padding-top: 4%;
  padding-bottom: 4%;
}

.park_img {
  width: 90%;
  margin: auto;
}

.park_img img {
  width: 100%;
}

.park_text {
  width: 90%;
  margin: auto;
  margin-top: 10px;
  letter-spacing: 0.19em;
  font-size: 16px;
}

.item__title img {
  width: 100%;
}

.text_serif {
  font-family: "Sawarabi Mincho";
}

.item_catch_16_sub {
  font-size: 13px;
}

.copyright {
  font-size: 13px;
}

@media screen and (max-width: 750px) {
  .item__title_box {
    padding-top: 30px;
  }
  .food-wrap .item__title_box {
    padding-top: 0px;
  }
  #performance .item__title_box {
    padding-top: 0px;
  }
  .park_text {
    font-size: min(3.5vw, 14px);
  }
  .pt100 {
    padding-bottom: 25px;
  }
  .scroll_btn-sp img {
    width: 60%;
  }
  .item_catch_16_sub {
    font-size: 3.5vw;
  }
  #lightcase-content h1,
  #lightcase-content h2,
  #lightcase-content h3,
  #lightcase-content h4,
  #lightcase-content h5,
  #lightcase-content h6,
  #lightcase-content p {
    color: #000 !important;
  }
  .copyright {
    font-size: 3vw;
  }
}
@media (min-width: 751px) {
  .scroll_btn-sp {
    display: none;
  }
  .pt100 {
    padding-top: 100px;
  }
  .item__map {
    /* max-width: 630px; */
    margin: auto;
    height: auto;
    margin-top: 58px;
    width: 100%;
  }
}
.modal_map img {
  width: 80%;
}

.item_catch_sub {
  font-size: 14px;
  font-weight: 400;
}

.thumb_2_5 {
  width: 100%;
  padding-right: 20px;
  padding-bottom: 20px;
}

.footer-bunner_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1104px;
  width: 90%;
  gap: 3%;
  row-gap: 30px;
}

.footer-bunner_flex_content {
  position: relative;
  width: 500px;
}
@media screen and (max-width: 750px) {
  .footer-bunner_flex_content {
    width: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.footer-bunner_flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
}

.item_box_wrap {
  display: block;
  margin: 0 auto 145px;
  max-width: 960px;
  width: 90%;
  padding: 0 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 60px;
  gap: 3%;
}
@media (max-width: 1240px) {
  .item_box_wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 750px) {
  .item_box_wrap {
    padding: 0px 0 0px;
    gap: 4%;
    margin: 0 auto 0;
  }
}

.item_content {
  width: 31.3333333333%;
}

#skincare .item_box_wrap {
  margin-bottom: 100px;
}

#performance .item_box_wrap {
  margin-top: 96px;
  max-width: 1000px;
}

#obsession .item_box_wrap {
  margin-top: 0px;
  max-width: 1000px;
}

.category-caution_box {
  font-size: 13px;
  text-align: center;
  display: inline-block;
  padding: 0 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.category-caution {
  text-align: left;
}

.scroll_btn {
  margin: 0;
}

section#performance {
  margin-bottom: 15px;
}

.footer-event_img {
  width: 100%;
  display: block;
  margin: 0px auto 0px;
}

.skin-bottom-bunner {
  width: 484px;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .item__logo img {
    width: 100%;
    height: 100%;
  }
  .modal_map img {
    width: 100%;
  }
  .footer-bunner_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    background: white;
  }
  .footer-event_img {
    margin: 0px auto;
  }
  .category-caution_box {
    font-size: 3vw;
  }
}
.map-1_image {
  max-width: 645px;
}

.map-2_image {
  max-width: 603px;
}

.map-3_image {
  max-width: 773px;
}

.map-4_image {
  max-width: 793px;
}

.map-5_image {
  max-width: 660px;
}

.scroll_btn {
  width: 40px;
  display: block;
  margin: 0px !important;
}

.scroll-btn_img {
  width: 100%;
}

.gourmet_box {
  background-color: white;
}

.gourmet-button_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 600px;
  width: 100%;
  margin: 30px auto 50px auto;
  position: relative;
  z-index: 105;
}

.title1 {
  margin-bottom: 90px;
}

.gourmet-button_flex li {
  margin: 7px;
}

.gourmet-button_flex li img {
  width: 100%;
}

.gourmet_category {
  font-size: 30px;
  text-align: center;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.event_link_box {
  position: fixed;
  bottom: 30px;
  left: 5%;
  width: 200px;
  z-index: 999;
}

.event_link_box img {
  width: 100%;
}

.step li a img {
  width: 100%;
}

.nav_area {
  width: 80px;
}

header {
  position: inherit;
}

.top_title {
  margin-top: 77px !important;
}

@media screen and (max-width: 1300px) {
  .top_title {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.drink-text {
  position: relative;
}

.drink_icon {
  position: absolute;
  width: 55px;
  top: 10px;
  right: 4px;
}

.all-wrap {
  position: relative;
  /* overflow: hidden; */
}

@media screen and (max-width: 750px) {
  .gourmet-button_flex {
    left: 0px;
    width: 97%;
  }
  .gourmet-button_flex li {
    margin: 5px;
  }
  .gourmet_category {
    font-size: 7vw;
  }
  .event_link_box {
    bottom: 0px;
    left: 0;
    width: 100%;
  }
  .sp_navi {
    padding: 10px 5% 10px 5%;
  }
  .sp_navi ul li {
    width: 48%;
  }
  .step li a img {
    width: 100%;
  }
  .nav_area {
    width: inherit;
  }
  .drink_icon {
    width: 45px;
    top: 8px;
    right: 2px;
  }
  .item_box.items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .scroll_btn_wrap {
    padding-right: 0;
  }
}
/* スクロール途中から追尾 */
.category_rogo_img {
  max-width: 500px;
  width: 90%;
}

/*========= スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/
#header {
  /*fixedで上部固定*/
  position: fixed;
  height: 70px;
  width: 100%;
  z-index: 999;
  /*最前面へ*/
  /*以下はレイアウトのためのCSS*/
  z-index: 30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
  padding: 20px 40px 20px 20px;
  top: 70px;
}

/*　上に上がる動き　*/
#header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header_wrap .hibiya_rogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 170px;
  margin: 0 27px 0 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .header_wrap .hibiya_rogo {
    width: 40px;
    margin: 0 0px 0 0;
  }
}

.header_wrap .stage_rogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 130px;
  margin: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .header_wrap .stage_rogo {
    width: inherit;
  }
}

@media screen and (max-width: 750px) {
  header h1 a {
    max-width: inherit;
  }
}
/* ボタン　ホバー切り替え */
.btn {
  position: relative;
}

.btn .active {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn a:hover .active {
  opacity: 1;
}

@media screen and (max-width: 750px) {
  #header {
    padding: 0px 0px;
    height: 50px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    top: 60px;
  }
}
/* 商品_アコーディオン */
.acd-button-check {
  display: none;
}

.acd-button-label {
  display: block;
  padding: 9px 0px;
  position: relative;
}

/* アコーディオン解除 */
.acd-button-label:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: "";
  background-image: url(../images/cross-open_gley_button.svg);
  background-repeat: no-repeat;
  background-size: 50px;
  display: block;
  padding: 30px 30px;
  position: absolute;
  top: 15px;
  right: 0;
}

.acd-button-check:checked + .acd-button-label:after {
  content: "";
  background-image: url(../images/cross-close_gley_button.svg);
}

.acd-button-content {
  display: block;
  height: 0;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  visibility: hidden;
  padding: 0 10px;
}

.acd-button-check:checked + .acd-button-label + .acd-button-content {
  height: auto;
  opacity: 1;
  padding: 10px 0px;
  visibility: visible;
}

/* 商品_アコーディオンここまで */
.item_content_text {
  border-top: 1px solid #EBEBEB;
  padding-top: 10px;
  color: #333;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 16px;
}

#performance .item_content_text {
  margin-bottom: 8px;
}

#performance .item_content_text_box {
  margin-bottom: 24px;
}

.merchandise .item_content_text {
  border-top: none;
}

.item_content_text_box .caution {
  color: #333;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  font-weight: 300;
}

#performance .item_content_text_box .caution {
  line-height: 1.3;
}

.item_content_shop_right_link {
  background-color: #8A959B;
  padding: 8px;
  color: white;
  border-radius: 30px;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.item_content_shop_modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: center;
  width: 100%;
  gap: 20px;
  padding: 10px;
  background-color: white;
  margin-top: 20px;
}

#obsession .item_content_shop_modal {
  background-color: #f9fbfb;
}

/* slickスライダー */
.sliderArea {
  max-width: 180px;
}

.sliderArea.w300 {
  max-width: 300px;
}

.slick-slide {
  margin: 0 0px;
}

#coordinate .slick-slide {
  margin: 0;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

.slick-prev,
.slick-next {
  z-index: 1;
}

.slick-prev:before,
.slick-next:before {
  color: #000;
}

.slick-slide {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  opacity: 1;
}

.slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}

.thumb {
  margin: 20px 0 0;
}

.thumb .slick-slide {
  cursor: pointer;
}

.thumb .slick-slide:hover {
  opacity: 0.7;
}

/* slickスライダーここまで */
/* .no-scroll {
  overflow: hidden;
} */
/* モーダルウィンドウ */
.contents_box {
  overflow: hidden;
}

.modal-content {
  background-color: #f8f6ee;
}

.modal_img {
  margin-top: 20px;
  font-size: 32px;
  font-family: "Sawarabi Mincho";
}

.modal_img span {
  font-size: 18px;
  line-height: 1;
  margin-left: 5px;
  margin-top: 8px;
}

.modal_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal_img:before,
.modal_img:after {
  border-top: 1px solid;
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.modal_img:before {
  margin-right: 5%;
}

.modal_img:after {
  margin-left: 5%;
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  overflow: hidden;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal__content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
}

.modal_img {
  width: 100%;
}

.modal__content_box {
  position: relative;
}

.js-modal-close_button {
  display: none;
}

@media (min-width: 767px) {
  .modal__content {
    width: 60%;
  }
  .js-modal-close_button {
    display: block;
    position: absolute;
    top: 0;
    right: -50px;
    width: 40px !important;
    z-index: 2;
  }
}
/* モーダルウィンドウここまで */
/* サムネ画像を拡大表示 */
.modal_wrap {
  padding: 20px 20px;
  overflow: hidden;
  position: relative;
  z-index: 5;
  background-color: white;
  width: 100%;
  max-width: 960px;
  max-width: 900px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modal_wrap.course_main {
  padding: 40px 20px;
}
@media screen and (max-width: 750px) {
  .modal_wrap.course_main {
    padding: 20px 15px 20px 15px !important;
  }
}
.modal_wrap.coordinate_modal {
  padding: 40px 40px;
}

.mainImg {
  position: relative;
  /* height: 419px; */
}

.subImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 35px 0 0px;
  gap: 15px;
}
@media screen and (max-width: 750px) {
  .subImg {
    margin: 15px 0 0px;
    gap: 10px;
  }
}
.subImg.tab1 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.subImg li {
  position: relative;
  opacity: 0.2;
  opacity: 1;
  width: calc((100% - 6px) / 3);
}
.subImg li.current {
  opacity: 1;
}
.subImg li.list1 {
  -webkit-box-flex: inherit;
      -ms-flex: inherit;
          flex: inherit;
  width: calc((100% - 24px) / 5);
}

.subImg2::after {
  content: "";
  display: block;
  width: calc((100% - 12px) / 3);
}

.modal_wrap .Img {
  width: 100%;
}

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

.modal_wrap .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal_wrap .group.course_main {
  -webkit-column-gap: 3%;
     -moz-column-gap: 3%;
          column-gap: 3%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.modal_wrap .group.course_main .panel-group {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* .slick-slider::after {
  content: '';
  background: url(../images/search.png);
  background-size: cover;
  width: 20px;
  height: 21px;
  position: absolute;
  left: 10px;
  top: 3px;
  transition: 0.5s;
}

.slick-slider:hover::after {
  content: '';
  background: url(../images/search.png);
  background-size: cover;
  width: 33px;
  height: 34px;
  position: absolute;
  left: 10px;
  top: 3px;
  transition: 0.5s;
} */
/* サムネ画像を拡大表示ここまで */
/* サムネと画像が同時切り替え */
button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.channge_img {
  /* 画像 */
  display: none;
  /* 標準が非表示 */
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  width: 100%;
}

.js-open-img {
  width: 80px;
  height: 80px;
  vertical-align: top;
}

.channge_img button {
  /* 「CLOSE」ボタン */
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  vertical-align: top;
}

.js-open-img_wrap {
  position: relative;
}

a.white:link {
  color: black;
}

a.white:visited {
  color: black;
}

a.white:active {
  color: black;
}

a.white:hover {
  color: black;
}

.button_wrap {
  position: relative;
  /* margin-bottom: 30px; */
  position: absolute;
  z-index: 1;
  bottom: 10px;
  right: 10px;
  opacity: 0.8;
}

.js-close-img {
  position: absolute;
  top: 0;
  left: 0;
}

.img_wrap {
  position: relative;
  width: 100%;
}

.img_wrap img {
  width: 100%;
}

/* サムネと画像が同時切り替え ここまで */
.item_content_wrap {
  padding-top: 40px;
  position: relative;
  width: 100%;
  display: block;
}
.item_content_wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: black;
  top: 0;
  left: 0;
}

.item_content_name {
  font-size: 15px;
  font-weight: 550;
  padding: 0px 0 7px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.item_content_name span.yen,
.yen {
  font-size: 90%;
}
.item_content_name span.yen.yen02,
.yen.yen02 {
  font-size: 83%;
}

.merchandise .item_content_name {
  margin-bottom: 40px;
  margin-bottom: 6px;
}

.item_content_shop1 {
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #5d5d5d;
  line-height: 1.5em;
}

.item_content_shop2 {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #5d5d5d;
  line-height: 1.5em;
  font-weight: 300;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 40px;
}

.item_content_caution {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #5d5d5d;
}

.item_content_shop_left {
  width: 50%;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.item_content_shop_left img {
  width: 76%;
}

.item_content_shop_right {
  width: 48%;
}

/* リンク */
a:link {
  color: #333;
}

a:visited {
  color: #333;
}

a:active {
  color: #333;
}

a:hover {
  color: #333;
}

a.shop-link_box:link {
  color: white;
  text-decoration: none;
}

a.shop-link_box:visited {
  color: white;
  text-decoration: none;
}

a.shop-link_box:active {
  color: white;
  text-decoration: none;
}

a.shop-link_box:hover {
  color: white;
  text-decoration: none;
}

.restaurant_title_box_wrap {
  display: block;
  margin: 0 auto;
  max-width: 400px;
  margin-top: 80px;
}

.restaurant_title_box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  margin-bottom: 40px;
}

.restaurant_title-text {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.restaurant_title_box li {
  padding: 0px 30px;
  border-right: 1px solid black;
}

.restaurant_title_box li:last-of-type {
  border-right: none;
}

.restaurant_title_box li a {
  text-decoration: none;
}

.key-item_flex_left .text {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.07em;
  line-height: 1.7;
  margin-bottom: 15px;
}

.key-item_flex_left .caution {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.07em;
  line-height: 1.7;
}

.coordinate-flex .content .info_wrap {
  height: 380px;
}
@media screen and (max-width: 1100px) {
  .coordinate-flex .content .info_wrap {
    height: 30vw;
  }
}
@media screen and (max-width: 750px) {
  .coordinate-flex .content .info_wrap {
    height: inherit;
  }
}

.coordinate-flex .content .info {
  padding: 64px 0 30px;
  width: 87%;
  display: block;
  border-bottom: 1px solid #B0A299;
  margin: 0 auto 36px;
}

.shop-info_link {
  font-size: 14px;
  letter-spacing: 0.07em;
  padding: 12px 55px;
  border: 1px solid black;
  border-radius: 30px;
  display: inline-block;
  position: relative;
}
@media (max-width: 1200px) {
  .shop-info_link {
    padding: 12px 4vw;
  }
}
.shop-info_link::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #1F1F1F;
  border-bottom: 1px solid #1F1F1F;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.coordinate_shop-info {
  text-align: center;
  font-size: 13px;
  font-size: 14px;
  font-weight: 400;
  color: #5D5D5D;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 15px;
}

.coordinate-bg_innner {
  position: relative;
}
.coordinate-bg_innner .mainCut {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .coordinate-bg_innner .mainCut {
    width: 90%;
  }
}
@media screen and (max-width: 750px) {
  .coordinate-bg_innner .mainCut.cut01 {
    padding-left: 4%;
  }
}
.coordinate-bg_innner .subCut01 {
  position: absolute;
  width: 50%;
  bottom: 16%;
  left: -5%;
}
@media screen and (max-width: 750px) {
  .coordinate-bg_innner .subCut01 {
    bottom: 14%;
    left: 5%;
    width: 47%;
  }
}
.coordinate-bg_innner .subCut02 {
  position: relative;
  width: 43%;
  left: 40%;
  margin-top: 10%;
}
@media screen and (max-width: 750px) {
  .coordinate-bg_innner .subCut02 {
    left: 47%;
    margin-top: 7%;
    width: 38%;
  }
}

@media (max-width: 1300px) {
  .coordinate_shop-info {
    font-size: 12px;
    font-size: 11px;
  }
  .item_content_text {
    font-size: 13px;
  }
  .item_content_name {
    font-size: 14px;
  }
  .key-item_flex_left .text {
    font-size: 12px;
  }
  .key-item_flex_left .caution {
    font-size: 10px;
  }
}
@media (max-width: 1080px) {
  .coordinate-flex .content .info {
    padding: 0px 0 32px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flex box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .coordinate-flex .content .info .left-box {
    width: 45%;
  }
  .coordinate-flex .content .info .right-box {
    width: 52%;
  }
  .shop-info_link {
    font-size: 10px;
  }
  .coordinate-bg_innner .image-wrapper {
    overflow: hidden;
    height: 600px;
  }
  .coordinate-bg_innner .image-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}
@media (max-width: 1000px) {
  .coordinate_shop-info {
    font-size: 10px;
  }
}
@media (max-width: 900px) {
  .coordinate-flex .content .info {
    padding: 0px 0 3vw;
  }
}

.coordinate_shop-rogo {
  width: 200px;
  display: block;
  margin: 0px auto 50px;
}
@media (max-width: 1080px) {
  .coordinate_shop-rogo {
    width: 170px;
    display: block;
    margin: 20px auto 14px;
  }
}
@media (max-width: 900px) {
  .coordinate_shop-rogo {
    margin: 2vw auto 1vw;
  }
}
@media screen and (max-width: 750px) {
  .coordinate_shop-rogo {
    width: 150px;
    margin: 0px auto 30px;
  }
}

@media screen and (max-width: 750px) {
  .coordinate-flex .content .info {
    padding: 0px 0 0px;
    width: 100%;
    margin-bottom: 21px;
  }
  .coordinate-bg_innner .image-wrapper {
    overflow: inherit;
    height: inherit;
  }
  .coordinate-bg_innner .image-wrapper img {
    width: 100%;
    height: inherit;
    -o-object-fit: inherit;
       object-fit: inherit;
  }
  .js-open-img,
  .channge_img button {
    width: 60px;
    height: auto;
  }
  .item_content_name {
    font-size: min(3.9vw, 19px);
    padding: 0px;
  }
  .item_content_name span.yen {
    font-size: 90%;
  }
  .item_content_shop1 {
    font-size: min(3.6vw, 15px);
  }
  .item_content_shop2 {
    font-size: min(3.4vw, 14px);
    margin-bottom: 30px;
  }
  .item_content_text {
    font-size: 3.5vw;
    padding-top: 6px;
  }
  .item_content_caution {
    font-size: 3.3vw;
    line-height: 1.8;
  }
  .item_content_shop_right_link {
    font-size: 3.2vw;
  }
  .item_content_shop_left {
    width: 48%;
  }
  .item_content_shop_left img {
    width: 90%;
  }
  .item_content_shop_right {
    width: 50%;
  }
}
.badge_bunner_img {
  max-width: 1050px;
  width: 100%;
  display: block;
  margin: 80px auto;
  padding: 0 10px;
  padding: 0 30px;
}

.fes_bunner_img {
  max-width: 400px;
  width: 100%;
  display: block;
  margin: 0 auto;
  margin-bottom: 120px;
  padding: 0 10px;
}

.item_name_tag {
  font-size: 13px;
  background-color: white;
  border: 1px solid black;
  padding: 1px 3px;
}

.side_memu_text {
  /* -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl; */
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: sideways;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 18px;
  padding: 60px 0 !important;
}

.btn_line {
  border-bottom: 1px solid #c3c3c3;
}

.btn_line:last-of-type {
  border-bottom: none;
}

a.side_memu_link:link {
  text-decoration: none;
}

.side_memu_link {
  opacity: 0.2;
}

.nav-global ul li a {
  opacity: 1;
  color: #c3c3c3;
}

.item_catch-copy {
  font-size: 18px;
  margin: 7px 0 13px;
}

.eventBtn_wrap {
  position: fixed;
  z-index: 500;
  bottom: 30px;
  left: 30px;
}
@media screen and (max-width: 750px) {
  .eventBtn_wrap {
    bottom: 10px;
    left: 8px;
  }
}

@media (max-width: 1000px) {
  .item_catch-copy {
    font-size: 1.8vw;
  }
}
.ikkaku_drink_sub {
  font-size: 14px;
  position: absolute;
  bottom: 10px;
  left: 5px;
  background-color: rgba(255, 255, 255, 0.5);
}

.ikkaku_drink_wrap {
  position: relative;
}

.item_content_title_box {
  position: relative;
}

.drink-icon {
  position: absolute;
  width: 60px;
  top: 20px;
  right: 0;
}

.sub-title_logo_img {
  width: 150px;
  margin-right: 30px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.exclusive-icon {
  font-size: 16px;
  border: #5d5d5d 1px solid;
  padding: 3px;
  position: absolute;
  top: 20px;
  right: 0;
}

.top_side_button_img {
  width: 80px;
}

.top_side_button_img {
  position: fixed;
  bottom: 0px;
  right: 0px;
}

@media screen and (max-width: 750px) {
  .top_side_button_img {
    /* width: 55px; */
    width: 70px;
  }
  .item_name_tag {
    font-size: 3vw;
  }
  .badge_bunner_img,
  .fes_bunner_img {
    margin-bottom: 80px;
  }
  .side_memu_text {
    -ms-writing-mode: inherit;
    -webkit-writing-mode: inherit;
            writing-mode: inherit;
  }
  .btn_line {
    border-bottom: none;
    border-right: 1px solid #c3c3c3;
  }
  .btn_line:last-of-type {
    border-right: none;
  }
  .sp_navi p {
    width: inherit;
  }
  .side_memu_text {
    font-size: 3.5vw;
    padding: 10px !important;
    /* height:70px ; */
    text-align: center;
    /* width: 39vw; */
    width: 36vw;
  }
  .step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 10px;
  }
  .nav_area {
    width: 100%;
    /* height: 55px; */
    height: 70px;
    /* padding: 10px 0px 10px 10px; */
    padding: 6px 0px 5px 10px;
  }
  .item_catch-copy {
    font-size: 4.5vw;
    margin: 8px 0;
  }
  .title_sticky {
    padding: 10px 0 10px 0;
    font-size: 4.2vw;
  }
  .ikkaku_drink_sub {
    font-size: 3.1vw;
  }
  .drink-icon {
    top: 20px;
  }
  .exclusive-icon {
    font-size: 3.6vw;
  }
}
.kv_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: center;
  max-width: 100%;
  padding: 1% 8% 6%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.kv_flex .number {
  width: 4.5vw;
  margin-bottom: 22px;
}

.kv_flex a {
  width: 48.5%;
}

.kv_flex .kv {
  -webkit-filter: drop-shadow(0px 0px 8px rgba(150, 150, 150, 0.4));
          filter: drop-shadow(0px 0px 8px rgba(150, 150, 150, 0.4));
}

.coordinate-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.coordinate-flex .content {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .coordinate-flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (max-width: 750px) {
  .swiper-slide {
    margin-right: 18px;
  }
}
@media screen and (max-width: 750px) {
  .swiper-slide.swiper-arrow {
    margin-right: 6px;
  }
}

.coordinate-flex_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.coordinate-flex .content {
  text-align: center;
  position: relative;
}

.coordinate-flex .left-side {
  width: 58%;
}

.coordinate-flex .left-side.reverse {
  margin-right: 0%;
  margin-left: 3%;
}

.coordinate-flex .right-side {
  width: 39%;
}

.coordinate-flex .content .title {
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 5;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-align: left;
}

.coordinate-flex .content .title.reverse {
  right: inherit;
  left: 17px;
}

@media screen and (max-width: 1200px) {
  .coordinate-flex .content .title {
    right: 20px;
    top: 20px;
  }
}
.coordinate-copy {
  background-color: #ffffff;
  font-size: 18px;
  padding: 5px;
  line-height: 1;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-left: 7px;
}

@media screen and (max-width: 1200px) {
  .coordinate-copy {
    font-size: 1.3vw;
  }
}
p {
  font-family: "Noto Sans JP", sans-serif;
}

.selif-text {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/* 横スワイプ */
.swiper-slide .content {
  width: 13vw;
}

/* モーダル */
.shop-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.shop-lists li {
  width: 23%;
  margin-right: 2%;
  margin-bottom: 20px;
}

.js-modal-open,
.js-modal-open2 {
  cursor: pointer;
}

.js-modal-open2 {
  position: relative;
}
.js-modal-open2 .main_modal_open {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 47px;
}
@media screen and (max-width: 750px) {
  .js-modal-open2 .main_modal_open {
    width: 47px;
  }
}

/* 後で復帰  */
.modal-wrapper,
.modal-wrapper2 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.modal-wrapper .view-window,
.modal-wrapper2 .view-window {
  position: relative;
  padding-bottom: 120px;
  height: 100vh;
  overflow: scroll;
  -webkit-overflow-scrolling: auto;
}

.modal-wrapper .modal-content-wrapper {
  position: absolute;
  max-width: 960px;
  max-width: 900px;
  width: 80%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 750px) {
  .modal-wrapper .modal-content-wrapper {
    position: relative;
    width: 84%;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    display: block;
    margin: 42px auto;
    top: 0;
    left: 0;
  }
}

.modal-wrapper2 .modal-content-wrapper {
  position: absolute;
  max-width: 960px;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 750px) {
  .modal-wrapper2 .modal-content-wrapper {
    position: relative;
    width: 80%;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    display: block;
    margin: 87px auto 0;
    top: 0;
    left: 0;
  }
}

.modal-wrapper .modal-content-wrapper .modal-main {
  /* background: #fff;
  padding: 10px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* height: 30vh; */
}

.modal-wrapper .modal-content-wrapper .modal-main .img-box {
  max-width: 580px;
  width: 100%;
  text-align: center;
}

.modal-wrapper .modal-content-wrapper .modal-main .txt-box {
  max-width: 435px;
  width: 100%;
  padding: 0px 35px 0 0;
}

.modal-content {
  display: none;
}

.modal-wrapper .btn-close {
  position: absolute;
  right: -10px;
  top: 5px;
  z-index: 20;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  cursor: pointer;
}

.modal-wrapper .btn-prev {
  position: absolute;
  left: -17%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 20;
  cursor: pointer;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 150px;
  height: 150px;
}
@media screen and (max-width: 750px) {
  .modal-wrapper .btn-prev {
    width: 120px;
    height: 50px;
  }
}
.modal-wrapper .btn-prev img {
  width: 35px;
}

.modal-wrapper .btn-next {
  position: absolute;
  right: -17%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 20;
  cursor: pointer;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 150px;
  height: 150px;
}
@media screen and (max-width: 750px) {
  .modal-wrapper .btn-next {
    width: 120px;
    height: 50px;
  }
}
.modal-wrapper .btn-next img {
  width: 35px;
}

.modal-wrapper .txt-close,
.modal-wrapper2 .txt-close {
  width: 34px;
  letter-spacing: 1.76px;
  color: #000000;
  text-align: center;
  cursor: pointer;
  position: relative;
  top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: block;
  margin: 0 auto;
  position: absolute;
  right: 30px;
  top: 20px;
  z-index: 6;
}

.modal-wrapper2 .txt-close {
  position: absolute;
  width: 40px;
  top: -9%;
  right: 1%;
  z-index: 500;
}

.modal-wrapper_box {
  position: relative;
}

/* モーダルここまで */
/* タブ切り替え */
.tab {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  list-style: none;
  /* border: solid 1px #CCC; */
  text-align: center;
  cursor: pointer;
}

.panel-group {
  width: 60%;
  text-align: left;
}

.panel {
  display: none;
}

.panel-group .shop {
  width: 100%;
  padding-bottom: 5px;
}

.panel.is-show {
  display: block;
}

.swipe_stop {
  -webkit-transform: translate3d(0px, 0px, 0px) !important;
          transform: translate3d(0px, 0px, 0px) !important;
}

.swipe_stay {
  -webkit-transform: none !important;
          transform: none !important;
}

a.shop-info_link:link {
  text-decoration: none;
}

a.shop-info_link:visited {
  text-decoration: none;
}

a.shop-info_link:active {
  text-decoration: none;
}

a.shop-info_link:hover {
  text-decoration: none;
}

.clothes_thumbnail p,
.clothes_thumbnail .txt {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .clothes_thumbnail p,
  .clothes_thumbnail .txt {
    font-size: min(3.4vw, 14px);
  }
}

.clothes_thumbnail .shop-name_thumbnail {
  color: #7D7D7D;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 1200px) {
  .clothes_thumbnail .shop-name_thumbnail {
    font-size: 13px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 750px) {
  .clothes_thumbnail .shop-name_thumbnail {
    font-size: min(3.3vw, 13px);
  }
}

.clothes_thumbnail img {
  width: 100%;
  margin-bottom: 14px;
}

/* .clothes_thumbnail {
  margin: 0 2vw 0;
} */
.slide_scroll {
  margin: 50px auto 0;
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
  padding-right: 100px;
  /* IE, Edge 対応 */
  -ms-overflow-style: none;
  /* Firefox 対応 */
  scrollbar-width: none;
}

/* Chrome, Safari 対応 */
.slide_scroll::-webkit-scrollbar {
  display: none;
}

.slide_scroll .box {
  display: inline-block;
  width: 25vw;
  position: relative;
}

.slide_scroll .box:first-of-type {
  width: auto;
}

.drug_arrow {
  width: 3vw;
  position: relative;
  float: right;
  top: 8vw;
  right: 2vw;
}

.drug_arrow_none {
  display: none;
}

.panel .name {
  font-size: 17px;
  font-weight: 550;
  letter-spacing: 0.07em;
  line-height: 1.6;
}
.panel .name.course_main {
  margin-top: 0px;
}

.panel .text {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 40px;
}

.panel .text_box_inner .text {
  margin-bottom: 10px;
  padding-left: 1em;
  text-indent: -1em;
}

.panel .text_box_inner {
  margin-bottom: 18px;
}
.panel .text_box_inner.inner02 .text {
  padding-left: 0em;
  text-indent: 0em;
}

.panel .caution {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 15px;
  margin-bottom: 35px;
}
@media screen and (max-width: 750px) {
  .panel .caution {
    font-size: min(3.2vw, 12px);
    line-height: 1.2;
    margin-top: 8px;
    margin-bottom: 20px;
  }
}
.panel .caution.coordinate {
  margin-bottom: 40px;
}

.panel .text_box {
  margin-bottom: 20px;
}
.panel .text_box.course_main {
  margin-bottom: 0;
}

.panel .shop {
  text-align: center;
}

.panel .shop img {
  display: block;
  width: 30%;
  margin: 0 auto 25px;
}

.panel .shop p {
  font-size: 14px;
  font-weight: 300;
  color: #5D5D5D;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
}

.image_wrap {
  overflow: hidden;
}

.clothes_thumbnail_inner {
  position: relative;
}

.clothes_thumbnail_inner::after {
  content: "";
  background: url(../images/search.png);
  background-size: cover;
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 31px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.clothes_thumbnail_inner:hover::after {
  content: "";
  background: url(../images/search.png);
  background-size: cover;
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 36px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.coordinate-bg_innner .credit {
  color: white;
  font-size: 14px;
  position: absolute;
  bottom: 0;
  text-align: right;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  padding: 4px 8px;
}
@media screen and (max-width: 1080px) {
  .coordinate-bg_innner .credit {
    font-size: 12px;
  }
}
@media screen and (max-width: 1000px) {
  .coordinate-bg_innner .credit {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 750px) {
  .coordinate-bg_innner .credit {
    font-size: min(3.3vw, 13px);
    position: static;
    color: black;
    background: inherit;
    padding: 4px 0px 0;
  }
}
.coordinate-bg_innner .credit.black {
  color: black;
}

.category_title img {
  display: block;
  margin: 0 auto;
}

.category_title .lead_copy {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.1;
  margin-top: 60px;
}
@media screen and (max-width: 750px) {
  .category_title .lead_copy {
    font-size: min(3.3vw, 14px);
    margin-top: 19px;
    margin-bottom: 30px;
  }
}

.group .left {
  width: 50%;
  margin-right: 38px;
}
.group .left.course_main {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .group .left.course_main {
    margin: 0 auto 25px;
  }
}

/* フッターロゴ調整 */
.footer_logo .right {
  height: auto;
  width: 267px;
  width: 156px;
}

.coordinate-flex_box {
  display: block;
  margin: 0 auto 140px;
  max-width: 960px;
  width: 90%;
}
@media screen and (max-width: 750px) {
  .coordinate-flex_box {
    margin: 0 auto 40px;
  }
}

.coordinate-flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* 途中から追尾して指定位置で消えるメニュー */
.start1,
.start2 {
  display: block;
  opacity: 0;
  width: 100%;
}

.fixed {
  position: fixed;
  top: 0;
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 20;
}

.panel-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  /* height: 42vh; */
}
.panel-group .panel-groupInner {
  width: 100%;
}

/* 途中から追尾して指定位置で消えるメニューここまで */
.main_image {
  margin-top: 42px;
}

/* ヘッダーカテゴリー */
.step2 {
  position: fixed;
  z-index: 20;
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
}

.step2 a {
  width: 100%;
  opacity: 0;
  display: none;
  pointer-events: none;
  text-decoration: none;
}

.step2 a:hover,
.step2 a.current_category {
  opacity: 1;
  display: block;
  width: 100vw;
}

img {
  width: 100%;
}

@media screen and (max-width: 1440px) {
  .group .left {
    margin-right: 3vw;
  }
}
@media screen and (max-width: 1300px) {
  .panel .name {
    font-size: 16px;
  }
}
/* スマホサイズ調整 */
@media screen and (max-width: 750px) {
  .kv_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 5% 54px;
  }
  .kv_flex a {
    width: 100%;
  }
  .coordinate-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .coordinate-flex .content {
    width: 100%;
    overflow: hidden;
  }
  .drug_arrow {
    width: 40px;
    top: 75px;
  }
  .coordinate-copy {
    font-size: 4.5vw;
    padding: 7px 5px 7px 5px;
  }
  .coordinate-copy {
    margin-left: 6px;
  }
  .swiper {
    padding: 66px 0 20px;
  }
  .modal_wrap .group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .group .left,
  .panel-group {
    width: 100%;
    height: inherit;
  }
  .modal-wrapper .modal-content-wrapper {
    position: static;
    top: 0;
    left: 0;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    width: 90%;
    display: block;
    margin: 20px auto 20px;
  }
  .mainImg {
    height: auto;
  }
  .panel .name {
    font-size: min(3.7vw, 17px);
    line-height: 1.3;
    margin-top: 0px;
  }
  .panel .text {
    font-size: min(3.5vw, 14px);
    margin-bottom: 30px;
  }
  .panel .shop img {
    width: 57%;
  }
  .panel .shop p {
    font-size: min(3.5vw, 14px);
  }
  .modal-wrapper .btn-prev {
    position: static;
    margin-top: 14px;
  }
  .modal-wrapper .btn-next {
    position: static;
    margin-top: 14px;
  }
  .modal-wrapper .txt-close {
    top: 3px;
    right: 3px;
  }
  .modal-wrapper .view-window {
    /* padding-bottom: 120px; */
    padding-bottom: 60px;
    height: auto;
  }
  .modal-wrapper {
    overflow: scroll;
    padding: 0px 0 30px;
  }
  .btn-sp_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 17px;
    margin-bottom: 50px;
  }
  .btn-sp_flex.flex2 {
    margin-top: 0px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .kv_flex .number {
    width: 65px;
    margin-bottom: 17px;
  }
  .kv_flex a:first-of-type {
    margin-bottom: 30px;
  }
  .main_image {
    margin-top: 33px;
  }
  .category_title img {
    width: 100%;
  }
  .category_title .lead {
    font-size: 3.7vw;
    line-height: 1.9;
    margin-bottom: 47px;
  }
  .coordinate_shop-info {
    font-size: min(3.2vw, 13px);
    text-align: center;
    width: 100%;
    display: block;
    margin: 0 auto 24px;
  }
  .swiper_box {
    position: relative;
    left: -16px;
  }
  .shop-info_link {
    font-size: min(3.5vw, 15px);
    padding: 12px 13vw;
    margin-bottom: 30px;
  }
  .footer_logo .right {
    width: 73%;
    width: 45%;
  }
  .footer_logo a:nth-child(2) img {
    width: 100%;
  }
  .kv_flex .kv {
    -webkit-filter: drop-shadow(0px 0px 4px rgba(150, 150, 150, 0.4));
            filter: drop-shadow(0px 0px 4px rgba(150, 150, 150, 0.4));
  }
  .main h2 {
    margin-top: 0;
  }
  .top_title {
    margin-top: 70px !important;
    padding-left: 0px;
    padding-right: 0px;
  }
  .coordinate-flex_wrap {
    width: 100%;
    margin-bottom: 50px;
    row-gap: 60px;
  }
  .panel-group .shop {
    width: 100%;
    position: static;
    padding-bottom: 0;
  }
  .coordinate3_thumbnail {
    position: relative;
    left: 6.3vw;
  }
  .coordinate-flex .content .title {
    right: 3%;
    top: -3%;
    z-index: 5;
    left: inherit;
  }
  .coordinate-flex .content .title.reverse {
    right: inherit;
    top: -3%;
    z-index: 5;
    left: 2%;
  }
  .coordinate-flex .merchandise .group .left {
    margin-right: inherit;
  }
  .clothes_thumbnail_inner::after {
    width: 20px;
    height: 20px;
    right: 6px;
    bottom: 26px;
  }
  .clothes_thumbnail_inner:hover::after {
    width: 30px;
    height: 30px;
    right: 6px;
    bottom: 26px;
  }
  .swiper_box {
    position: static;
    left: 0;
  }
  .panel-group_SEMICECO {
    height: inherit;
  }
}
/* 10月11日追加（下部バナー） */
.Coming_Soon {
  position: relative;
  pointer-events: none;
}

.footer-event_img_Coming_Soon {
  position: relative;
  -webkit-filter: brightness(33%);
          filter: brightness(33%);
}

.Coming_Soon_text {
  font-size: 28px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@media screen and (max-width: 800px) {
  .Coming_Soon_text {
    font-size: 22px;
  }
}
@media screen and (max-width: 750px) {
  .Coming_Soon_text {
    font-size: 7vw;
  }
}
/* ハンバーガーメニュー */
.sp-header-nav_box_ham {
  position: fixed;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  display: block;
  z-index: 100;
  border-left: 112px solid transparent;
  border-bottom: 112px solid black;
}

.sp-header-nav_box_ham_line {
  content: "";
  background-color: white;
  display: block;
  /* width: 30px; */
  width: 40px;
  height: 2px;
  position: absolute;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.sp-header-nav_box_ham_line {
  width: 20px;
}

.line-1,
.line-2,
.line-3 {
  right: 20px;
}

.line-1 {
  top: 70px;
}

.line-2 {
  top: 80px;
}

.line-3 {
  top: 90px;
}

.clicked .line-1 {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  top: 80px;
}

.clicked .line-2 {
  opacity: 0;
}

.clicked .line-3 {
  -webkit-transform: rotate(405deg);
  transform: rotate(405deg);
  top: 80px;
}

.sp-nav_nav-list {
  position: fixed;
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  height: 100%;
  z-index: 32;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  top: -1500px;
}

.sp-nav_nav-list.nav-opened {
  opacity: 1;
  /* 元のサイズに戻す */
}

.sp-nav_nav-list_box {
  list-style: none;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  width: 450px;
  width: 550px;
  position: absolute;
  right: 0;
  text-align: left;
  height: 100vh;
  overflow-y: auto;
}

.sp-nav_nav-list_ul {
  position: absolute;
  top: 18px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  padding-bottom: 30vh;
}
@media screen and (max-width: 750px) {
  .sp-nav_nav-list_ul {
    position: static;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    padding-bottom: 10vh;
  }
}

.sp-nav_nav-list_box_list {
  margin: 0 auto 0px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 0px 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sp-nav_nav-list_box_list.nav_top {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.sp-nav_nav-list_box_list.list02 {
  margin-bottom: 40px;
}
.sp-nav_nav-list_box_list .link_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .sp-nav_nav-list_box_list .link_flex {
    margin-bottom: 40px;
    margin-bottom: 12px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4%;
    row-gap: 12px;
  }
}
.sp-nav_nav-list_box_list .link_flex a {
  position: relative;
}
@media screen and (max-width: 750px) {
  .sp-nav_nav-list_box_list .link_flex a {
    display: block;
    width: 48%;
  }
}
.sp-nav_nav-list_box_list .lead {
  border-bottom: 1px solid white;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 6px;
}

.sp-nav_nav-list_box_list:nth-last-of-type(1) {
  margin-bottom: 0;
}

.sp-nav_nav-list_box_list .nav_category {
  font-size: 20px;
  color: white;
  letter-spacing: 0.09em;
  line-height: 1.4;
  margin-bottom: 5px;
}

.sp-nav_nav-list_box_list .nav_category.nav_category_staff {
  margin-bottom: 0px;
}

.sp-nav_nav-list_box_list .nav_category_flex p {
  color: white;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 300;
  letter-spacing: 0.08em;
  width: 85%;
}

.nav-opened {
  top: 0px;
}

.is-z {
  z-index: 100;
}

.nav_top a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.nav_top_flex,
.nav_category_flex {
  display: -webkit-box;
  display: -ms-flex box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav_top_flex {
  position: relative;
}
.nav_top_flex ::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  position: absolute;
  right: -14px;
  top: 57%;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}

.nav_category_flex {
  margin-bottom: 8px;
}

.nav_category_flex .triangle-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 8px;
  height: 16px;
  margin-right: 10px;
}
.nav_category_flex .triangle-icon img {
  display: block;
}

.menu_arrow_01 {
  width: 10px;
  margin: 0 13px;
}

.menu_arrow_02 {
  width: 7px;
  height: 7px !important;
  height: auto;
  margin: 0 13px;
}

.sp-nav_nav-list_box_list:first-of-type {
  border: none;
  margin-bottom: 20px;
}

.nav_number {
  font-size: 24px;
  margin-right: 25px;
  line-height: 1.8;
}

.nav_close {
  width: 40px;
  float: right;
  padding-bottom: 20px;
  border: none;
}

.GENEVE_modal {
  display: -webkit-box;
  display: -ms-flex box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 750px) {
  .GENEVE_modal_text {
    width: 39% !important;
  }
  .nav_top_flex {
    padding-top: 1px !important;
  }
  .sp-nav_nav-list_box {
    padding: 20px 5% 10vh 5%;
    width: 90%;
    display: block;
    margin: 10vh auto;
    position: relative;
    height: auto;
  }
  .nav_top a {
    font-size: 3.8vw;
  }
  .sp-nav_nav-list_box_list a {
    font-size: min(4vw, 20px);
    line-height: 1.2;
    padding-top: 4px;
  }
  .sp-nav_nav-list_box_list {
    padding: 22px 0px 0px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .sp-nav_nav-list_box_list {
    padding: 0px 0px 0px;
  }
}
@media screen and (max-width: 750px) {
  .sp-nav_nav-list_box_list .nav_banner {
    width: 254px;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .sp-nav_nav-list_box_list .nav_banner {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .nav_category {
    font-size: 4.5vw;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .nav_number {
    font-size: 4.3vw;
    margin-right: 10px;
    line-height: 1.5;
  }
  .nav_close {
    width: 30px;
  }
  .sp-nav_nav-list_box_wrap {
    position: relative;
  }
  button#js-ham2 {
    position: absolute;
    bottom: 30px;
    right: 14px;
    width: 30px;
  }
  .clicked .line-1 {
    top: 80px;
  }
  .clicked .line-2 {
    opacity: 0;
  }
  .clicked .line-3 {
    top: 80px;
  }
}
/* ハンバーガーメニューここまで */
.item_content_flex {
  width: 100%;
  display: -webkit-box;
  display: -ms-flex box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 60px;
}

.item_content_flex.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.item_content_flex.reverse .item_content_flex_left {
  margin-right: 0%;
  margin-left: 2%;
}

.item_content_title_box_flex {
  width: 100%;
  display: -webkit-box;
  display: -ms-flex box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 16px;
}

/* #obsession .item_content_title_box_flex {
  border-bottom: 1px solid var(--green01-color);
} */
.item_content_title_box_flex_left {
  width: 50%;
  margin-right: 3%;
}

.item_content_flex_left {
  width: 50%;
  margin-right: 4%;
}

.item_content_flex_right {
  width: 46%;
}

.item_content_text.flex_content {
  border-top: none;
}

.key-item_flex {
  display: -webkit-box;
  display: -ms-flex box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.key-item_flex_left {
  width: 46%;
  margin-right: 4%;
}

.key_item_icon {
  display: block;
  width: 123px;
  margin-bottom: 20px;
}

.key-item_flex_right {
  --x-gradient: linear-gradient(90deg, #333 0 20px, transparent 0 calc(100% - 20px), #333 calc(100% - 20px));
  --y-gradient: linear-gradient(#333 0 20px, transparent 0 calc(100% - 20px), #333 calc(100% - 20px));
  margin: 0.5rem;
  padding: 1rem;
  background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
  background-repeat: no-repeat;
  background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
  background-position: top, right, bottom, left;
  width: 50%;
}

section#staff {
  padding: 130px 0 30px;
  background-color: #FBF8F3;
  margin-bottom: 0;
}

#staff h2 {
  font-size: 72px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 58px;
}

#staff .staff-title_sub {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 20px;
}

#obsession h2 {
  margin: 0 auto 10px;
}

.category_title.event-title {
  width: 467px;
  margin: 0 auto 80px;
}
.category_title.event-title img {
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .category_title.event-title {
    width: 78%;
    margin: 0 auto 60px;
  }
}

#staff .intro .lead {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 120px;
}

@media screen and (max-width: 1200px) {
  #staff h2 {
    font-size: 5.8vw;
  }
  #staff .staff-title_sub {
    font-size: 1.9vw;
  }
}
/* スタッフ部分のスライダー */
.staff-slider .slick-list {
  padding: inherit;
}

.staff-slider__item {
  margin-right: 80px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: 1000px;
}

.staff-slider__item:focus {
  outline: none;
}

.staff-slider__no {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  font-weight: bold;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.staff-slider {
  position: relative;
}

.staff-slider_nav {
  padding-bottom: 110px;
  max-width: 1000px;
  width: 80%;
  display: block;
  margin: 0 auto;
}

.staff-slider_nav__lists {
  display: -webkit-box;
  display: -ms-flex box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2%;
}

.staff-slider_nav__list:hover {
  cursor: pointer;
}

.slick-custom-prev,
.slick-custom-next {
  position: absolute;
  top: 255px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  cursor: pointer;
  border: none;
  outline: none;
  z-index: 10;
  background: none;
}
@media screen and (max-width: 900px) {
  .slick-custom-prev,
  .slick-custom-next {
    top: 191px;
  }
}
@media screen and (max-width: 750px) {
  .slick-custom-prev,
  .slick-custom-next {
    top: 50%;
    width: min(9vw, 50px);
    height: min(9vw, 50px);
  }
}

.slick-custom-prev {
  left: calc(50% - 452px);
}
@media screen and (max-width: 900px) {
  .slick-custom-prev {
    left: calc(50% - 340px);
  }
}
@media screen and (max-width: 750px) {
  .slick-custom-prev {
    left: 3%;
  }
}

.slick-custom-next {
  right: calc(50% - 452px);
}
@media screen and (max-width: 900px) {
  .slick-custom-next {
    right: calc(50% - 340px);
  }
}
@media screen and (max-width: 750px) {
  .slick-custom-next {
    right: 3%;
  }
}

.kv_menu {
  position: relative;
}

.interview_link_wrap .interview_link_img {
  width: 10px;
  height: 10px;
  margin: 0 14px;
}

.interview_link_wrap,
.interview_link {
  display: -webkit-box;
  display: -ms-flex box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.interview_link_wrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 200px;
}

.interview_link p {
  font-size: 14px;
  font-weight: 550;
}

@media (max-width: 1100px) {
  .staff-slider__item {
    width: 600px;
  }
}
/* .shop-button {
  display: block;
  width: 100%;
  margin: 0px auto 0;
  letter-spacing: .07em;
  border: 1px solid #000000;
  transition: .3s;
  border-radius: 50px;
  position: relative;
  padding: 19px 0;
  font-size: 14px;
  font-weight: 300 !important;
  position: relative;
  background-color: #FBF8F3;
}

.shop-button:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  border-radius: 50px;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translate3d(0, 0.75rem, -1rem);
  transform: translate3d(0, 0.75rem, -1rem);
  border: 1px solid #000;
}

.shop-button:hover {
  transform: translate3d(0, 8px, 0);
  color: #ffffff;
  ;
  box-shadow: none;
  background: rgb(0, 0, 0);
}

.shop-button:before:hover {
  display: none;
} */
.button_solid012 a {
  background: #FBF8F3;
  border-radius: 3px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 18px 0px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border: 1px solid #000;
  z-index: 1;
  border-radius: 20px;
  text-decoration: none;
  width: 100%;
  font-size: 12px;
  font-weight: 300;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

p.nav-bottom_title.selif-text {
  font-size: 28px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.09em;
  margin-bottom: 45px;
}

.button_solid012 a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #ffffff;
  z-index: -1;
  border: 1px solid #000;
  border-radius: 20px;
}

@media (max-width: 1400px) {
  p.nav-bottom_title.selif-text {
    font-size: 24px;
  }
}
@media (max-width: 1000px) {
  .button_solid012 a {
    font-size: 10px;
  }
}
.button_solid012 a:after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.3rem, -1rem);
  transform: translate3d(0, 0.3rem, -1rem);
  border: 1px solid #000;
  border-radius: inherit;
  background: #000;
  /* -webkit-box-shadow: 0 0.6rem 0 0 rgb(0 0 0 / 20%);
  box-shadow: 0 0.4rem 0 0 rgb(0 0 0 / 20%); */
  z-index: -2;
}

.button_solid012 a:hover {
  -webkit-transform: translate3d(0, 0.3rem, 0rem);
          transform: translate3d(0, 0.3rem, 0rem);
  background: #F4ECD6;
  color: rgb(0, 0, 0);
}

.button_solid012 a:hover:before {
  background: #F4ECD6;
}

.button_solid012 a:hover:after {
  -webkit-transform: translate3d(0, 0rem, 0rem);
          transform: translate3d(0, 0rem, 0rem);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.button_solid012 a img {
  display: block;
  margin: 11px auto 24px;
  width: 70%;
}

/* スタッフ部分のスライダーここまで */
.stage-main-box {
  max-width: 1200px;
  display: block;
  margin: 150px auto 80px;
  width: 90%;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .stage-main-box {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 750px) {
  .stage-main-box {
    margin-top: 30px;
  }
}

.stage-main-rogo {
  width: 505px;
  display: block;
  margin: 0px auto;
  padding-top: 50px;
}

.stage-main-tag {
  position: absolute;
  width: 80px;
  left: 0;
  top: 0px;
}
@media screen and (max-width: 750px) {
  .stage-main-tag {
    width: 80px;
  }
}

.stage-main-vol25 {
  position: absolute;
  width: 100px;
  right: 0;
  bottom: 0px;
}

.slider_content {
  width: 800px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .slider_content {
    width: 600px;
  }
}

.slick-dots {
  bottom: -25px;
}
@media screen and (max-width: 750px) {
  .slick-dots {
    width: inherit;
    left: 10%;
  }
}

@media screen and (max-width: 750px) {
  .slick-dots li {
    margin: 0 1px;
  }
}

.item_content_title_box_flex_left.obsession {
  width: 22%;
  margin-right: 3%;
}

.item_content_text.obsession {
  display: block;
  width: 75%;
  padding-top: 0px;
  margin-bottom: 0px;
}

.obsession_caution {
  font-size: 12px;
  margin-bottom: 34px;
  font-weight: 300;
}

.obsession_point {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flex box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  color: var(--green01-color);
  margin-bottom: 15px;
}

.obsession_point::after {
  background-color: var(--green01-color);
  border-radius: 1px;
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  margin-left: 10px;
}

.staff-main_img {
  position: relative;
  display: inline-block;
  /* 必要に応じて */
}

.staff-main_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 黒色に透明度を追加 */
  z-index: 1;
  /* 画像より手前に表示 */
}

#staff03 .staff-main_img::before {
  content: none;
}

.staff-main_img img {
  display: block;
  z-index: 2;
  /* 半透明レイヤーより手前に表示 */
}

.staff-area_speaker {
  font-size: 12px;
  margin-bottom: 20px;
  text-align: center;
}

.staff-area_main {
  position: relative;
}

.staff-area_main .credit {
  position: absolute;
  left: 3.3%;
  top: 14%;
  z-index: 1;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  color: white;
}

.staff-area_main .credit .position {
  font-size: 18px;
  letter-spacing: 0.5em;
  line-height: 1;
  margin-left: 15px;
}

.staff-area_main .credit .name {
  font-size: 28px;
  letter-spacing: 0.07em;
  line-height: 1;
}

.staff-area_main .credit .sub {
  font-size: 18px;
  margin-top: 20px;
}

.staff-area_main .profile {
  font-size: 14px;
  letter-spacing: 0.07em;
  font-weight: 300;
  background-color: white;
  padding: 10px 18px;
  position: absolute;
  right: 1%;
  bottom: 2%;
  width: 20%;
}

@media screen and (max-width: 1200px) {
  .staff-area_main .profile {
    font-size: 11px;
  }
}
.staff_shop-rogo {
  display: block;
  margin: -13% auto 0px;
  width: 100%;
  z-index: 1;
  position: relative;
  background-image: url(../images/staff_shop-rogo_PC_BG.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.staff_shop-rogo img {
  width: 32%;
  display: block;
  margin: 16px auto 0;
}

.staff-area_credit {
  font-size: 12px;
  letter-spacing: 0.07em;
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 300;
  text-align: center;
}

.staff-area_innner {
  max-width: 700px;
  width: 80%;
  display: block;
  margin: 0 auto 30px;
}

.staff-area_explain {
  font-size: 14px;
  letter-spacing: 0.07em;
  line-height: 1.7;
  padding-bottom: 40px;
  font-weight: 300;
  border-bottom: 1px solid;
  margin-bottom: 40px;
}

.staff-area_appeal_title {
  font-size: 28px;
  letter-spacing: 0.07em;
  line-height: 1;
  margin-bottom: 16px;
}

.staff-area_appeal_text {
  font-size: 16px;
  letter-spacing: 0.07em;
  line-height: 1.6;
  margin-bottom: 34px;
}

.staff-area_appeal_text.photo-lead {
  margin-bottom: 10px;
}

.staff-area_appeal_text.photo-caution {
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.staff-area_photo {
  margin-bottom: 70px;
}

.recommend-location {
  max-width: 860px;
  width: 90%;
  background-color: #FCFAF9;
  display: block;
  margin: 0 auto 70px;
  padding: 60px 0 20px;
}

.recommend-location_title {
  font-size: 28px;
  letter-spacing: 0.07em;
  line-height: 1.6;
  margin-bottom: 32px;
  padding-bottom: 10px;
  border-bottom: 1px solid;
}

.recommend-location_name {
  font-size: 20px;
  letter-spacing: 0.07em;
  line-height: 1;
  margin-bottom: 15px;
}

.recommend-location_name .caution {
  font-size: 13px;
}

.recommend-location_interview {
  font-size: 16px;
  letter-spacing: 0.07em;
  line-height: 1.6;
}

img.recommend-location_img {
  margin-bottom: 15px;
}

.obsession_title_big {
  font-size: 55px !important;
  color: var(--green01-color);
}

.obsession_title_big.catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: var(--green01-color);
  font-size: 55px;
  color: white;
  margin-right: 6px;
}

.obsession_title_big.catch span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
}

.obsession_title p {
  font-size: 28px;
  letter-spacing: 0.07em;
  line-height: 1;
}

.obsession_title {
  display: -webkit-box;
  display: -ms-flex box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5%;
}

.item_content_name.obsession {
  font-size: 20px;
  margin-bottom: 24px;
}

.item_content_name.obsession span {
  font-size: 14px;
}

.staff-area_photo04_01 {
  margin-bottom: 42px;
}

@media screen and (max-width: 1200px) {
  .item_content_name.obsession {
    font-size: 16px;
  }
  .item_content_name.obsession span {
    font-size: 13px;
  }
  .obsession_title {
    margin-bottom: 20px;
  }
}
.category-title.gold {
  color: var(--gold01-color);
}

.category_title.category-title .text {
  font-size: 60px;
  letter-spacing: 0.07em;
  line-height: 1.3;
  margin-bottom: 14px;
}

.category_title.category-title .text span {
  font-size: 28px;
  letter-spacing: 0.07em;
  line-height: 1.6;
}

@media screen and (max-width: 1200px) {
  .category_title.category-title .text {
    font-size: 5vw;
  }
  .category_title.category-title .text span {
    font-size: 2.8vw;
  }
}
#coordinate {
  padding-top: 128px;
  margin-bottom: 40px;
}

#items {
  margin-bottom: 30px;
}

#skincare {
  margin-bottom: 80px;
}

img.SE_sub-title {
  display: block;
  width: 433px;
  margin: 0 auto 95px;
}

#staff .intro .vol-number {
  font-size: 14px;
  font-weight: 550;
  padding: 3px 9px;
  border: 1px solid;
  display: inline-block;
  margin-bottom: 32px;
}

.scroll_arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 0px;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 88px;
  margin-bottom: 70px;
}
.scroll_arrow p {
  font-size: 12px;
  margin-bottom: 16px;
}
.scroll_arrow .scroll_arrow_img {
  display: block;
  width: 16px;
}

.obsession_title_big_flex {
  display: -webkit-box;
  display: -ms-flex box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#main {
  overflow: hidden;
}

/* ふわっとロード・スクロールアップ */
.scroll-fade {
  opacity: 0;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.scroll-fade.done {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#image-wrapper01,
#image-wrapper02,
#image-wrapper03,
#image-wrapper04 {
  pointer-events: none;
}

/* ふわっとロード・スクロールアップここまで */
h2.eat_category_title {
  width: 210px;
}

.header-menu_line {
  background-color: white;
  width: 1px;
  height: 16px;
}
@media screen and (max-width: 750px) {
  .header-menu_line {
    height: 5vw;
  }
}

@media screen and (max-width: 750px) {
  .slider_content {
    width: 80vw;
  }
  h2 {
    width: 90%;
    margin: 0 auto 46px;
  }
  #items h2,
  #sweet h2,
  #hot h2,
  #wild h2 {
    margin: 0 auto 20px;
  }
  h2.eat_category_title {
    width: 62%;
  }
  .coordinate-flex .content .info .left-box {
    width: 45%;
    margin-bottom: 18px;
  }
  .coordinate-flex .content .info .right-box {
    width: 100%;
  }
  .coordinate-flex .info .rogo-bottom_name {
    font-size: min(3.5vw, 16px);
    letter-spacing: 0.09em;
    line-height: 1;
    margin-bottom: 34px;
  }
  .key-item_flex_left .text {
    font-size: 3.5vw;
  }
  .key-item_flex_left .caution {
    font-size: 3.2vw;
    line-height: 1.3;
  }
  .key-item_flex_right {
    width: 52%;
  }
  .key-item_flex_left {
    width: 44%;
    margin-right: 4%;
  }
  .item_content {
    width: 48%;
    margin-bottom: 0px;
  }
  .category_title.category-title .text {
    font-size: 8.3vw;
  }
  .category_title.category-title .text span {
    font-size: 4.3vw;
  }
  .category_title.category-title .text {
    margin-bottom: 3px;
  }
  #performance .item_box_wrap,
  #obsession .item_box_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #performance .item_content,
  #obsession .item_content {
    width: 100%;
  }
  #performance .item_box_wrap,
  #obsession .item_box_wrap {
    padding: 0px;
  }
  #performance .item_content_flex,
  #obsession .item_content_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #performance .item_content_title_box_flex_left {
    width: 50%;
    display: block;
    margin: -10vw 0 -14vw auto;
    position: relative;
    z-index: 1;
  }
  #performance .item_content_flex_right {
    padding: 20px 15px 30px;
  }
  #performance .item_content_title_box_flex {
    display: block;
    margin-bottom: 0px;
  }
  #obsession .obsession_title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #obsession .obsession_title .sub {
    font-size: 5.4vw;
    margin-bottom: 14px;
  }
  .obsession_title_big {
    font-size: 12.1vw !important;
  }
  .obsession_title_big.catch {
    width: 20vw;
    height: 20vw;
  }
  #obsession .item_content_flex_left {
    margin-right: 0%;
    margin-bottom: 14px;
  }
  section#obsession {
    padding: 0 15px 28px;
  }
  .item_content_name.obsession {
    font-size: min(3.9vw, 19px);
    margin-bottom: 13px;
    line-height: 1.2;
  }
  .item_content_name.obsession span {
    font-size: min(3.4vw, 14px);
  }
  .obsession_point {
    font-size: 3.6vw;
    margin-bottom: 0;
  }
  .obsession_caution {
    font-size: 3.2vw;
    margin-bottom: 15px;
  }
  #obsession .item_content_title_box_flex {
    /* border-bottom: 1px solid var(--green01-color); */
    margin-bottom: 0px;
    padding-bottom: 7px;
  }
  #staff h2 {
    font-size: 11.2vw;
    margin-bottom: 33px;
  }
  .staff-slider_nav__lists {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .button_solid012 a {
    width: 49%;
    font-size: 3.2vw;
    margin-bottom: 20px;
    padding: 9px 0px;
    border-radius: 15px;
  }
  .button_solid012 a:before {
    border-radius: 15px;
  }
  .staff-slider_nav {
    width: 100%;
    padding: 0 15px;
  }
  #staff .intro .lead {
    font-size: 3.8vw;
    margin-bottom: 30px;
  }
  .staff-slider_nav__item {
    margin-bottom: 25px;
  }
  .slick-prev,
  .slick-next {
    top: 37vw;
    width: 30px;
    height: 30px;
  }
  .slick-prev {
    left: -15px;
  }
  .slick-next {
    right: -15p;
  }
  .staff-area_innner {
    width: 89%;
    margin: 0 auto 22px;
  }
  .staff-slider__item {
    width: 86vw;
    /* margin-right: 10px; */
    margin: 0 auto;
    padding: 0 2vw;
  }
  .staff-area_main .profile {
    font-size: min(3.4vw, 14px);
    background-color: inherit;
    padding: 10px 0px;
    position: static;
    width: 89%;
    display: block;
    margin: 0 auto;
  }
  .staff-area_main .credit .position {
    font-size: 3.3vw;
    margin-left: 9px;
  }
  .staff-area_main .credit .name {
    font-size: 6.6vw;
  }
  .staff-area_main .credit .sub {
    font-size: 3.8vw;
    margin-top: 10px;
  }
  .staff-area_main .credit {
    left: 4%;
    top: 15vw;
  }
  /* Add custom arrow styles */
  .slick-arrow-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
  }
  .slick-prev,
  .slick-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    outline: none;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .staff-area_speaker {
    font-size: 3.3vw;
    margin-bottom: 20px;
    text-align: center;
  }
  .slick-prev p,
  .slick-next p {
    font-size: 3.3vw;
    color: #000;
    margin: 0;
    padding: 0 5px;
  }
  .staff-area_speaker_container {
    display: -webkit-box;
    display: -ms-flex box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: -14px;
    z-index: 1;
    position: relative;
  }
  .staff-area_speaker {
    margin-bottom: 10px;
  }
  .staff-area_line {
    width: 1px;
    height: 7vw;
    background-color: #000;
  }
  .staff-area_credit {
    font-size: 3.3vw;
    line-height: 1.6;
  }
  .staff-area_explain {
    font-size: 3.6vw;
    padding-bottom: 23px;
    margin-bottom: 26px;
  }
  .staff-area_appeal_title {
    font-size: 4.7vw;
    margin-bottom: 8px;
  }
  .recommend-location_title {
    font-size: 5.5vw;
    margin-bottom: 24px;
    padding-bottom: 8px;
    line-height: 1.4;
  }
  .staff-area_appeal_text {
    font-size: 3.7vw;
    margin-bottom: 28px;
  }
  .recommend-location_interview {
    font-size: 3.8vw;
  }
  .recommend-location {
    padding: 15px 0 5px;
    width: 100%;
    margin: 0 auto 30px;
  }
  .recommend-location_name {
    font-size: 4.2vw;
    margin-bottom: 10px;
  }
  .coordinate-flex .left-side {
    margin-right: 0%;
  }
  .coordinate-flex .left-side.reverse {
    margin-left: 0%;
  }
  header .wrapper {
    padding: 0;
    display: block;
    max-width: inherit;
  }
  .header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-menu a {
    display: block;
    padding: 0% 12%;
  }
  .header-menu a:first-of-type {
    margin-right: 0;
  }
  .header-menu a:last-of-type {
    margin-left: 0px;
  }
  .header-menu a {
    font-size: min(3.7vw, 19px);
  }
  .item_content_flex_left {
    margin-right: 0%;
  }
  .stage-main-rogo {
    width: 76%;
    padding-top: 37px;
    padding-bottom: 2vw;
  }
  .stage-main-box {
    margin: 90px auto 11px;
    width: 90%;
    width: 100%;
  }
  .stage-main-vol25 {
    width: 18%;
    bottom: -7vw;
  }
  .slick-arrow2 {
    gap: 32px;
    margin-bottom: 24px;
  }
  .slick-prev2,
  .slick-next2 {
    font-size: 3.5vw;
    gap: 10px;
  }
  .clothes_thumbnail img {
    width: 100%;
    margin-bottom: 8px;
  }
  .sp-nav_nav-list_box_list .nav_category {
    font-size: min(4.2vw, 22px);
    margin-bottom: 8px;
    margin-bottom: 1px;
  }
  .sp-nav_nav-list_box_list .nav_category_flex p {
    font-size: min(3.6vw, 15px);
  }
  section {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .scroll_arrow {
    width: 9px;
    margin: 0 auto 50px;
  }
  #coordinate {
    padding-top: 30px;
    margin-bottom: 15px;
  }
  img.SE_sub-title {
    display: block;
    width: 48%;
    margin: 0 auto 40px;
  }
  .coordinate-flex .right-side {
    padding: 0 15px;
  }
  .group .left {
    display: block;
    margin: 0 auto 10px;
    width: 84%;
  }
  .panel .text_box {
    margin-bottom: 30px;
  }
  #items {
    margin-bottom: 40px;
  }
  #skincare {
    margin-bottom: 0;
  }
  .title1 {
    margin-bottom: 55px;
  }
  #performance .item_box_wrap {
    margin-top: 60px;
  }
  #obsession .item_box_wrap {
    margin-top: 10px;
  }
  #obsession .item_content_shop_modal {
    margin-bottom: 28px;
  }
  section#staff {
    padding: 73px 0 30px;
    background-color: #FBF8F3;
    margin-bottom: 0;
  }
  #staff .intro .vol-number {
    font-size: 3.3vw;
  }
  #staff .staff-title_sub {
    font-size: 5vw;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .staff_shop-rogo {
    margin: -11vw auto 0;
    position: relative;
    width: 100%;
    background-image: url(../images/staff_shop-rogo_sp_BG.png);
    background-position: top;
    background-size: 100%;
    padding-top: 13vw;
    padding-bottom: 8vw;
    /* margin-bottom: 6vw; */
  }
  .staff_shop-rogo img {
    width: 65%;
    display: block;
    margin: -8% auto;
  }
  .staff_shop-rogo .sp_prev img {
    width: 100%;
    display: block;
    margin: 0;
  }
  .skin-bottom-bunner {
    width: 90%;
    margin: 0 auto 80px;
  }
  #skincare .item_box_wrap {
    margin-bottom: 5px;
  }
  .performance-thumbnail_01 {
    position: relative;
    top: 4vw;
    left: 2vw;
  }
  #performance {
    overflow: hidden;
  }
  .obsession_title {
    margin-bottom: 0px;
  }
  .item_content_title_box_flex_left.obsession {
    width: 30%;
    margin-right: 3%;
  }
  .item_content_text.obsession {
    width: 67%;
  }
  .category_title.event-title {
    margin: 0 auto 30px;
  }
  .staff-main_img::before {
    width: 22%;
  }
  .staff-area_photo {
    margin-bottom: 49px;
  }
  .staff-area_photo04_01 {
    margin-bottom: 30px;
  }
  .staff-area_appeal_text.photo-caution {
    font-size: 3.3vw;
    margin-top: 7px;
    margin-bottom: 5px;
  }
  .interview_link_wrap {
    gap: 8vw;
  }
  .interview_link p {
    font-size: 3.2vw;
  }
  .interview_link_wrap .interview_link_img {
    width: 3vw;
    height: 3vw;
    margin: 0 2vw;
  }
  #staff03 .staff-main_img::before {
    content: none;
  }
  .button_solid012 a img {
    display: block;
    margin: 3px auto 18px;
    width: 70%;
  }
  p.nav-bottom_title.selif-text {
    font-size: 4.7vw;
    line-height: 1.6;
  }
  .slick-prev.sp_prev {
    position: absolute;
    left: -1%;
    bottom: 24%;
    width: 40px;
    height: 40px;
    top: inherit;
  }
  .slick-next.sp_prev {
    position: absolute;
    right: -1%;
    bottom: 24%;
    width: 40px;
    height: 40px;
    top: inherit;
  }
  .recommend-location_name .caution {
    font-size: 3.1vw;
  }
  .coordinate-bg_innner {
    padding: 0 0;
    position: relative;
  }
}
/* アコーディオン */
/* チェックボックスを非表示 */
.accordion-hidden {
  display: none;
}

/* 質問部分 */
.accordion-open {
  text-align: center;
  display: block;
  background: #F9F7F3;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  font-size: 27px;
  line-height: 3.5;
  position: relative;
}
@media screen and (max-width: 750px) {
  .accordion-open {
    font-size: min(3.8vw, 17px);
  }
}

.merchandise {
  background: #F9F7F3;
  border-radius: 8px;
  margin-bottom: 27px;
}
@media screen and (max-width: 750px) {
  .merchandise {
    width: 100%;
  }
}

/* アンサーは非表示 */
.accordion-close {
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/* チェックボックスにチェックが入ったら表示 */
.accordion-hidden:checked + .accordion-open + .accordion-close {
  height: auto;
  opacity: 1;
  padding: 30px;
}
@media screen and (max-width: 750px) {
  .accordion-hidden:checked + .accordion-open + .accordion-close {
    padding: 10px 6%;
  }
}

.accordion-open:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: "";
  background-image: url(../images/accordion_button01.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  display: block;
  padding: 10px 20px;
  position: absolute;
  top: 40%;
  right: 0;
}

.accordion-hidden:checked + .accordion-open:after {
  content: "";
  background-image: url(../images/accordion_button02.svg);
}

/* アコーディオンここまで */
.pick-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
}
.pick-up .upper {
  width: 48%;
}
@media screen and (max-width: 750px) {
  .pick-up .upper {
    width: 100%;
  }
}
.pick-up .wrap_flex {
  width: 48%;
}
@media screen and (max-width: 750px) {
  .pick-up .wrap_flex {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .pick-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.pick-up p.pick_title {
  font-size: 24px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 750px) {
  .pick-up p.pick_title {
    font-size: min(5.5vw, 25px);
    line-height: 1;
  }
}
.pick-up .main_img {
  margin-bottom: 12px;
}
@media screen and (max-width: 750px) {
  .pick-up .main_img {
    display: block;
    margin: 0 auto 7px;
    width: 87%;
  }
}
.pick-up .name {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .pick-up .name {
    font-size: min(3.9vw, 19px);
    line-height: 1.3;
  }
}
.pick-up .wrap_flex {
  display: -webkit-box;
  display: -ms-flex box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 750px) {
  .pick-up .wrap_flex {
    row-gap: 15px;
  }
}
.pick-up .wrap_flex .content_flex {
  display: -webkit-box;
  display: -ms-flex box;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;
}
.pick-up .wrap_flex .content_flex.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.pick-up .wrap_flex .content_flex li {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .pick-up .wrap_flex .content_flex li.image {
    width: 37%;
  }
}
@media screen and (max-width: 750px) {
  .pick-up .wrap_flex .content_flex li.ex {
    width: 60%;
  }
}
.pick-up .wrap_flex .content_flex .lead {
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin-bottom: 5px;
}
@media screen and (max-width: 750px) {
  .pick-up .wrap_flex .content_flex .lead {
    font-size: min(3.4vw, 14px);
    line-height: 1.2;
    margin-bottom: 2px;
  }
}
.pick-up .wrap_flex .content_flex .ex_text {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .pick-up .wrap_flex .content_flex .ex_text {
    font-size: min(3.5vw, 12px);
    line-height: 1.3;
  }
}
.pick-up .wrap_flex .content_flex .number {
  border-bottom: 1px solid black;
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .pick-up .wrap_flex .content_flex .number {
    font-size: min(3.5vw, 14px);
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 750px) {
  .pick-up .wrap_flex .content_flex .number .circle {
    font-size: min(4.3vw, 22px);
  }
}

.panel-group .name_sub {
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-top: -13px;
  margin-bottom: 16px;
}
@media screen and (max-width: 750px) {
  .panel-group .name_sub {
    font-size: min(3.3vw, 13px);
    margin-top: -6px;
  }
}

.E-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 102%;
}

#products .content_inner,
#gourmet .content_inner,
#cosme .content_inner {
  max-width: 1500px;
  width: 88%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #products .content_inner,
  #gourmet .content_inner,
  #cosme .content_inner {
    width: 100%;
  }
}
#products .content_inner .lead,
#gourmet .content_inner .lead,
#cosme .content_inner .lead {
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 2.2;
  margin-bottom: 130px;
}
@media screen and (max-width: 750px) {
  #products .content_inner .lead,
  #gourmet .content_inner .lead,
  #cosme .content_inner .lead {
    font-size: min(3.5vw, 14px);
    width: 90%;
    display: block;
    margin: 0 auto 60px;
  }
}
#products .content_inner .txt_link,
#gourmet .content_inner .txt_link,
#cosme .content_inner .txt_link {
  font-size: 16px;
  border-bottom: 1px solid;
  margin-bottom: 119px;
  display: inline-block;
  padding-right: 20px;
  position: relative;
}
@media screen and (max-width: 750px) {
  #products .content_inner .txt_link,
  #gourmet .content_inner .txt_link,
  #cosme .content_inner .txt_link {
    margin-bottom: 60px;
  }
}
#products .content_inner .txt_link:after,
#gourmet .content_inner .txt_link:after,
#cosme .content_inner .txt_link:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #1F1F1F;
  border-bottom: 1px solid #1F1F1F;
  position: absolute;
  right: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
#products .content_inner .main_kv,
#gourmet .content_inner .main_kv,
#cosme .content_inner .main_kv {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  #products .content_inner .main_kv,
  #gourmet .content_inner .main_kv,
  #cosme .content_inner .main_kv {
    margin-bottom: 40px;
  }
}
#products .content_inner .main_kv .side_tag01,
#products .content_inner .main_kv .side_tag02,
#gourmet .content_inner .main_kv .side_tag01,
#gourmet .content_inner .main_kv .side_tag02,
#cosme .content_inner .main_kv .side_tag01,
#cosme .content_inner .main_kv .side_tag02 {
  font-size: 14px;
  letter-spacing: 0.02em;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
@media screen and (max-width: 750px) {
  #products .content_inner .main_kv .side_tag01,
  #products .content_inner .main_kv .side_tag02,
  #gourmet .content_inner .main_kv .side_tag01,
  #gourmet .content_inner .main_kv .side_tag02,
  #cosme .content_inner .main_kv .side_tag01,
  #cosme .content_inner .main_kv .side_tag02 {
    display: none;
  }
}
#products .content_inner .main_kv .side_tag01,
#gourmet .content_inner .main_kv .side_tag01,
#cosme .content_inner .main_kv .side_tag01 {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  left: -8%;
}
@media (max-width: 950px) {
  #products .content_inner .main_kv .side_tag01,
  #gourmet .content_inner .main_kv .side_tag01,
  #cosme .content_inner .main_kv .side_tag01 {
    left: -9.5%;
  }
}
#products .content_inner .main_kv .side_tag02,
#gourmet .content_inner .main_kv .side_tag02,
#cosme .content_inner .main_kv .side_tag02 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  right: -8%;
}
@media (max-width: 950px) {
  #products .content_inner .main_kv .side_tag02,
  #gourmet .content_inner .main_kv .side_tag02,
  #cosme .content_inner .main_kv .side_tag02 {
    right: -9.5%;
  }
}

#js-modal-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tel-number a[href^="tel:"] {
  text-decoration: none !important;
  pointer-events: none;
}

@media screen and (max-width: 750px) {
  #close_menu_sp {
    width: min(5vw, 30px);
    position: absolute;
    right: 6%;
    bottom: 3%;
  }
}
#header .box {
  width: 100%;
}

#top_head.nav-up {
  top: -70px;
  /* ヘッダーの高さに合わせて調整してください */
  -webkit-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
}

#top_head.nav-down {
  top: 0;
  -webkit-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
}

@media screen and (max-width: 750px) {
  #header .box {
    display: -webkit-box;
    display: -ms-flex box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 50px;
    padding: 0 5%;
  }
}
#top_head {
  position: fixed;
  top: 0;
  height: 70px;
  width: 100%;
  z-index: 999;
  z-index: 30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgb(255, 255, 255);
  color: #fff;
  text-align: center;
  padding: 20px;
  -webkit-filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 750px) {
  #top_head {
    height: 60px;
    padding: 0px;
  }
}
#top_head .head_wrapper {
  max-width: 1040px;
  padding: 0px 3%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #top_head .head_wrapper {
    width: 100%;
  }
}
#top_head .wrapper_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  #top_head .wrapper_flex {
    padding-left: 10px;
  }
}
#top_head a {
  margin: 0 15px;
}
@media screen and (max-width: 750px) {
  #top_head a {
    margin: 0 10px;
    max-width: 38%;
  }
}
@media screen and (max-width: 750px) {
  #top_head a:last-of-type img {
    width: 80%;
  }
}

.foot_border {
  max-width: 900px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
.foot_border .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 30px;
  margin: 50px auto 50px;
}

.footer_nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (max-width: 750px) {
  .footer_nav {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer_nav li {
  color: #000000;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 12px;
  color: var(--black01);
  font-weight: 300;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.8px;
  padding-bottom: 20px;
  list-style-type: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .footer_nav li {
    font-size: min(3.1vw, 12px);
    width: 100%;
    padding-bottom: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer_nav li a {
  color: #000000;
  text-decoration: none;
}

.footer_nav li:not(:last-of-type)::after {
  content: "|";
  font-size: 1.5em;
  font-weight: 100;
  display: inline-block;
  position: absolute;
  top: -0.2em;
  right: -0.8em;
}
@media screen and (max-width: 750px) {
  .footer_nav li:not(:last-of-type)::after {
    content: none;
  }
}

#top_head {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0s ease-in-out 0.5s;
  transition: opacity 0.5s ease-in-out, visibility 0s ease-in-out 0.5s;
}

body.user-is-scrolling #top_head {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out, visibility 0s ease-in-out 0s;
  transition: opacity 0.5s ease-out, visibility 0s ease-in-out 0s;
}

body.user-is-not-scrolling #top_head {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in, visibility 0s ease-in-out 0s;
  transition: opacity 0.5s ease-in, visibility 0s ease-in-out 0s;
}

.all_wrap {
  position: relative;
}
.all_wrap #Global_nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
  height: 100%;
  background-color: #f0e9ca;
}
.all_wrap #Global_nav .flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - 70px);
  margin-top: 70px;
}
@media screen and (max-width: 750px) {
  .all_wrap #Global_nav .flex_box {
    height: calc(85vh - 60px);
    margin-top: 60px;
  }
}
.all_wrap #Global_nav .flex_box li {
  display: block;
  height: 25%;
  position: relative;
}
.all_wrap #Global_nav .flex_box li:after {
  content: "";
  position: absolute;
  background: white;
  height: 1px;
  width: 60%;
  left: 20%;
  bottom: 0;
}
.all_wrap #Global_nav .flex_box li:last-of-type:after {
  content: none;
}
.all_wrap #Global_nav .flex_box li a {
  padding: 3px 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 100%;
  background-color: #f0e9ca;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 750px) {
  .all_wrap #Global_nav .flex_box li a {
    padding: 0px 0px;
    width: 30px;
  }
}
.all_wrap #Global_nav .flex_box li a p {
  text-align: center;
  color: rgba(92, 87, 66, 0.3);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-orientation: sideways;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media screen and (max-width: 750px) {
  .all_wrap #Global_nav .flex_box li a p {
    font-size: 12px;
  }
}
.all_wrap #Global_nav .flex_box li a.link-current {
  background-color: #E8DCAC;
}
.all_wrap #Global_nav .flex_box li a.link-current p {
  color: #5C5743;
}

#course {
  margin-bottom: 30px;
}
#course h2 {
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  #course h2 {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 750px) {
  #course {
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
}
#course .course_pickup {
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  #course .course_pickup {
    margin-top: 27px;
  }
}
#course .course_pickup .item_box_wrap .shop_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 119px;
  border-bottom: 1px solid #8B8B8B;
  width: 100%;
}
@media screen and (max-width: 750px) {
  #course .course_pickup .item_box_wrap .shop_box {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 750px) {
  #course .course_pickup .item_box_wrap .shop_box {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 10px;
  }
}
#course .course_pickup .item_box_wrap .shop_box .info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 3%;
     -moz-column-gap: 3%;
          column-gap: 3%;
}
#course .course_pickup .item_box_wrap .shop_box .info .rogo {
  width: 390px;
  display: block;
  margin: 0 auto 10px;
}
@media screen and (max-width: 750px) {
  #course .course_pickup .item_box_wrap .shop_box .info .rogo {
    width: 82%;
  }
}
#course .course_pickup .item_box_wrap .shop_box .info .ex {
  color: #7D7D7D;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 35px;
}
@media screen and (max-width: 750px) {
  #course .course_pickup .item_box_wrap .shop_box .info .ex {
    font-size: min(3.3vw, 13px);
    margin-bottom: 6px;
  }
}
#course .course_pickup .item_box_wrap .shop_box .scene {
  width: 100%;
}
#course .course_pickup .item_box_wrap .shop_box .scene .visual {
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  #course .course_pickup .item_box_wrap .shop_box .scene .visual {
    margin-bottom: 28px;
  }
}
#course .course_pickup .item_box_wrap .shop_box .scene .txt {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  max-width: 980px;
  width: 100%;
  display: block;
  margin: 0 auto 45px;
}
@media screen and (max-width: 750px) {
  #course .course_pickup .item_box_wrap .shop_box .scene .txt {
    font-size: min(3.5vw, 14px);
    text-align: left;
    margin: 0 auto 14px;
  }
}
#course .course_pickup .item_box_wrap .shop_box .menu_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#course .course_pickup .item_box_wrap .shop_box .menu_wrap .menu_ex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 980px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 6%;
}
@media screen and (max-width: 750px) {
  #course .course_pickup .item_box_wrap .shop_box .menu_wrap .menu_ex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#course .course_pickup .item_box_wrap .shop_box .menu_wrap .menu_ex .menu {
  width: 60%;
}
@media screen and (max-width: 750px) {
  #course .course_pickup .item_box_wrap .shop_box .menu_wrap .menu_ex .menu {
    width: 50%;
  }
}
#course .course_pickup .item_box_wrap .shop_box .menu_wrap .menu_ex .name {
  width: 100%;
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  width: 34%;
}
#course .course_pickup .item_box_wrap .shop_box .menu_wrap .menu_ex .name .txt {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  max-width: 980px;
  width: 100%;
  display: block;
  margin: 20px auto 20px;
}
@media screen and (max-width: 750px) {
  #course .course_pickup .item_box_wrap .shop_box .menu_wrap .menu_ex .name {
    font-size: min(3.4vw, 14px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 42%;
  }
}
#course .course_pickup .item_box_wrap .shop_box .menu_wrap .menu_ex .name .ex .yen {
  font-size: 85%;
}
#course .course_pickup .item_box_wrap .shop_box .menu_wrap .menu_ex .name .caution {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  #course .course_pickup .item_box_wrap .shop_box .caution {
    font-weight: 300;
    font-size: min(3.2vw, 12px);
  }
}
#course .slick-dots {
  bottom: -20px;
}
@media screen and (max-width: 750px) {
  #course .slick-dots {
    width: inherit;
    left: 0;
    position: relative;
    bottom: 0;
  }
}

@media screen and (max-width: 750px) {
  #kv {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
#kv .wrap {
  position: relative;
}
#kv .wrap .fv .KV_main_title {
  position: absolute;
  width: 41rem;
  left: 15rem;
  top: -2rem;
  z-index: 10;
}
@media screen and (max-width: 750px) {
  #kv .wrap .fv .KV_main_title {
    width: 65vw;
    left: 2.5vw;
    top: 4vw;
  }
}
#kv .wrap .fv .kv_slide_BG {
  position: absolute;
  width: 104rem;
  top: -3rem;
  left: -5rem;
}
@media screen and (max-width: 750px) {
  #kv .wrap .fv .kv_slide_BG {
    position: absolute;
    width: 68rem;
    top: -7rem;
    left: -15rem;
  }
}
#kv .wrap .fv .slide_title {
  position: absolute;
  width: 400px;
  right: -440px;
  bottom: 0%;
  display: none;
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
}
@media screen and (max-width: 1800px) {
  #kv .wrap .fv .slide_title {
    width: 300px;
    right: -340px;
  }
}
@media screen and (max-width: 1440px) {
  #kv .wrap .fv .slide_title {
    width: 20vw;
    right: -22vw;
  }
}
@media screen and (max-width: 750px) {
  #kv .wrap .fv .slide_title {
    position: static;
    width: 60vw;
    margin-top: 4vw;
  }
}
#kv .wrap .fv .slick-current.slick-active .slide_title {
  display: block;
  opacity: 1;
}

@media screen and (max-width: 750px) {
  #spring_menu {
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
}

.main h2 .main {
  display: block;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .main h2 .main {
    width: 100%;
  }
}

.modaal-close:focus,
.modaal-close:hover {
  outline: none;
  background: none;
}

@media screen and (max-width: 750px) {
  #dessert_menu {
    margin-bottom: 20px;
    padding-bottom: 0;
  }
}

#menu {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
@media screen and (max-width: 750px) {
  #menu {
    padding-bottom: 0px;
  }
}

#event {
  margin-bottom: 0px;
}
@media screen and (max-width: 750px) {
  #event {
    margin-bottom: 0;
    padding: 60px 0 0;
  }
}

#top_bunner {
  max-width: 880px;
  width: 90%;
  display: block;
  margin: 0 auto 70px;
}
@media screen and (max-width: 750px) {
  #top_bunner {
    margin: 0 auto 50px;
  }
}
#top_bunner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 750px) {
  #top_bunner ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
}
#top_bunner ul li {
  width: 47.5%;
  -webkit-box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 750px) {
  #top_bunner ul li {
    -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 750px) {
  #top_bunner ul li {
    width: 100%;
  }
}

.alcohol_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 16px;
}
@media screen and (max-width: 750px) {
  .alcohol_wrap {
    margin-top: 16px;
    margin-bottom: 10px;
  }
}
.alcohol_wrap .alcohol_tag {
  font-size: 12px;
  background-color: white;
  border: 1px solid black;
  padding: 1px 3px;
  display: inline;
  margin: -7px 0 0 0;
}
.alcohol_wrap .alcohol_tag.modal_tag {
  margin: -15px 0 0 0;
}
@media screen and (max-width: 750px) {
  .alcohol_wrap .alcohol_tag.modal_tag {
    margin: 0px 0 0 0;
  }
}
@media screen and (max-width: 750px) {
  .alcohol_wrap .alcohol_tag {
    font-size: min(3.3vw, 11px);
  }
}

#event {
  padding-top: 40px;
  padding-bottom: 100px;
}
@media screen and (max-width: 750px) {
  #event {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
#event .event_BG {
  background-image: url("../images/event_BG_PC.jpg");
  background-size: 100%;
  width: 100%;
  padding-top: 100px;
  background-repeat: repeat-y;
  background-position: top;
}
@media screen and (max-width: 750px) {
  #event .event_BG {
    background-image: url("../images/event_BG_sp.jpg");
    padding-top: 20px;
  }
}
#event .content_inner {
  max-width: 960px;
  width: 90%;
  margin: 0px auto 60px;
  position: relative;
}
@media screen and (max-width: 750px) {
  #event .content_inner {
    margin: 20px auto 20px;
  }
}
#event .content_inner .content_wrap_all .content_wrap_all_inner {
  padding: 40px 8%;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap_all .content_wrap_all_inner {
    padding: 20px 0%;
  }
}
#event .content_inner .content_wrap {
  position: relative;
  padding: 0 10.5%;
}
#event .content_inner .content_wrap.top_wrap {
  padding: 0;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap.top_wrap {
    padding: 0;
  }
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap {
    padding: 0;
  }
}
#event .content_inner .content_wrap h3.title {
  position: relative;
  max-width: 700px;
  width: 100%;
  margin: 0 auto 30px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap h3.title {
    max-width: inherit;
    margin-bottom: 13px;
  }
}
#event .content_inner .content_wrap .day {
  max-width: 600px;
  width: 90%;
  display: block;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .day {
    margin-bottom: 23px;
  }
}
#event .content_inner .content_wrap .intro_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 55px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .intro_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 23px;
  }
}
#event .content_inner .content_wrap .intro_area .visual {
  position: relative;
  width: 46%;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .intro_area .visual {
    width: 90%;
    display: block;
    margin: 0 auto;
  }
}
#event .content_inner .content_wrap .intro_area .visual .christmas_attention {
  position: absolute;
  width: 35%;
  right: -29%;
  top: -7%;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .intro_area .visual .christmas_attention {
    width: min(29%, 100px);
    right: -9%;
    top: -16%;
  }
}
#event .content_inner .content_wrap .lead_box {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .lead_box {
    width: 100%;
  }
}
#event .content_inner .content_wrap .lead_box .lead_wrap {
  text-align: left;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .lead_box .lead_wrap {
    margin-bottom: 0px;
    position: static;
  }
}
#event .content_inner .content_wrap .lead_box .lead_wrap .strong_lead_wrap .lead {
  color: #000;
  text-align: center;
  font-size: 29px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.9;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .lead_box .lead_wrap .strong_lead_wrap .lead {
    font-size: min(5.1vw, 22px);
  }
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .lead_box .lead_wrap .strong_lead_wrap {
    text-align: center;
  }
}
#event .content_inner .content_wrap .lead_box .lead_wrap .lead {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .lead_box .lead_wrap .lead {
    font-size: min(4.1vw, 19px);
    line-height: 1.4;
    margin-bottom: 10px;
  }
}
#event .content_inner .content_wrap .lead_box .red_icon {
  position: absolute;
  width: 22%;
  top: -11%;
  right: 0%;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .lead_box .red_icon {
    width: 29%;
    top: -3%;
    right: 1%;
  }
}
#event .content_inner .content_wrap .lead_box .ticket_icon {
  position: absolute;
  width: 29%;
  bottom: 1%;
  right: 10%;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .lead_box .ticket_icon {
    width: 35%;
    bottom: -12%;
    right: 2%;
  }
}
@media screen and (max-width: 600px) {
  #event .content_inner .content_wrap .lead_box .ticket_icon {
    bottom: -10%;
  }
}
@media screen and (max-width: 500px) {
  #event .content_inner .content_wrap .lead_box .ticket_icon {
    bottom: 12%;
  }
}
#event .content_inner .content_wrap .info_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 40px;
  padding-top: 40px;
  margin-bottom: 35px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .info_lists {
    gap: 17px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
  }
}
#event .content_inner .content_wrap .info_lists li {
  width: 47.5%;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .info_lists li {
    width: 100%;
  }
}
#event .content_inner .content_wrap .info_lists .tag {
  font-size: min(3.8vw, 16px);
  letter-spacing: 0.1em;
  line-height: 1;
  color: white;
  background-color: var(--pink01);
  padding: 10px 0;
  margin-bottom: 10px;
  text-align: center;
}
#event .content_inner .content_wrap .info_lists .tag.fukidashi {
  margin-bottom: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .info_lists .tag.fukidashi {
    margin-bottom: 20px;
  }
}
#event .content_inner .content_wrap .info_lists .tag.fukidashi::before {
  position: absolute;
  bottom: -12px;
  width: 30px;
  height: 15px;
  background-color: gray;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}
#event .content_inner .content_wrap .info_lists .ex {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  text-align: center;
}
#event .content_inner .content_wrap .info_lists .ex.strong {
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .info_lists .ex {
    font-size: min(6vw, 20px);
  }
}
#event .content_inner .content_wrap .info_lists .ex.notApplicable {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .info_lists .ex.notApplicable {
    font-size: min(3.8vw, 15px);
  }
}
#event .content_inner .content_wrap .kinds_area {
  border-top: 1px solid var(--gold02);
  border-bottom: 1px solid var(--gold02);
  padding: 20px 5px;
  margin-bottom: 9px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .kinds_area {
    border: 0;
    padding: 0 0%;
    margin-bottom: 20px;
  }
}
#event .content_inner .content_wrap .kinds_area .kinds_area_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5%;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .kinds_area .kinds_area_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#event .content_inner .content_wrap .kinds_area .kinds_area_inner .tag {
  width: 40px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .kinds_area .kinds_area_inner .tag {
    width: 100%;
  }
}
#event .content_inner .content_wrap .kinds_area .kinds_area_inner .wreath_all {
  width: calc(95% - 40px);
  position: relative;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .kinds_area .kinds_area_inner .wreath_all {
    width: 100%;
  }
}
#event .content_inner .content_wrap .kinds_area .kinds_area_inner .wreath_all .kinds_caution {
  position: absolute;
  font-size: 11px;
  text-align: left;
  width: 200px;
  bottom: 22px;
  right: -35px;
  z-index: 0;
}
#event .content_inner .content_wrap .kinds_caution {
  text-align: center;
  color: var(--gold02);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
#event .content_inner .content_wrap .Not_applicable_area {
  background: rgba(234, 102, 151, 0.1);
  padding: 30px 5%;
  margin-bottom: 23px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .Not_applicable_area {
    padding: 20px 5% 14px;
    width: 100%;
    display: block;
    margin: 0 auto 17px;
  }
}
#event .content_inner .content_wrap .Not_applicable_area .tag_wrap {
  text-align: center;
  border-bottom: 1px solid var(--pink01);
  margin-bottom: 13px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .Not_applicable_area .tag_wrap {
    padding-bottom: 0;
  }
}
#event .content_inner .content_wrap .Not_applicable_area .tag_wrap .tag {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-bottom: 17px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .Not_applicable_area .tag_wrap .tag {
    font-size: min(3.8vw, 16px);
    margin-bottom: 10px;
  }
}
#event .content_inner .content_wrap .Not_applicable_area .txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .Not_applicable_area .txt {
    font-size: min(3.7vw, 15px);
    margin-bottom: 10px;
    line-height: 2;
  }
}
#event .content_inner .content_wrap .Not_applicable_area .inner_caution {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .Not_applicable_area .inner_caution {
    font-size: min(3.1vw, 11px);
  }
}
#event .content_inner .content_wrap .shop_info {
  padding-top: 24px;
  margin-bottom: 20px;
}
#event .content_inner .content_wrap .shop_info .ex {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .shop_info .ex {
    font-size: min(3.5vw, 14px);
    margin-bottom: 0;
  }
}
#event .content_inner .content_wrap .shop_visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 90px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .shop_visual {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
}
#event .content_inner .content_wrap .catch_copy .lead {
  color: #465038;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 23px;
}
@media screen and (max-width: 1000px) {
  #event .content_inner .content_wrap .catch_copy .lead {
    font-size: 22px;
  }
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .catch_copy .lead {
    font-size: min(5.8vw, 24px);
    margin-bottom: 16px;
  }
}
#event .content_inner .content_wrap .catch_copy .txt {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.9;
  /* 30.4px */
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .catch_copy .txt {
    font-size: min(3.8vw, 16px);
    padding-bottom: 40px;
  }
}
#event .content_inner .content_wrap .bottom_caution {
  padding-top: 0px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .bottom_caution {
    padding-top: 0px;
    font-size: min(3.1vw, 11px);
    margin-bottom: 20px;
    text-align: left;
    width: 90%;
  }
}
#event .content_inner .content_wrap .bottom_caution.margin_bottom {
  margin-top: 5px;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #event .content_inner .content_wrap .bottom_caution.margin_bottom {
    margin-top: 3px;
    text-align: center;
  }
}
#event .content_inner .content_wrap.accordion_inner_BG {
  padding: 0;
}
#event .content_inner .content_wrap.accordion_inner_BG.upper_BG {
  margin-bottom: -1px;
}
#event .content_inner .content_wrap.accordion_inner_BG.bottom_BG {
  margin-top: -1px;
}
#event .content_inner .accordion_inner_wrap {
  max-width: 630px;
  display: block;
  margin: 0 auto;
  padding: 0;
  padding-bottom: 1px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .accordion_inner_wrap {
    padding: 20px 5%;
  }
}
#event .content_inner .event_flame04 {
  position: absolute;
  left: 0%;
  bottom: 0%;
  width: 100%;
}
#event .content_inner .shop_info_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#event .content_inner .shop_info_box .shop_info {
  width: 27%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#event .content_inner .shop_info_box .shop_info::after {
  position: absolute;
  right: -24%;
  top: 0%;
  content: "";
  width: 1px;
  height: 90%;
  background-color: black;
}
#event .content_inner .shop_info_box .catch_copy {
  width: 58%;
}
@media screen and (max-width: 750px) {
  #event .content_inner .shop_info_box .catch_copy {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  #event .content_inner .shop_info_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#event .content_inner .shop-info_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding-top: 70px;
}
@media screen and (max-width: 750px) {
  #event .content_inner .shop-info_flex {
    padding-top: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#Coordinate .cordinate_visual {
  width: 100%;
  display: block;
  margin: 0 auto 0px;
  position: relative;
}
@media screen and (max-width: 750px) {
  #Coordinate .cordinate_visual {
    width: 90%;
  }
}
#Coordinate .cordinate_visual .coordinate_ex {
  position: relative;
  width: 76%;
  display: block;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  #Coordinate .cordinate_visual .coordinate_ex {
    width: 60%;
    margin: 0 0 0 auto;
  }
}
#Coordinate .cordinate_visual .coordinate_ex .coordinate_ex_sub {
  position: absolute;
  width: 66%;
  top: -9%;
  left: -11%;
  z-index: 3;
}
@media screen and (max-width: 750px) {
  #Coordinate .cordinate_visual .coordinate_ex .coordinate_ex_sub {
    width: 105%;
    width: 112%;
    top: 6%;
    left: -62%;
    left: -48%;
  }
}
@media screen and (max-width: 750px) {
  #Coordinate .cordinate_visual .coordinate_ex .coordinate_ex_sub.sub02 {
    top: 6%;
    left: -67%;
    left: -59%;
  }
}
#Coordinate .cordinate_visual .coordinate_ex .coordinate_ex_sub.sub03 {
  top: -13%;
}
@media screen and (max-width: 750px) {
  #Coordinate .cordinate_visual .coordinate_ex .coordinate_ex_sub.sub03 {
    top: -7%;
    top: 0%;
    left: -75%;
  }
}
#Coordinate .cordinate_visual .coordinate_ex .coordinate_ex_sub.sub04 {
  top: -13%;
}
@media screen and (max-width: 750px) {
  #Coordinate .cordinate_visual .coordinate_ex .coordinate_ex_sub.sub04 {
    top: -14%;
    top: 0%;
    left: -73%;
  }
}
#Coordinate .cordinate_visual .copy {
  position: absolute;
  z-index: 1;
  bottom: -13px;
  left: -31%;
  color: #000;
  font-size: 22px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.7;
  color: black;
  width: 70%;
}
@media screen and (max-width: 1300px) {
  #Coordinate .cordinate_visual .copy {
    font-size: 1.7vw;
    left: -26%;
    width: 67%;
  }
}
@media screen and (max-width: 750px) {
  #Coordinate .cordinate_visual .copy {
    font-size: min(3.8vw, 21px);
    width: 62%;
    width: 71%;
    left: -4%;
    bottom: 6%;
  }
}
#Coordinate .cordinate_visual .copy > span {
  position: relative;
  display: inline-block;
}
#Coordinate .cordinate_visual .copy > span::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -2px;
  top: -2px;
  right: -2px;
  background-color: #ffffff;
  z-index: -1;
}
#Coordinate .cordinate_visual .copy.copy02 {
  left: -20%;
}
@media screen and (max-width: 1300px) {
  #Coordinate .cordinate_visual .copy.copy02 {
    left: -14%;
  }
}
@media screen and (max-width: 750px) {
  #Coordinate .cordinate_visual .copy.copy02 {
    left: -4%;
  }
}
#Coordinate .cordinate_visual .copy.copy03 {
  left: -36%;
}
@media screen and (max-width: 1300px) {
  #Coordinate .cordinate_visual .copy.copy03 {
    left: -16%;
  }
}
@media screen and (max-width: 750px) {
  #Coordinate .cordinate_visual .copy.copy03 {
    left: -4%;
    left: -8%;
  }
}
#Coordinate .cordinate_visual .copy.copy04 {
  left: -30%;
}
@media screen and (max-width: 1300px) {
  #Coordinate .cordinate_visual .copy.copy04 {
    left: -16%;
  }
}
@media screen and (max-width: 750px) {
  #Coordinate .cordinate_visual .copy.copy04 {
    left: -8%;
  }
}
#Coordinate .coordinate_shop-rogo_wrap {
  position: absolute;
  left: 0%;
  bottom: 0%;
  background-color: white;
  padding: 10px 10px;
  padding: 10px 1vw;
  border-radius: 0 15px 0 0;
}
#Coordinate .coordinate_shop-rogo_wrap .coordinate_shop-rogo {
  margin-bottom: 0;
  width: 150px;
}
@media screen and (max-width: 750px) {
  #Coordinate .coordinate_shop-rogo_wrap .coordinate_shop-rogo {
    width: min(19vw, 140px);
    width: min(21vw, 160px);
  }
}
#Coordinate .content.main_photo {
  margin-bottom: 120px;
  margin-bottom: 135px;
}
@media screen and (max-width: 750px) {
  #Coordinate .content.main_photo {
    margin-bottom: 0px;
  }
}
#Coordinate .content.main_explain {
  position: relative;
  z-index: 1;
}
#Coordinate .content .name_price {
  color: #000;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 1300px) {
  #Coordinate .content .name_price {
    font-size: 12px;
    margin-bottom: 14vw;
  }
}
@media screen and (max-width: 750px) {
  #Coordinate .content .name_price {
    font-size: min(3.5vw, 15px);
    margin-bottom: 36px;
  }
}

#other {
  width: 100%;
  padding: 0;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 750px) {
  #other {
    padding: 0;
  }
}

.sp-nav_nav-list_ul {
  height: 100vh;
  width: 300px;
  width: 400px;
}
@media screen and (max-width: 750px) {
  .sp-nav_nav-list_ul {
    overflow-y: scroll;
    width: auto;
  }
}

.accordion_contents {
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
  height: auto;
  -webkit-transform-origin: top;
          transform-origin: top;
  opacity: 0;
  max-height: 0;
}

.accordion_contents.open {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  opacity: 1;
  max-height: inherit;
  overflow: visible;
}

.accodion_button_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 750px) {
  .accodion_button_wrap {
    margin-top: 0;
  }
}

.accodion_button {
  display: block;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .accodion_button {
    padding-top: 0;
    margin-top: 0;
  }
}
.accodion_button.close_button {
  margin-top: 0;
  border-bottom: 1px solid var(--pink01);
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.accodion_button .icon {
  width: 10px;
  height: 10px;
  position: absolute;
  right: 3%;
  top: 7px;
}
@media screen and (max-width: 750px) {
  .accodion_button .icon {
    top: 14px;
  }
}
.accodion_button .ex {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--gold02);
}
.accodion_button .ex.black {
  color: #000;
}
@media screen and (max-width: 750px) {
  .accodion_button .ex {
    font-size: min(3.8vw, 16px);
  }
}

.open_button,
.close_button {
  cursor: pointer;
}

.open_button.openBtn .presentBox_lead_wrap.bottom::after {
  background-image: url("../images/accordion_open02.svg");
}

.coordinate-bg_innner .coordinate_body {
  width: 206px;
  position: absolute;
  top: 49%;
  left: 53%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.coordinate-bg_innner .coordinate_body.body01 {
  width: 210px;
}
@media screen and (max-width: 750px) {
  .coordinate-bg_innner .coordinate_body.body01 {
    width: 38vw;
  }
}
.coordinate-bg_innner .coordinate_body.body02 {
  width: 201px;
  left: 56%;
}
@media screen and (max-width: 750px) {
  .coordinate-bg_innner .coordinate_body.body02 {
    width: 38vw;
    left: 54%;
  }
}
.coordinate-bg_innner .coordinate_body.body03 {
  width: 221px;
}
@media screen and (max-width: 750px) {
  .coordinate-bg_innner .coordinate_body.body03 {
    width: 40vw;
  }
}
.coordinate-bg_innner .coordinate_body.body04 {
  width: 231px;
}
@media screen and (max-width: 750px) {
  .coordinate-bg_innner .coordinate_body.body04 {
    width: 43vw;
  }
}

.HF_original_icon {
  position: absolute;
  width: 19%;
  height: auto;
  right: 1%;
  top: 1%;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .HF_original_icon {
    position: static;
    width: min(100%, 180px);
  }
}
@media screen and (max-width: 750px) {
  .HF_original_icon.modal_icon {
    width: min(60%, 180px);
    margin: 6px 0 5px 0;
  }
}

.campaign_end {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: white;
  padding: 3% 5%;
  border: 5px solid red;
  color: black;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .campaign_end {
    width: 70%;
    font-size: min(4.2vw, 20px);
  }
}
.campaign_end.footer_banner {
  font-size: 19px;
  width: 70%;
}
@media screen and (max-width: 750px) {
  .campaign_end.footer_banner {
    font-size: min(3.9vw, 19px);
    width: 60%;
  }
}
.campaign_end.gnav_banner {
  font-size: 17px;
  width: 70%;
}
@media screen and (max-width: 750px) {
  .campaign_end.gnav_banner {
    width: 70%;
    font-size: min(2.5vw, 15px);
    border: 3px solid red;
  }
}
.campaign_end.event_contents {
  font-size: 28px;
  top: 30vh;
}
@media screen and (max-width: 750px) {
  .campaign_end.event_contents {
    width: 70%;
    font-size: min(5.1vw, 23px);
    top: 20vh;
  }
}

.end_cover {
  position: relative;
}
.end_cover::after {
  pointer-events: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  background-color: rgba(0, 0, 0, 0.6);
}

#mushrooms .other_banner {
  max-width: 750px;
  display: block;
  width: 90%;
  margin: 0 auto 150px;
}
@media screen and (max-width: 750px) {
  #mushrooms .other_banner {
    width: 90%;
    margin: 0 auto 0px;
  }
}

.category_sub_title {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  display: block;
  margin: 0 auto 23px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.category_sub_title:before, .category_sub_title:after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #666;
}
@media screen and (max-width: 750px) {
  .category_sub_title {
    font-size: 22px;
  }
}

.cinema_BG_deco.upper {
  margin-bottom: -2px;
}
.cinema_BG_deco.bottom {
  margin-top: -2px;
}

#products .item_sub_title {
  max-width: 460px;
  width: 85%;
  display: block;
  margin: 0 auto 17px;
}
@media screen and (max-width: 750px) {
  #products .item_sub_title {
    max-width: 400px;
    width: 85%;
    display: block;
    margin: 0 auto 17px;
  }
}

.subTitle {
  font-size: 29px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  margin-bottom: 32px;
}
.subTitle.menu01 {
  color: #E73278;
}
.subTitle.menu02 {
  color: #159632;
}
@media screen and (max-width: 750px) {
  .subTitle {
    font-size: 24px;
    margin-bottom: 18px;
  }
}

.presentBox_Wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 80px;
}

.presentBox_lead_wrap {
  background-color: var(--pink01);
  padding: 13px 0;
  width: 100%;
  border-radius: 12px 12px 0 0;
  position: relative;
}
.presentBox_lead_wrap.bottom {
  background-color: black;
  -webkit-box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0px;
  position: relative;
}
.presentBox_lead_wrap.bottom::after {
  position: absolute;
  content: "";
  background-image: url("../images/accordion_open01.svg");
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 55%;
  right: 3%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.presentBox_lead_wrap .presentBox_lead {
  display: inline-block;
  text-align: center;
  color: white;
  position: relative;
  font-size: 32px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 900;
}
@media screen and (max-width: 750px) {
  .presentBox_lead_wrap .presentBox_lead {
    font-size: 20px;
  }
}
.presentBox_lead_wrap .presentBox_lead.deco::before, .presentBox_lead_wrap .presentBox_lead.deco::after {
  position: absolute;
  content: "";
  width: 39px;
  height: 43px;
  bottom: 5px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 750px) {
  .presentBox_lead_wrap .presentBox_lead.deco::before, .presentBox_lead_wrap .presentBox_lead.deco::after {
    width: 28px;
    height: 25px;
    bottom: 2px;
  }
}
.presentBox_lead_wrap .presentBox_lead.deco::before {
  background-image: url("../images/event_subTitle_deco01.svg");
  left: -48px;
}
@media screen and (max-width: 750px) {
  .presentBox_lead_wrap .presentBox_lead.deco::before {
    left: -32px;
  }
}
.presentBox_lead_wrap .presentBox_lead.deco::after {
  background-image: url("../images/event_subTitle_deco02.svg");
  right: -48px;
}
@media screen and (max-width: 750px) {
  .presentBox_lead_wrap .presentBox_lead.deco::after {
    right: -32px;
  }
}

.presentBox {
  background-color: white;
  border-radius: 12px 12px 0 0;
  -webkit-box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
  overflow: visible;
}
.presentBox.bottom {
  border-radius: 0 0 12px 12px;
  -webkit-filter: none;
          filter: none;
}
.presentBox .present_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  padding: 23px 3%;
}
@media screen and (max-width: 750px) {
  .presentBox .present_contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 5%;
    row-gap: 40px;
  }
}
.presentBox .present_contents .visual {
  position: relative;
  margin-bottom: 10px;
}
.presentBox .present_contents .visual .fukidashi {
  position: absolute;
  width: 33%;
  top: -7%;
  right: -4%;
}
@media screen and (max-width: 750px) {
  .presentBox .present_contents .visual .fukidashi {
    width: 43%;
    top: -13%;
    right: -6%;
  }
}
.presentBox .present_contents .visual .fukidashi.main {
  position: absolute;
  width: 33%;
  top: -18%;
  right: -5%;
}
@media screen and (max-width: 750px) {
  .presentBox .present_contents .visual .fukidashi.main {
    width: 31%;
    top: 0%;
    right: -3%;
  }
}
.presentBox .present_contents .visual.main {
  margin: 60px auto 50px;
}
@media screen and (max-width: 750px) {
  .presentBox .present_contents .visual.main {
    margin: 0 auto 10px;
  }
}
.presentBox .present_contents .creditWrap .nameWrap {
  padding-bottom: 5px;
  margin-bottom: 8px;
  border-bottom: 1px solid black;
}
@media screen and (max-width: 750px) {
  .presentBox .present_contents .creditWrap .nameWrap {
    padding-bottom: 3px;
    margin-bottom: 6px;
  }
}
.presentBox .present_contents .creditWrap .nameWrap .tagWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.presentBox .present_contents .creditWrap .nameWrap .tag {
  background-color: #000;
  padding: 3px 8px;
  font-size: 14px;
  color: white;
  display: inline-block;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .presentBox .present_contents .creditWrap .nameWrap .tag {
    font-size: 13px;
    padding: 2px 6px;
  }
}
.presentBox .present_contents .creditWrap .nameWrap .name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1100px) {
  .presentBox .present_contents .creditWrap .nameWrap .name {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .presentBox .present_contents .creditWrap .nameWrap .name {
    font-size: min(3.8vw, 16px);
  }
}
.presentBox .present_contents .creditWrap .nameWrap .caution {
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .presentBox .present_contents .creditWrap .nameWrap .caution {
    font-size: min(3.3vw, 12px);
  }
}
.presentBox .present_contents .creditWrap .nameWrap .shop {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .presentBox .present_contents .creditWrap .nameWrap .shop {
    font-size: min(3.5vw, 14px);
  }
}
.presentBox .present_contents .creditWrap .nameWrap.main .name {
  font-size: 20px;
}
@media screen and (max-width: 750px) {
  .presentBox .present_contents .creditWrap .nameWrap.main .name {
    font-size: min(4.3vw, 20px);
  }
}
.presentBox .present_contents .creditWrap .nameWrap.main .caution {
  font-size: 13px;
}
@media screen and (max-width: 750px) {
  .presentBox .present_contents .creditWrap .nameWrap.main .caution {
    font-size: min(3.4vw, 13px);
  }
}
.presentBox .present_contents .creditWrap .nameWrap.main .shop {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .presentBox .present_contents .creditWrap .nameWrap.main .shop {
    font-size: min(3.8vw, 16px);
  }
}
.presentBox .present_contents .shopName {
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .presentBox .present_contents .shopName {
    font-size: min(3.5vw, 14px);
  }
}
.presentBox .present_contents .shopName.main {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .presentBox .present_contents .shopName.main {
    font-size: min(3.4vw, 13px);
  }
}
.presentBox .present_contents .upperWrap {
  width: 42%;
}
@media screen and (max-width: 750px) {
  .presentBox .present_contents .upperWrap {
    width: 100%;
  }
}
.presentBox .present_contents .bottomWrap {
  width: 53%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
  row-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .presentBox .present_contents .bottomWrap {
    width: 100%;
    row-gap: 38px;
  }
}
.presentBox .present_contents .bottomWrap .present_content {
  width: 48%;
}

.stepWrap_All {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 50px auto;
}

.stepWrap_Box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 520px;
  width: 90%;
  row-gap: 15px;
}
@media screen and (max-width: 750px) {
  .stepWrap_Box {
    width: 100%;
  }
}
.stepWrap_Box .stepTag {
  display: block;
  margin: 0 auto;
  width: 80px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  top: -32px;
}
.stepWrap_Box .stepWrap {
  position: relative;
  border-radius: 12px;
  border: 3px solid var(--pink01);
  padding: 35px 4% 15px;
  width: 100%;
}
.stepWrap_Box .stepWrap .leadWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  margin-bottom: 22px;
}
@media screen and (max-width: 750px) {
  .stepWrap_Box .stepWrap .leadWrap .fukidashiWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.stepWrap_Box .stepWrap .leadWrap .fukidashi {
  border: 2px solid black;
  border-radius: 30px;
  padding: 7px 20px;
  display: inline-block;
  position: relative;
}
.stepWrap_Box .stepWrap .leadWrap .fukidashi::after {
  position: absolute;
  content: "";
  background-image: url("../images/fukidashi_tri.png");
  width: 10px;
  height: 8px;
  background-size: 100% 100%;
  background-position: top;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
.stepWrap_Box .stepWrap .leadWrap .fukidashi .fukidashi_txt {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.stepWrap_Box .stepWrap .leadWrap .lead {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .stepWrap_Box .stepWrap .leadWrap .lead {
    font-size: min(6vw, 22px);
    text-align: left;
  }
}
.stepWrap_Box .stepWrap .leadWrap .lead .strong {
  background-color: var(--pink01);
  color: white;
  padding: 0px 3px;
}
.stepWrap_Box .stepWrap .leadWrap.step02 {
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .stepWrap_Box .stepWrap .leadWrap.step02 {
    row-gap: 4px;
  }
}
.stepWrap_Box .stepWrap .txt {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.stepWrap_Box .step_tri.tri01 {
  margin-bottom: 20px;
}
.stepWrap_Box .result {
  background-color: var(--pink01);
  color: white;
  width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 30px;
  font-size: 22px;
  font-weight: 700;
}

#course .item_box_wrap .item_boxAll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 750px) {
  #course .item_box_wrap .item_boxAll {
    row-gap: 23px;
  }
}
#course .item_box_wrap .item_boxAll .course_contents_inner {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(139, 139, 139, 0.2);
}
@media screen and (max-width: 750px) {
  #course .item_box_wrap .item_boxAll .course_contents_inner {
    padding-bottom: 37px;
  }
}
@media screen and (max-width: 750px) {
  #course .item_box_wrap .item_boxAll .course_contents_inner.last_contents {
    margin-bottom: 50px;
  }
}
#course .item_box_wrap .item_boxAll .course_contents_inner .info_box {
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  #course .item_box_wrap .item_boxAll .course_contents_inner .info_box {
    margin-bottom: 11px;
  }
}
#course .item_box_wrap .item_boxAll .course_contents_inner .info_box .shop_rogo {
  max-width: 350px;
  width: 60%;
  margin: 0px auto 10px;
}
#course .item_box_wrap .item_boxAll .course_contents_inner .interior_box {
  margin-bottom: 65px;
}
@media screen and (max-width: 750px) {
  #course .item_box_wrap .item_boxAll .course_contents_inner .interior_box {
    margin-bottom: 30px;
  }
}
#course .item_box_wrap .item_boxAll .course_contents_inner .interior_box img {
  display: block;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  #course .item_box_wrap .item_boxAll .course_contents_inner .interior_box img {
    margin-bottom: 15px;
  }
}
#course .item_box_wrap .item_boxAll .course_contents_inner .interior_box .interior_ex {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 750px) {
  #course .item_box_wrap .item_boxAll .course_contents_inner .interior_box .interior_ex {
    font-size: min(3.3vw, 13px);
  }
}
#course .item_box_wrap .item_boxAll .course_contents_inner .course_menu_wrap_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 750px) {
  #course .item_box_wrap .item_boxAll .course_contents_inner .course_menu_wrap_box {
    display: block;
  }
}
#course .item_box_wrap .item_boxAll .course_contents_inner .course_menu_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 22px;
  width: 100%;
  max-width: 780px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  #course .item_box_wrap .item_boxAll .course_contents_inner .course_menu_wrap {
    max-width: inherit;
    display: grid;
    grid-template-columns: 55% 1fr;
    grid-template-rows: auto auto;
    width: 100%;
    -webkit-column-gap: 5%;
       -moz-column-gap: 5%;
            column-gap: 5%;
    row-gap: 18px;
  }
}
#course .item_box_wrap .item_boxAll .course_contents_inner .course_menu_wrap .course_image_box {
  grid-row: span 2/span 2;
}
@media screen and (max-width: 750px) {
  #course .item_box_wrap .item_boxAll .course_contents_inner .course_menu_wrap .course_image_box {
    grid-column: 1;
    grid-row: 1;
  }
}
#course .item_box_wrap .item_boxAll .course_contents_inner .course_menu_wrap .course_ex_box {
  grid-column: 2;
  grid-row: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 750px) {
  #course .item_box_wrap .item_boxAll .course_contents_inner .course_menu_wrap .course_ex_box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-column: 2;
    grid-row: 1;
  }
}
#course .item_box_wrap .item_boxAll .course_contents_inner .course_menu_wrap .course_ex_box .name {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 13px;
}
@media screen and (max-width: 750px) {
  #course .item_box_wrap .item_boxAll .course_contents_inner .course_menu_wrap .course_ex_box .name {
    font-size: min(3.4vw, 14px);
  }
}
#course .item_box_wrap .item_boxAll .course_contents_inner .course_menu_wrap .caution_box {
  grid-column-start: 2;
}
@media screen and (max-width: 750px) {
  #course .item_box_wrap .item_boxAll .course_contents_inner .course_menu_wrap .caution_box {
    grid-column: 1/-1;
    grid-row: 2;
  }
}
#course .item_box_wrap .item_boxAll .course_contents_inner .course_menu_wrap .caution_box .caution {
  color: #7D7D7D;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  #course .item_box_wrap .item_boxAll .course_contents_inner .course_menu_wrap .caution_box .caution {
    font-size: min(3.2vw, 12px);
  }
}

.shop .shop_rogo {
  display: block;
  margin: 30px auto 30px;
  width: 38%;
}
@media screen and (max-width: 750px) {
  .shop .shop_rogo {
    display: block;
    margin: 14px auto 7px;
    width: 50%;
  }
}
.shop .shop_info {
  text-align: center;
  color: #5D5D5D;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (max-width: 750px) {
  .shop .shop_info {
    font-size: min(3.4vw, 13px);
  }
}

.BaselineBtn {
  font-size: 12px;
  z-index: 20;
  border: 1px solid;
  padding: 10px 28px 10px 19px;
  border-radius: 50px;
  background-color: white;
  display: block;
}
.BaselineBtn::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #1F1F1F;
  border-bottom: 1px solid #1F1F1F;
  position: absolute;
  right: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  .BaselineBtn {
    font-size: min(3.1vw, 11px);
  }
  .BaselineBtn::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    right: 13px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
}

.shopNameWrap {
  margin-bottom: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 6px;
  row-gap: 1px;
}
.shopNameWrap p {
  word-break: break-word;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.coordinateAll {
  margin-bottom: 150px;
}
@media screen and (max-width: 750px) {
  .coordinateAll {
    margin-bottom: 60px;
  }
}

.js_Slider01 p {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

.shopEx {
  margin-top: 30px;
}

.swiper_box {
  position: relative;
  left: 0.3vw;
}
@media screen and (max-width: 750px) {
  .swiper_box {
    width: 100%;
  }
}
.swiper_box .swiper {
  padding: 4vw 0 0;
  width: min(80%, 350px);
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .swiper_box .swiper {
    padding: 1vw 0 0;
  }
}
@media screen and (max-width: 1400px) {
  .swiper_box .swiper {
    width: 20vw;
  }
}
@media screen and (max-width: 750px) {
  .swiper_box .swiper {
    padding: 0px 0 0;
    width: 70%;
  }
}

.coordinate-flex .content .info {
  padding: 64px 0 30px;
  width: 100%;
  display: block;
  border-bottom: 1px solid #B0A299;
  margin: 0 auto 36px;
}
@media screen and (max-width: 1400px) {
  .coordinate-flex .content .info {
    padding: 0px 0 3vw;
    margin: 0 auto 1vw;
  }
}
@media screen and (max-width: 750px) {
  .coordinate-flex .content .info {
    width: 90%;
    padding: 0 0 0px;
    margin-bottom: 12px;
  }
}

#top_head {
  visibility: visible;
  opacity: 1;
}

.stage-main-box {
  max-width: 100%;
  width: 100%;
  padding-inline: 40px;
  margin: unset;
}
@media screen and (max-width: 750px) {
  .stage-main-box {
    width: 90%;
    width: 100%;
    margin-inline: auto;
    padding-inline: unset;
  }
}
.stage-main-box .KV_title {
  display: block;
  max-width: 850px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: -60px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .stage-main-box .KV_title {
    position: absolute;
    width: 88%;
    margin-bottom: 0vw;
    left: 50%;
    top: 60px;
    top: 40px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.stage-main-rogo {
  width: 100%;
  margin: unset;
  margin-top: 70px;
  padding-top: 60px;
}
@media screen and (max-width: 750px) {
  .stage-main-rogo {
    margin-top: 60px;
    padding-top: 0px;
  }
}

.search-wrap {
  max-width: 686px;
  width: 90%;
  margin-inline: auto;
  margin-top: 90px;
}
@media screen and (max-width: 750px) {
  .search-wrap {
    padding-top: 0;
    margin-top: 35px;
  }
}

.search-wrap_title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .search-wrap_title {
    font-size: 16px;
  }
}

.search {
  width: 100%;
  display: grid;
  gap: 16px;
  margin-top: 36px;
}
@media screen and (max-width: 750px) {
  .search {
    margin-top: 25px;
  }
}

.search_item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 750px) {
  .search_item {
    grid-template-columns: unset;
  }
}

.search_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
}
.search_title::before {
  content: "";
  width: 6px;
  aspect-ratio: 1/1;
  background: #000;
  border-radius: 50%;
}

.search_keyword {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.search_keyword button {
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #000;
  border-radius: 40px;
  cursor: pointer;
  color: black;
  line-height: 1.3;
  padding: 5px 22px 4px;
}
.search_keyword button.is-active {
  color: #fff;
  background: #acacac;
  border-color: #acacac;
}

.item_box_wrap {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 10px;
  margin-block: unset;
  margin-top: 100px;
}
@media screen and (max-width: 1080px) {
  .item_box_wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 750px) {
  .item_box_wrap {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
}

.item_box_img {
  width: 100%;
  height: 100%;
  position: relative;
}
.item_box_img .text-img {
  max-width: 354px;
  width: 80%;
  position: absolute;
  bottom: 11px;
  bottom: 15px;
  left: 18px;
}
@media screen and (max-width: 750px) {
  .item_box_img .text-img {
    left: 10px;
    width: 63%;
    bottom: 4px;
    bottom: 9px;
  }
}
.item_box_img.--foods {
  grid-column: 3/5;
  grid-row: 1/3;
}
@media screen and (max-width: 1080px) {
  .item_box_img.--foods {
    grid-column: 2/4;
  }
}
@media screen and (max-width: 750px) {
  .item_box_img.--foods {
    grid-column: 1/3;
  }
}
.item_box_img.--lifestyle {
  grid-column: 1/3;
  grid-row: 1/3;
}
.item_box_img .bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.item_content {
  width: 100%;
}

.clothes_thumbnail_inner img {
  margin-bottom: 21px;
}

.shopNameWrap {
  margin-bottom: unset;
}
.shopNameWrap .shopName_subTitle {
  font-size: 12px;
  font-weight: 300;
}
.shopNameWrap .shopName_title {
  font-size: 14px;
  font-weight: 600;
}
.shopNameWrap .shopName_price {
  font-size: 14px;
  font-weight: 300;
}

.shopNameWrap_Box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 750px) {
  .shopNameWrap_Box {
    row-gap: 0px;
  }
}

.modal-main #modal_main {
  padding: 35px 35px;
}
@media screen and (max-width: 750px) {
  .modal-main #modal_main {
    padding: 40px 0px 20px 0px;
  }
}
.modal-main .group {
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}
.modal-main .left {
  min-width: 250px;
}
@media screen and (max-width: 750px) {
  .modal-main .left {
    min-width: unset;
    width: 90%;
  }
}
.modal-main .panel-group {
  width: 404px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 35px;
}
@media screen and (max-width: 1080px) {
  .modal-main .panel-group {
    margin-top: unset;
  }
}
@media screen and (max-width: 750px) {
  .modal-main .panel-group {
    width: 90%;
    margin-inline: auto;
    padding-top: 10px;
  }
}
.modal-main .panel-group > div:first-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.modal-main .shopNameWrap {
  row-gap: 7px;
}
@media screen and (max-width: 750px) {
  .modal-main .shopNameWrap {
    row-gap: 5px;
  }
}
.modal-main .name {
  font-size: 19px;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .modal-main .name {
    font-size: 18px;
  }
}
.modal-main .name .price_ex {
  font-size: 95%;
}
.modal-main .name .price_ex.ex02 {
  font-size: 88%;
}
.modal-main .gift-info {
  font-size: 12px;
}
.modal-main .text {
  color: #000;
  margin-block: 30px 30px;
  margin-block: 30px 22px;
}
@media screen and (max-width: 1080px) {
  .modal-main .text {
    margin-block: 18px;
  }
}
.modal-main .text.txt02 {
  margin-top: 15px;
}
@media screen and (max-width: 1080px) {
  .modal-main .text.txt02 {
    margin-top: 12px;
  }
}
.modal-main .gift-category-wrap {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  gap: 6px;
}
@media screen and (max-width: 1080px) {
  .modal-main .gift-category-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.modal-main .gift-category-wrap.wrap02 {
  margin-top: 50px;
}
@media screen and (max-width: 1080px) {
  .modal-main .gift-category-wrap.wrap02 {
    margin-top: 35px;
  }
}
.modal-main .gift-category {
  padding-block: 2px 4px;
  border: 1px solid #7a7a7a;
  color: #7a7a7a;
  font-size: 12px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2px 7px;
}
.modal-main .gift-category.line02 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 750px) {
  .modal-main .gift-category {
    font-size: 10px;
  }
}
.modal-main .gift-category .gift-category_little {
  font-size: 10px;
}
@media screen and (max-width: 750px) {
  .modal-main .gift-category .gift-category_little {
    font-size: 9px;
  }
}
.modal-main .shop {
  margin-top: auto;
  padding-bottom: 10px;
  padding: 21px 0;
  padding: 10px 0;
}
@media screen and (max-width: 750px) {
  .modal-main .shop {
    padding: 10px 5%;
  }
}
.modal-main .shop_rogo {
  width: 100%;
  margin: 0;
  position: relative;
  bottom: 0;
}
.modal-main .tab.list2 {
  opacity: 0.5;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.modal-main .tab.list2.is-active {
  opacity: 1;
}

.gift-remark {
  max-width: 1180px;
  width: 90%;
  margin-inline: auto;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
  margin-top: 60px;
}

.to-top {
  width: 70px;
  aspect-ratio: 70/96;
  position: fixed;
  bottom: 32px;
  right: 32px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .to-top {
    width: 50px;
    bottom: 10px;
    right: 10px;
  }
}
@media (any-hover: hover) {
  .to-top:hover {
    opacity: 0.7;
  }
}

/* ===== KV dissolve ===== */
/* スライダー枠を横幅100%にして、画像は枠内に収める */
#slider01 {
  width: 100%;
  position: relative;
  overflow: hidden;
}

#slider01 img {
  display: block;
  width: 100%;
  height: auto;
  /* 縦横比維持 */
}

/* Slickのスライド要素の余計なアウトライン等を消す */
#slider01 .slick-slide {
  outline: none;
}

/* ドットの位置調整（任意） */
#slider01 .slick-dots {
  bottom: 12px;
}

/* 矢印を使うなら適宜スタイル（任意） */
/* .slick-custom-prev, .slick-custom-next { ... } */
.noResult {
  margin: 100px auto 0;
  color: #F00;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
  .noResult {
    font-size: 15px;
    margin: 40px auto 0;
  }
}

.shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #7a7a7a;
  padding-block: 18px;
}
@media screen and (max-width: 1080px) {
  .shop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 6px;
    padding-inline: 18px;
  }
}

.shop a {
  max-width: 223px;
  width: 100%;
}

.shop .shop_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  font-size: 10px;
  line-height: 1.7;
  text-align: left;
  padding-inline: 17px;
  border-left: 1px solid #7a7a7a;
}
@media screen and (max-width: 1080px) {
  .shop .shop_info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    border-left: unset;
    border-top: 1px solid #7a7a7a;
    padding-top: 10px;
    margin-top: 10px;
    text-align: center;
  }
}

.group .mainImg_box {
  position: relative;
}

.group .mainImg_box .mainNav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 5;
}

.group .mainImg_box .mainNav.prev {
  left: 0;
}
.group .mainImg_box .mainNav.prev::before {
  content: "";
  background-image: url("../images/tab_arrow01.svg");
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.group .mainImg_box .mainNav.next {
  right: 0px;
}
.group .mainImg_box .mainNav.next::before {
  content: "";
  background-image: url("../images/tab_arrow02.svg");
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
/*# sourceMappingURL=style.css.map */
