@charset "UTF-8";
/* ーーーーー リセット系 ーーーーー */
html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

p {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

a {
  text-decoration: none;
}

li {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  list-style: none;
}

img {
  vertical-align: top;
  width: 100%;
  height: auto;
}

:root {
  --pink01: #e85298;
  --black01: #000000;
  --evenEX01: #7C58BA;
  --originalEX01: #EA5504;
}

@media screen and (max-width: 768px) {
  .PC-only {
    display: none !important;
  }
}

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

@media screen and (max-width: 1200px) {
  .PC_tab-only {
    display: none !important;
  }
}

.tab_sp-only {
  display: none !important;
}
@media screen and (max-width: 1200px) {
  .tab_sp-only {
    display: block !important;
  }
}

.tab-only {
  display: none !important;
}
@media screen and (max-width: 1200px) {
  .tab-only {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .tab-only {
    display: none !important;
  }
}

/* ーーーーー リセット系ここまで ーーーーー */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  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;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[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 */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* 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.ttf") format("truetype"), 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: -25px;
  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;
}

.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: 6px;
  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;
}

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

/* 矢印表示 */
.slick-prev:before,
.slick-next:before {
  color: rgb(92, 92, 92);
}

.slick-prev {
  left: 50px;
}

.slick-next {
  right: 50px;
}

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

/* 矢印表示ここまで */
/* スライド下のドット */
.slick-dots li button:before {
  font-family: "slick";
  font-size: 50px;
  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;
}

/* スライド下のドットここまで */
/* 複数枚のスライドをすべて表示 */
.sliderArea {
  background: #fff;
  overflow: hidden;
}

.sliderWide {
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 0;
}

.sliderWide .slick-arrow {
  opacity: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.sliderWide:hover .slick-arrow {
  opacity: 1;
}

.slider {
  max-width: 600px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.slider .slick-list {
  overflow: visible;
}

.slider .slick-slide {
  padding: 0 10px;
  opacity: 0.5;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.slider .slick-slide.slick-current {
  opacity: 1;
}

.slider .slick-slide a {
  display: block;
}

.slider .slick-slide a:hover {
  display: block;
  opacity: 0.7;
}

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

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

.slick-dots {
  bottom: -33px;
}

/* 複数枚のスライドをすべて表示ここまで */
/* スライダー左右の矢印 */
/* .slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .prev-arrow {
    left: 0;
    z-index: 10;
  }
  .next-arrow {
    right: 0;
  }

  .slide-arrow  {
    width: 50px !important;
  } */
/* ハンバーガーメニュー */
.sp-header-nav_box_ham {
  position: fixed;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  display: block;
  right: 0;
  top: 0px;
  width: 70px;
  height: 70px;
  z-index: 8;
}

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

.line-1 {
  top: 25px;
  right: 17.5px;
}

.line-2 {
  top: 35px;
  right: 17.5px;
}

.line-3 {
  top: 45px;
  right: 17.5px;
}

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

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

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

.sp-nav_nav-list {
  position: fixed;
  width: 100%;
  top: -1000px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  /* overflow: scroll; */
  height: 100%;
  z-index: 7;
}

.sp-nav_nav-list_box {
  list-style: none;
  text-align: center;
  background-color: white;
  padding: 10% 0;
}

.sp-nav_nav-list_box_list {
  margin: 0 auto;
  margin-bottom: 40px;
  width: 100%;
}

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

.sp-nav_nav-list_box_list a {
  color: #B8AB82;
  font-size: 20px;
}

.nav-opened {
  top: 0px;
}

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

@media (max-width: 768px) {
  .sp-header-nav_box_ham {
    position: fixed;
    right: 5.3%;
    top: 6px;
    width: 50px;
    height: 40px;
    background-color: #D0AD60;
    z-index: 15;
  }
  .sp-header-nav_box_ham_line {
    background-color: #B8AB82;
    width: 30px;
    height: 2px;
  }
  .line-1 {
    top: 10px;
    right: 10px;
  }
  .line-2 {
    top: 20px;
    right: 10px;
  }
  .line-3 {
    top: 30px;
    right: 10px;
  }
  .clicked .line-1 {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    top: 20px;
  }
  .clicked .line-2 {
    opacity: 0;
  }
  .clicked .line-3 {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
    top: 20px;
  }
  .sp-nav_nav-list {
    z-index: 10;
  }
  .sp-nav_nav-list_box {
    padding: 10% 0;
  }
  .sp-nav_nav-list_box_list {
    margin: 0 auto;
    margin-bottom: 40px;
    width: 100%;
  }
  .sp-nav_nav-list_box_list:nth-last-of-type(1) {
    margin-bottom: 0;
  }
  .sp-nav_nav-list_box_list a {
    color: #B8AB82;
    font-size: 20px;
  }
}
/* ハンバーガーメニューここまで */
#Gallery {
  background-color: rgb(233, 255, 255);
}

#Access {
  background-color: rgb(254, 233, 255);
}

#Contact {
  background-color: rgb(210, 242, 214);
}

/* ヘッダー／フッター／メニューここまで */
/* モーダル（矢印遷移付き）ここから */
.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 {
  cursor: pointer;
}

.modal-wrapper {
  /* 後で復帰（モーダル）  */
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(9, 9, 9, 0.7);
  z-index: 1000;
  /* 後で復帰（モーダル）ここまで  */
}

/* 後で復帰（モーダル）  */
.modal-content {
  display: none;
}

/* 後で復帰（モーダル）ここまで  */
.modal-wrapper .view-window {
  position: relative;
  padding-bottom: 0px;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .modal-wrapper .view-window {
    padding-bottom: 120px;
  }
}

.modal-wrapper .modal-content-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 960px;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .modal-wrapper .modal-content-wrapper {
    width: 90%;
    position: relative;
    top: 0%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
    margin-top: 30px;
  }
}
.modal-wrapper .modal-content-wrapper:has(.shopModal_card) {
  max-width: 580px;
  width: 90%;
}

.modal-wrapper .modal-content-wrapper .modal-main {
  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;
}

.modal-wrapper .btn-close {
  cursor: pointer;
  width: 55px;
  position: absolute;
  z-index: 100;
  right: -3%;
  top: -3%;
}
@media screen and (max-width: 768px) {
  .modal-wrapper .btn-close {
    width: 45px;
  }
}

.modal-wrapper .btn-prev {
  cursor: pointer;
  z-index: 100;
  width: 80px;
  height: 50px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.modal-wrapper .btn-next {
  cursor: pointer;
  z-index: 100;
  width: 80px;
  height: 50px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.BtnColumn {
  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;
  gap: 5px;
}
.BtnColumn .txt {
  font-size: 14px;
  line-height: 1;
}
.BtnColumn .icon {
  width: 10px;
  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;
}
.BtnColumn .icon img {
  display: block;
}

.modal-wrapper_box {
  position: relative;
}

/* モーダル（矢印遷移付き）ここまで */
.modal_inner_wrapper {
  position: relative;
  width: 100%;
}
.modal_inner_wrapper .heartIcon {
  position: absolute;
  width: 31%;
  right: 1%;
  top: -7%;
}
.modal_inner_wrapper .visual {
  margin-bottom: 0px;
}
.modal_inner_wrapper .modal_exWrap {
  background: white;
  border: 1px solid black;
  padding: 23px 5% 35px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .modal_inner_wrapper .modal_exWrap {
    padding: 20px 5% 20px;
  }
}
.modal_inner_wrapper .modal_exWrap.styling {
  border: 0;
}
@media screen and (max-width: 768px) {
  .modal_inner_wrapper .modal_exWrap.styling {
    padding: 20px 5% 6px;
  }
}
.modal_inner_wrapper .modal_exWrap .modal_exWrap_inner {
  margin-bottom: 20px;
}
.modal_inner_wrapper .modal_exWrap .name {
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--blue01);
}
.modal_inner_wrapper .modal_exWrap .name.name02 {
  border-bottom: 1px solid var(--purple01);
}
.modal_inner_wrapper .modal_exWrap .name.name03 {
  border-bottom: 1px solid var(--yellow02);
}
.modal_inner_wrapper .modal_exWrap .name.name04 {
  border-bottom: 1px solid var(--pink02);
}
.modal_inner_wrapper .modal_exWrap .name.name05 {
  border-bottom: 1px solid var(--orange01);
}
.modal_inner_wrapper .modal_exWrap .name .name_img {
  display: block;
  margin: 0 auto;
  width: 46px;
}
.modal_inner_wrapper .modal_exWrap .lead {
  color: #000;
  text-align: justify;
  font-size: 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.modal_inner_wrapper .modal_exWrap .explainBox {
  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: 22px;
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain {
  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: 8px;
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .tag {
  width: 60%;
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .txt {
  color: #000;
  font-size: 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .pointWrap {
  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: 9px;
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .pointWrap .txt {
  padding-left: 1em;
  text-indent: -1em;
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .pointWrap.wrap01 .txt {
  border-bottom: 1px solid var(--blue01);
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .pointWrap.wrap02 .txt {
  border-bottom: 1px solid var(--purple01);
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .pointWrap.wrap03 .txt {
  border-bottom: 1px solid var(--yellow02);
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .pointWrap.wrap04 .txt {
  border-bottom: 1px solid var(--pink02);
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .pointWrap.wrap05 .txt {
  border-bottom: 1px solid var(--orange01);
}
.modal_inner_wrapper .modal_exWrap .itemName {
  color: #000;
  text-align: left;
  font-size: 20px;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.08em;
  padding-bottom: 10px;
  border-bottom: 1px solid black;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .modal_inner_wrapper .modal_exWrap .itemName {
    font-size: 14px;
  }
}
.modal_inner_wrapper .modal_exWrap .itemEx {
  color: #000;
  text-align: justify;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .modal_inner_wrapper .modal_exWrap .itemEx {
    font-size: 12px;
  }
}
.modal_inner_wrapper .modal_exWrap .shopName {
  color: #000;
  text-align: left;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .modal_inner_wrapper .modal_exWrap .shopName {
    font-size: 10px;
  }
}
.modal_inner_wrapper .modal_exWrap .itemcaution {
  color: #000;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 14px */
  letter-spacing: -0.6px;
  margin-bottom: 11px;
}
@media screen and (max-width: 768px) {
  .modal_inner_wrapper .modal_exWrap .itemcaution {
    font-size: 10px;
  }
}
.modal_inner_wrapper.modal02 {
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
}
.modal_inner_wrapper.modal02 .visual {
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
}

.modal_buttonWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 26px;
  position: absolute;
  width: 100%;
  bottom: 5px;
  padding: 0 5%;
}

.modal_box {
  max-width: 500px;
  margin: 80px auto;
  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;
}
.modal_box .js-modal-open {
  text-align: center;
}

.modal-wrapper,
.modal-wrapper2,
.modal-content-wrapper,
.view-window,
.shopList_wrap,
.shopList_modal,
.shopList_modal__inner {
  overflow-anchor: none;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 1500px) {
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 1400px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 13px;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

.all_wrap .contents_wrap {
  position: relative;
  display: block;
  margin: 0 auto;
  background-color: white;
}
.all_wrap .contents_wrap .content_inner {
  max-width: 970px;
  width: 90%;
  display: block;
  margin: 0 auto;
  position: relative;
}
.all_wrap header {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 600px;
  width: 100%;
  z-index: 100;
}
.all_wrap header .wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.all_wrap header .wrap .header_logo {
  width: 74px;
  margin: 30px;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .all_wrap header .wrap .header_logo {
    width: 70px;
    margin: 14px;
  }
}
.all_wrap .bottom_caution {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .all_wrap .bottom_caution {
    font-size: min(3.3vw, 13px);
  }
}
.all_wrap .section_title {
  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;
  position: relative;
  z-index: 3;
}
.all_wrap .section_title .ja {
  display: block;
  max-width: 523px;
  width: 90%;
  margin-bottom: 28px;
}
@media screen and (max-width: 1400px) {
  .all_wrap .section_title .ja {
    max-width: 450px;
  }
}
@media screen and (max-width: 1000px) {
  .all_wrap .section_title .ja {
    max-width: 380px;
  }
}
@media screen and (max-width: 768px) {
  .all_wrap .section_title .ja {
    max-width: inherit;
    width: min(78vw, 400px);
    margin-bottom: 11px;
  }
}
.all_wrap .section_title .en {
  width: 197px;
}
@media screen and (max-width: 1400px) {
  .all_wrap .section_title .en {
    width: 170px;
  }
}
@media screen and (max-width: 768px) {
  .all_wrap .section_title .en {
    width: min(28vw, 138px);
  }
}
.all_wrap .section_title .sub {
  width: 132px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .all_wrap .section_title .sub {
    width: 101px;
    margin-bottom: 12px;
  }
}
.all_wrap .link_banner_button_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.all_wrap .link_banner_button_wrap .link_banner_button {
  display: inline-block;
  margin: 0 auto 38px;
}
@media screen and (max-width: 768px) {
  .all_wrap .link_banner_button_wrap .link_banner_button {
    width: 100%;
  }
}
.all_wrap .link_banner_button_wrap .link_banner_button .link_txt {
  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: 30px 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1;
  text-decoration: none;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1800px) {
  .all_wrap .link_banner_button_wrap .link_banner_button .link_txt {
    padding: 27px 0;
  }
}
@media screen and (max-width: 1200px) {
  .all_wrap .link_banner_button_wrap .link_banner_button .link_txt {
    padding: 24px 0;
  }
}
@media screen and (max-width: 768px) {
  .all_wrap .link_banner_button_wrap .link_banner_button .link_txt {
    padding: 22px 0;
  }
}
.all_wrap .link_banner_button_wrap .link_banner_button .link_txt p {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1200px) {
  .all_wrap .link_banner_button_wrap .link_banner_button .link_txt p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .all_wrap .link_banner_button_wrap .link_banner_button .link_txt p {
    font-size: min(4.5vw, 20px);
  }
}
.all_wrap .link_banner_button_wrap .link_banner_button .link_txt:hover {
  -webkit-transform: translate3d(0, 10px, 0);
          transform: translate3d(0, 10px, 0);
  color: white;
}
.all_wrap .link_banner_button_wrap .link_banner_button .link_txt:hover:before {
  background-color: white;
  border: 1px solid #ff7b1a;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}
.all_wrap .link_banner_button_wrap .link_banner_button .link_txt:hover p {
  color: #ff7b1a;
}
.all_wrap .link_banner_button_wrap .link_banner_button .link_txt:hover::after {
  border-left: 10px solid #ff7b1a;
  right: -30px;
}
@media screen and (max-width: 768px) {
  .all_wrap .link_banner_button_wrap .link_banner_button .link_txt:hover::after {
    right: 8px;
  }
}
.all_wrap .link_banner_button_wrap .link_banner_button .link_txt:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background-color: #ff7b1a;
  border: 1px solid #ff7b1a;
  border-radius: 50px;
  width: 423px;
  -webkit-box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .all_wrap .link_banner_button_wrap .link_banner_button .link_txt:before {
    width: 100%;
  }
}
.all_wrap .link_banner_button_wrap .link_banner_button .link_txt::after {
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #ffffff;
  position: absolute;
  right: -23px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .all_wrap .link_banner_button_wrap .link_banner_button .link_txt::after {
    right: 13px;
  }
}
.all_wrap .link_banner_button_wrap.green {
  width: 99%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .all_wrap .link_banner_button_wrap.green {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .all_wrap .link_banner_button_wrap.green {
    position: fixed;
    z-index: 100;
    bottom: 0px;
    width: 100%;
    padding: 0 5%;
  }
}
.all_wrap .link_banner_button_wrap.green .link_banner_button {
  margin: 0 auto 50px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .all_wrap .link_banner_button_wrap.green .link_banner_button {
    margin-bottom: 20px;
  }
}
.all_wrap .link_banner_button_wrap.green .link_banner_button .link_txt p {
  font-size: min(1.1vw, 18px);
  color: #d6cc7a;
}
@media screen and (max-width: 768px) {
  .all_wrap .link_banner_button_wrap.green .link_banner_button .link_txt p {
    font-size: min(4.5vw, 20px);
  }
}
.all_wrap .link_banner_button_wrap.green .link_banner_button .link_txt::before {
  width: 100%;
  background-color: #1b5a64;
  border: solid 1px #1b5a64;
  outline: solid 1px #d6cc7a;
  outline-offset: -6px;
}
.all_wrap .link_banner_button_wrap.green .link_banner_button .link_txt::after {
  content: none;
}
.all_wrap .link_banner_button_wrap.green .link_banner_button .link_txt:hover p {
  color: #1b5a64;
}
.all_wrap .link_banner_button_wrap.green .link_banner_button .link_txt:hover::before {
  background-color: white;
  outline: solid 1px #1b5a64;
}
.all_wrap footer {
  background-color: white;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .all_wrap footer {
    margin-bottom: 100px;
  }
}
.all_wrap footer .rogo_link {
  display: block;
  width: 100px;
  margin: 0 auto 20px;
}
.all_wrap footer .copyright {
  font-size: 10px;
  line-height: 1.6;
  color: #999999;
  text-align: center;
}
.all_wrap .copyright_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .all_wrap .copyright_box {
    gap: 7%;
  }
}
@media screen and (max-width: 768px) {
  .all_wrap .copyright_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    position: absolute;
    bottom: -1rem;
    right: 0.7rem;
    width: 45%;
    gap: 10%;
  }
}
.all_wrap .copyright_box .copyright_visual {
  width: 33%;
}
@media screen and (max-width: 768px) {
  .all_wrap .copyright_box .copyright_visual {
    width: 5rem;
    display: block;
    margin-bottom: 5px;
  }
}
.all_wrap .copyright_box .txt {
  width: 59%;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
}
@media screen and (max-width: 1200px) {
  .all_wrap .copyright_box .txt {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .all_wrap .copyright_box .txt {
    width: 100%;
    font-size: 10px;
    text-align: right;
  }
}
.all_wrap .section_jp_title {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.all_wrap .divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 11px 15px;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .all_wrap .divider {
    padding-block: 17px 14px;
  }
}
.all_wrap .divider_text {
  font-family: "Kalnia", serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1.1;
  padding-inline: 15px;
  white-space: nowrap;
  -webkit-animation: loop-text 20s linear infinite;
          animation: loop-text 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .all_wrap .divider_text {
    font-size: 56px;
    line-height: 1;
  }
}
@-webkit-keyframes loop-text {
  0% {
    translate: 0;
  }
  100% {
    translate: -100%;
  }
}
@keyframes loop-text {
  0% {
    translate: 0;
  }
  100% {
    translate: -100%;
  }
}
.all_wrap .title_deco {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .all_wrap .title_deco {
    font-size: 13px;
    line-height: 1.3;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.all_wrap .title_deco.--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.all_wrap .title_deco::before, .all_wrap .title_deco::after {
  content: "";
  width: 14px;
  aspect-ratio: 14/22;
  background-color: currentColor;
  -webkit-mask: url(../images/common/text-deco.svg) no-repeat center/contain;
  mask: url(../images/common/text-deco.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .all_wrap .title_deco::before, .all_wrap .title_deco::after {
    width: 11px;
  }
}
.all_wrap .title_deco::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.all_wrap .link-btn {
  display: block;
  width: 100%;
  color: inherit;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding-block: 20px;
  border: 1px solid currentColor;
  border-radius: 32px;
  background: #FFF;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .all_wrap .link-btn {
    font-size: 14px;
    font-size: min(3.5vw, 14px);
    padding-block: 13px;
  }
}
.all_wrap .link-btn.noLink {
  pointer-events: none;
}
.all_wrap .link-btn.noLink::after {
  content: none;
}
.all_wrap .link-btn::after {
  content: "";
  width: 6px;
  height: 11px;
  background-color: currentColor;
  -webkit-mask: url(../images/common/link_btn_arrow.svg) no-repeat center/contain;
  mask: url(../images/common/link_btn_arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 15px;
  translate: 0 -50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .all_wrap .link-btn::after {
    right: 8px;
  }
}
.all_wrap .link-btn.--large::after {
  width: 9px;
  height: 17px;
  right: 24px;
}
@media screen and (max-width: 768px) {
  .all_wrap .link-btn.--large::after {
    right: 17px;
  }
}
@media screen and (max-width: 768px) {
  .all_wrap .link-btn.--large {
    padding-block: 22px 20px;
  }
}
.all_wrap .link-btn.orange {
  border: 1px solid #EA5504;
  color: #EA5504;
  cursor: pointer;
}
.all_wrap .link-btn.orange:hover {
  background-color: #EA5504;
  border: 1px solid #EA5504;
}

.js_appearance {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media screen and (max-width: 768px) {
  .js_appearance {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.js_appearance.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  pointer-events: inherit;
  visibility: visible;
}

.Cookie_dummy {
  width: 80px;
  position: fixed;
  bottom: 0px;
  left: 0;
  z-index: 105;
}

#KV {
  background: #d4ecea;
  overflow: hidden;
}
#KV .kv {
  max-width: 1440px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: min(4.6527777778vw, 67px) min(1.3194444444vw, 19px);
  padding-inline: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #KV .kv {
    max-width: 500px;
    padding-block: 35px 45px;
    padding-inline: 20px;
  }
}
#KV .kv_title_wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
#KV .kv_title {
  width: min(53.8888888889vw, 776px);
}
@media screen and (max-width: 768px) {
  #KV .kv_title {
    max-width: 325px;
    width: 100%;
    height: 104px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#KV .kv_title_date {
  width: min(9.7222222222vw, 140px);
  position: absolute;
  top: -8.1%;
  left: -16.11%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #KV .kv_title_date {
    width: 59px;
    top: unset;
    bottom: -22px;
    left: 0;
  }
}
#KV .kv_title_number {
  width: min(10.4166666667vw, 150px);
  position: absolute;
  top: 4.45%;
  right: 0.26%;
}
@media screen and (max-width: 768px) {
  #KV .kv_title_number {
    width: 60px;
    top: 4.5px;
    right: 0;
  }
}
#KV .kv_info {
  max-width: min(81.25vw, 1170px);
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-top: min(16.8055555556vw, 242px);
}
@media screen and (max-width: 768px) {
  #KV .kv_info {
    max-width: unset;
    margin-top: 213px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    gap: 202px 0;
    position: relative;
  }
}
#KV .kv_text {
  width: min(10.9027777778vw, 157px);
  margin-bottom: 26px;
  margin-bottom: min(1.8055555556vw, 26px);
}
@media screen and (max-width: 999px) {
  #KV .kv_text {
    margin-bottom: unset;
  }
}
@media screen and (max-width: 768px) {
  #KV .kv_text {
    width: 312px;
  }
}
#KV .kv_collab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: min(21.25vw, 306px);
  margin-bottom: min(0.6944444444vw, 10px);
}
@media screen and (max-width: 999px) {
  #KV .kv_collab {
    margin-bottom: unset;
  }
}
@media screen and (max-width: 768px) {
  #KV .kv_collab {
    width: min(41.3333333333vw, 155px);
  }
}
#KV .kv_message {
  display: none;
}
@media screen and (max-width: 768px) {
  #KV .kv_message {
    width: min(42.6666666667vw, 160px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#KV .kv_em_text {
  width: min(10.3472222222vw, 149px);
}
@media screen and (max-width: 768px) {
  #KV .kv_em_text {
    width: 73px;
    position: absolute;
    bottom: 31px;
    right: 0;
    z-index: 9;
  }
}
#KV .kv_character {
  width: min(34.7222222222vw, 500px);
  position: absolute;
}
@media screen and (max-width: 768px) {
  #KV .kv_character {
    width: 200px;
    translate: -50% 0;
  }
}
#KV .kv_character.--1 {
  top: 14.13%;
  left: 1.04%;
  z-index: 6;
}
@media screen and (max-width: 768px) {
  #KV .kv_character.--1 {
    top: 146px;
    left: 23.73%;
    z-index: 8;
  }
}
#KV .kv_character.--2 {
  top: 27.88%;
  left: 14.58%;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  #KV .kv_character.--2 {
    top: 375px;
    left: 20.8%;
    z-index: 6;
  }
}
#KV .kv_character.--3 {
  top: 27.75%;
  left: 32.78%;
  z-index: 7;
}
@media screen and (max-width: 768px) {
  #KV .kv_character.--3 {
    top: 144px;
    left: 52.27%;
  }
}
#KV .kv_character.--4 {
  top: 27.38%;
  left: 52.29%;
  z-index: 8;
}
@media screen and (max-width: 768px) {
  #KV .kv_character.--4 {
    top: 374px;
    left: 57.33%;
  }
}
#KV .kv_character.--5 {
  top: 9.88%;
  left: 68.68%;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #KV .kv_character.--5 {
    top: 132px;
    left: 84.27%;
    z-index: 8;
  }
}
#KV .is-show-01 {
  -webkit-animation: kv-01 1s ease 0.3s 1 both;
          animation: kv-01 1s ease 0.3s 1 both;
}
@-webkit-keyframes kv-01 {
  0% {
    opacity: 0;
    translate: 0 10%;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes kv-01 {
  0% {
    opacity: 0;
    translate: 0 10%;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
@-webkit-keyframes kv-02 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes kv-02 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes kv-01-02 {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  5% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
  10% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes kv-01-02 {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  5% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
  10% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
#KV .is-show-02.--1 {
  -webkit-animation: kv-02 0.4s ease 1.5s 1 both, kv-01-02 3s ease 5.2s infinite forwards;
          animation: kv-02 0.4s ease 1.5s 1 both, kv-01-02 3s ease 5.2s infinite forwards;
}
#KV .is-show-02.--2 {
  -webkit-animation: kv-02 0.4s ease 1.9s 1 both, kv-01-02 3s ease 5.2s infinite forwards;
          animation: kv-02 0.4s ease 1.9s 1 both, kv-01-02 3s ease 5.2s infinite forwards;
}
#KV .is-show-02.--3 {
  -webkit-animation: kv-02 0.4s ease 1.3s 1 both, kv-01-02 3s ease 5.2s infinite forwards;
          animation: kv-02 0.4s ease 1.3s 1 both, kv-01-02 3s ease 5.2s infinite forwards;
}
#KV .is-show-02.--4 {
  -webkit-animation: kv-02 0.4s ease 2.1s 1 both, kv-01-02 3s ease 5.2s infinite forwards;
          animation: kv-02 0.4s ease 2.1s 1 both, kv-01-02 3s ease 5.2s infinite forwards;
}
#KV .is-show-02.--5 {
  -webkit-animation: kv-02 0.4s ease 1.7s 1 both, kv-01-02 3s ease 5.2s infinite forwards;
          animation: kv-02 0.4s ease 1.7s 1 both, kv-01-02 3s ease 5.2s infinite forwards;
}
@-webkit-keyframes kv-03 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes kv-03 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#KV .is-show-03.--1 {
  -webkit-animation: kv-04 1s ease 3s 1 both;
          animation: kv-04 1s ease 3s 1 both;
}
#KV .is-show-03.--2 {
  -webkit-animation: kv-04 1s ease 2.5s 1 both;
          animation: kv-04 1s ease 2.5s 1 both;
}
#KV .is-show-03.--3 {
  -webkit-animation: kv-04 1s ease 3.5s 1 both;
          animation: kv-04 1s ease 3.5s 1 both;
}
#KV .is-show-04 {
  -webkit-animation: kv-04 0.3s ease 4.5s 1 both;
          animation: kv-04 0.3s ease 4.5s 1 both;
}
@-webkit-keyframes kv-04 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes kv-04 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.kv_nav_wrap {
  position: fixed;
  left: 0px;
  bottom: 20px;
  z-index: 100;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .kv_nav_wrap {
    bottom: inherit;
    top: 0;
  }
}

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

