@charset "UTF-8";
:root {
  --mainColor: #a99181;
  --accentColor: #a62726;
  --white: #fff;
  --black: #333;
}

:root {
  --font-basic: "Zen Old Mincho", serif;
  --font-gothic: "Zen Kaku Gothic New", serif;
}

/*━━━━━━━━━━━━━━━
mv
━━━━━━━━━━━━━━━*/
.mv {
  position: relative;
  width: 100%;
  height: 46.875rem;
  overflow: hidden;
  margin-bottom: 6.875rem;
  height: 46.875rem;
}
.mv.is-active {
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
  -webkit-transition: all 1.3s;
  transition: all 1.3s;
}
.mv img {
  height: 100%;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .multiply {
  position: absolute;
  width: 100%;
  height: 46.875rem;
  background-color: rgba(41, 16, 16, 0.2);
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}
.mv .slick-track {
  height: 46.875rem !important;
}
.mv h2 {
  position: absolute;
  width: 11.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: calc(50% - 0.875rem);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
}
.mv h2 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mv h2 span:nth-of-type(1) {
  margin-bottom: 0.9375rem;
}
.mv h2 span:nth-of-type(2) img {
  height: 3rem;
}
.mv_photo {
  opacity: 0;
  overflow: hidden;
}
.mv_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.mv_scrollDown {
  position: absolute;
  width: 7.5rem;
  height: 7.5rem;
  bottom: 0;
  right: 0;
  margin: 0 1rem 1.625rem 0;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.mv_scrollDown::before {
  position: absolute;
  content: "";
  display: block;
  -webkit-filter: invert(100%);
          filter: invert(100%);
  width: inherit;
  height: inherit;
  background: url(../images/scrolldown.svg) no-repeat;
  background-size: cover;
  -webkit-animation: 30s linear infinite rotation1;
          animation: 30s linear infinite rotation1;
  z-index: 1;
}
@-webkit-keyframes rotation1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotation1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.mv_scrollDown::after {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 38px;
  background: url(../images/scrolldown_arrow.svg) no-repeat;
  background-size: cover;
  -webkit-animation: 2.5s linear infinite rotation2;
          animation: 2.5s linear infinite rotation2;
  top: 50%;
  left: calc(50% + 3px);
  -webkit-filter: invert(100%);
          filter: invert(100%);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@-webkit-keyframes rotation2 {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  50% {
    -webkit-transform: translateY(-33%);
            transform: translateY(-33%);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@keyframes rotation2 {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  50% {
    -webkit-transform: translateY(-33%);
            transform: translateY(-33%);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.mv_scrollDown.is-active {
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 769px) {
  .mv {
    position: relative;
    height: 100vh;
    margin-bottom: 17.3125rem;
  }
  .mv.is-active {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-transition: all 2s;
    transition: all 2s;
  }
  .mv .multiply {
    height: 100vh;
  }
  .mv .slick-track {
    height: auto !important;
  }
  .mv h2 {
    position: absolute;
    width: 29.2587776333vw;
  }
  .mv h2 span:nth-of-type(1) {
    margin-bottom: 3.2509752926vw;
  }
  .mv h2 span:nth-of-type(1) img {
    height: 2.210663199vw;
  }
  .mv h2 span:nth-of-type(2) img {
    height: 7.2821846554vw;
  }
  .mv_scrollDown {
    width: 10.625rem;
    height: 10.625rem;
    margin: 0 3.75rem 3.125rem 0;
  }
  .mv_photo {
    opacity: 0;
    overflow: hidden;
  }
  .mv_photo img {
    height: 100vh;
  }
}
/*━━━━━━━━━━━━━━━
about
━━━━━━━━━━━━━━━*/
.about {
  text-align: center;
  margin-bottom: 5rem;
}
.about_wrap {
  margin-bottom: 2.875rem;
}
.about_catchCopy {
  position: relative;
  display: inline-block;
  padding: 3.875rem 4.5rem;
  margin-bottom: 7.3125rem;
}
.about_catchCopy::before, .about_catchCopy::after {
  position: absolute;
  content: "";
  display: block;
  width: 2.4375rem;
  height: 7.8125rem;
}
.about_catchCopy::before {
  border-right: 1px solid var(--mainColor);
  border-top: 1px solid var(--mainColor);
  top: 0;
  right: 0;
}
.about_catchCopy::after {
  border-left: 1px solid var(--mainColor);
  border-bottom: 1px solid var(--mainColor);
  bottom: 0;
  left: 0;
}
.about_catchCopy-img {
  width: 7.9375rem;
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.about_catchCopy-img.show {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.about_catchCopy-img img {
  width: 100%;
}
.about_detail-logo {
  margin: 0 auto 2.75rem;
  width: 11.6875rem;
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.about_detail-logo.show {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.about_detail-text {
  word-break: keep-all;
  line-height: 2.357;
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.about_detail-text.show {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.about_pic {
  width: 100%;
  height: 168vw;
  max-height: 800px;
  overflow: hidden;
}
.about_pic picture,
.about_pic img {
  width: 110%;
  height: auto;
}

@media screen and (min-width: 992px) {
  .about {
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0 0 11.25rem 6.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4.375rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 50%;
    margin-bottom: 0;
  }
  .about_box {
    margin-left: auto;
  }
  .about_catchCopy {
    max-width: 100%;
    padding: 4.375rem 4.375rem;
    margin-bottom: 7.375rem;
    text-align: center;
  }
  .about_catchCopy-img {
    width: 100%;
  }
  .about_detail {
    max-width: 100%;
  }
  .about_detail-logo {
    margin: 0 auto 6.5019505852vw;
    width: 31.599479844vw;
  }
  .about_detail-text {
    width: 100%;
    word-break: keep-all;
    line-height: 2.357;
  }
  .about_pic {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 50%;
    height: 100vh;
  }
  .about_pic picture,
  .about_pic img {
    width: 100%;
    height: 120%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left 10px;
       object-position: left 10px;
  }
}
@media screen and (min-width: 1440px) {
  .about {
    margin: 0 auto 11.75rem;
    gap: 5.75rem;
  }
  .about_wrap {
    margin-bottom: 0;
  }
  .about_catchCopy {
    padding: 4.625rem 5.25rem;
    margin-bottom: 7.375rem;
  }
  .about_catchCopy-img {
    width: 8.25rem;
  }
  .about_detail-logo {
    margin: 0 auto 3.125rem;
    width: 15.1875rem;
  }
}
/*━━━━━━━━━━━━━━━
feature
━━━━━━━━━━━━━━━*/
.feature {
  position: relative;
  margin-bottom: 5.625rem;
  padding: 4.875rem 0 5.75rem;
}
.feature::before {
  position: absolute;
  content: "";
  display: block;
  width: 77%;
  height: 100%;
  background-color: #eadbd1;
  border-radius: 0 5.625rem 0 0;
  top: 0;
  left: 0;
  z-index: -1;
}
.feature_wrap {
  margin-left: 10.6666666667vw;
  margin-bottom: 3.4375rem;
}
.feature h2 {
  margin-bottom: 1.3125rem;
  font-size: 1.875rem;
}
.feature_dots .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.0625rem;
  font-size: 1rem;
}
.feature_dots .slick-dots li {
  line-height: 1;
  opacity: 0.6;
}
.feature_dots .slick-dots li.slick-active button {
  font-size: 1.1875rem;
  vertical-align: bottom;
  text-decoration: underline;
}
.feature_en {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.feature_box {
  position: relative;
  margin-left: 18.9333333333vw;
}
.feature_en {
  position: absolute;
  text-transform: capitalize;
  top: 0.125rem;
  left: -8vw;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  padding-bottom: 4.875rem;
}
.feature_en::before {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 63px;
  background-color: var(--black);
  bottom: 0;
  left: calc(50% - 0.125rem);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.feature_item {
  position: relative;
  width: 72vw;
  max-width: 21.875rem;
  margin: 0 2.6666666667vw;
}
.feature_catchCopy {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  top: 0;
  right: 0.75rem;
}
.feature_catchCopy p {
  line-height: 1;
  font-weight: 700;
}
.feature_catchCopy p + p {
  margin-right: 0.5625rem;
}
.feature_catchCopy span {
  display: inline-block;
  background-color: var(--white);
  padding: 0.75rem 0.625rem;
  font-size: 1.125rem;
}
.feature_pic img {
  border-radius: 16vw 0.8vw 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.feature_text {
  height: 100%;
  background-color: var(--mainColor);
  font-family: var(--font-gothic);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--white);
  line-height: 1.692;
  padding: 1.3125rem 1.9375rem;
  border-radius: 0 0 0.1875rem 0.1875rem;
}
.feature_text .notes {
  font-size: 80%;
  line-height: 1.5;
  margin-top: 0.625rem;
  text-indent: -1em;
  margin-left: 1em;
}
.feature_arrows {
  margin-top: 8vw;
}
.feature_arrows .slide-arrow {
  width: 2.6875rem;
  margin-right: 1.4375rem;
}
.feature .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.feature .slick-slide {
  height: auto !important;
}

@media screen and (min-width: 769px) {
  .feature {
    margin-bottom: 10rem;
    padding: 10rem 0 10.625rem;
  }
  .feature::before {
    width: 85%;
    border-radius: 0 11.25rem 0 0;
  }
  .feature_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4.1875rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 7.25rem;
    margin-left: 12.375rem;
  }
  .feature h2 {
    line-height: 1;
    margin-bottom: 0;
    font-size: 2.8125rem;
  }
  .feature_dots {
    margin-bottom: 0;
  }
  .feature_dots .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.0625rem;
    font-size: 1.0625rem;
  }
  .feature_dots .slick-dots li.slick-active button {
    font-size: 1.3125rem;
  }
  .feature_box {
    position: relative;
    margin-left: 12.375rem;
  }
  .feature_en {
    left: -4.125rem;
    font-size: 0.875rem;
    padding-bottom: 4.875rem;
  }
  .feature_item {
    position: relative;
    width: 26.875rem;
    max-width: none;
    margin: 0 1.875rem;
  }
  .feature_catchCopy {
    position: absolute;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    top: 0;
    right: 1.5rem;
  }
  .feature_catchCopy p {
    line-height: 1;
    font-weight: 700;
  }
  .feature_catchCopy span {
    font-size: 1.4375rem;
  }
  .feature_pic img {
    border-radius: 4.0625rem 0.1875rem 0 0;
  }
  .feature_text {
    font-size: 0.9375rem;
    padding: 2.125rem 2.3125rem;
  }
  .feature_arrows {
    margin-top: 2.8125rem;
  }
  .feature_arrows img:hover {
    cursor: pointer;
  }
}
@media screen and (min-width: 992px) {
  .feature::before {
    width: 74.3%;
  }
}
/*━━━━━━━━━━━━━━━
pickup
━━━━━━━━━━━━━━━*/
.pickup {
  margin-bottom: 6.875rem;
}
.pickup h2 {
  text-align: center;
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 3.4375rem;
}
.pickup_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.25rem;
}
.pickup_box {
  width: 18.75rem;
  height: 30rem;
  margin: 0 auto 2.5rem;
}
.pickup_pic {
  margin: 0 auto;
}
.pickup_pic picture {
  width: 18.75rem;
  height: 30rem;
}
.pickup_pic picture img {
  width: auto;
  width: 18.75rem;
  height: 30rem;
}
.pickup_dots {
  margin-top: 1rem;
}
.pickup_dots .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5625rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.pickup_dots .slick-dots li {
  width: 0.375rem;
  height: 0.375rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #d9d9d9;
  cursor: pointer;
}
.pickup_dots .slick-dots li.slick-active {
  background: var(--mainColor);
}
.pickup_dots .slick-dots li button {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.pickup_detail {
  max-width: 500px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.625rem;
}
.pickup_priceBox {
  border-left: 2px solid var(--black);
  padding: 0.5rem 0;
}
.pickup_priceBox dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-left: 1.25rem;
}
.pickup_priceBox dl:nth-of-type(n + 2) {
  margin-top: 1.4375rem;
}
.pickup_priceBox dt {
  position: relative;
  width: 3.3125rem;
  margin-right: 0.375rem;
  line-height: 1;
  font-size: 0.8125rem;
  font-weight: 700;
}
.pickup_priceBox dt span {
  position: relative;
  display: inline-block;
  padding-right: 0.375rem;
  padding-bottom: 3px;
  background-color: var(--white);
}
.pickup_priceBox dt span::before {
  position: absolute;
  content: "";
  display: block;
  width: 3.3125rem;
  height: 0.0625rem;
  background-color: var(--black);
  bottom: 2px;
  left: 0;
  z-index: -1;
}
.pickup_priceBox dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  line-height: 1;
}
.pickup_priceBox .number {
  font-size: 1.625rem;
  line-height: 1;
}
.pickup_priceBox .price {
  font-size: 0.8125rem;
  margin-left: 0.8125rem;
}
.pickup_priceBox .price span {
  font-size: 0.625rem;
}
.pickup_priceBox .new {
  color: var(--white);
  padding: 0.0625rem 0.375rem 0.125rem;
  background-color: #b83814;
  vertical-align: middle;
  text-transform: uppercase;
  font-size: 0.6875rem;
  margin-left: 0.5rem;
}
.pickup_textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5625rem;
}
.pickup_text {
  font-size: 0.875rem;
  font-family: var(--font-gothic);
  text-align: justify;
}
.pickup_tag {
  font-size: 0.8125rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem 0.6875rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  white-space: nowrap;
  color: #5f5f5f;
  margin-top: 2rem;
}
.pickup_movie {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 5.4375rem;
}
.pickup_movie::before {
  position: absolute;
  content: "";
  display: block;
  width: 4.875rem;
  height: 2.875rem;
  background: url(../images/movie.svg) no-repeat;
  background-size: cover;
  top: -1.75rem;
  left: -1.4375rem;
  z-index: 10;
}
.pickup_movie button {
  position: relative;
}
.pickup_movie button::before {
  position: absolute;
  content: "";
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  background: url(../images/playbutton.svg) no-repeat;
  background-size: cover;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
}
.pickup_movie button::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(62, 62, 62, 0.3);
  background-size: cover;
  top: 0;
  left: 0;
  z-index: 5;
}

@media screen and (min-width: 992px) {
  .pickup {
    max-width: 980px;
    margin: 0 auto 11.25rem;
  }
  .pickup h2 {
    font-size: 2.8125rem;
    margin-bottom: 7.125rem;
  }
  .pickup_wrap {
    gap: 16.25rem;
  }
  .pickup_wrap > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 5rem;
  }
  .pickup_wrap > div:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .pickup_wrap > div:nth-child(even) .pickup_movie {
    margin-left: 0;
    margin-right: auto;
  }
  .pickup_box {
    width: 54.6163849155vw;
    height: 87.3862158648vw;
    max-width: 26.25rem;
    max-height: 42rem;
    margin: 0;
  }
  .pickup_pic {
    margin: 0 auto;
  }
  .pickup_pic picture {
    width: 54.6163849155vw;
    height: 87.3862158648vw;
    max-width: 26.25rem;
    max-height: 42rem;
  }
  .pickup_pic picture img {
    width: 54.6163849155vw;
    height: 87.3862158648vw;
    max-width: 26.25rem;
    max-height: 42rem;
  }
  .pickup_dots {
    margin-top: 1.125rem;
  }
  .pickup_detail {
    max-width: none;
    gap: 2.875rem;
  }
  .pickup_priceBox {
    border-left: 3px solid var(--black);
    padding: 0.1875rem 0 0.5rem;
  }
  .pickup_priceBox dl {
    padding-left: 1.75rem;
  }
  .pickup_priceBox dl:nth-of-type(n + 2) {
    margin-top: 1.4375rem;
  }
  .pickup_priceBox dt {
    width: 4.875rem;
    font-size: 1.0625rem;
  }
  .pickup_priceBox dt span {
    padding-right: 0.4375rem;
  }
  .pickup_priceBox dt span::before {
    width: 4.875rem;
  }
  .pickup_priceBox .number {
    font-size: 2.3125rem;
  }
  .pickup_priceBox .price {
    font-size: 1rem;
    margin-left: 0.9375rem;
  }
  .pickup_priceBox .price span {
    font-size: 0.625rem;
  }
  .pickup_textBox {
    height: 100%;
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .pickup_text {
    font-size: 0.9375rem;
    line-height: 1.733;
  }
  .pickup_tag {
    margin-top: 4rem;
  }
  .pickup_movie {
    width: 6.75rem;
    margin-left: auto;
  }
}
/*━━━━━━━━━━━━━━━
lineup
━━━━━━━━━━━━━━━*/
.lineup {
  text-align: center;
  margin-bottom: 3.125rem;
}
.lineup h2 {
  text-align: center;
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 3.4375rem;
}
.lineup_container {
  position: relative;
}
.lineup_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.lineup_item {
  position: relative;
  width: calc((100% - 1rem) / 2);
}
.lineup_item img {
  width: 100%;
}
.lineup_item a {
  position: relative;
  display: block;
}
.lineup_item a::before {
  position: absolute;
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background: url(../images/zoom.svg) no-repeat;
  background-size: contain;
  bottom: 5px;
  right: 5px;
  z-index: 1;
}
.lineup_wrap {
  display: none;
}
.lineup .more {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 120px;
  left: 0;
  bottom: -1px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, #ffffff), to(#ffffff));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 50%, #ffffff 100%);
  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;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.3125rem;
  font-size: 1rem;
  font-family: var(--font-gothic);
}
.lineup .more.is-open {
  display: none;
}
.lineup .close {
  text-align: center;
  margin-top: 1.875rem;
}
.lineup .close span {
  text-transform: uppercase;
  font-size: 1rem;
  font-family: var(--font-gothic);
  text-decoration: underline;
  text-underline-offset: 0.3125rem;
}
.lineup_modal {
  display: none;
}
.lineup_text {
  text-align: center;
  padding: 0.5rem 0;
}
.lineup_message {
  word-break: keep-all;
  margin: 1.875rem auto 0;
  padding: 1.875rem 0;
  border-top: 1px dashed rgba(51, 51, 51, 0.3);
  border-bottom: 1px dashed rgba(51, 51, 51, 0.3);
}

@media screen and (min-width: 769px) {
  .lineup {
    max-width: 980px;
    margin: 0 auto 5.125rem;
  }
  .lineup h2 {
    font-size: 2.8125rem;
    margin-bottom: 7.875rem;
  }
  .lineup_list {
    gap: 0.625rem;
    margin-bottom: 0.625rem;
  }
  .lineup_item {
    width: calc((100% - 2.5rem) / 5);
  }
  .lineup_item a::before {
    width: 1.375rem;
    height: 1.375rem;
  }
  .lineup .more {
    height: 200px;
  }
  .lineup .more:hover {
    cursor: pointer;
  }
  .lineup .close span:hover {
    cursor: pointer;
  }
  .lineup_message {
    font-size: 1.0625rem;
  }
}
/*━━━━━━━━━━━━━━━
rental
━━━━━━━━━━━━━━━*/
.rental {
  padding: 5.625rem 0 3.625rem;
  background: url(../images/rental_bg.jpg) repeat-y;
  background-size: 100%;
}
.rental h2 {
  font-size: 1.75rem;
  margin-bottom: 4.125rem;
  text-align: center;
}
.rental_attention {
  margin-bottom: 3rem;
}
.rental_attention h3 span {
  display: inline-block;
  font-size: 1rem;
  color: #857f71;
  padding: 0.5rem 1rem;
  background-color: #d9d1bf;
  border-radius: 7.65px 7.65px 0 0;
  font-family: var(--font-gothic);
  font-weight: 700;
}
.rental_attention-text {
  border: 2px solid #d9d1bf;
  border-radius: 0 20px 20px 20px;
  background-color: var(--white);
  padding: 2.0625rem 2.1875rem;
  font-size: 1.125rem;
  font-family: var(--font-gothic);
  font-weight: 700;
  line-height: 1.667;
}
.rental_attention-text .emphasis {
  color: var(--accentColor);
}
.rental_textArea {
  margin-bottom: 5.625rem;
  text-align: center;
}
.rental_textArea-text {
  font-size: 1rem;
  font-family: var(--font-gothic);
  font-weight: 500;
  line-height: 1.714;
  margin-bottom: 1.1875rem;
}
.rental_textArea-text sup {
  font-size: 0.625rem;
}
.rental_textArea-notes {
  font-size: 0.8125rem;
  font-family: var(--font-gothic);
  line-height: 1.7;
}
.rental_textArea-notes p + p {
  margin-top: 0.5rem;
}
.rental_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.4375rem;
  margin-bottom: 3rem;
}
.rental_item {
  text-align: center;
}
.rental_item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-family: var(--font-gothic);
  font-weight: 500;
  color: var(--white);
  border-radius: 9.52px;
  padding: 3.25rem 1rem 1.5625rem;
}
.rental_item a.-gakunai {
  background-color: #d69290;
}
.rental_item a.-gakunai::before {
  border: 1px solid #d69290;
}
.rental_item a.-gakunai::after {
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  height: 41px;
  background: url(../images/icon-rental_gakunai.svg) no-repeat;
  background-size: contain;
  top: -1.4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.rental_item a.-gakugai {
  background-color: #d7b083;
}
.rental_item a.-gakugai::before {
  border: 1px solid #d7b083;
}
.rental_item a.-gakugai::after {
  position: absolute;
  content: "";
  display: block;
  width: 48px;
  height: 44px;
  background: url(../images/icon-rental_gakugai.svg) no-repeat;
  background-size: contain;
  top: -1.4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.rental_item a::before {
  position: absolute;
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background-color: var(--white);
  top: -2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.rental_item-place {
  font-size: 1.4375rem;
  line-height: 1;
}
.rental_item-place > span {
  position: relative;
  display: inline-block;
  padding-right: 2.3125rem;
}
.rental_item-place > span::before {
  position: absolute;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  right: 7px;
  top: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.rental_item-place .emphasis {
  font-size: 2.5rem;
  margin-right: 0.25rem;
}
.rental_item-explanation {
  font-size: 1rem;
  line-height: 1.7;
}
.rental_screenshot {
  border: 1px solid var(--black);
  border-radius: 50px;
  background-color: var(--white);
  padding: 2.125rem 1.1875rem;
  margin: 0 1.5625rem;
  font-family: var(--font-gothic);
}
.rental_screenshot-caption {
  text-align: center;
  margin-bottom: 1.1875rem;
  font-size: 1rem;
  font-weight: 700;
  word-break: keep-all;
}
.rental_screenshot-wrap {
  max-width: 25rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 0.7875rem;
  text-align: justify;
}
.rental_screenshot-wrap .img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 3.5rem;
  margin-top: 0.1875rem;
}

@media screen and (min-width: 769px) {
  .rental {
    padding: 8.125rem 0 5.1875rem;
    background: url(../images/rental_bg.jpg) repeat;
    background-size: auto;
  }
  .rental .container {
    max-width: 850px;
  }
  .rental h2 {
    font-size: 2.1875rem;
    margin-bottom: 6.25rem;
  }
  .rental_attention {
    margin-bottom: 5rem;
  }
  .rental_attention h3 span {
    font-size: 1.125rem;
    padding: 0.5rem 1.3125rem;
  }
  .rental_attention-text {
    padding: 2.9375rem 2.1875rem;
    font-size: 1.5rem;
    word-break: keep-all;
    text-align: center;
  }
  .rental_textArea {
    margin-bottom: 7.75rem;
  }
  .rental_textArea-text {
    font-size: 1.125rem;
    margin-bottom: 2.1875rem;
  }
  .rental_textArea-text sup {
    font-size: 0.75rem;
  }
  .rental_textArea-notes {
    font-size: 0.8125rem;
  }
  .rental_textArea-notes p + p {
    margin-top: 0.25rem;
  }
  .rental_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.5rem;
    margin-bottom: 5.9375rem;
  }
  .rental_item {
    width: calc((100% - 2.5rem) / 2);
    text-align: center;
  }
  .rental_item a {
    gap: 3.625rem;
    height: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    border-radius: 13px;
    padding: 6.25rem 1rem 3.75rem;
    margin-bottom: auto;
  }
  .rental_item a.-gakunai::after {
    width: 76px;
    height: 62px;
    top: -2.1875rem;
  }
  .rental_item a.-gakugai::after {
    width: 68px;
    height: 62px;
    background-size: contain;
    top: -2.1875rem;
  }
  .rental_item a::before {
    width: 124px;
    height: 124px;
    top: -4.0625rem;
  }
  .rental_item-place {
    font-size: 1.4375rem;
    line-height: 1;
  }
  .rental_item-place .emphasis {
    font-size: 2.5rem;
    margin-right: 0.25rem;
  }
  .rental_item-explanation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: auto;
    font-size: 1.125rem;
  }
  .rental_item:hover .rental_item-place > span::before {
    top: calc(50% + 5px);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .rental_screenshot {
    width: 610px;
    border-radius: 110px;
    padding: 2.8125rem 1.1875rem 2.25rem;
    margin: 0 auto;
  }
  .rental_screenshot-caption {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
  }
  .rental_screenshot-wrap {
    gap: 1.125rem;
    font-size: 0.9375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .rental_screenshot-wrap .img {
    width: 3.75rem;
    margin-top: 0;
  }
}
/*━━━━━━━━━━━━━━━
matomesite
━━━━━━━━━━━━━━━*/
.matomesite {
  padding: 4rem 0;
  background-color: rgba(205, 152, 150, 0.25);
}
.matomesite h2 {
  margin-bottom: 1.625rem;
  font-size: 1.75rem;
  text-align: center;
  color: #d69290;
}
.matomesite_textArea {
  margin-bottom: 3.75rem;
  font-family: var(--font-gothic);
}
.matomesite_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
.matomesite_item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0rem 20;
  height: 52.8vw;
  max-height: 18.75rem;
  border-radius: 10px;
}
.matomesite_item a::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.29);
  mix-blend-mode: multiply;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.matomesite_item a.-kantou {
  background: url(../images/matomesite_kantou.jpg) no-repeat;
  background-size: cover;
}
.matomesite_item a.-toukai {
  background: url(../images/matomesite_toukai.jpg) no-repeat;
  background-size: cover;
}
.matomesite_item-place {
  position: relative;
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 6px var(--black);
  z-index: 1;
}
.matomesite_item-button {
  position: relative;
  width: 12.9375rem;
  text-align: center;
  color: var(--white);
  font-family: var(--font-gothic);
  font-size: 0.875rem;
  padding: 0.75rem;
  white-space: nowrap;
  border-radius: 100px;
  z-index: 1;
}
.matomesite_item-button::before {
  position: absolute;
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  top: 50%;
  right: 13px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.matomesite_item-button.-kantou {
  background-color: #c55b7f;
  border: 1px solid #c55b7f;
}
.matomesite_item-button.-toukai {
  background-color: #4f5593;
  border: 1px solid #4f5593;
}

@media screen and (min-width: 769px) {
  .matomesite {
    padding: 5.5rem 0 7.375rem;
  }
  .matomesite h2 {
    margin-bottom: 4.375rem;
    font-size: 2.1875rem;
  }
  .matomesite_textArea {
    margin-bottom: 4.125rem;
    text-align: center;
  }
  .matomesite_list {
    max-width: 1100px;
    margin: 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.0625rem;
  }
  .matomesite_item {
    width: calc((100% - 2.0625rem) / 2);
  }
  .matomesite_item:hover a::before {
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .matomesite_item:hover .matomesite_item-button.-toukai {
    background-color: var(--white);
    color: #4f5593;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .matomesite_item:hover .matomesite_item-button.-toukai::before {
    border-color: #4f5593;
    right: 14px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .matomesite_item:hover .matomesite_item-button.-kantou {
    background-color: var(--white);
    color: #c55b7f;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .matomesite_item:hover .matomesite_item-button.-kantou::before {
    border-color: #c55b7f;
    right: 14px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .matomesite_item a {
    height: 21.25rem;
    max-height: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .matomesite_item-place {
    font-size: 1.875rem;
    margin-bottom: 1.875rem;
  }
  .matomesite_item-button {
    width: 27.3081924577vw;
    max-width: 17.625rem;
    font-size: 1.125rem;
    padding: 0.75rem;
  }
  .matomesite_item-button::before {
    width: 10px;
    height: 10px;
    right: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
/*━━━━━━━━━━━━━━━
store
━━━━━━━━━━━━━━━*/
.store {
  background-color: rgba(215, 176, 131, 0.25);
  padding: 4.375rem 0 4.0625rem;
  margin-bottom: 3.125rem;
}
.store h2 {
  font-size: 1.5625rem;
  color: #cfa87c;
  line-height: 1.3;
  margin-bottom: 1.625rem;
}
.store h2 > span {
  display: block;
  margin-bottom: 0.625rem;
}
.store h2 > span span {
  padding: 0.1875rem 1.25rem;
  background-color: #cfa87c;
  color: var(--white);
  font-size: 1.1875rem;
  line-height: 1;
}
.store_mainBlock {
  margin-bottom: 3.25rem;
}
.store_head {
  margin-bottom: 3.375rem;
}
.store_textArea {
  font-family: var(--font-gothic);
  line-height: 2;
  font-size: 0.875rem;
}
.store_list {
  margin-left: 3.1875rem;
}
.store_item {
  font-family: var(--font-gothic);
}
.store_item:not(.store_mainBlock .store_item):not(:last-child) {
  margin-bottom: 4rem;
}
.store_item picture img {
  width: 100%;
  border-radius: 8px;
}
.store_prefecture {
  font-size: 0.75rem;
  margin-top: 1.25rem;
  margin-bottom: 0.375rem;
}
.store_prefecture span {
  background-color: var(--white);
  border-radius: 100px;
  border: 1px solid #dab081;
  line-height: 1;
  padding: 0.125rem 0.75rem;
}
.store_name {
  margin-bottom: 0.375rem;
  font-size: 1.0625rem;
  font-weight: 700;
}
.store_name address {
  font-weight: 400;
}
.store_access {
  margin-top: 1rem;
}
.store_access p:nth-child(1) {
  position: relative;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.125rem;
  padding-left: 1em;
}
.store_access p:nth-child(1)::before {
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: rgba(51, 51, 51, 0.8);
  left: 0;
  top: 8px;
}
.store_access p:nth-child(n+2) {
  font-size: 0.8125rem;
}
.store_information {
  position: relative;
  font-size: 0.75rem;
  margin-top: 1.125rem;
  text-align: right;
  padding-right: 1.6875rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.875rem;
  border-bottom: 1px solid #b0b0b0;
}
.store_information::before {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: var(--black);
  top: 9px;
  right: 7px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.store_information::after {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: var(--black);
  top: 9px;
  right: 7px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.store_information.is-open::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.store_detail {
  padding: 0 0.625rem;
  display: none;
}
.store_detail dl div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.store_detail dl dt {
  min-width: 3.75rem;
  white-space: nowrap;
  padding: 0.625rem 0.625rem 0.625rem 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  color: #505050;
  font-size: 0.8125rem;
  word-break: keep-all;
}
.store_detail dl dd {
  font-size: 0.8125rem;
  padding: 0.625rem 0 0.625rem 0.625rem;
  word-break: keep-all;
  border-left: 1px solid #505050;
}
.store_detail dl dd a {
  word-break: break-all;
  text-decoration: underline;
}
.store_catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.375rem;
  gap: 0.8125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
}
.store_catalog-pic {
  width: 4.6875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.store_catalog-pic img {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .store {
    padding: 10.625rem 0 7.25rem;
    margin-bottom: 5rem;
  }
  .store .container {
    max-width: 930px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .store h2 {
    font-size: 2.1875rem;
    margin-bottom: 2.9375rem;
  }
  .store h2 > span span {
    font-size: 1.4375rem;
  }
  .store_mainBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6.25rem;
    margin-bottom: 5.75rem;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .store_mainBlock .store_list {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: calc((100% - 6.25rem) / 2);
  }
  .store_mainBlock .store_item {
    width: 100%;
  }
  .store_block .store_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.25rem;
  }
  .store_block .store_item {
    width: calc((100% - 6.25rem) / 2);
  }
  .store_head {
    margin-bottom: 2.9375rem;
    padding-left: 3.8194444444vw;
  }
  .store_textArea {
    max-width: 16.25rem;
    font-size: 0.9375rem;
  }
  .store_list {
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .store_item:not(.store_mainBlock .store_item):not(:last-child) {
    margin-bottom: 0;
  }
  .store_prefecture {
    font-size: 0.8125rem;
    margin-top: 1.5625rem;
    margin-bottom: 0.625rem;
  }
  .store_prefecture span {
    padding: 0.125rem 0.875rem;
  }
  .store_name {
    font-size: 1.125rem;
  }
  .store_access {
    margin-top: 1rem;
  }
  .store_access p:nth-child(1) {
    font-size: 0.9375rem;
  }
  .store_access p:nth-child(1)::before {
    top: 9px;
  }
  .store_access p:nth-child(2) {
    font-size: 0.875rem;
  }
  .store_information {
    font-size: 0.875rem;
    margin-top: 1.875rem;
    padding-right: 1.6875rem;
    margin-bottom: 1.5625rem;
  }
  .store_information:hover {
    cursor: pointer;
  }
  .store_information::before {
    top: 11px;
    right: 7px;
  }
  .store_information::after {
    top: 11px;
    right: 7px;
  }
  .store_detail {
    padding: 0 0.75rem;
  }
  .store_detail dl dt {
    min-width: 3.75rem;
    padding: 0.25rem 1.0625rem 0.25rem 0;
    font-size: 0.875rem;
  }
  .store_detail dl dd {
    font-size: 0.875rem;
    padding: 0.25rem 0 0.25rem 1.0625rem;
    word-break: keep-all;
  }
  .store_detail dl dd a {
    word-break: break-all;
    text-decoration: underline;
  }
  .store_catalog {
    margin-top: 1.75rem;
    gap: 1.125rem;
    font-size: 0.8125rem;
  }
  .store_catalog-pic {
    width: 5.625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1440px) {
  .store_head {
    padding-left: 3.125rem;
  }
}
/*━━━━━━━━━━━━━━━
remarks
━━━━━━━━━━━━━━━*/
.remarks {
  font-size: 0.75rem;
  line-height: 1.6;
  margin-bottom: 6.875rem;
}
.remarks_textArea {
  margin-bottom: 4.125rem;
}
.remarks_textArea a {
  text-decoration: underline;
}
.remarks_maedoriplan {
  text-align: center;
  display: block;
}

@media screen and (min-width: 769px) {
  .remarks {
    max-width: 930px;
    font-size: 0.8125rem;
    margin: 0 auto 9.375rem;
  }
  .remarks_maedoriplan {
    text-align: center;
    display: block;
    margin-bottom: 6.875rem;
  }
}
/*━━━━━━━━━━━━━━━
linkArea
━━━━━━━━━━━━━━━*/
.linkArea {
  position: fixed;
  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: flex-end;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3.125rem;
  z-index: 20;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-top: 1px solid #d9d1bf;
}
.linkArea.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.linkArea_ippin {
  width: 100%;
  height: 100%;
}
.linkArea_ippin a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #d9d1bf;
  font-size: 1rem;
  font-family: var(--font-gothic);
}
@media (hover: hover) and (pointer: fine) {
  .linkArea_ippin a:hover {
    background-color: var(--white);
  }
}
.linkArea_ippin a br {
  display: none;
}
.linkArea_top {
  position: relative;
  width: 3.125rem;
  height: 3.125rem;
  vertical-align: bottom;
}
.linkArea_top a {
  position: relative;
  width: inherit;
  height: inherit;
  display: block;
  background-color: var(--white);
  border-top: 1px solid #d9d1bf;
}
.linkArea_top a::before {
  position: absolute;
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  top: calc(50% + 3px);
  left: 50%;
  border-top: 2px solid var(--mainColor);
  border-left: 2px solid var(--mainColor);
  -webkit-transform: rotate(45deg) translate(-50%);
          transform: rotate(45deg) translate(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .linkArea_top a:hover::before {
    background-color: var(--white);
    top: calc(50% - 1px);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
}

@media screen and (min-width: 992px) {
  .linkArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    bottom: 0;
    left: auto;
    right: 0;
    width: 8.125rem;
    height: auto;
    border-left: 1px solid #d9d1bf;
    border-radius: 20px 0 0 0;
  }
  .linkArea_ippin {
    width: 100%;
    height: 100%;
  }
  .linkArea_ippin a {
    padding: 0.625rem 0.625rem;
    font-size: 0.875rem;
    text-align: center;
  }
  .linkArea_ippin a br {
    display: block;
  }
  .linkArea_top {
    position: relative;
    width: 8.125rem;
    height: 3.125rem;
    vertical-align: bottom;
  }
  .linkArea_top a {
    position: relative;
    width: inherit;
    height: inherit;
    display: block;
    background-color: var(--white);
  }
  .linkArea_top a:hover {
    opacity: 1;
  }
  .linkArea_top a::before {
    position: absolute;
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    top: calc(50% + 3px);
    left: 50%;
    border-top: 2px solid var(--mainColor);
    border-left: 2px solid var(--mainColor);
    -webkit-transform: rotate(45deg) translate(-50%);
            transform: rotate(45deg) translate(-50%);
  }
}