.kv_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 23px;
  margin-top: 10px;
  max-width: 900px;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .kv_nav {
    max-width: inherit;
    width: 100%;
    margin-top: 0px;
    gap: 0px;
  }
}

.kv_btn {
  width: calc((100% - 69px) / 4);
  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;
  gap: 3px;
  color: #EA5504;
  border-radius: 32px;
  border: 1px solid currentColor;
  background: #FFF;
  padding-block: 10px 9px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .kv_btn {
    padding-block: 7px 7px;
    border: none;
    color: white;
    background-color: #EA5504;
    width: 25%;
    border-radius: 0px;
    position: relative;
  }
  .kv_btn::after {
    position: absolute;
    content: "";
    background-color: white;
    opacity: 0.5;
    width: 1px;
    height: 80%;
    right: 0%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .kv_btn:last-of-type::after {
    content: none;
  }
}
.kv_btn span:first-child {
  font-family: "Kalnia", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .kv_btn span:first-child {
    font-size: min(3.2vw, 11px);
  }
}
.kv_btn span:last-child {
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .kv_btn span:last-child {
    font-size: min(3vw, 9px);
  }
}
@media (any-hover: hover) {
  .kv_btn:hover {
    background: #EA5504;
    color: #FFF;
  }
}

#intro {
  background: url(../images/intro/intro_bg.png) no-repeat center center/cover;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #intro {
    background-image: url(../images/intro/intro_bg_sp.png);
  }
}
#intro .intro {
  max-width: 1440px;
  margin-inline: auto;
  padding-block: 0 190px;
}
@media screen and (max-width: 768px) {
  #intro .intro {
    padding-block: 0 75px;
  }
}
#intro .intro_top {
  position: relative;
  padding-top: 85px;
}
@media screen and (max-width: 768px) {
  #intro .intro_top {
    padding-top: 37px;
  }
}
#intro .intro_title {
  width: 579px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  #intro .intro_title {
    max-width: 327px;
    width: 100%;
  }
}
#intro .intro_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  #intro .intro_text {
    font-size: 14px;
    line-height: 1.9;
    margin-top: 18px;
  }
}
#intro .intro_deco {
  width: 200px;
  position: absolute;
}
@media screen and (max-width: 999px) {
  #intro .intro_deco {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  #intro .intro_deco {
    width: 100px;
  }
}
#intro .intro_deco.--1 {
  top: 177px;
  left: calc(min(50vw, 770px) + max(265px, 18.958333%));
}
@media screen and (max-width: 999px) {
  #intro .intro_deco.--1 {
    top: 280px;
    left: calc(50vw + max(225px, 29%));
  }
}
@media screen and (max-width: 768px) {
  #intro .intro_deco.--1 {
    top: 148px;
    left: calc(50vw + max(116px, 30.9333333333vw));
  }
}
#intro .intro_deco.--2 {
  top: 273px;
  left: calc(min(50vw, 770px) - max(430px, 36.855555%));
}
@media screen and (max-width: 999px) {
  #intro .intro_deco.--2 {
    top: 450px;
    left: calc(50vw - max(330px, 41%));
  }
}
@media screen and (max-width: 768px) {
  #intro .intro_deco.--2 {
    top: 370px;
    left: calc(50vw - max(110px, 29.3333333333vw));
    translate: -100%;
  }
}
#intro .intro_deco.--3 {
  top: 431px;
  left: calc(min(50vw, 770px) + max(325px, 27.222222%));
}
@media screen and (max-width: 999px) {
  #intro .intro_deco.--3 {
    top: 525px;
    left: calc(50vw + max(175px, 23%));
  }
}
@media screen and (max-width: 768px) {
  #intro .intro_deco.--3 {
    top: 323px;
    left: calc(50vw + max(97px, 25.8666666667vw));
  }
  #intro .intro_deco.--3 img {
    rotate: 30deg;
  }
}
#intro .intro_deco.--4 {
  top: 577px;
  left: calc(min(50vw, 770px) - max(475px, 40.625%));
}
@media screen and (max-width: 999px) {
  #intro .intro_deco.--4 {
    top: 720px;
    left: calc(50vw - max(360px, 42%));
  }
}
@media screen and (max-width: 768px) {
  #intro .intro_deco.--4 {
    top: 646px;
    left: calc(50vw - max(84px, 22.4vw));
    translate: -100%;
  }
}
#intro .intro_deco.--5 {
  top: 688px;
  left: calc(min(50vw, 770px) + max(230px, 22.986111%));
}
@media screen and (max-width: 999px) {
  #intro .intro_deco.--5 {
    top: 800px;
    left: calc(50vw + max(225px, 29%));
  }
}
@media screen and (max-width: 768px) {
  #intro .intro_deco.--5 {
    top: 533px;
    left: calc(50vw + max(128px, 34.1333333333vw));
  }
}
#intro .intro_character_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 96px;
  margin-right: 30px;
}
@media screen and (max-width: 999px) {
  #intro .intro_character_content {
    -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-right: unset;
  }
}
@media screen and (max-width: 768px) {
  #intro .intro_character_content {
    margin-top: 68px;
  }
}
#intro .intro_character_wrap {
  min-width: 550px;
  width: 707px;
  position: relative;
}
@media screen and (max-width: 999px) {
  #intro .intro_character_wrap {
    display: contents;
  }
}
#intro .intro_character_top {
  display: contents;
}
@media screen and (max-width: 999px) {
  #intro .intro_character_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
}
#intro .intro_character_bottom {
  display: contents;
}
@media screen and (max-width: 999px) {
  #intro .intro_character_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    position: relative;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#intro .intro_character {
  width: 53.7482319661%;
  position: absolute;
}
@media screen and (max-width: 999px) {
  #intro .intro_character {
    width: 270px;
    position: unset;
    margin-inline: -20px;
  }
}
@media screen and (max-width: 768px) {
  #intro .intro_character {
    width: 175px;
  }
}
#intro .intro_character img {
  pointer-events: none;
}
#intro .intro_character.--1 {
  top: -25px;
  left: 5.374823%;
}
@media screen and (max-width: 768px) {
  #intro .intro_character.--1 {
    translate: 17% 5%;
  }
  #intro .intro_character.--1 img {
    rotate: -25deg;
  }
}
#intro .intro_character.--2 {
  top: 108px;
  left: 29.561528%;
}
@media screen and (max-width: 768px) {
  #intro .intro_character.--2 {
    translate: 0 12%;
  }
}
#intro .intro_character.--3 {
  top: -51px;
  left: 54.031117%;
}
@media screen and (max-width: 768px) {
  #intro .intro_character.--3 {
    translate: -8% 5%;
  }
}
#intro .intro_character.--4 {
  top: 266px;
  left: 2.121641%;
}
@media screen and (max-width: 999px) {
  #intro .intro_character.--4 {
    translate: 0 -10%;
  }
}
@media screen and (max-width: 768px) {
  #intro .intro_character.--4 {
    translate: -7% -5%;
  }
}
#intro .intro_character.--5 {
  top: 301px;
  left: 53.748232%;
}
@media screen and (max-width: 999px) {
  #intro .intro_character.--5 {
    translate: 0 5%;
  }
}
@media screen and (max-width: 768px) {
  #intro .intro_character.--5 {
    translate: -9% 13%;
  }
}
#intro .intro_character_text_wrap {
  width: 573px;
}
@media screen and (max-width: 999px) {
  #intro .intro_character_text_wrap {
    display: contents;
  }
}
#intro .intro_character_title {
  max-width: 520px;
  width: 100%;
}
@media screen and (max-width: 999px) {
  #intro .intro_character_title {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media screen and (max-width: 768px) {
  #intro .intro_character_title {
    max-width: 312px;
  }
}
#intro .intro_character_text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-left: 42px;
  margin-top: 32px;
}
@media screen and (max-width: 999px) {
  #intro .intro_character_text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 8px;
  }
}
@media screen and (max-width: 768px) {
  #intro .intro_character_text {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.9;
    margin-left: unset;
    text-align: center;
    margin-top: 24px;
  }
}
#intro .intro_character_info {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-left: 41px;
  margin-top: 23px;
  white-space: nowrap;
}
@media screen and (max-width: 999px) {
  #intro .intro_character_info {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    white-space: initial;
  }
}
@media screen and (max-width: 768px) {
  #intro .intro_character_info {
    font-size: min(3.7333333333vw, 14px);
    line-height: 1.8;
    letter-spacing: 0;
    text-align: center;
    margin-left: unset;
    margin-top: 16px;
  }
}
@-webkit-keyframes intro-character1 {
  0% {
    rotate: 5deg;
  }
  50% {
    rotate: 0deg;
  }
  100% {
    rotate: 5deg;
  }
}
@keyframes intro-character1 {
  0% {
    rotate: 5deg;
  }
  50% {
    rotate: 0deg;
  }
  100% {
    rotate: 5deg;
  }
}
@-webkit-keyframes intro-character2 {
  0% {
    rotate: -5deg;
  }
  50% {
    rotate: 0deg;
  }
  100% {
    rotate: -5deg;
  }
}
@keyframes intro-character2 {
  0% {
    rotate: -5deg;
  }
  50% {
    rotate: 0deg;
  }
  100% {
    rotate: -5deg;
  }
}
#intro .intro_deco.--1, #intro .intro_deco.--2, #intro .intro_deco.--5 {
  -webkit-animation: intro-character2 1s ease infinite forwards;
          animation: intro-character2 1s ease infinite forwards;
}
#intro .intro_deco.--3, #intro .intro_deco.--4 {
  -webkit-animation: intro-character1 1s ease infinite forwards;
          animation: intro-character1 1s ease infinite forwards;
}
#intro .intro_character.--1, #intro .intro_character.--3, #intro .intro_character.--4 {
  -webkit-animation: intro-character2 1s ease infinite forwards;
          animation: intro-character2 1s ease infinite forwards;
}
#intro .intro_character.--2, #intro .intro_character.--5 {
  -webkit-animation: intro-character1 1s ease infinite forwards;
          animation: intro-character1 1s ease infinite forwards;
}

.intro_deco {
  opacity: 0;
  -webkit-transform: translateY(20px) scale(0.8);
          transform: translateY(20px) scale(0.8);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.intro_deco.is-active {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

#look-book {
  color: #0A6DB7;
  margin-block: max(-5.5555555556vw, -80px);
  position: relative;
  z-index: 5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #look-book {
    margin-block: -60px -32px;
  }
}
#look-book::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #FFF2B8;
  -webkit-mask: url(../images/look-book/look-book_bg.svg?ver1.4) repeat-x center/min(100vw, 1440px) 100%;
  mask: url(../images/look-book/look-book_bg.svg?ver1.4) repeat-x center/min(100vw, 1440px) 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  #look-book::before {
    -webkit-mask: url(../images/look-book/look-book_bg_sp.svg?ver1.4) no-repeat center/100% 100%;
    mask: url(../images/look-book/look-book_bg_sp.svg?ver1.4) no-repeat center/100% 100%;
  }
}
#look-book::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: currentColor;
  -webkit-mask: url(../images/look-book/look-book_bg_line.svg?ver1.4) repeat-x center/min(100vw, 1440px) 100%;
  mask: url(../images/look-book/look-book_bg_line.svg?ver1.4) repeat-x center/min(100vw, 1440px) 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #look-book::after {
    -webkit-mask: url(../images/look-book/look-book_bg_line_sp.svg?ver1.4) repeat-x center/100% 100%;
    mask: url(../images/look-book/look-book_bg_line_sp.svg?ver1.4) repeat-x center/100% 100%;
  }
}
#look-book:has(.slick-current .--1) {
  color: #0A6DB7;
}
#look-book:has(.slick-current .--1)::before {
  background-color: #FFF2B8;
}
#look-book:has(.slick-current .--2) {
  color: #E83820;
}
#look-book:has(.slick-current .--2)::before {
  background-color: #D6EACE;
}
#look-book:has(.slick-current .--3) {
  color: #2E835A;
}
#look-book:has(.slick-current .--3)::before {
  background-color: #FADBDA;
}
#look-book:has(.slick-current .--4) {
  color: #2E835A;
}
#look-book:has(.slick-current .--4)::before {
  background-color: #FCE3CD;
}
#look-book:has(.slick-current .--5) {
  color: #2E835A;
}
#look-book:has(.slick-current .--5)::before {
  background-color: #F9D1CB;
}
#look-book .look-book {
  max-width: min(100vw, 1440px);
  margin-inline: auto;
  padding-block: min(10.3472222222vw, 149px) min(10.9027777778vw, 157px);
  position: relative;
}
@media screen and (max-width: 768px) {
  #look-book .look-book {
    padding-block: 95px 68px;
  }
}
#look-book .look-book_title_wrap {
  max-width: min(77.5vw, 1116px);
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: min(4.1666666667vw, 60px);
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_title_wrap {
    max-width: min(87.2vw, 500px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 16px;
  }
}
#look-book .look-book .categoryTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 400px;
  width: 513px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  #look-book .look-book .categoryTitle {
    max-width: 313px;
    min-width: unset;
    width: 100%;
  }
}
#look-book .look-book .categoryTitle polygon,
#look-book .look-book .categoryTitle path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  fill: currentColor;
}
@media screen and (max-width: 768px) {
  #look-book .look-book .categoryTitle.sp-only {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
#look-book .look-book .section_jp_title {
  position: absolute;
  top: 36px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #look-book .look-book .section_jp_title {
    top: 13px;
    right: 18px;
    width: 56px;
    line-height: 1.3;
    text-align: left;
  }
}
#look-book .look-book_text {
  width: 520px;
  font-size: clamp(12px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 2;
  margin-bottom: min(0.2083333333vw, 3px);
}
@media screen and (max-width: 768px) {
  #look-book .look-book_text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: unset;
  }
}
#look-book .look-book_slider {
  margin-top: min(3.4722222222vw, 50px);
}
@media screen and (max-width: 768px) {
  #look-book .look-book_slider {
    max-width: 500px;
    margin-inline: auto;
    margin-top: 140px;
  }
}
#look-book .slick-list,
#look-book .slick-track {
  overflow: visible !important;
}
#look-book .look-book_main {
  position: relative;
}
#look-book .look-book_main-img {
  width: min(65.9722222222vw, 950px);
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  margin-top: min(-5vw, -72px);
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main-img {
    top: 5%;
    width: 426px;
  }
}
#look-book .look-book_bg-img {
  max-width: min(55.5555555556vw, 800px);
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_bg-img {
    max-width: unset;
    width: 348px;
    position: relative;
    z-index: -2;
  }
}
#look-book .look-book_name {
  width: clamp(650px, 76.3888888889vw, 1100px);
  position: absolute;
  top: min(46.4583333333vw, 669px);
  left: 50%;
  translate: -50%;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_name {
    width: 375px;
    top: calc(100% + 50px);
  }
}
#look-book .look-book_item {
  position: absolute;
}
#look-book .look-book_main.--1 .look-book_item.--01 {
  width: 22.569%;
  top: 45.455%;
  left: 8.681%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--1 .look-book_item.--01 {
    width: 138px;
    top: 247px;
    left: 0%;
    z-index: 3;
  }
}
#look-book .look-book_main.--1 .look-book_item.--02 {
  width: 12.292%;
  top: 5.568%;
  left: 75.625%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--1 .look-book_item.--02 {
    width: 127px;
    top: -86px;
    left: 60.27%;
    z-index: -3;
  }
}
#look-book .look-book_main.--1 .look-book_item.--03 {
  width: 17.847%;
  top: 0%;
  left: 11.458%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--1 .look-book_item.--03 {
    width: 157px;
    top: -84px;
    left: 14.93%;
    z-index: -1;
  }
}
#look-book .look-book_main.--1 .look-book_item.--04 {
  width: 19.722%;
  top: 38.977%;
  left: 70.972%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--1 .look-book_item.--04 {
    width: 212px;
    top: 308px;
    left: 40.53%;
  }
}
#look-book .look-book_main.--1 .look-book_item.--05 {
  width: 12.917%;
  top: 27.841%;
  left: 65.139%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--1 .look-book_item.--05 {
    width: 108px;
    top: 231px;
    left: 2.4%;
  }
}
#look-book .look-book_main.--1 .look-book_item.--06 {
  width: 17.847%;
  top: 7.386%;
  left: 57.778%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--1 .look-book_item.--06 {
    width: 52px;
    top: 98px;
    left: 83.47%;
  }
}
#look-book .look-book_main.--2 .look-book_item.--01 {
  width: 23.472%;
  top: 41.477%;
  left: 71.042%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--2 .look-book_item.--01 {
    width: 148px;
    top: 228px;
    left: 58.67%;
  }
}
#look-book .look-book_main.--2 .look-book_item.--02 {
  width: 14.583%;
  top: 63.068%;
  left: 10.694%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--2 .look-book_item.--02 {
    width: 116px;
    top: -117px;
    left: 16.53%;
  }
}
#look-book .look-book_main.--2 .look-book_item.--03 {
  width: 19.375%;
  top: 6.25%;
  left: 66.667%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--2 .look-book_item.--03 {
    width: 144px;
    top: -52px;
    left: 56.53%;
    z-index: -1;
  }
}
#look-book .look-book_main.--2 .look-book_item.--04 {
  width: 28.403%;
  top: 5.568%;
  left: 6.111%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--2 .look-book_item.--04 {
    width: 177px;
    top: 333px;
    left: 5.6%;
  }
}
#look-book .look-book_main.--2 .look-book_item.--05 {
  width: 11.458%;
  top: 56.25%;
  left: 18.194%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--2 .look-book_item.--05 {
    width: 96px;
    top: 22px;
    left: 10.67%;
  }
}
#look-book .look-book_main.--2 .look-book_item.--06 {
  width: 23.958%;
  top: 40.909%;
  left: 10%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--2 .look-book_item.--06 {
    width: 52px;
    top: 184px;
    left: 8%;
  }
}
#look-book .look-book_main.--3 .look-book_item.--01 {
  width: 24.028%;
  top: -5.227%;
  left: 68.75%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--3 .look-book_item.--01 {
    width: 146px;
    top: 267px;
    left: 1.07%;
  }
}
#look-book .look-book_main.--3 .look-book_item.--02 {
  width: 15.069%;
  top: 52.727%;
  left: 73.542%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--3 .look-book_item.--02 {
    z-index: -3;
    width: 136px;
    top: -118px;
    left: 11.2%;
  }
}
#look-book .look-book_main.--3 .look-book_item.--03 {
  width: 19.306%;
  top: 0%;
  left: 13.056%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--3 .look-book_item.--03 {
    width: 138px;
    top: -92px;
    left: 58.4%;
    z-index: -1;
  }
}
#look-book .look-book_main.--3 .look-book_item.--04 {
  width: 22.431%;
  top: 31.705%;
  left: 8.264%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--3 .look-book_item.--04 {
    width: 133px;
    top: 321px;
    left: 61.6%;
  }
}
#look-book .look-book_main.--3 .look-book_item.--05 {
  width: 10.069%;
  top: 62.5%;
  left: 11.597%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--3 .look-book_item.--05 {
    width: 83px;
    top: 80px;
    left: 76%;
    z-index: -1;
  }
}
#look-book .look-book_main.--3 .look-book_item.--06 {
  width: 17.847%;
  top: 36.591%;
  left: 68.75%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--3 .look-book_item.--06 {
    width: 52px;
    top: 160px;
    left: 78.67%;
  }
}
#look-book .look-book_main.--4 .look-book_item.--01 {
  width: 27.014%;
  top: 36.591%;
  left: 6.181%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--4 .look-book_item.--01 {
    width: 165px;
    top: 218px;
    left: -4.27%;
  }
}
#look-book .look-book_main.--4 .look-book_item.--02 {
  width: 19.375%;
  top: -3.864%;
  left: 66.667%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--4 .look-book_item.--02 {
    width: 118px;
    top: -91px;
    left: 67.2%;
  }
}
#look-book .look-book_main.--4 .look-book_item.--03 {
  width: 19.306%;
  top: 34.091%;
  left: 72.083%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--4 .look-book_item.--03 {
    width: 139px;
    top: -93px;
    left: 13.07%;
    z-index: -1;
  }
}
#look-book .look-book_main.--4 .look-book_item.--04 {
  width: 27.431%;
  top: 58.182%;
  left: 66.111%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--4 .look-book_item.--04 {
    width: 209px;
    top: 337px;
    left: 43.2%;
  }
}
#look-book .look-book_main.--4 .look-book_item.--05 {
  width: 11.042%;
  top: 21.705%;
  left: 22.361%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--4 .look-book_item.--05 {
    width: 91px;
    top: 16px;
    left: 9.33%;
  }
}
#look-book .look-book_main.--4 .look-book_item.--06 {
  width: 20.139%;
  top: 6.591%;
  left: 15.069%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--4 .look-book_item.--06 {
    width: 52px;
    top: 201px;
    left: 79.73%;
  }
}
#look-book .look-book_main.--5 .look-book_item.--01 {
  width: 26.319%;
  top: 4.205%;
  left: 65.417%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--5 .look-book_item.--01 {
    width: 178px;
    top: -119px;
    left: 54.4%;
    z-index: -3;
  }
}
#look-book .look-book_main.--5 .look-book_item.--02 {
  width: 16.111%;
  top: 33.977%;
  left: 19.097%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--5 .look-book_item.--02 {
    width: 158px;
    top: 296px;
    left: 7.47%;
  }
}
#look-book .look-book_main.--5 .look-book_item.--03 {
  width: 21.042%;
  top: 58.295%;
  left: 9.306%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--5 .look-book_item.--03 {
    width: 150px;
    top: -70px;
    left: 10.13%;
  }
}
#look-book .look-book_main.--5 .look-book_item.--04 {
  width: 7.431%;
  top: 44.091%;
  left: 78.611%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--5 .look-book_item.--04 {
    width: 131px;
    top: 310px;
    left: 62.13%;
  }
}
#look-book .look-book_main.--5 .look-book_item.--05 {
  width: 10.486%;
  top: 21.023%;
  left: 18.472%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--5 .look-book_item.--05 {
    width: 87px;
    top: 69px;
    left: 74.4%;
  }
}
#look-book .look-book_main.--5 .look-book_item.--06 {
  width: 19.861%;
  top: 4.205%;
  left: 18.472%;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_main.--5 .look-book_item.--06 {
    width: 52px;
    top: 168px;
    left: 7.2%;
  }
}
@-webkit-keyframes look-book-item {
  0% {
    opacity: 0;
    scale: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
@keyframes look-book-item {
  0% {
    opacity: 0;
    scale: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
#look-book .slick-active .look-book_main-img {
  -webkit-animation: look-book-item 0.5s ease 0.5s 1 both;
          animation: look-book-item 0.5s ease 0.5s 1 both;
}
#look-book .slick-active .look-book_name {
  -webkit-animation: look-book-item 0.5s ease 0.7s 1 both;
          animation: look-book-item 0.5s ease 0.7s 1 both;
}
#look-book .slick-active .look-book_item.--01 {
  -webkit-animation: look-book-item 0.5s ease 1s 1 both;
          animation: look-book-item 0.5s ease 1s 1 both;
}
#look-book .slick-active .look-book_item.--02 {
  -webkit-animation: look-book-item 0.5s ease 1.1s 1 both;
          animation: look-book-item 0.5s ease 1.1s 1 both;
}
#look-book .slick-active .look-book_item.--03 {
  -webkit-animation: look-book-item 0.5s ease 1.2s 1 both;
          animation: look-book-item 0.5s ease 1.2s 1 both;
}
#look-book .slick-active .look-book_item.--04 {
  -webkit-animation: look-book-item 0.5s ease 1.3s 1 both;
          animation: look-book-item 0.5s ease 1.3s 1 both;
}
#look-book .slick-active .look-book_item.--05 {
  -webkit-animation: look-book-item 0.5s ease 1.4s 1 both;
          animation: look-book-item 0.5s ease 1.4s 1 both;
}
#look-book .slick-active .look-book_item.--06 {
  -webkit-animation: look-book-item 0.5s ease 1.5s 1 both;
          animation: look-book-item 0.5s ease 1.5s 1 both;
}
#look-book .slick-prev,
#look-book .slick-next {
  color: inherit;
  width: 56px !important;
  height: 56px !important;
  background: #000;
  top: unset !important;
  bottom: -44px !important;
  -webkit-transform: unset !important;
          transform: unset !important;
  background-color: currentColor;
  -webkit-mask: url(../images/look-book/look-book_arrow.svg) no-repeat center/contain;
  mask: url(../images/look-book/look-book_arrow.svg) no-repeat center/contain;
}
#look-book .slick-prev::before,
#look-book .slick-next::before {
  display: none;
}
@media screen and (max-width: 768px) {
  #look-book .slick-prev,
  #look-book .slick-next {
    width: 32px !important;
    height: 32px !important;
    bottom: -138px !important;
  }
}
#look-book .slick-prev {
  left: calc(50% - 94px);
  translate: -100% 100% !important;
}
@media screen and (max-width: 768px) {
  #look-book .slick-prev {
    left: calc(50% - 55px);
  }
}
#look-book .slick-next {
  right: calc(50% - 94px);
  translate: 100% 100% !important;
  -webkit-transform: scaleX(-1) !important;
          transform: scaleX(-1) !important;
}
@media screen and (max-width: 768px) {
  #look-book .slick-next {
    right: calc(50% - 55px);
  }
}
#look-book .look-book_slider-counter {
  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;
  font-family: "Bigshot One", serif;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_slider-counter {
    margin-top: 145px;
  }
}
#look-book .look-book_slider-counter .js-now-count {
  width: 40px;
  text-align: right;
  font-size: 34px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_slider-counter .js-now-count {
    width: 20px;
    font-size: 18px;
    line-height: 1;
  }
}
#look-book .look-book_slider-counter .separator {
  width: 40px;
  height: 1px;
  rotate: 135deg;
  background: currentColor;
  aspect-ratio: 1/1;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  margin-inline: 9px 6px;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_slider-counter .separator {
    width: 16px;
    rotate: 106deg;
    margin-inline: 12px 8px;
  }
}
#look-book .look-book_slider-counter .js-all-count {
  width: 40px;
  text-align: left;
  font-size: 26px;
  line-height: 1.4;
  margin-top: 3px;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_slider-counter .js-all-count {
    width: 20px;
    font-size: 14px;
    line-height: 1;
  }
}
#look-book .look-book_number {
  font-family: "Kalnia", serif;
  font-size: clamp(12px, 1.25vw, 18px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
  position: absolute;
  top: min(61.3194444444vw, 883px);
  left: min(4.0277777778vw, 58px);
  rotate: 90deg;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
@media screen and (max-width: 768px) {
  #look-book .look-book_number {
    font-size: 13px;
    line-height: 1;
    top: 331px;
    left: 12px;
  }
}

#shop-list {
  background: url(../images/shop-list/shop-list_bg.png) no-repeat center center/cover;
}
#shop-list .shop-list {
  max-width: 1440px;
  margin-inline: auto;
  padding-block: 158px 121px;
  padding-inline: 30px;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list {
    padding-block: 89px 65px;
    padding-inline: unset;
  }
}
#shop-list .shop-list_title_wrap {
  max-width: 1116px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  color: #0A6DB7;
  position: relative;
}
@media screen and (max-width: 999px) {
  #shop-list .shop-list_title_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: unset;
  }
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_title_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#shop-list .shop-list .categoryTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 467px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list .categoryTitle {
    max-width: 274px;
  }
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list .categoryTitle.sp-only {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
#shop-list .shop-list .section_jp_title {
  position: absolute;
  top: 90%;
  left: 0;
}
@media screen and (max-width: 999px) {
  #shop-list .shop-list .section_jp_title {
    position: unset;
  }
}
#shop-list .shop-list_text {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  margin-top: 5px;
}
@media screen and (max-width: 999px) {
  #shop-list .shop-list_text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_text {
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
    margin-top: 40px;
  }
}
#shop-list .shop-list_main {
  max-width: 1158px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 7px;
  margin-top: 25px;
}
@media screen and (max-width: 999px) {
  #shop-list .shop-list_main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
#shop-list .shop-list_action_wrap {
  min-width: 445px;
  width: 484px;
  margin-top: 55px;
}
@media screen and (max-width: 999px) {
  #shop-list .shop-list_action_wrap {
    width: 100%;
    margin-top: unset;
  }
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_action_wrap {
    min-width: unset;
    max-width: 100%;
    padding-inline: 10px;
  }
}
#shop-list .shop-list_info_text_wrap {
  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;
  gap: 16px;
  padding: 25px 10px;
  color: #0A6DB7;
  border: 2px dashed currentColor;
  border-radius: 16px;
}
@media screen and (max-width: 999px) {
  #shop-list .shop-list_info_text_wrap {
    width: 550px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_info_text_wrap {
    max-width: 327px;
    width: 100%;
    padding: 24px 25px;
    gap: 10px;
  }
}
#shop-list .shop-list_info_icon {
  width: 79px;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_info_icon {
    width: 50px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
#shop-list .shop-list_info_text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_info_text {
    font-size: 12px;
  }
}
#shop-list .shop-list_character_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, 130px);
  gap: 43px 24px;
  margin-top: 50px;
  margin-left: 5px;
}
@media screen and (max-width: 999px) {
  #shop-list .shop-list_character_wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 805px) {
  #shop-list .shop-list_character_wrap {
    grid-template-columns: 130px 130px 130px;
  }
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_character_wrap {
    grid-template-columns: repeat(auto-fit, 80px);
    gap: 32px 16px;
    padding-inline: 24px;
    margin-top: 32px;
  }
}
@media screen and (max-width: 540px) {
  #shop-list .shop-list_character_wrap {
    grid-template-columns: 80px 80px 80px;
  }
}
#shop-list .shop-list_character {
  cursor: pointer;
  position: relative;
  z-index: 5;
}
#shop-list .shop-list_character::after {
  content: "";
  width: 70px;
  aspect-ratio: 70/30;
  background: no-repeat center center/contain;
  position: absolute;
  top: 120px;
  left: 50%;
  translate: -50%;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_character::after {
    width: 60px;
    top: 72px;
  }
}
#shop-list .shop-list_character span {
  display: block;
  overflow: hidden;
  border-radius: 50%;
  outline: 4px solid currentColor;
}
#shop-list .shop-list_character img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#shop-list .shop-list_character.--1 {
  color: #0A6DB7;
}
#shop-list .shop-list_character.--1::after {
  background-image: url(../images/shop-list/shop-list_character_name01.png);
}
#shop-list .shop-list_character.--2 {
  color: #E83820;
}
#shop-list .shop-list_character.--2::after {
  background-image: url(../images/shop-list/shop-list_character_name02.png);
}
#shop-list .shop-list_character.--3 {
  color: #2E835A;
}
#shop-list .shop-list_character.--3::after {
  background-image: url(../images/shop-list/shop-list_character_name03.png);
}
#shop-list .shop-list_character.--4 {
  color: #2E835A;
}
#shop-list .shop-list_character.--4::after {
  background-image: url(../images/shop-list/shop-list_character_name04.png);
}
#shop-list .shop-list_character.--5 {
  color: #2E835A;
}
#shop-list .shop-list_character.--5::after {
  background-image: url(../images/shop-list/shop-list_character_name05.png);
}
@media (any-hover: hover) {
  #shop-list .shop-list_character:hover span {
    outline-width: 6px;
  }
  #shop-list .shop-list_character:hover img {
    scale: 1.1;
  }
}
#shop-list .shop-list_character.is-active span {
  outline-width: 6px;
}
#shop-list .shop-list_character.is-active img {
  scale: 1.1;
}
#shop-list .shop-list_map {
  width: 645px;
  position: relative;
}
@media screen and (max-width: 999px) {
  #shop-list .shop-list_map {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_map_img {
    margin-top: 11px;
  }
}
#shop-list .shop-list_modal_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  max-width: unset;
  margin: unset;
}
#shop-list .shop-list_modal_box .js-modal-open3 {
  width: 3.1007751938%;
  translate: -50% -50%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3 {
    width: 5.8047493404%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3 span:first-child {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background: #FFF no-repeat center center/contain;
  border: 3px #0A6DB7 solid;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3 span:first-child {
    border-width: 2px;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3 span:first-child::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
#shop-list .shop-list_modal_box .js-modal-open3 span:last-child {
  font-size: min(1.3008130081vw, 16px);
  font-weight: 500;
  line-height: 1;
  position: absolute;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
@media screen and (max-width: 999px) {
  #shop-list .shop-list_modal_box .js-modal-open3 span:last-child {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3 span:last-child {
    font-size: 2.1333333333vw;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--top span:last-child {
  top: -6px;
  left: 50%;
  translate: -50% -100%;
}
#shop-list .shop-list_modal_box .js-modal-open3.--bottom span:last-child {
  top: calc(100% + 6px);
  left: 50%;
  translate: -50%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--bottom span:last-child {
    top: calc(100% + 3px);
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--left span:last-child {
  top: 50%;
  left: -6px;
  translate: -100% -50%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--left span:last-child {
    left: -3px;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--right span:last-child {
  top: 50%;
  left: calc(100% + 6px);
  translate: 0 -50%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--right span:last-child {
    left: calc(100% + 3px);
  }
}
@media (any-hover: hover) {
  #shop-list .shop-list_modal_box .js-modal-open3:hover span:first-child::after {
    background: #FFF;
    scale: 1.8;
    border: 2px solid #0A6DB7;
    -webkit-transition: scale 0.3s ease, border 0.2s ease 0.1s;
    transition: scale 0.3s ease, border 0.2s ease 0.1s;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active span:first-child {
  scale: 2.5;
  border: unset;
  outline: 2px solid;
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active span:first-child::after {
  display: none;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active span:first-child {
    scale: 1.4;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active span:last-child {
  color: #ffff00;
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop1"] span:first-child {
  outline-color: #2E835A;
  background-image: url(../images/shop-list/shop-list_map_character_04.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop1"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #2E835A, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #2E835A, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #2E835A, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #2E835A, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #2E835A, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #2E835A, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #2E835A, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #2E835A, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #2E835A, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #2E835A, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #2E835A, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #2E835A, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #2E835A, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #2E835A, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #2E835A, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #2E835A;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop1"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #2E835A, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #2E835A, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #2E835A, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #2E835A, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #2E835A, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #2E835A, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #2E835A, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #2E835A, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #2E835A, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #2E835A, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #2E835A, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #2E835A, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #2E835A, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #2E835A, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #2E835A, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #2E835A;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop2"] span:first-child {
  outline-color: #2E835A;
  background-image: url(../images/shop-list/shop-list_map_character_05.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop2"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #2E835A, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #2E835A, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #2E835A, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #2E835A, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #2E835A, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #2E835A, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #2E835A, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #2E835A, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #2E835A, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #2E835A, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #2E835A, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #2E835A, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #2E835A, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #2E835A, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #2E835A, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #2E835A;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop2"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #2E835A, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #2E835A, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #2E835A, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #2E835A, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #2E835A, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #2E835A, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #2E835A, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #2E835A, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #2E835A, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #2E835A, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #2E835A, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #2E835A, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #2E835A, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #2E835A, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #2E835A, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #2E835A;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop3"] span:first-child {
  outline-color: #E83820;
  background-image: url(../images/shop-list/shop-list_map_character_02.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop3"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #E83820, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #E83820, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #E83820, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #E83820, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #E83820, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #E83820, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #E83820, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #E83820, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #E83820, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #E83820, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #E83820, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #E83820, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #E83820, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #E83820, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #E83820, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #E83820;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop3"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #E83820, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #E83820, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #E83820, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #E83820, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #E83820, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #E83820, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #E83820, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #E83820, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #E83820, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #E83820, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #E83820, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #E83820, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #E83820, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #E83820, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #E83820, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #E83820;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop4"] span:first-child {
  outline-color: #2E835A;
  background-image: url(../images/shop-list/shop-list_map_character_03.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop4"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #2E835A, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #2E835A, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #2E835A, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #2E835A, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #2E835A, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #2E835A, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #2E835A, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #2E835A, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #2E835A, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #2E835A, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #2E835A, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #2E835A, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #2E835A, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #2E835A, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #2E835A, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #2E835A;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop4"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #2E835A, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #2E835A, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #2E835A, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #2E835A, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #2E835A, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #2E835A, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #2E835A, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #2E835A, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #2E835A, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #2E835A, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #2E835A, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #2E835A, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #2E835A, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #2E835A, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #2E835A, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #2E835A;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop5"] span:first-child {
  outline-color: #2E835A;
  background-image: url(../images/shop-list/shop-list_map_character_03.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop5"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #2E835A, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #2E835A, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #2E835A, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #2E835A, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #2E835A, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #2E835A, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #2E835A, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #2E835A, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #2E835A, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #2E835A, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #2E835A, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #2E835A, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #2E835A, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #2E835A, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #2E835A, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #2E835A;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop5"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #2E835A, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #2E835A, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #2E835A, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #2E835A, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #2E835A, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #2E835A, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #2E835A, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #2E835A, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #2E835A, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #2E835A, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #2E835A, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #2E835A, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #2E835A, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #2E835A, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #2E835A, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #2E835A;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop6"] span:first-child {
  outline-color: #2E835A;
  background-image: url(../images/shop-list/shop-list_map_character_03.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop6"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #2E835A, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #2E835A, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #2E835A, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #2E835A, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #2E835A, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #2E835A, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #2E835A, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #2E835A, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #2E835A, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #2E835A, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #2E835A, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #2E835A, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #2E835A, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #2E835A, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #2E835A, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #2E835A;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop6"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #2E835A, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #2E835A, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #2E835A, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #2E835A, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #2E835A, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #2E835A, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #2E835A, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #2E835A, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #2E835A, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #2E835A, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #2E835A, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #2E835A, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #2E835A, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #2E835A, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #2E835A, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #2E835A;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop7"] span:first-child {
  outline-color: #E83820;
  background-image: url(../images/shop-list/shop-list_map_character_02.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop7"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #E83820, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #E83820, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #E83820, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #E83820, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #E83820, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #E83820, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #E83820, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #E83820, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #E83820, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #E83820, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #E83820, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #E83820, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #E83820, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #E83820, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #E83820, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #E83820;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop7"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #E83820, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #E83820, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #E83820, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #E83820, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #E83820, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #E83820, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #E83820, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #E83820, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #E83820, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #E83820, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #E83820, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #E83820, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #E83820, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #E83820, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #E83820, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #E83820;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop8"] span:first-child {
  outline-color: #2E835A;
  background-image: url(../images/shop-list/shop-list_map_character_05.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop8"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #2E835A, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #2E835A, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #2E835A, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #2E835A, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #2E835A, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #2E835A, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #2E835A, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #2E835A, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #2E835A, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #2E835A, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #2E835A, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #2E835A, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #2E835A, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #2E835A, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #2E835A, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #2E835A;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop8"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #2E835A, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #2E835A, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #2E835A, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #2E835A, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #2E835A, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #2E835A, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #2E835A, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #2E835A, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #2E835A, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #2E835A, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #2E835A, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #2E835A, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #2E835A, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #2E835A, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #2E835A, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #2E835A;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop9"] span:first-child {
  outline-color: #0A6DB7;
  background-image: url(../images/shop-list/shop-list_map_character_01.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop9"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #0A6DB7, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #0A6DB7, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #0A6DB7, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #0A6DB7, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #0A6DB7, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #0A6DB7, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #0A6DB7, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #0A6DB7, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #0A6DB7, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #0A6DB7, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #0A6DB7, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #0A6DB7, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #0A6DB7, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #0A6DB7, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #0A6DB7, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #0A6DB7;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop9"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #0A6DB7, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #0A6DB7, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #0A6DB7, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #0A6DB7, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #0A6DB7, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #0A6DB7, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #0A6DB7, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #0A6DB7, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #0A6DB7, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #0A6DB7, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #0A6DB7, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #0A6DB7, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #0A6DB7, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #0A6DB7, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #0A6DB7, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #0A6DB7;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop10"] span:first-child {
  outline-color: #E83820;
  background-image: url(../images/shop-list/shop-list_map_character_02.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop10"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #E83820, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #E83820, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #E83820, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #E83820, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #E83820, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #E83820, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #E83820, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #E83820, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #E83820, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #E83820, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #E83820, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #E83820, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #E83820, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #E83820, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #E83820, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #E83820;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop10"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #E83820, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #E83820, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #E83820, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #E83820, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #E83820, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #E83820, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #E83820, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #E83820, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #E83820, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #E83820, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #E83820, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #E83820, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #E83820, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #E83820, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #E83820, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #E83820;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop11"] span:first-child {
  outline-color: #0A6DB7;
  background-image: url(../images/shop-list/shop-list_map_character_01.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop11"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #0A6DB7, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #0A6DB7, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #0A6DB7, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #0A6DB7, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #0A6DB7, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #0A6DB7, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #0A6DB7, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #0A6DB7, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #0A6DB7, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #0A6DB7, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #0A6DB7, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #0A6DB7, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #0A6DB7, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #0A6DB7, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #0A6DB7, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #0A6DB7;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop11"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #0A6DB7, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #0A6DB7, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #0A6DB7, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #0A6DB7, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #0A6DB7, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #0A6DB7, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #0A6DB7, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #0A6DB7, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #0A6DB7, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #0A6DB7, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #0A6DB7, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #0A6DB7, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #0A6DB7, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #0A6DB7, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #0A6DB7, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #0A6DB7;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop12"] span:first-child {
  outline-color: #2E835A;
  background-image: url(../images/shop-list/shop-list_map_character_05.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop12"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #2E835A, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #2E835A, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #2E835A, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #2E835A, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #2E835A, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #2E835A, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #2E835A, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #2E835A, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #2E835A, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #2E835A, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #2E835A, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #2E835A, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #2E835A, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #2E835A, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #2E835A, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #2E835A;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop12"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #2E835A, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #2E835A, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #2E835A, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #2E835A, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #2E835A, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #2E835A, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #2E835A, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #2E835A, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #2E835A, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #2E835A, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #2E835A, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #2E835A, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #2E835A, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #2E835A, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #2E835A, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #2E835A;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop13"] span:first-child {
  outline-color: #2E835A;
  background-image: url(../images/shop-list/shop-list_map_character_04.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop13"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #2E835A, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #2E835A, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #2E835A, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #2E835A, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #2E835A, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #2E835A, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #2E835A, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #2E835A, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #2E835A, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #2E835A, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #2E835A, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #2E835A, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #2E835A, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #2E835A, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #2E835A, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #2E835A;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop13"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #2E835A, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #2E835A, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #2E835A, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #2E835A, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #2E835A, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #2E835A, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #2E835A, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #2E835A, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #2E835A, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #2E835A, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #2E835A, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #2E835A, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #2E835A, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #2E835A, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #2E835A, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #2E835A;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop14"] span:first-child {
  outline-color: #2E835A;
  background-image: url(../images/shop-list/shop-list_map_character_05.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop14"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #2E835A, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #2E835A, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #2E835A, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #2E835A, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #2E835A, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #2E835A, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #2E835A, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #2E835A, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #2E835A, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #2E835A, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #2E835A, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #2E835A, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #2E835A, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #2E835A, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #2E835A, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #2E835A;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop14"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #2E835A, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #2E835A, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #2E835A, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #2E835A, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #2E835A, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #2E835A, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #2E835A, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #2E835A, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #2E835A, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #2E835A, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #2E835A, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #2E835A, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #2E835A, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #2E835A, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #2E835A, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #2E835A;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop15"] span:first-child {
  outline-color: #2E835A;
  background-image: url(../images/shop-list/shop-list_map_character_04.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop15"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #2E835A, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #2E835A, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #2E835A, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #2E835A, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #2E835A, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #2E835A, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #2E835A, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #2E835A, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #2E835A, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #2E835A, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #2E835A, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #2E835A, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #2E835A, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #2E835A, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #2E835A, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #2E835A;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop15"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #2E835A, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #2E835A, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #2E835A, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #2E835A, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #2E835A, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #2E835A, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #2E835A, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #2E835A, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #2E835A, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #2E835A, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #2E835A, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #2E835A, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #2E835A, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #2E835A, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #2E835A, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #2E835A;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop16"] span:first-child {
  outline-color: #2E835A;
  background-image: url(../images/shop-list/shop-list_map_character_04.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop16"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #2E835A, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #2E835A, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #2E835A, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #2E835A, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #2E835A, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #2E835A, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #2E835A, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #2E835A, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #2E835A, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #2E835A, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #2E835A, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #2E835A, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #2E835A, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #2E835A, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #2E835A, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #2E835A;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop16"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #2E835A, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #2E835A, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #2E835A, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #2E835A, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #2E835A, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #2E835A, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #2E835A, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #2E835A, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #2E835A, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #2E835A, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #2E835A, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #2E835A, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #2E835A, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #2E835A, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #2E835A, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #2E835A;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop17"] span:first-child {
  outline-color: #2E835A;
  background-image: url(../images/shop-list/shop-list_map_character_03.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop17"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #2E835A, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #2E835A, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #2E835A, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #2E835A, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #2E835A, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #2E835A, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #2E835A, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #2E835A, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #2E835A, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #2E835A, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #2E835A, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #2E835A, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #2E835A, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #2E835A, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #2E835A, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #2E835A;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop17"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #2E835A, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #2E835A, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #2E835A, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #2E835A, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #2E835A, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #2E835A, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #2E835A, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #2E835A, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #2E835A, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #2E835A, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #2E835A, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #2E835A, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #2E835A, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #2E835A, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #2E835A, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #2E835A;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop18"] span:first-child {
  outline-color: #0A6DB7;
  background-image: url(../images/shop-list/shop-list_map_character_01.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop18"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #0A6DB7, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #0A6DB7, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #0A6DB7, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #0A6DB7, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #0A6DB7, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #0A6DB7, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #0A6DB7, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #0A6DB7, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #0A6DB7, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #0A6DB7, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #0A6DB7, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #0A6DB7, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #0A6DB7, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #0A6DB7, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #0A6DB7, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #0A6DB7;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop18"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #0A6DB7, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #0A6DB7, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #0A6DB7, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #0A6DB7, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #0A6DB7, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #0A6DB7, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #0A6DB7, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #0A6DB7, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #0A6DB7, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #0A6DB7, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #0A6DB7, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #0A6DB7, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #0A6DB7, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #0A6DB7, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #0A6DB7, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #0A6DB7;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop19"] span:first-child {
  outline-color: #E83820;
  background-image: url(../images/shop-list/shop-list_map_character_02.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop19"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #E83820, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #E83820, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #E83820, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #E83820, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #E83820, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #E83820, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #E83820, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #E83820, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #E83820, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #E83820, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #E83820, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #E83820, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #E83820, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #E83820, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #E83820, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #E83820;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop19"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #E83820, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #E83820, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #E83820, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #E83820, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #E83820, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #E83820, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #E83820, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #E83820, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #E83820, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #E83820, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #E83820, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #E83820, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #E83820, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #E83820, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #E83820, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #E83820;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop20"] span:first-child {
  outline-color: #0A6DB7;
  background-image: url(../images/shop-list/shop-list_map_character_01.png?ver1.1);
}
#shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop20"] span:last-child {
  text-shadow: calc(sin(22.5deg) * 3px) calc(cos(22.5deg) * 3px) 0 #0A6DB7, calc(sin(45deg) * 3px) calc(cos(45deg) * 3px) 0 #0A6DB7, calc(sin(67.5deg) * 3px) calc(cos(67.5deg) * 3px) 0 #0A6DB7, calc(sin(90deg) * 3px) calc(cos(90deg) * 3px) 0 #0A6DB7, calc(sin(112.5deg) * 3px) calc(cos(112.5deg) * 3px) 0 #0A6DB7, calc(sin(135deg) * 3px) calc(cos(135deg) * 3px) 0 #0A6DB7, calc(sin(157.5deg) * 3px) calc(cos(157.5deg) * 3px) 0 #0A6DB7, calc(sin(180deg) * 3px) calc(cos(180deg) * 3px) 0 #0A6DB7, calc(sin(202.5deg) * 3px) calc(cos(202.5deg) * 3px) 0 #0A6DB7, calc(sin(225deg) * 3px) calc(cos(225deg) * 3px) 0 #0A6DB7, calc(sin(247.5deg) * 3px) calc(cos(247.5deg) * 3px) 0 #0A6DB7, calc(sin(270deg) * 3px) calc(cos(270deg) * 3px) 0 #0A6DB7, calc(sin(292.5deg) * 3px) calc(cos(292.5deg) * 3px) 0 #0A6DB7, calc(sin(315deg) * 3px) calc(cos(315deg) * 3px) 0 #0A6DB7, calc(sin(337.5deg) * 3px) calc(cos(337.5deg) * 3px) 0 #0A6DB7, calc(sin(360deg) * 3px) calc(cos(360deg) * 3px) 0 #0A6DB7;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.is-active[data-target="#shop20"] span:last-child {
    text-shadow: calc(sin(22.5deg) * 2px) calc(cos(22.5deg) * 2px) 0 #0A6DB7, calc(sin(45deg) * 2px) calc(cos(45deg) * 2px) 0 #0A6DB7, calc(sin(67.5deg) * 2px) calc(cos(67.5deg) * 2px) 0 #0A6DB7, calc(sin(90deg) * 2px) calc(cos(90deg) * 2px) 0 #0A6DB7, calc(sin(112.5deg) * 2px) calc(cos(112.5deg) * 2px) 0 #0A6DB7, calc(sin(135deg) * 2px) calc(cos(135deg) * 2px) 0 #0A6DB7, calc(sin(157.5deg) * 2px) calc(cos(157.5deg) * 2px) 0 #0A6DB7, calc(sin(180deg) * 2px) calc(cos(180deg) * 2px) 0 #0A6DB7, calc(sin(202.5deg) * 2px) calc(cos(202.5deg) * 2px) 0 #0A6DB7, calc(sin(225deg) * 2px) calc(cos(225deg) * 2px) 0 #0A6DB7, calc(sin(247.5deg) * 2px) calc(cos(247.5deg) * 2px) 0 #0A6DB7, calc(sin(270deg) * 2px) calc(cos(270deg) * 2px) 0 #0A6DB7, calc(sin(292.5deg) * 2px) calc(cos(292.5deg) * 2px) 0 #0A6DB7, calc(sin(315deg) * 2px) calc(cos(315deg) * 2px) 0 #0A6DB7, calc(sin(337.5deg) * 2px) calc(cos(337.5deg) * 2px) 0 #0A6DB7, calc(sin(360deg) * 2px) calc(cos(360deg) * 2px) 0 #0A6DB7;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--1 {
  top: 86.39575972%;
  left: 34.88372093%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--1 {
    top: 78.1%;
    left: 37.6%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--2 {
  top: 27.7385159%;
  left: 78.13953488%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--2 {
    top: 27.5%;
    top: 29.5%;
    left: 74.9%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--3 {
  top: 42.93286219%;
  left: 17.51937984%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--3 {
    top: 43.5%;
    top: 45.5%;
    left: 24.6%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--4 {
  top: 55.30035336%;
  left: 31.62790698%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--4 {
    top: 57%;
    top: 60.2%;
    left: 37.8%;
  }
  #shop-list .shop-list_modal_box .js-modal-open3.--4 span:last-child {
    top: 100%;
    left: 50%;
    translate: -50%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--5 {
  top: 42.93286219%;
  left: 79.37984496%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--5 {
    top: 43.5%;
    top: 45.5%;
    left: 76%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--6 {
  top: 42.93286219%;
  left: 9.14728682%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--6 {
    top: 43.5%;
    top: 45.5%;
    left: 17.5%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--7 {
  top: 59.89399293%;
  left: 86.82170543%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--7 {
    top: 59.5%;
    top: 60.5%;
    left: 83.3%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--8 {
  top: 58.65724382%;
  left: 39.06976744%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--8 {
    top: 58.7%;
    top: 60.2%;
    left: 50.5%;
  }
  #shop-list .shop-list_modal_box .js-modal-open3.--8 span:last-child {
    top: 100%;
    left: 25%;
    translate: -100%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--9 {
  top: 71.20141343%;
  left: 58.13953488%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--9 {
    top: 66.4%;
    top: 68.4%;
    left: 54.6%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--10 {
  top: 78.44522968%;
  left: 46.97674419%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--10 {
    top: 72.2%;
    left: 46.3%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--11 {
  top: 26.85512367%;
  left: 42.3255814%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--11 {
    top: 27.6%;
    top: 29.9%;
    left: 41.3%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--12 {
  top: 26.85512367%;
  left: 53.17829457%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--12 {
    top: 27.6%;
    top: 29.9%;
    left: 51.5%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--12.is-active {
  z-index: 1;
}
#shop-list .shop-list_modal_box .js-modal-open3.--13 {
  top: 26.85512367%;
  left: 62.79069767%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--13 {
    top: 27.6%;
    top: 29.9%;
    left: 60.3%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--14 {
  top: 42.75618375%;
  left: 59.06976744%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--14 {
    top: 43.5%;
    top: 45.5%;
    left: 57%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--15 {
  top: 42.75618375%;
  left: 44.18604651%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--15 {
    top: 43.5%;
    top: 45.5%;
    left: 43%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--16 {
  top: 58.65724382%;
  left: 63.10077519%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--16 {
    top: 58.8%;
    top: 60.2%;
    left: 59.2%;
  }
  #shop-list .shop-list_modal_box .js-modal-open3.--16 span:last-child {
    top: 100%;
    left: 80%;
    translate: unset;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--17 {
  top: 16.7844523%;
  left: 84.96124031%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--17 {
    top: 19.4%;
    left: 79.7%;
  }
  #shop-list .shop-list_modal_box .js-modal-open3.--17 span:last-child {
    top: 50%;
    left: calc(100% + 3px);
    translate: 0 -50%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--18 {
  top: 42.93286219%;
  left: 26.66666667%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--18 {
    top: 43.5%;
    top: 45.5%;
    left: 32.6%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--19 {
  top: 17.31448763%;
  left: 54.72868217%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--19 {
    top: 22.314488%;
    left: 52.728682%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--20 {
  top: 90.10600707%;
  left: 18.91472868%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--20 {
    top: 83.8%;
    left: 26.8%;
  }
}
#shop-list .shop-list_modal_box .js-modal-open3.--21 {
  top: 36.8%;
  left: 73.2%;
}
@media screen and (max-width: 768px) {
  #shop-list .shop-list_modal_box .js-modal-open3.--21 {
    display: block;
    top: 37.8%;
    top: 39.8%;
    left: 68.65%;
  }
  #shop-list .shop-list_modal_box .js-modal-open3.--21 span:last-child {
    top: 50%;
    left: -3%;
    translate: -100% -50%;
  }
}

.present {
  padding-block: 162px 200px;
  background: #ffeae9;
  color: #2E835A;
  overflow: hidden;
  padding-block: 72px;
}

.present .categoryTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 341px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .present .categoryTitle {
    width: 213px;
  }
}

.present_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  padding-inline: 40px;
  margin-top: 67px;
}
@media screen and (max-width: 768px) {
  .present_main {
    padding-inline: 24px;
    gap: 48px;
    margin-top: 48px;
  }
}

.present_item {
  max-width: 1120px;
  width: 100%;
  margin-inline: auto;
  background: #FFF;
  border-radius: 24px;
  padding-inline: 80px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 999px) {
  .present_item {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 768px) {
  .present_item {
    max-width: 550px;
    padding-inline: 24px;
  }
}
.present_item.--1 {
  padding-block: 87px 37px;
}
@media screen and (max-width: 999px) {
  .present_item.--1 {
    padding-block: 200px 20px;
  }
}
@media screen and (max-width: 768px) {
  .present_item.--1 {
    padding-block: 48px 23px;
  }
}
.present_item.--2 {
  padding-block: 83px 51px;
}
@media screen and (max-width: 768px) {
  .present_item.--2 {
    padding-block: 48px 32px;
  }
}
.present_item.--3 {
  padding-block: 157px 74px;
  background: url(../images/present/present_03_bg.png) no-repeat center top/cover;
  border-radius: 0 0 24px 24px;
}
@media screen and (max-width: 1170px) {
  .present_item.--3 {
    display: -webkit-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: 768px) {
  .present_item.--3 {
    padding-block: 48px 36px;
    background-image: url(../images/present/present_03_bg_sp.png);
    border-radius: 0 0 16px 16px;
  }
}

.present_item_top.--2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  margin-bottom: 38px;
}
@media screen and (max-width: 1170px) {
  .present_item_top.--2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 24px;
    margin-bottom: 24px;
  }
}
.present_item_top.--3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1170px) {
  .present_item_top.--3 {
    display: contents;
  }
}

@media screen and (max-width: 1170px) {
  .present_item_top.--3 > div:first-child {
    display: contents;
  }
}

.present_item_img {
  position: relative;
}
.present_item_img.--2 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 607px;
  margin-left: -110px;
}
@media screen and (max-width: 1170px) {
  .present_item_img.--2 {
    margin-left: 0;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .present_item_img.--2 {
    width: 311px;
    position: relative;
    left: 50%;
    translate: -50%;
    margin-inline: unset;
    margin-left: 5px;
  }
}
.present_item_img.--3 {
  width: 671px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: -8px;
  margin-right: -63px;
}
@media screen and (max-width: 1170px) {
  .present_item_img.--3 {
    max-width: 600px;
    margin-inline: auto;
    width: 100%;
    margin-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .present_item_img.--3 {
    max-width: 353px;
    width: 95vw;
    position: relative;
    left: 50%;
    translate: -50%;
    margin-inline: unset;
  }
  .present_item_img.--3 img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.present_number {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .present_number {
    width: 65px;
    margin-inline: auto;
  }
}
.present_number.--1 {
  position: absolute;
  top: 51px;
  left: 40px;
}
@media screen and (max-width: 768px) {
  .present_number.--1 {
    position: unset;
  }
}

.present_item_title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 1170px) {
  .present_item_title {
    text-align: center;
  }
  .present_item_title span {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .present_item_title {
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    margin-inline: calc(50% - 50vw);
    margin-top: 24px;
  }
  .present_item_title span {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .present_item_title span {
    margin-bottom: 10px;
  }
}
.present_item_title.--1 {
  text-align: center;
}
@media screen and (min-width: 420px) {
  .present_item_title .sp-only {
    display: none !important;
  }
}

.present_item_text.--1 {
  font-weight: 500;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .present_item_text.--1 {
    text-align: left;
    margin-top: 24px;
  }
}
.present_item_text.--2 {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .present_item_text.--2 {
    font-weight: 500;
    line-height: 1.8;
  }
}
.present_item_text.--3 {
  margin-top: 22px;
}
@media screen and (max-width: 1170px) {
  .present_item_text.--3 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .present_item_text.--3 {
    margin-top: 24px;
  }
}

.present_item_date {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #ffeae9;
  background: #2E835A;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 10px 12px;
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .present_item_date {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    padding: 8px 0 10px;
    width: 100%;
    margin-top: 16px;
  }
}

.present_item_remark {
  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;
  gap: 10px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .present_item_remark {
    gap: 0;
  }
}
.present_item_remark.--2 {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media screen and (max-width: 1170px) {
  .present_item_remark.--2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .present_item_remark.--2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 10px;
  }
}
.present_item_remark li {
  font-size: 12px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .present_item_remark li {
    line-height: 1.3;
  }
}

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

#slider02 .slick-slide {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 27px;
  margin-inline: -20px;
  scale: 0.6494464945;
  opacity: 1 !important;
  -webkit-transition: scale 0.5s ease;
  transition: scale 0.5s ease;
}
@media screen and (max-width: 768px) {
  #slider02 .slick-slide {
    gap: 6px;
  }
}

#slider02 .slick-slide.is-active {
  scale: 1;
}

#slider02 .slick-slide .present_slider_card {
  width: 271px;
  opacity: 0.5 !important;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media screen and (max-width: 999px) {
  #slider02 .slick-slide .present_slider_card {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  #slider02 .slick-slide .present_slider_card {
    width: 104px;
    width: 130px;
  }
}
#slider02 .slick-slide .present_slider_card.--1 {
  rotate: 9deg;
  translate: calc(100% + 27px - 22px) 35px;
}
#slider02 .slick-slide .present_slider_card.--2 {
  rotate: -6deg;
  translate: calc(-100% - 27px + 22px) -35px;
}

#slider02 .slick-slide.is-active .present_slider_card {
  rotate: 0deg !important;
  translate: 0 0 !important;
  -webkit-transition: opacity 0.5s ease 0s, translate 0.5s ease 0.3s, rotate 0.5s ease 0.3s;
  transition: opacity 0.5s ease 0s, translate 0.5s ease 0.3s, rotate 0.5s ease 0.3s;
  opacity: 1 !important;
}

#slider02 {
  max-width: 743px !important;
}
@media screen and (max-width: 999px) {
  #slider02 {
    max-width: 560px !important;
  }
}
@media screen and (max-width: 768px) {
  #slider02 {
    width: 290px !important;
  }
}
@media screen and (max-width: 374px) {
  #slider02 {
    width: unset !important;
  }
}
#slider02 .slick-prev,
#slider02 .slick-next {
  width: 56px;
  height: 56px;
  background: url(../images/present/present_arrow.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  #slider02 .slick-prev,
  #slider02 .slick-next {
    width: 32px;
    height: 32px;
  }
}
#slider02 .slick-prev::before,
#slider02 .slick-next::before {
  display: none;
}
#slider02 .slick-prev {
  left: 0;
}
@media screen and (max-width: 768px) {
  #slider02 .slick-prev {
    left: -13px;
  }
}
@media screen and (max-width: 374px) {
  #slider02 .slick-prev {
    left: -32px;
  }
}
#slider02 .slick-next {
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
  right: 0;
}
@media screen and (max-width: 768px) {
  #slider02 .slick-next {
    right: -13px;
  }
}
@media screen and (max-width: 374px) {
  #slider02 .slick-next {
    right: -32px;
  }
}

.present_slider_bg {
  width: 652px;
  position: absolute;
  top: -136px;
  left: 50%;
  translate: -50%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .present_slider_bg {
    width: 300px;
    width: 327px;
    top: -76px;
  }
}

.present_slider_ver01 {
  width: 120px;
  position: absolute;
  top: -57px;
  left: calc(50% - 293px);
  translate: -100%;
}
@media screen and (max-width: 999px) {
  .present_slider_ver01 {
    left: calc(50% - 225px);
  }
}
@media screen and (max-width: 768px) {
  .present_slider_ver01 {
    width: 70px;
    top: -60px;
    left: calc(50% - 97px);
  }
}

.present_slider_ver02 {
  width: 138px;
  position: absolute;
  top: -53px;
  left: calc(50% + 265px);
}
@media screen and (max-width: 999px) {
  .present_slider_ver02 {
    left: calc(50% + 185px);
  }
}
@media screen and (max-width: 768px) {
  .present_slider_ver02 {
    width: 82px;
    top: -55px;
    left: calc(50% + 83px);
  }
}

.present_slider_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .present_slider_title {
    font-size: 14px;
    margin-top: 15px;
  }
}

.present_slider_remark {
  font-size: 12px;
  line-height: 1;
  text-align: center;
  margin-top: 8px;
}

.present_shop_title {
  max-width: 445px;
  margin-inline: auto;
  padding-block: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border: 1px solid currentColor;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .present_shop_title {
    max-width: 228px;
    margin-top: 16px;
  }
}

.present_shop_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 17px;
}
@media screen and (max-width: 768px) {
  .present_shop_list {
    max-width: 228px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 12px;
  }
}
.present_shop_list li {
  font-weight: 500;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.present_shop_list li::before {
  content: "・";
}
@media screen and (max-width: 768px) {
  .present_shop_list li {
    line-height: 1.5;
  }
}

.present_shop_mark {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  .present_shop_mark {
    width: 300px;
    position: relative;
    left: 50%;
    translate: -50%;
    margin-inline: unset;
    margin-top: 16px;
  }
}
.present_shop_mark.--2 {
  margin-top: 43px;
}
@media screen and (max-width: 768px) {
  .present_shop_mark.--2 {
    margin-top: 24px;
  }
}

.present_item_shop_wrap02 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(184px, 1fr));
  gap: 10px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .present_item_shop_wrap02 {
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    gap: 8px;
    margin-top: 17px;
  }
}

@media (any-hover: hover) {
  .present_item_shop_wrap02 .link-btn:hover {
    color: #FFF;
    border-color: #2E835A;
    background: #2E835A;
  }
}

.present_item.--3 .link-btn {
  color: #FFF;
  font-weight: 500;
  background: #ea5504;
  margin-top: 28px;
}
@media screen and (max-width: 1170px) {
  .present_item.--3 .link-btn {
    max-width: 360px;
    margin-inline: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 768px) {
  .present_item.--3 .link-btn {
    margin-top: 32px;
  }
}
@media (any-hover: hover) {
  .present_item.--3 .link-btn:hover {
    color: #ea5504;
    border-color: #ea5504;
    background: #FFF;
  }
}

.present_item_remark--3 {
  font-size: 12px;
  line-height: 1.3;
  margin-top: 52px;
}
@media screen and (max-width: 1170px) {
  .present_item_remark--3 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 768px) {
  .present_item_remark--3 {
    margin-top: 16px;
  }
}

.present_item_img_deco_02 {
  position: absolute;
}
.present_item_img_deco_02.--1 {
  width: 279px;
  top: 13px;
  left: 267px;
  z-index: -1;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-animation: present-02 4s ease infinite both;
          animation: present-02 4s ease infinite both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media screen and (max-width: 768px) {
  .present_item_img_deco_02.--1 {
    width: 135px;
    left: 145px;
  }
}
.present_item_img_deco_02.--2 {
  width: 70px;
  top: 36px;
  left: 506px;
  -webkit-animation: present-02-2 4s ease infinite both;
          animation: present-02-2 4s ease infinite both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media screen and (max-width: 768px) {
  .present_item_img_deco_02.--2 {
    width: 34px;
    top: 20px;
    left: 258px;
  }
}

.js_present_item_img_deco.is-active .present_item_img_deco_02 {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@-webkit-keyframes present-02 {
  0% {
    rotate: -40deg;
    translate: 0 10%;
  }
  10% {
    rotate: 0deg;
    translate: 0 0;
  }
  70% {
    rotate: 0deg;
    translate: 0 0;
  }
  80% {
    rotate: -40deg;
    translate: 0 10%;
  }
  100% {
    rotate: -40deg;
    translate: 0 10%;
  }
}

@keyframes present-02 {
  0% {
    rotate: -40deg;
    translate: 0 10%;
  }
  10% {
    rotate: 0deg;
    translate: 0 0;
  }
  70% {
    rotate: 0deg;
    translate: 0 0;
  }
  80% {
    rotate: -40deg;
    translate: 0 10%;
  }
  100% {
    rotate: -40deg;
    translate: 0 10%;
  }
}
@-webkit-keyframes present-02-2 {
  0% {
    opacity: 0;
  }
  9.8% {
    opacity: 0;
  }
  9.9% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  70.1% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes present-02-2 {
  0% {
    opacity: 0;
  }
  9.8% {
    opacity: 0;
  }
  9.9% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  70.1% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.present_item_img_deco_03 {
  width: 144px;
  position: absolute;
  -webkit-animation: present-03 3.5s ease infinite forwards;
          animation: present-03 3.5s ease infinite forwards;
}
@media screen and (max-width: 768px) {
  .present_item_img_deco_03 {
    width: 61px;
  }
}
.present_item_img_deco_03.--1 {
  left: 31px;
  bottom: 0;
}
@media screen and (max-width: 1170px) {
  .present_item_img_deco_03.--1 {
    left: 0%;
  }
}
@media screen and (max-width: 768px) {
  .present_item_img_deco_03.--1 {
    left: 28px;
  }
}
.present_item_img_deco_03.--2 {
  bottom: 0;
  right: 57px;
}
@media screen and (max-width: 1170px) {
  .present_item_img_deco_03.--2 {
    right: 4.5%;
  }
}
@media screen and (max-width: 768px) {
  .present_item_img_deco_03.--2 {
    right: 31px;
  }
}
@-webkit-keyframes present-03 {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  5% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  10% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  15% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  20% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes present-03 {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  5% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  10% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  15% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  20% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.present_deco {
  width: 160px;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .present_deco {
    width: 70px;
  }
}
.present_deco.--02 {
  top: -80px;
  right: 28px;
}
@media screen and (max-width: 768px) {
  .present_deco.--02 {
    top: -35px;
    right: -6px;
  }
}
.present_deco.--02.is-active {
  -webkit-animation: present_deco_02 6s ease-in 1 both, present_deco_02-2 1s linear 6 both;
          animation: present_deco_02 6s ease-in 1 both, present_deco_02-2 1s linear 6 both;
}
@media screen and (max-width: 768px) {
  .present_deco.--02.is-active {
    -webkit-animation: present_deco_02_sp 3s ease-in 1 both, present_deco_02-2 1s linear 3 both;
            animation: present_deco_02_sp 3s ease-in 1 both, present_deco_02-2 1s linear 3 both;
  }
}
@-webkit-keyframes present_deco_02 {
  0% {
    right: 28px;
  }
  100% {
    right: calc(100% - 28px - 160px);
  }
}
@keyframes present_deco_02 {
  0% {
    right: 28px;
  }
  100% {
    right: calc(100% - 28px - 160px);
  }
}
@-webkit-keyframes present_deco_02_sp {
  0% {
    right: 28px;
  }
  100% {
    right: calc(100% - 10px - 70px);
  }
}
@keyframes present_deco_02_sp {
  0% {
    right: 28px;
  }
  100% {
    right: calc(100% - 10px - 70px);
  }
}
@-webkit-keyframes present_deco_02-2 {
  25% {
    rotate: 2deg;
  }
  75% {
    rotate: -2deg;
  }
  100% {
    rotate: 0;
  }
}
@keyframes present_deco_02-2 {
  25% {
    rotate: 2deg;
  }
  75% {
    rotate: -2deg;
  }
  100% {
    rotate: 0;
  }
}
.present_deco.--03 {
  top: 17px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .present_deco.--03 {
    left: 19px;
  }
}
@-webkit-keyframes present_deco_03 {
  0% {
    left: 0;
  }
  100% {
    left: calc(100% - 160px);
  }
}
@keyframes present_deco_03 {
  0% {
    left: 0;
  }
  100% {
    left: calc(100% - 160px);
  }
}
@-webkit-keyframes present_deco_03_sp {
  0% {
    left: 0;
  }
  100% {
    left: calc(100% - 70px);
  }
}
@keyframes present_deco_03_sp {
  0% {
    left: 0;
  }
  100% {
    left: calc(100% - 70px);
  }
}
@-webkit-keyframes present_deco_03-2 {
  25% {
    rotate: -2deg;
  }
  75% {
    rotate: 2deg;
  }
  100% {
    rotate: 0;
  }
}
@keyframes present_deco_03-2 {
  25% {
    rotate: -2deg;
  }
  75% {
    rotate: 2deg;
  }
  100% {
    rotate: 0;
  }
}
@-webkit-keyframes present_deco_03-3 {
  0% {
    translate: 0% 0%;
  }
  25% {
    translate: 0% 5%;
  }
  75% {
    translate: 0% -5%;
  }
  100% {
    translate: 0% 0%;
  }
}
@keyframes present_deco_03-3 {
  0% {
    translate: 0% 0%;
  }
  25% {
    translate: 0% 5%;
  }
  75% {
    translate: 0% -5%;
  }
  100% {
    translate: 0% 0%;
  }
}
.present_deco.--03.is-active {
  -webkit-animation: present_deco_03 10s linear 1 both, present_deco_03-2 2s linear 5 both, present_deco_03-3 1s linear 10 both;
          animation: present_deco_03 10s linear 1 both, present_deco_03-2 2s linear 5 both, present_deco_03-3 1s linear 10 both;
}
@media screen and (max-width: 768px) {
  .present_deco.--03.is-active {
    -webkit-animation: present_deco_03_sp 8s linear 1 both, present_deco_03-2 2s linear 4 both, present_deco_03-3 1s linear 8 both;
            animation: present_deco_03_sp 8s linear 1 both, present_deco_03-2 2s linear 4 both, present_deco_03-3 1s linear 8 both;
  }
}

#decoration .decoration {
  padding-block: 152px 200px;
  background: #f8f2e0;
  color: #0A6DB7;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #decoration .decoration {
    padding-block: 70px;
  }
}
#decoration .decoration .categoryTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 855px;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #decoration .decoration .categoryTitle {
    max-width: 302px;
  }
}
@media screen and (max-width: 768px) {
  #decoration .decoration .categoryTitle.sp-only {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
#decoration .decoration_top {
  padding-block: 92px 120px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_top {
    padding-block: 16px 51px;
  }
}
#decoration .decoration_top_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_top_text {
    font-size: 14px;
    line-height: 1.8;
  }
}
#decoration .decoration_top_img_wrap {
  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;
  gap: 13px;
  margin-top: 56px;
}
@media screen and (max-width: 1200px) {
  #decoration .decoration_top_img_wrap {
    max-width: 600px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  #decoration .decoration_top_img_wrap {
    max-width: 375px;
    margin-inline: auto;
    gap: 9px;
    margin-top: 40px;
    padding-inline: 25px;
  }
}
#decoration .decoration_top_img {
  width: 175px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_top_img {
    width: 102px;
  }
}
#decoration .decoration_top_remark {
  font-size: 14px;
  line-height: 1;
  text-align: center;
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_top_remark {
    font-size: 12px;
    font-weight: 500;
    margin-top: 13px;
  }
}
#decoration .decoration_section.--1 {
  max-width: 1120px;
  width: 90%;
  margin-inline: auto;
  background: #FFF;
  border-radius: 24px;
  padding: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_section.--1 {
    max-width: 550px;
    border-radius: 12px;
    padding: 32px 16px 16px;
  }
}
#decoration .decoration_section.--2 {
  max-width: 960px;
  width: 90%;
  margin-inline: auto;
  padding-top: 135px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_section.--2 {
    padding-top: 80px;
  }
}
#decoration .decoration_section.--3 {
  padding-top: 180px;
  padding-top: 125px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_section.--3 {
    padding-top: 80px;
  }
}
#decoration .decoration_pick-up {
  width: 231px;
  position: absolute;
  top: -43px;
  left: 38px;
}
@media screen and (max-width: 1200px) {
  #decoration .decoration_pick-up {
    top: -50px;
    left: -40px;
  }
}
@media screen and (max-width: 999px) {
  #decoration .decoration_pick-up {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  #decoration .decoration_pick-up {
    width: 85px;
    top: 2px;
    left: -20px;
  }
}
#decoration .decoration_section_en_title {
  max-width: 650px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_section_en_title {
    width: 210px;
  }
}
#decoration .decoration_section_title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_section_title {
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    margin-top: 5px;
  }
}
#decoration .decoration_section_text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_section_text {
    font-size: 12px;
    line-height: 1.6;
    margin-top: 16px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #decoration .decoration_section_text.--2, #decoration .decoration_section_text.--3 {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 24px;
  }
}
#decoration .decoration_tab_content {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_tab_content {
    margin-top: 24px;
  }
}
#decoration .decoration_tab_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-inline: 21px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_tab_wrap {
    gap: 0;
    height: 31px;
    margin-inline: 22px;
    margin-bottom: -1px;
  }
}
#decoration .decoration_tab {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  padding-block: 8px 9px;
  background: #FFF;
  border-top: 2px solid #0A6DB7;
  border-left: 2px solid #0A6DB7;
  border-right: 2px solid #0A6DB7;
  border-radius: 8px 8px 0 0;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  /* 1. タップ時のグレーのハイライト（ぶれ）を完全に消す */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_tab {
    height: 22px;
    font-size: 12px;
    line-height: 1;
    padding-block: 2px;
    margin-inline: -6px;
  }
}
#decoration .decoration_tab.is-active {
  color: #FFF;
  background: #0A6DB7;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_tab.is-active {
    height: 31px;
  }
}
#decoration .decoration_tab_main {
  border: 2px solid #0A6DB7;
  border-radius: 16px;
  background: #FFF;
  position: relative;
  z-index: 3;
}
#decoration .decoration_tab_item {
  display: none;
  padding: 100px 54px 61px;
}
@media screen and (max-width: 999px) {
  #decoration .decoration_tab_item {
    padding: 50px 18px;
  }
}
@media screen and (max-width: 768px) {
  #decoration .decoration_tab_item {
    padding: 24px 16px;
  }
}
#decoration .decoration_tab_item.is-active {
  display: block;
}
#decoration .decoration_tab_item_img {
  width: 100%;
}
#decoration .decoration_tab_item_text {
  font-size: 14px;
  line-height: 1;
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_tab_item_text {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 16px;
  }
}
#decoration .decoration_deco {
  width: 300px;
  position: absolute;
  z-index: 5;
}
@media screen and (max-width: 999px) {
  #decoration .decoration_deco {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  #decoration .decoration_deco {
    width: 90px;
  }
}
#decoration .decoration_deco.--1 {
  top: -66px;
  right: -54px;
  -webkit-animation: decoration_deco 2s ease infinite forwards;
          animation: decoration_deco 2s ease infinite forwards;
}
@media screen and (max-width: 1300px) {
  #decoration .decoration_deco.--1 {
    top: 31px;
    right: -100px;
  }
}
@media screen and (max-width: 768px) {
  #decoration .decoration_deco.--1 {
    top: -20px;
    right: -13px;
  }
}
#decoration .decoration_deco.--2 {
  top: 136px;
  left: -142px;
  -webkit-animation: decoration_deco2 2s ease infinite forwards;
          animation: decoration_deco2 2s ease infinite forwards;
}
@media screen and (max-width: 1300px) {
  #decoration .decoration_deco.--2 {
    top: 350px;
    left: -80px;
  }
}
@media screen and (max-width: 768px) {
  #decoration .decoration_deco.--2 {
    top: 320px;
    left: -21px;
  }
}
#decoration .decoration_deco.--3 {
  right: -130px;
  bottom: -74px;
  -webkit-animation: decoration_deco 2s ease infinite forwards;
          animation: decoration_deco 2s ease infinite forwards;
}
@media screen and (max-width: 1300px) {
  #decoration .decoration_deco.--3 {
    right: -90px;
    bottom: -120px;
  }
}
@media screen and (max-width: 999px) {
  #decoration .decoration_deco.--3 {
    right: -55px;
  }
}
@media screen and (max-width: 768px) {
  #decoration .decoration_deco.--3 {
    right: -12px;
    bottom: -26px;
  }
}
@-webkit-keyframes decoration_deco {
  0% {
    rotate: 5deg;
  }
  20% {
    rotate: -5deg;
  }
  50% {
    rotate: -5deg;
  }
  70% {
    rotate: 5deg;
  }
  100% {
    rotate: 5deg;
  }
}
@keyframes decoration_deco {
  0% {
    rotate: 5deg;
  }
  20% {
    rotate: -5deg;
  }
  50% {
    rotate: -5deg;
  }
  70% {
    rotate: 5deg;
  }
  100% {
    rotate: 5deg;
  }
}
@-webkit-keyframes decoration_deco2 {
  0% {
    rotate: -5deg;
  }
  20% {
    rotate: 5deg;
  }
  50% {
    rotate: 5deg;
  }
  70% {
    rotate: -5deg;
  }
  100% {
    rotate: -5deg;
  }
}
@keyframes decoration_deco2 {
  0% {
    rotate: -5deg;
  }
  20% {
    rotate: 5deg;
  }
  50% {
    rotate: 5deg;
  }
  70% {
    rotate: -5deg;
  }
  100% {
    rotate: -5deg;
  }
}
#decoration .decoration_photo_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 72px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_photo_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-top: 32px;
  }
}
#decoration .decoration_photo {
  max-width: 470px;
  width: 100%;
  padding: 20px 20px 32px;
  background: #FFF;
  border-radius: 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_photo {
    margin-inline: auto;
    padding: 14px 14px 24px;
  }
}
#decoration .decoration_photo_img {
  border-radius: 16px;
  overflow: hidden;
}
#decoration .decoration_photo_title {
  max-width: 280px;
  margin-inline: auto;
  margin-block: 22px 18px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_photo_title {
    max-width: 230px;
    margin-block: 7px;
  }
}
#decoration .decoration_photo .link-btn {
  max-width: 360px;
  margin-inline: auto;
  color: #ea5504;
  cursor: pointer;
}
#decoration .decoration_photo .link-btn:hover {
  color: #FFF;
  background: #ea5504;
}
#decoration .decoration_deco.--4 {
  top: 116px;
  left: -87px;
  -webkit-animation: decoration_deco2 2s ease infinite forwards;
          animation: decoration_deco2 2s ease infinite forwards;
}
@media screen and (max-width: 999px) {
  #decoration .decoration_deco.--4 {
    top: 285px;
    left: -68px;
  }
}
@media screen and (max-width: 768px) {
  #decoration .decoration_deco.--4 {
    top: 76px;
    left: unset;
    right: 76.5333333333%;
  }
}
#decoration .decoration_deco.--5 {
  right: -229px;
  bottom: -70px;
  -webkit-animation: decoration_deco 2s ease infinite forwards;
          animation: decoration_deco 2s ease infinite forwards;
}
@media screen and (max-width: 1300px) {
  #decoration .decoration_deco.--5 {
    right: -100px;
    bottom: -250px;
  }
}
@media screen and (max-width: 999px) {
  #decoration .decoration_deco.--5 {
    right: -52px;
    bottom: -170px;
  }
}
@media screen and (max-width: 768px) {
  #decoration .decoration_deco.--5 {
    bottom: unset;
    top: 80px;
    right: unset;
    left: 76.5333333333%;
  }
}
#decoration .decoration_slider_wrap {
  margin-top: -10px;
}
#decoration .decoration_slider {
  max-width: 600px !important;
}
#decoration .decoration_slider .slick-slide {
  width: 550px;
  margin-inline: -100px;
  scale: 0.7;
  opacity: 0.5 !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_slider .slick-slide {
    margin-inline: -80px;
    width: 330px;
  }
}
#decoration .decoration_slider .slick-slide.is-active {
  scale: 1;
  opacity: 1 !important;
}
#decoration .decoration_slider .slick-prev,
#decoration .decoration_slider .slick-next {
  width: 31px !important;
  height: 62px !important;
  background: url(../images/decoration/decoration_slider_arrow.svg) no-repeat center center/contain;
}
#decoration .decoration_slider .slick-prev::before,
#decoration .decoration_slider .slick-next::before {
  display: none;
}
#decoration .decoration_slider .slick-prev {
  left: 20px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_slider .slick-prev {
    left: 30px;
  }
}
#decoration .decoration_slider .slick-next {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  translate: 0 -50%;
  right: 20px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_slider .slick-next {
    right: 30px;
  }
}
#decoration .decoration_slider_info {
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_slider_info {
    margin-top: 16px;
  }
}
#decoration .decoration_slider_name {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_slider_name {
    font-size: 14px;
  }
}
#decoration .decoration_slider_name_remark {
  font-size: 12px;
  line-height: 1;
  margin-top: 8px;
}
#decoration .decoration_slider_shop_title {
  width: 387px;
  margin-inline: auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding-block: 10px 12px;
  border: 1px solid currentColor;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_slider_shop_title {
    width: 228px;
    margin-top: 24px;
  }
}
#decoration .decoration_slider_shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 17px;
}
#decoration .decoration_slider_shop li {
  font-weight: 500;
  line-height: 1;
}
#decoration .decoration_bg_deco_wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
#decoration .decoration_bg_deco {
  position: absolute;
}
#decoration .decoration_bg_deco.--1 {
  width: 144px;
  top: 1.8748%;
  left: 52px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_bg_deco.--1 {
    width: 80px;
    top: 0%;
    left: -10px;
    rotate: -10deg;
  }
}
#decoration .decoration_bg_deco.--2 {
  width: 311px;
  top: 3.141%;
  right: -90px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_bg_deco.--2 {
    width: 166px;
    top: 13.9323%;
    right: -36px;
  }
}
#decoration .decoration_bg_deco.--3 {
  width: 319px;
  top: 38.057%;
  left: -79px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_bg_deco.--3 {
    width: 178px;
    top: 30.7617%;
    left: -44px;
  }
}
#decoration .decoration_bg_deco.--4 {
  width: 339px;
  top: 46.5303%;
  right: -32px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_bg_deco.--4 {
    width: 190px;
    top: 55.3711%;
    right: -25px;
  }
}
#decoration .decoration_bg_deco.--5 {
  width: 421px;
  left: -13px;
  bottom: 20%;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_bg_deco.--5 {
    width: 234px;
    left: -35px;
    bottom: 19.7917%;
    bottom: 17.7917%;
  }
}
#decoration .decoration_bg_deco.--6 {
  width: 274px;
  bottom: 13.5%;
  right: 0;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_bg_deco.--6 {
    width: 152px;
    bottom: 14.9414%;
    right: -43px;
  }
}
#decoration .decoration_bg_deco.--7 {
  width: 428px;
  bottom: 0%;
  left: 152px;
}
@media screen and (max-width: 768px) {
  #decoration .decoration_bg_deco.--7 {
    width: 289px;
    bottom: 0%;
    left: -60px;
  }
}

#event {
  padding-inline: 64px;
  background: linear-gradient(to right, #7c58ba 64px, #f6f8ee 64px, #f6f8ee calc(100% - 64px), #7c58ba calc(100% - 64px));
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 999px) {
  #event {
    padding-inline: 20px;
    background: linear-gradient(to right, #7c58ba 20px, #f6f8ee 20px, #f6f8ee calc(100% - 20px), #7c58ba calc(100% - 20px));
  }
}
@media screen and (max-width: 768px) {
  #event {
    padding-inline: 8px;
    background: linear-gradient(to right, #7c58ba 8px, #f6f8ee 8px, #f6f8ee calc(100% - 8px), #7c58ba calc(100% - 8px));
  }
}
#event .event {
  max-width: 1312px;
  margin-inline: auto;
  width: 100%;
  padding-block: 135px 130px;
  padding-inline: 95px;
  background: #f6f8ee;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #event .event {
    padding-block: 84px;
    padding-inline: unset;
  }
}
#event .event::after {
  content: "";
  width: calc(100% - 100px);
  height: calc(100% - 110px - 106px);
  background: url(../images/event/event_bg.png) no-repeat top center/cover;
  position: absolute;
  top: 110px;
  left: 50%;
  translate: -50%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #event .event::after {
    background-image: url(../images/event/event_bg_sp.png);
    top: 69px;
    width: calc(100% - 32px);
    height: calc(100% - 69px - 67px);
  }
}
#event .event .categoryTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 697px;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #event .event .categoryTitle {
    max-width: 246px;
  }
}
@media screen and (max-width: 768px) {
  #event .event .categoryTitle.sp-only {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
#event .event .section_jp_title {
  color: #7C58BA;
}
#event .event_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 116px;
}
@media screen and (max-width: 768px) {
  #event .event_main {
    margin-top: 43px;
  }
}
@media screen and (max-width: 1300px) {
  #event .event_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#event .event_content_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1300px) {
  #event .event_content_main {
    display: contents;
  }
}
@media screen and (max-width: 1300px) {
  #event .event_content_text_wrap {
    display: contents;
  }
}
#event .event_content_text_wrap.--1 {
  width: 422px;
}
#event .event_content_text_wrap.--2 {
  width: 560px;
}
#event .event_number {
  width: 210px;
}
@media screen and (max-width: 768px) {
  #event .event_number {
    width: 135px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  #event .event_content_title {
    text-align: center;
    margin-top: 6px;
  }
}
#event .event_content_title span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #event .event_content_title span {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
  }
}
#event .event_content_title span::after {
  content: "";
  width: 100%;
  height: 13px;
  background: #FFF;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#event .event_content_text {
  font-weight: 500;
  margin-top: 31px;
}
@media screen and (max-width: 768px) {
  #event .event_content_text {
    line-height: 1.8;
    text-align: center;
    margin-top: 24px;
  }
}
#event .event_content_text.--set {
  margin-top: 17px;
}
#event .event_content_remark--large {
  max-width: 370px;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  #event .event_content_remark--large {
    margin-inline: auto;
    margin-top: 7px;
  }
}
#event .event_content_remark--large li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
#event .event_content_remark--large li::before {
  content: "※";
}
@media screen and (max-width: 768px) {
  #event .event_content_remark--large li {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#event .event_content_remark {
  margin-top: 10px;
  max-width: 370px;
}
@media screen and (max-width: 1300px) {
  #event .event_content_remark {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 16px;
    margin-inline: auto;
    max-width: 800px;
  }
}
@media screen and (max-width: 768px) {
  #event .event_content_remark {
    max-width: 327px;
  }
}
#event .event_content_remark li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  #event .event_content_remark li {
    line-height: 1.3;
  }
}
#event .event_content_remark li::before {
  content: "※";
}
#event .event_content.--1 .link-btn {
  max-width: 360px;
  background: #FFF;
  color: #ea5504;
  border-color: #ea5504;
  margin-top: 34px;
}
@media screen and (max-width: 1300px) {
  #event .event_content.--1 .link-btn {
    max-width: 279px;
    margin-inline: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  #event .event_content.--1 .link-btn {
    margin-top: 40px;
  }
}
@media (any-hover: hover) {
  #event .event_content.--1 .link-btn:hover {
    color: #FFF;
    background: #ea5504;
  }
}
#event .event_content_img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 850px;
  width: 59.0277777778vw;
}
@media screen and (max-width: 1300px) {
  #event .event_content_img {
    width: 100%;
    margin-block: unset !important;
    margin-inline: auto !important;
  }
}
@media screen and (max-width: 768px) {
  #event .event_content_img {
    max-width: 600px;
    width: 98vw;
    position: relative;
    left: 50%;
    translate: -50%;
    margin-inline: unset !important;
  }
}
#event .event_content_img.--1 {
  margin-block: -174px -156px;
  margin-inline: -54px -97px;
}
#event .event_content_img.--2 {
  margin-block: -3px -126px;
  margin-inline: -195px -95px;
}
@media screen and (max-width: 1300px) {
  #event .event_content_img.--2 {
    margin-block: -60px -20px !important;
  }
}
@media screen and (max-width: 768px) {
  #event .event_content_img.--2 {
    margin-block: unset !important;
  }
}
#event .event_item_wrap {
  display: grid;
  grid-template-columns: repeat(5, 198px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 118px;
}
@media screen and (max-width: 1300px) {
  #event .event_item_wrap {
    grid-template-columns: repeat(3, 198px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    margin-top: 24px;
    margin-inline: 14px;
  }
}
@media screen and (max-width: 768px) {
  #event .event_item_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
    margin-inline: 14px;
  }
}
#event .event_item_title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #event .event_item_title {
    font-size: 12px;
    line-height: 1;
  }
}
#event .event_item_img {
  margin-top: 8px;
}
#event .event_item_text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  #event .event_item_text {
    max-width: 322px;
    margin-inline: auto;
    font-size: 10px;
    line-height: 1.4;
    margin-top: 6px;
  }
}
#event .event_content.--2 .title_deco {
  color: #7c58ba;
  margin-block: 13px 31px;
}
@media screen and (max-width: 768px) {
  #event .event_content.--2 .title_deco {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-block: 18px 10px;
  }
}
#event .event_content_set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 10px;
}
@media screen and (max-width: 768px) {
  #event .event_content_set {
    max-width: 245px;
    margin-inline: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#event .event_content_set li {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #event .event_content_set li {
    font-size: 12px;
    line-height: 1.6;
  }
}
#event .event_content.--2 .link-btn {
  max-width: 360px;
  color: #FFF;
  font-weight: 500;
  background: #ea5504;
  border-color: #ea5504;
  margin-top: 32px;
}
@media screen and (max-width: 1300px) {
  #event .event_content.--2 .link-btn {
    margin-top: 40px;
    margin-inline: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 768px) {
  #event .event_content.--2 .link-btn {
    max-width: 279px;
    margin-top: 16px;
  }
}
@media (any-hover: hover) {
  #event .event_content.--2 .link-btn:hover {
    background: #FFF;
    color: #ea5504;
  }
}
#event .event_section_deco {
  width: 100%;
  aspect-ratio: 1440/41;
  position: absolute;
  left: 50%;
  translate: -50% 50%;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #event .event_section_deco {
    aspect-ratio: 375/30;
  }
}
#event .event_section_deco.--top {
  top: 0;
  translate: -50% -50%;
}
#event .event_section_deco.--bottom {
  bottom: 0;
  translate: -50% 50%;
}
#event .event_section_deco img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#limited-time-offer {
  background: #f2f2f2;
  position: relative;
  overflow: hidden;
}
#limited-time-offer .limited-time-offer {
  color: #EA5504;
  text-align: center;
  padding-block: 140px;
}
@media screen and (max-width: 768px) {
  #limited-time-offer .limited-time-offer {
    padding-block: 84px 80px;
  }
}
#limited-time-offer .limited-time-offer .categoryTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 882px;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #limited-time-offer .limited-time-offer .categoryTitle {
    max-width: 325px;
  }
}
@media screen and (max-width: 768px) {
  #limited-time-offer .limited-time-offer .categoryTitle.sp-only {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
#limited-time-offer .limited-time-offer_text {
  font-size: 18px;
  font-weight: 500;
  margin-top: 54px;
}
@media screen and (max-width: 768px) {
  #limited-time-offer .limited-time-offer_text {
    font-size: 14px;
    margin-top: 40px;
  }
}
#limited-time-offer .limited-time-offer_date {
  font-weight: 700;
  line-height: 1;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  #limited-time-offer .limited-time-offer_date {
    font-size: 14px;
    margin-top: 40px;
  }
}
#limited-time-offer .limited-time-offer_date.cauiton {
  font-weight: 400;
  line-height: 1.3;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #limited-time-offer .limited-time-offer_date.cauiton {
    margin: 15px auto 0;
    font-size: 13px;
    text-align: left;
    width: 90%;
    display: block;
  }
}
#limited-time-offer .limited-time-offer .link-btn {
  max-width: 360px;
  background: #FFF;
  color: #ea5504;
  font-weight: 500;
  border-color: #ea5504;
  margin-top: 40px;
  margin-inline: auto;
}
#limited-time-offer .limited-time-offer .link-btn:hover {
  color: #FFF;
  background: #ea5504;
}
@media screen and (max-width: 768px) {
  #limited-time-offer .limited-time-offer .link-btn {
    max-width: 279px;
    padding-block: 22px 20px;
    margin-top: 32px;
    position: relative;
    z-index: 8;
  }
}
#limited-time-offer .limited-time-offer .link-btn.btn02 {
  margin-top: 30px;
  border-color: #ea5504;
  background-color: #ea5504;
  color: white;
}
#limited-time-offer .limited-time-offer .link-btn.btn02:hover {
  color: #ea5504;
  background: white;
}
@media screen and (max-width: 768px) {
  #limited-time-offer .limited-time-offer .link-btn.btn02 {
    margin-top: 20px;
  }
}
#limited-time-offer .limited-time-offer_slider_wrap {
  margin-top: 64px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #limited-time-offer .limited-time-offer_slider_wrap {
    margin-top: 135px;
  }
}
#limited-time-offer .limited-time-offer_slider .slick-slide {
  opacity: 1 !important;
  margin-inline: 0 !important;
  padding-inline: 0 !important;
}
#limited-time-offer .limited-time-offer_slider .slick-prev,
#limited-time-offer .limited-time-offer_slider .slick-next {
  width: 36px !important;
  height: 64px !important;
  background: url(../images/limited-time-offer/limited-time-offer_arrow.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  #limited-time-offer .limited-time-offer_slider .slick-prev,
  #limited-time-offer .limited-time-offer_slider .slick-next {
    width: 13px !important;
    height: 25px !important;
  }
}
#limited-time-offer .limited-time-offer_slider .slick-prev::before,
#limited-time-offer .limited-time-offer_slider .slick-next::before {
  display: none;
}
#limited-time-offer .limited-time-offer_slider .slick-prev {
  left: 27px;
}
#limited-time-offer .limited-time-offer_slider .slick-next {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  translate: 0 -50%;
  right: 27px;
}
#limited-time-offer .limited-time-offer_character {
  width: min(24.3055555556vw, 350px);
  position: absolute;
  z-index: -1;
  overflow: hidden;
}
@media screen and (max-width: 500px) {
  #limited-time-offer .limited-time-offer_character {
    width: 150px;
  }
}
#limited-time-offer .limited-time-offer_character.--1 {
  top: max(-24.7222222222vw, -356px);
  right: calc(50% + min(26.3888888889vw, 380px));
}
@media screen and (max-width: 500px) {
  #limited-time-offer .limited-time-offer_character.--1 {
    top: -140px;
    right: 50%;
  }
}
#limited-time-offer .limited-time-offer_character.--2 {
  top: max(-28.5416666667vw, -411px);
  left: calc(50% + min(26.3888888889vw, 380px));
}
@media screen and (max-width: 500px) {
  #limited-time-offer .limited-time-offer_character.--2 {
    top: -170px;
    left: 50%;
  }
}
#limited-time-offer .limited-time-offer_character img {
  -webkit-animation: limited-time-offer_character 6s ease infinite both;
          animation: limited-time-offer_character 6s ease infinite both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
#limited-time-offer .js_limited-time-offer_character.is-active .limited-time-offer_character img {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes limited-time-offer_character {
  0% {
    translate: 0 100%;
  }
  9% {
    translate: 0 -5%;
  }
  10% {
    translate: 0;
  }
  70% {
    translate: 0;
  }
  71% {
    translate: 0 -5%;
  }
  80% {
    translate: 0 100%;
  }
  100% {
    translate: 0 100%;
  }
}
@keyframes limited-time-offer_character {
  0% {
    translate: 0 100%;
  }
  9% {
    translate: 0 -5%;
  }
  10% {
    translate: 0;
  }
  70% {
    translate: 0;
  }
  71% {
    translate: 0 -5%;
  }
  80% {
    translate: 0 100%;
  }
  100% {
    translate: 0 100%;
  }
}
#limited-time-offer .limited-time-offer_slider_counter {
  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;
  font-family: "Bigshot One", serif;
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  #limited-time-offer .limited-time-offer_slider_counter {
    margin-top: 17px;
  }
}
#limited-time-offer .limited-time-offer_slider_counter .js-now-count2 {
  width: 40px;
  text-align: right;
  font-size: 34px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #limited-time-offer .limited-time-offer_slider_counter .js-now-count2 {
    width: 20px;
    font-size: 18px;
    line-height: 1;
  }
}
#limited-time-offer .limited-time-offer_slider_counter .separator2 {
  width: 40px;
  height: 1px;
  rotate: 135deg;
  background: currentColor;
  aspect-ratio: 1/1;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  margin-inline: 9px 6px;
}
@media screen and (max-width: 768px) {
  #limited-time-offer .limited-time-offer_slider_counter .separator2 {
    width: 20px;
    rotate: 110deg;
    margin-inline: 3px;
  }
}
#limited-time-offer .limited-time-offer_slider_counter .js-all-count2 {
  width: 40px;
  text-align: left;
  font-size: 26px;
  line-height: 1.4;
  margin-top: 3px;
}
@media screen and (max-width: 768px) {
  #limited-time-offer .limited-time-offer_slider_counter .js-all-count2 {
    width: 20px;
    font-size: 14px;
  }
}
#limited-time-offer .limited-time-offer_deco {
  width: 91px;
  position: absolute;
  top: 85px;
  left: 0;
}
@media screen and (max-width: 1150px) {
  #limited-time-offer .limited-time-offer_deco {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    rotate: 90deg;
    position: absolute;
    top: 0;
    translate: 295%;
  }
}
@media screen and (max-width: 768px) {
  #limited-time-offer .limited-time-offer_deco {
    width: 48px;
  }
}

#summer-sale {
  background: url(../images/summer-sale/summer-sale_bg.png) no-repeat center center/cover;
  background-color: #2E835A;
  -webkit-mask: url(../images/summer-sale/summer-sale_bg_msk.png) no-repeat center/100% 100%;
  mask: url(../images/summer-sale/summer-sale_bg_msk.png) no-repeat center/100% 100%;
  position: relative;
  margin-bottom: -150px;
}
@media screen and (max-width: 768px) {
  #summer-sale {
    background-image: url(../images/summer-sale/summer-sale_bg_sp.png);
    -webkit-mask: url(../images/summer-sale/summer-sale_bg_msk_sp.png) no-repeat center/100% 100%;
    mask: url(../images/summer-sale/summer-sale_bg_msk_sp.png) no-repeat center/100% 100%;
    margin-bottom: -25px;
  }
}
#summer-sale .summer-sale {
  color: #FFF;
  text-align: center;
  padding-block: 130px 280px;
  padding-inline: 30px;
}
@media screen and (max-width: 768px) {
  #summer-sale .summer-sale {
    padding-block: 88px 130px;
    padding-inline: 25px;
  }
}
#summer-sale .summer-sale .categoryTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 827px;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #summer-sale .summer-sale .categoryTitle {
    max-width: 237px;
  }
}
@media screen and (max-width: 768px) {
  #summer-sale .summer-sale .categoryTitle.sp-only {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
#summer-sale .summer-sale_main {
  max-width: 1120px;
  margin-inline: auto;
  border-radius: 20px;
  color: #000;
  font-size: 18px;
  padding-block: 67px 61px;
  padding-inline: 80px;
  background: #FFF;
  margin-top: 69px;
}
@media screen and (max-width: 768px) {
  #summer-sale .summer-sale_main {
    max-width: 550px;
    padding-block: 40px;
    padding-inline: 24px;
    margin-top: 48px;
  }
}
#summer-sale .summer-sale_text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  #summer-sale .summer-sale_text {
    line-height: 1.2;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
#summer-sale .summer-sale_btn_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px 12px;
  color: #EA5504;
  margin-top: 24px;
}
@media screen and (max-width: 999px) {
  #summer-sale .summer-sale_btn_wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #summer-sale .summer-sale_btn_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 17px;
  }
}
#summer-sale .summer-sale_btn_wrap .link-btn {
  border: 1px solid #EA5504;
  background-color: #ffeadf;
}
@media (any-hover: hover) {
  #summer-sale .summer-sale_btn_wrap .link-btn:hover {
    color: #FFF;
    background: #EA5504;
  }
}
#summer-sale .summer-sale_btn_wrap .link-btn.noLink {
  background-color: white;
}

#info {
  background-color: #EA5504;
  padding: 230px 0 100px;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 40px 0 50px;
  }
}
#info h2 {
  margin-bottom: 56px;
}
#info h2 p {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: white;
}
@media screen and (max-width: 768px) {
  #info h2 p {
    font-size: min(6.2vw, 27px);
    line-height: 1.6;
  }
}
#info .name {
  width: 260px;
  display: block;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  #info .name {
    width: min(45%, 240px);
    margin: 0 auto 28px;
  }
}
#info .content_inner {
  border-radius: 20px;
  padding: 30px 0;
  background-color: #F2ECE6;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #info .content_inner {
    border-radius: 10px;
    padding: 20px 0;
  }
}
#info .content_inner .facility_lists_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#info .content_inner .facility_lists_wrap .facility_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  row-gap: 20px;
  width: 90%;
}
@media screen and (max-width: 768px) {
  #info .content_inner .facility_lists_wrap .facility_lists {
    gap: 3%;
    row-gap: 13px;
  }
}
@media screen and (max-width: 768px) {
  #info .content_inner .facility_lists_wrap .facility_lists .list {
    width: 31.3333333333%;
  }
}
#info .content_inner .facility_lists_wrap .facility_lists .list .link_banner_button_wrap .link_banner_button {
  margin-bottom: 0;
}
#info .content_inner .facility_lists_wrap .facility_lists .list .link_banner_button_wrap .link_banner_button .link_txt {
  padding: 16px 25px;
  width: 100px;
}
#info .content_inner .facility_lists_wrap .facility_lists .list .link_banner_button_wrap .link_banner_button .link_txt:hover {
  -webkit-transform: translate3d(0, 5px, 0);
          transform: translate3d(0, 5px, 0);
}
@media screen and (max-width: 768px) {
  #info .content_inner .facility_lists_wrap .facility_lists .list .link_banner_button_wrap .link_banner_button .link_txt {
    padding: 14px 0;
    width: 100%;
  }
}
#info .content_inner .facility_lists_wrap .facility_lists .list .link_banner_button_wrap .link_banner_button .link_txt p {
  font-size: 15px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #info .content_inner .facility_lists_wrap .facility_lists .list .link_banner_button_wrap .link_banner_button .link_txt p {
    font-size: min(3.7vw, 15px);
  }
}
#info .content_inner .facility_lists_wrap .facility_lists .list .link_banner_button_wrap .link_banner_button .link_txt:before {
  width: 100px;
  background-color: #0A6DB7;
  border: 1px solid #0A6DB7;
}
@media screen and (max-width: 768px) {
  #info .content_inner .facility_lists_wrap .facility_lists .list .link_banner_button_wrap .link_banner_button .link_txt:before {
    width: 100%;
  }
}
#info .content_inner .facility_lists_wrap .facility_lists .list .link_banner_button_wrap .link_banner_button .link_txt::after {
  content: none;
}
#info .content_inner .facility_lists_wrap .facility_lists .list .link_banner_button_wrap .link_banner_button .link_txt:hover p {
  color: #0A6DB7;
}
#info .content_inner .facility_lists_wrap .facility_lists .list .link_banner_button_wrap .link_banner_button .link_txt:hover:before {
  background-color: white;
}
@media screen and (max-width: 768px) {
  #info .link_banner_button_wrap.info_bottom .link_banner_button {
    width: min(55%, 350px);
    margin-bottom: 0;
  }
}
#info .link_banner_button_wrap.info_bottom .link_banner_button .link_txt::before {
  background-color: white;
  border: 1px solid white;
}
#info .link_banner_button_wrap.info_bottom .link_banner_button .link_txt p {
  color: black;
}
#info .link_banner_button_wrap.info_bottom .link_banner_button .link_txt::after {
  border-left: 10px solid #341A07;
}
#info .link_banner_button_wrap.info_bottom .link_banner_button .link_txt:hover p {
  color: white;
}
#info .link_banner_button_wrap.info_bottom .link_banner_button .link_txt:hover::before {
  background-color: #341A07;
  border: 1px solid white;
}
#info .link_banner_button_wrap.info_bottom .link_banner_button .link_txt:hover::after {
  border-left: 10px solid #ffffff;
}

.shopModal_card {
  border-radius: 24px;
  border: 5px solid #2E835A;
  background: #FFF;
  padding: 20px 5%;
}
.shopModal_card__title {
  margin-bottom: 20px;
  text-align: center;
  color: #2E835A;
}
.shopModal_card__title__main {
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .shopModal_card__title__main {
    font-size: min(4.4vw, 22px);
  }
}
.shopModal_card__title__sub {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 18.2px */
}
@media screen and (max-width: 768px) {
  .shopModal_card__title__sub {
    font-size: min(3.3vw, 13px);
  }
}
.shopModal_card .shopList_wrap {
  overflow-y: auto;
  /* Chrome / Edge / Safari */
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #efefef;
}
@media screen and (min-width: 769px) and (max-height: 1800px) {
  .shopModal_card .shopList_wrap {
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 768px) {
  .shopModal_card .shopList_wrap {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 69dvh;
    -webkit-overflow-scrolling: touch;
  }
}
.shopModal_card .shopList_wrap::-webkit-scrollbar {
  width: 6px;
}
.shopModal_card .shopList_wrap::-webkit-scrollbar-track {
  background: #efefef;
  border-radius: 999px;
}
.shopModal_card .shopList_wrap::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 999px;
}
.shopModal_card .shopList_wrap::-webkit-scrollbar {
  width: 6px;
}
.shopModal_card .shopList_wrap::-webkit-scrollbar-track {
  background: #efefef;
  border-radius: 999px;
}
.shopModal_card .shopList_wrap::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 999px;
}
.shopModal_card .shopList {
  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;
  border-top: 2px solid #2E835A;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .shopModal_card .shopList {
    padding-right: 9px;
  }
}
.shopModal_card .shopList .list {
  padding-bottom: 10px;
  border-bottom: 1px solid #2E835A;
  color: #2E835A;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .shopModal_card .shopList .list {
    font-size: min(3.8vw, 16px);
  }
}
.shopModal_card .shopList .list .note {
  font-weight: 400;
  font-size: 80%;
}
.shopModal_card .shopList .list .little {
  font-size: 80%;
}
.shopModal_card.photoSpot_card {
  border: 5px solid #0A6DB7;
}
.shopModal_card.photoSpot_card .shopList_wrap::-webkit-scrollbar-thumb {
  background: #0A6DB7;
}
.shopModal_card.photoSpot_card .shopModal_card__title {
  color: #0A6DB7;
}
.shopModal_card.photoSpot_card .photoSpotList {
  border-top: 2px solid #0A6DB7;
}
.shopModal_card.photoSpot_card .photoSpotList .list {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0A6DB7;
  border-bottom: 1px solid #0A6DB7;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .shopModal_card.photoSpot_card .photoSpotList .list {
    font-size: min(3.2vw, 13px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.shopModal_card.photoSpot_card .photoSpotList .shopPlace {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .shopModal_card.photoSpot_card .photoSpotList .shopPlace {
    white-space: nowrap;
  }
}
.shopModal_card.evenEX_card {
  border: 5px solid var(--evenEX01);
}
.shopModal_card.evenEX_card .shopList_wrap::-webkit-scrollbar-thumb {
  background: var(--evenEX01);
}
.shopModal_card.evenEX_card .shopModal_card__title {
  color: var(--evenEX01);
}
.shopModal_card.evenEX_card .shopList {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  row-gap: 14px;
  border-top: 2px solid var(--evenEX01);
}
@media screen and (max-width: 768px) {
  .shopModal_card.evenEX_card .shopList {
    row-gap: 10px;
  }
}
.shopModal_card.evenEX_card .shopList .list {
  width: calc((100% - 15px) / 2);
  border: none;
  color: var(--evenEX01);
}
.shopModal_card.evenEX_card .shopList .list .day {
  color: var(--evenEX01);
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .shopModal_card.evenEX_card .shopList .list .day {
    margin-bottom: 4px;
  }
}
.shopModal_card.evenEX_card .shopList .list .link-btn {
  border: 1px solid var(--evenEX01);
  background-color: var(--evenEX01);
  color: white;
  padding: 14px 0;
}
@media screen and (max-width: 768px) {
  .shopModal_card.evenEX_card .shopList .list .link-btn {
    padding: 12px 0;
  }
}
.shopModal_card.evenEX_card .shopList .list .link-btn:hover {
  background-color: white;
  color: var(--evenEX01);
}
.shopModal_card.originalItem_card {
  border: 5px solid var(--originalEX01);
}
.shopModal_card.originalItem_card .shopList_wrap::-webkit-scrollbar-thumb {
  background: var(--originalEX01);
}
.shopModal_card.originalItem_card .shopModal_card__title {
  color: var(--originalEX01);
}
.shopModal_card.originalItem_card .shopList {
  border-top: 2px solid var(--originalEX01);
}
.shopModal_card.originalItem_card .shopList .list {
  color: var(--originalEX01);
  border-bottom: 1px solid var(--originalEX01);
}

.shopList_modal {
  border-radius: 24px;
  border: 5px solid #666666;
  background: #FFF;
  background-image: url("/campaign/summercarnival2026/common/images/shoplistModal_BG.png");
  background-position: top;
  background-size: 100% auto;
  background-repeat: repeat-y;
  padding: 30px 4%;
}
@media screen and (max-width: 768px) {
  .shopList_modal {
    background-image: url("/campaign/summercarnival2026/common/images/shoplistModal_BG_sp.png");
  }
}
.shopList_modal .shopList_modal__inner {
  /* Chrome / Edge / Safari */
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #efefef;
}
@media screen and (min-width: 769px) and (max-height: 700px) {
  .shopList_modal .shopList_modal__inner {
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 768px) {
  .shopList_modal .shopList_modal__inner {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 80dvh;
    -webkit-overflow-scrolling: touch;
  }
}
.shopList_modal .shopList_modal__inner::-webkit-scrollbar {
  width: 6px;
}
.shopList_modal .shopList_modal__inner::-webkit-scrollbar-track {
  background: #efefef;
  border-radius: 999px;
}
.shopList_modal .shopList_modal__inner::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 999px;
}
.shopList_modal.Ch01 {
  border: 5px solid #0A6DB7;
}
.shopList_modal.Ch02 {
  border: 5px solid #E83820;
}
.shopList_modal.Ch03 {
  border: 5px solid #2E835A;
}
.shopList_modal.Ch04 {
  border: 5px solid #2E835A;
}
.shopList_modal.Ch05 {
  border: 5px solid #2E835A;
}
.shopList_modal__inner {
  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;
  gap: 3%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner {
    display: block;
  }
}
.shopList_modal__inner__left {
  width: 47%;
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner__left {
    margin-top: 0px;
    width: 100%;
  }
}
.shopList_modal__inner__right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner__right {
    width: 100%;
  }
}
.shopList_modal__inner__right__visual {
  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-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.shopList_modal__inner .shopList_main {
  position: relative;
  margin-bottom: 20px;
}
.shopList_modal__inner .shopList_main__img {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner .shopList_main__img {
    width: 85%;
  }
}
.shopList_modal__inner .shopList_ex.Ch01 {
  color: #0A6DB7;
}
.shopList_modal__inner .shopList_ex.Ch02 {
  color: #E83820;
}
.shopList_modal__inner .shopList_ex.Ch03 {
  color: #2E835A;
}
.shopList_modal__inner .shopList_ex.Ch04 {
  color: #2E835A;
}
.shopList_modal__inner .shopList_ex.Ch05 {
  color: #2E835A;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner .shopList_ex {
    margin-bottom: 18px;
  }
}
.shopList_modal__inner .shopList_ex__credit {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
}
.shopList_modal__inner .shopList_ex__name {
  width: 95%;
  display: block;
  margin: 0 auto 3px;
}
.shopList_modal__inner .shopList_ex__ja {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.shopList_modal__inner .shopList_facility {
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 30px;
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, #FFF2B8));
  background: linear-gradient(transparent 55%, #FFF2B8 55%);
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner .shopList_facility {
    font-size: min(7.5vw, 33px);
  }
}
.shopList_modal__inner .shopList_facility.Ch01 {
  color: #0A6DB7;
}
.shopList_modal__inner .shopList_facility.Ch02 {
  color: #E83820;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, #D6EACE));
  background: linear-gradient(transparent 55%, #D6EACE 55%);
}
.shopList_modal__inner .shopList_facility.Ch03 {
  color: #2E835A;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, #FADBDA));
  background: linear-gradient(transparent 55%, #FADBDA 55%);
}
.shopList_modal__inner .shopList_facility.Ch04 {
  color: #2E835A;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, #FADBDA));
  background: linear-gradient(transparent 55%, #FADBDA 55%);
}
.shopList_modal__inner .shopList_facility.Ch05 {
  color: #2E835A;
  color: #2E835A;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, #FADBDA));
  background: linear-gradient(transparent 55%, #FADBDA 55%);
}
.shopList_modal__inner .shopList_campaign_box {
  border: 2px dotted #0A6DB7;
  background-color: white;
  border-radius: 8px;
  padding: 20px 5%;
}
.shopList_modal__inner .shopList_campaign_box.Ch01 {
  border: 2px dotted #0A6DB7;
}
.shopList_modal__inner .shopList_campaign_box.Ch02 {
  border: 2px dotted #E83820;
}
.shopList_modal__inner .shopList_campaign_box.Ch03 {
  border: 2px dotted #2E835A;
}
.shopList_modal__inner .shopList_campaign_box.Ch04 {
  border: 2px dotted #2E835A;
}
.shopList_modal__inner .shopList_campaign_box.Ch05 {
  border: 2px dotted #2E835A;
}
.shopList_modal__inner .shopList_campaign_box__label {
  display: inline-block;
  background-color: #0A6DB7;
  padding: 5px 10px;
  color: white;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 10px;
}
.shopList_modal__inner .shopList_campaign_box__label.Ch01 {
  background-color: #0A6DB7;
}
.shopList_modal__inner .shopList_campaign_box__label.Ch02 {
  background-color: #E83820;
}
.shopList_modal__inner .shopList_campaign_box__label.Ch03 {
  background-color: #2E835A;
}
.shopList_modal__inner .shopList_campaign_box__label.Ch04 {
  background-color: #2E835A;
}
.shopList_modal__inner .shopList_campaign_box__label.Ch05 {
  background-color: #2E835A;
}
.shopList_modal__inner .shopList_campaign_box__ex {
  font-size: 14px;
  font-weight: 500;
  line-height: 170%;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner .shopList_campaign_box__ex {
    text-align: left;
  }
}
.shopList_modal__inner .shopList_campaign_box__ex.Ch01 {
  color: #0A6DB7;
}
.shopList_modal__inner .shopList_campaign_box__ex.Ch02 {
  color: #E83820;
}
.shopList_modal__inner .shopList_campaign_box__ex.Ch03 {
  color: #2E835A;
}
.shopList_modal__inner .shopList_campaign_box__ex.Ch04 {
  color: #2E835A;
}
.shopList_modal__inner .shopList_campaign_box__ex.Ch05 {
  color: #2E835A;
}
.shopList_modal__inner .shopList_sub {
  position: absolute;
  width: 43%;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner .shopList_sub {
    width: 38%;
  }
}
.shopList_modal__inner .shopList_sub.sub01_01 {
  top: -49%;
  left: 68%;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner .shopList_sub.sub01_01 {
    top: -4%;
    left: -7%;
  }
}
.shopList_modal__inner .shopList_sub.sub01_02 {
  top: 86%;
  left: -9%;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner .shopList_sub.sub01_02 {
    top: 59%;
    left: 71%;
  }
}
.shopList_modal__inner .shopList_sub.sub02_01 {
  top: -47%;
  left: 62%;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner .shopList_sub.sub02_01 {
    top: -4%;
    left: -7%;
  }
}
.shopList_modal__inner .shopList_sub.sub02_02 {
  top: 89%;
  left: 6%;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner .shopList_sub.sub02_02 {
    top: 69%;
    left: 64%;
  }
}
.shopList_modal__inner .shopList_sub.sub03_01 {
  top: -49%;
  left: 68%;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner .shopList_sub.sub03_01 {
    top: -4%;
    left: -7%;
  }
}
.shopList_modal__inner .shopList_sub.sub03_02 {
  top: 82%;
  left: -5%;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner .shopList_sub.sub03_02 {
    top: 59%;
    left: 67%;
  }
}
.shopList_modal__inner .shopList_sub.sub04_01 {
  top: -49%;
  left: 68%;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner .shopList_sub.sub04_01 {
    top: -8%;
    left: -10%;
  }
}
.shopList_modal__inner .shopList_sub.sub04_02 {
  top: 87%;
  left: 4%;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner .shopList_sub.sub04_02 {
    top: 73%;
    left: 65%;
  }
}
.shopList_modal__inner .shopList_sub.sub05_01 {
  top: -49%;
  left: 68%;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner .shopList_sub.sub05_01 {
    top: -4%;
    left: -7%;
  }
}
.shopList_modal__inner .shopList_sub.sub05_02 {
  top: 89%;
  left: 0%;
}
@media screen and (max-width: 768px) {
  .shopList_modal__inner .shopList_sub.sub05_02 {
    top: 74%;
    left: 65%;
  }
}

.originalItem_card .originalItemList .shopName {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .originalItem_card .originalItemList .shopName {
    font-size: 16px;
    font-size: min(3.8vw, 16px);
  }
}
.originalItem_card .originalItemList .address {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .originalItem_card .originalItemList .address {
    font-size: min(3.7vw, 15px);
    margin: 6px 0 0;
  }
}
/*# sourceMappingURL=style.css.map */
