*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
}

h1, h2, h3, h4, h5, h6, p, div {
  overflow-wrap: break-word;
}

img, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, button, textarea, select {
  font: inherit;
  vertical-align: middle;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

html {
  font-size: 62.5%;
}

body {
  color: #231815;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.82;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.6428;
  }
}

*,
*::before,
*::after {
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
}

a {
  color: #000;
  text-decoration: none;
}

span {
  letter-spacing: inherit;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  transform-style: preserve-3d;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  outline: none;
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  outline: none;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__slider {
  position: relative;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
          animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@-webkit-keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide--draggable > .splide__slider > .splide__track, .splide--draggable > .splide__track {
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide--fade > .splide__slider > .splide__track > .splide__list, .splide--fade > .splide__track > .splide__list {
  display: block;
}

.splide--fade > .splide__slider > .splide__track > .splide__list > .splide__slide, .splide--fade > .splide__track > .splide__list > .splide__slide {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

.splide--fade > .splide__slider > .splide__track > .splide__list > .splide__slide.is-active, .splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide--ttb.is-active > .splide__slider > .splide__track > .splide__list, .splide--ttb.is-active > .splide__track > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover {
  opacity: 0.9;
}

.splide__arrow:focus {
  outline: none;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus {
  outline: none;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide--nav > .splide__slider > .splide__track > .splide__list > .splide__slide, .splide--nav > .splide__track > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide--nav > .splide__slider > .splide__track > .splide__list > .splide__slide.is-active, .splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide--nav > .splide__slider > .splide__track > .splide__list > .splide__slide:focus, .splide--nav > .splide__track > .splide__list > .splide__slide:focus {
  outline: none;
}

.splide--rtl > .splide__arrows .splide__arrow--prev, .splide--rtl > .splide__slider > .splide__track > .splide__arrows .splide__arrow--prev, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide--rtl > .splide__arrows .splide__arrow--prev svg, .splide--rtl > .splide__slider > .splide__track > .splide__arrows .splide__arrow--prev svg, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide--rtl > .splide__arrows .splide__arrow--next, .splide--rtl > .splide__slider > .splide__track > .splide__arrows .splide__arrow--next, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide--rtl > .splide__arrows .splide__arrow--next svg, .splide--rtl > .splide__slider > .splide__track > .splide__arrows .splide__arrow--next svg, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide--ttb > .splide__arrows .splide__arrow, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow, .splide--ttb > .splide__track > .splide__arrows .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide--ttb > .splide__arrows .splide__arrow--prev, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow--prev, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev {
  top: 1em;
}

.splide--ttb > .splide__arrows .splide__arrow--prev svg, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow--prev svg, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide--ttb > .splide__arrows .splide__arrow--next, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow--next, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide--ttb > .splide__arrows .splide__arrow--next svg, .splide--ttb > .splide__slider > .splide__track > .splide__arrows .splide__arrow--next svg, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide--ttb > .splide__pagination, .splide--ttb > .splide__slider > .splide__pagination {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}
.sp-inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-inline {
    display: inline;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.ib {
  display: inline-block;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.font-mincho {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.c-white {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-whitePc {
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .c-whiteSp {
    color: #fff;
  }
}

.inner {
  width: 78%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 89.4%;
  }
}
@media screen and (min-width: 768px) {
  .inner-pc {
    width: 78%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.inner-sp {
  width: 89.4%;
  margin-left: auto;
  margin-right: auto;
}

.fadeIn {
  opacity: 0;
  transition: opacity 1.2s;
}
.fadeIn.on {
  opacity: 1;
}

_::-webkit-full-page-media,
_:future,
:root .rotate {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 17px;
  height: 17px;
  transform: rotate(-90deg);
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  _::-webkit-full-page-media,
_:future,
:root .rotate {
    width: 14px;
    height: 14px;
    transform: rotate(-90deg);
  }
}

.mv {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #ccc;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media (hover: hover) {
  .mv {
    height: 100vh !important;
  }
}
.mv_logo {
  width: 18.125vw;
  position: absolute;
  top: 56px;
  left: 5.15%;
}
@media screen and (max-width: 767px) {
  .mv_logo {
    width: 42.6666666667vw;
    max-width: 161px;
    top: 22px;
    left: 5.3%;
  }
}
.mv_logo img {
  width: 100%;
}
.mv_read {
  font-size: max(40px, 3.33984375vw);
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-shadow: 0 0 19px #fff, 0 0 19px #fff, 0 0 19px #fff;
  transform: translateY(7.5%);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .mv_read {
    font-size: 7.2vw;
    text-shadow: none;
    line-height: 1.29629;
    -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
    position: absolute;
    top: 46vw;
    left: 5.3%;
    transform: translateY(0);
  }
}
.mv_read ._num {
  display: inline-block;
  -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
  letter-spacing: 0;
  line-height: 1.1;
}
.mv_read ._en {
  display: inline-block;
  -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
  line-height: 1.2;
  letter-spacing: 0;
  margin-top: -1vw;
  transform: translateX(4%);
}
.mv_placeBox {
  color: #fff;
  position: absolute;
  left: 5.15%;
  bottom: 60px;
}
@media screen and (max-width: 767px) {
  .mv_placeBox {
    left: 5.3%;
    bottom: 28px;
  }
}
.mv_place span {
  position: relative;
  display: block;
  padding-bottom: 0.78125vw;
  font-feature-settings: "palt";
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv_place span {
    padding-bottom: 3.2vw;
  }
}
.mv_place span:nth-child(1) {
  font-size: 3.09375vw;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .mv_place span:nth-child(1) {
    font-size: 8.8vw;
  }
}
.mv_place span:nth-child(2) {
  margin-top: 0.78125vw;
  font-size: 4.59375vw;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .mv_place span:nth-child(2) {
    margin-top: 1.8666666667vw;
    font-size: 13.0666666667vw;
  }
}
.mv_place span::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -2px;
}
@media screen and (max-width: 767px) {
  .mv_place span::after {
    height: 2;
    bottom: -1px;
  }
}

.map {
  background: #2ea7e0;
  color: #fff;
}
.map > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .map > div {
    display: block;
    padding-top: 50px;
  }
}
.map h2 {
  margin-bottom: 15px;
  font-size: 25px;
  line-height: 1.48;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .map h2 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.52;
  }
}
.map p {
  letter-spacing: 0.04em;
  text-align: justify;
}
.map_imgBox {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .map_imgBox {
    width: 100%;
    text-align: center;
  }
}
.map_contBox {
  width: 46%;
  max-width: 406px;
}
@media screen and (max-width: 767px) {
  .map_contBox {
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
  }
}
.map_linkBox {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 660px;
  margin: 90px auto 0;
}
@media screen and (max-width: 767px) {
  .map_linkBox {
    margin-top: 28px;
  }
}
.map_linkBox a {
  display: block;
  width: calc((100% - 20px) / 2);
  background: #fff;
  color: #2ea7e0;
  font-size: 24px;
  line-height: 76px;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .map_linkBox a {
    width: calc((100% - 12px) / 2);
    font-size: 21px;
  }
}

.arrow {
  padding: 125px 0 120px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .arrow {
    padding: 35px 0 44px;
  }
}
@media screen and (max-width: 767px) {
  .arrow img {
    width: 62px;
  }
}

.day_mv,
.report_mv,
.recommendedBEER_mv {
  position: relative;
}
.day_mv picture,
.day_mv img,
.report_mv picture,
.report_mv img,
.recommendedBEER_mv picture,
.recommendedBEER_mv img {
  width: 100%;
}
.day_mv_ttl,
.report_mv_ttl,
.recommendedBEER_mv_ttl {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  font-size: 3.906vw;
  line-height: 1.4;
  letter-spacing: 0.06em;
  word-break: keep-all;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .day_mv_ttl,
.report_mv_ttl,
.recommendedBEER_mv_ttl {
    font-size: 8vw;
    line-height: 1.3;
  }
}
.day1 .day_mv_ttl,
.day1 .report_mv_ttl,
.day1 .recommendedBEER_mv_ttl {
  left: 25%;
  transform: translateY(64%);
}
@media screen and (max-width: 767px) {
  .day1 .day_mv_ttl,
.day1 .report_mv_ttl,
.day1 .recommendedBEER_mv_ttl {
    left: auto;
    right: 50%;
  }
}
.day2 .day_mv_ttl,
.day2 .report_mv_ttl,
.day2 .recommendedBEER_mv_ttl {
  right: 23%;
  transform: translateY(50%);
}
@media screen and (max-width: 767px) {
  .day2 .day_mv_ttl,
.day2 .report_mv_ttl,
.day2 .recommendedBEER_mv_ttl {
    right: 20%;
    transform: translateY(74.5%);
  }
}
.day_mv_ttl ._num,
.report_mv_ttl ._num,
.recommendedBEER_mv_ttl ._num {
  display: inline-block;
  -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
  letter-spacing: 0;
  line-height: 1.1;
}
.day_mv_ttl ._en,
.report_mv_ttl ._en,
.recommendedBEER_mv_ttl ._en {
  display: inline-block;
  -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
  line-height: 1.2;
  letter-spacing: 0;
  margin-top: -1vw;
  transform: translateX(4%);
}
.day_readBox,
.report_readBox,
.recommendedBEER_readBox {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-top: 24.6vw;
}
@media screen and (max-width: 767px) {
  .day_readBox,
.report_readBox,
.recommendedBEER_readBox {
    flex-direction: column;
    max-width: 400px;
    margin-top: 65.86vw;
  }
}
.day_readBox p,
.report_readBox p,
.recommendedBEER_readBox p {
  height: 330px;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: justify;
  line-height: 2.1;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .day_readBox p,
.report_readBox p,
.recommendedBEER_readBox p {
    height: 245px;
    line-height: 1.7857;
  }
}
@media screen and (max-width: 767px) {
  .day_readBox p + p,
.report_readBox p + p,
.recommendedBEER_readBox p + p {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .day1 .day_readBox p:nth-child(2),
.day1 .report_readBox p:nth-child(2),
.day1 .recommendedBEER_readBox p:nth-child(2) {
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .day2 .day_readBox p:nth-child(1),
.day2 .report_readBox p:nth-child(1),
.day2 .recommendedBEER_readBox p:nth-child(1) {
    margin-right: auto;
  }
}
.day2 .day_readBox,
.day2 .report_readBox,
.day2 .recommendedBEER_readBox {
  justify-content: flex-start;
}
.day_readBox ._num,
.report_readBox ._num,
.recommendedBEER_readBox ._num {
  display: inline-block;
  -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
  letter-spacing: 0;
  line-height: 1.1;
}
.day_readBox ._en,
.report_readBox ._en,
.recommendedBEER_readBox ._en {
  display: inline-block;
  -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
  line-height: 1.2;
  letter-spacing: 0;
  margin-top: -1vw;
  transform: translateX(4%);
}
.day_container,
.report_container,
.recommendedBEER_container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  font-size: clamp(15px, 1.328125vw, 17px);
}
@media screen and (max-width: 767px) {
  .day_container,
.report_container,
.recommendedBEER_container {
    font-size: 14px;
  }
}
.day_read, .day_read-vertical,
.report_read-vertical,
.recommendedBEER_read-vertical,
.report_read,
.recommendedBEER_read {
  font-size: clamp(26px, 2.65625vw, 34px);
  line-height: 1.4705;
}
@media screen and (max-width: 767px) {
  .day_read, .day_read-vertical,
.report_read-vertical,
.recommendedBEER_read-vertical,
.report_read,
.recommendedBEER_read {
    font-size: min(5.6vw, 28px);
    line-height: 1.523;
  }
}
.day_read-vertical,
.report_read-vertical,
.recommendedBEER_read-vertical {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  white-space: nowrap;
}
.day_read ._en, .day_read-vertical ._en,
.report_read ._en,
.report_read-vertical ._en,
.recommendedBEER_read ._en,
.recommendedBEER_read-vertical ._en {
  display: inline-block;
  -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
  line-height: 1.2;
  letter-spacing: 0;
  margin-top: -1vw;
  transform: translateX(4%);
}
.day_read ._num, .day_read-vertical ._num,
.report_read ._num,
.report_read-vertical ._num,
.recommendedBEER_read ._num,
.recommendedBEER_read-vertical ._num {
  display: inline-block;
  -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
  letter-spacing: 0;
  line-height: 1.1;
}
.day_text,
.report_text,
.recommendedBEER_text {
  text-align: justify;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .day_text,
.report_text,
.recommendedBEER_text {
    font-size: clamp(14px, 3.7333333333vw, 17px);
  }
}
.day_textMin,
.report_textMin,
.recommendedBEER_textMin {
  font-size: clamp(13px, 1.171875vw, 15px);
  line-height: 1.533;
  letter-spacing: 0.04em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .day_textMin,
.report_textMin,
.recommendedBEER_textMin {
    font-size: clamp(12px, 3.2vw, 15px);
    line-height: 1.5;
  }
}

.gift {
  margin-top: 240px;
  background: rgba(46, 168, 224, 0.2);
}
@media screen and (max-width: 767px) {
  .gift {
    margin-top: 120px;
  }
}
.gift::before {
  content: "";
  display: block;
  width: 100%;
  height: 74px;
  background: rgba(255, 255, 255, 0.2) url(../image/common/dot_bar.svg) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .gift::before {
    background-image: url(../image/common/dot_bar_sp.svg);
  }
}
.gift_wrap {
  overflow: hidden;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .gift_wrap {
    padding-bottom: 30px;
  }
}
.gift_ttlBox {
  position: relative;
}
.gift_ttl {
  padding: 0 14px;
  color: #2ea7e0;
  font-size: 50px;
  font-weight: 500;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  white-space: nowrap;
  position: absolute;
  top: -35px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .gift_ttl {
    padding: 0;
    font-size: 30px;
    -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
    top: -30px;
  }
}
.gift_badge {
  position: absolute;
  top: -108px;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .gift_badge {
    width: 92px;
    top: -52px;
  }
}
.gift .inner {
  position: relative;
}
.gift_read {
  padding: 60px 0 30px 120px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .gift_read {
    padding: 30px 0 30px;
  }
}
.gift_container {
  font-size: 15px;
  line-height: 1.5333;
}
@media screen and (max-width: 560px) {
  .gift_container {
    font-size: 12px;
    line-height: 1.5;
  }
}
.gift_contTtl {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2857;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 560px) {
  .gift_contTtl {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
  }
}
.gift_contInfo {
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.after {
  margin-top: 87px;
}
@media screen and (max-width: 767px) {
  .after {
    margin-top: 68px;
  }
}
.after_ttlBox {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .after_ttlBox {
    display: block;
  }
}
.after_ttl {
  border-right: 1px solid #231815;
  font-size: 50px;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  line-height: 1;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .after_ttl {
    padding-right: 0;
    padding-bottom: 12px;
    border-right: 0;
    border-bottom: 1px solid #231815;
    font-size: 30px;
    text-align: center;
    -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
  }
}
.after_introBox {
  flex: 1;
  max-width: 827px;
  padding-left: 40px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .after_introBox {
    margin-top: 26px;
    padding-left: 0;
    padding-bottom: 40px;
  }
}
.after_introBox p {
  letter-spacing: 0.04em;
}
.after_introBox_read {
  margin-bottom: 15px;
  font-size: 34px;
  line-height: 1.4705;
}
@media screen and (max-width: 767px) {
  .after_introBox_read {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.5238;
  }
}
.after_movie {
  width: 100%;
  padding-top: 56.25%;
  background: #dcdddd;
  position: relative;
}
.after_movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.after_linkBox {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 56px;
}
@media screen and (max-width: 1000px) {
  .after_linkBox {
    gap: 14px;
    margin-top: 46px;
  }
}
.after_linkBox a {
  display: block;
  width: calc((100% - 32px) / 3);
  padding: 8px 0;
  background: #9fa0a0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .after_linkBox a {
    width: 100%;
    padding: 10px 0;
    font-size: 17px;
  }
}

.cooperation {
  margin-top: 170px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .cooperation {
    margin-top: 70px;
  }
}
.cooperation > .inner {
  max-width: 998px;
}
.cooperation_ttl {
  font-size: 50px;
  line-height: 1;
  border-bottom: 1px solid #231815;
  padding-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .cooperation_ttl {
    padding-bottom: 12px;
    font-size: 30px;
    text-align: center;
  }
}
.cooperation_list {
  margin-top: 57px;
}
@media screen and (max-width: 767px) {
  .cooperation_list {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.5;
  }
}
.cooperation_list a {
  display: block;
  font-size: 15px;
  line-height: 1.53;
}
@media screen and (max-width: 767px) {
  .cooperation_list a {
    font-size: 12px;
    line-height: 1.5;
  }
}
.cooperation_list p {
  letter-spacing: 0.04em;
}
.cooperation_list ._imgBox {
  padding-top: 76.6055%;
  padding-top: 76.6055045872%;
  position: relative;
}
.cooperation_list ._imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.cooperation_list .font-mincho {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 2.84em;
  margin: 10px 0;
  font-size: 19px;
  line-height: 1.42;
}
@media screen and (max-width: 767px) {
  .cooperation_list .font-mincho {
    font-size: 17px;
    line-height: 1.2941;
  }
}
.cooperation .splide {
  margin-top: 57px;
}
@media screen and (max-width: 767px) {
  .cooperation .splide {
    margin-top: 20px;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .cooperation .splide__track {
    overflow: visible;
  }
}
.cooperation .splide__arrow {
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
  opacity: 1;
  top: 50px;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .cooperation .splide__arrow {
    display: none;
  }
}
.cooperation .splide__arrow[disabled] {
  display: none;
}
.cooperation .splide__arrow--prev {
  left: -50px;
}
.cooperation .splide__arrow--next {
  right: -50px;
}

.footer {
  margin-top: 30px;
  padding: 50px 0 40px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 0 10px;
  }
}
.footer .topto {
  position: absolute;
  top: 0;
  left: -45px;
}
@media screen and (max-width: 767px) {
  .footer .topto {
    top: 30px;
    left: auto;
    right: 0;
  }
}
.footer_logo {
  display: block;
  margin: 0 auto;
  width: 184px;
}
.footer_logo img {
  width: 100%;
}

.vol9 {
  --color-red: #d93924;
}
.vol9 header img {
  width: 100%;
}
.vol9 .intro {
  background: var(--color-red);
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .vol9 .intro {
    padding-top: 35px;
  }
}
.vol9 .intro_map {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .vol9 .intro_map img {
    width: 90%;
    max-width: 480px;
  }
}
.vol9 .intro_textBox {
  max-width: 886px;
  margin: 60px auto;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .vol9 .intro_textBox {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.vol9 .intro_textBox h2 {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .vol9 .intro_textBox h2 {
    margin-bottom: 10px;
  }
}
.vol9 .intro .map_linkBox {
  margin-top: 0px;
}
.vol9 .intro .map_linkBox a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 76px;
  padding: 0 2px;
  box-shadow: 3px -3px 0 #eca383;
  color: var(--color-red);
  line-height: 1.2380952381;
}
@media screen and (max-width: 767px) {
  .vol9 .intro .map_linkBox a {
    font-size: min(5.6vw, 21px);
  }
}
.vol9 .intro .map_linkBox a._spaceMin {
  letter-spacing: -0.02em;
}
.vol9 .product {
  position: relative;
  z-index: 1;
}
.vol9 .product::before {
  content: "";
  display: block;
  width: 480px;
  height: 480px;
  background: #000;
  opacity: 0.2;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .vol9 .product::before {
    width: 230px;
    height: 230px;
  }
}
.vol9 .product ._name {
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .vol9 .product ._name {
    font-size: 17px;
  }
}
.vol9 .product ._price {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .vol9 .product ._price {
    font-size: 13px;
  }
}
.vol9 .product ._areaBox {
  display: inline-block;
  padding-right: 82px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol9 .product ._areaBox {
    padding-right: 68px;
  }
}
.vol9 .product ._area {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.vol9 .product ._area span {
  display: block;
  font-size: 80px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .vol9 .product ._area {
    font-size: 10px;
  }
  .vol9 .product ._area span {
    font-size: 35px;
  }
}
.vol9 .product ._prefectures {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #ccc;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  position: absolute;
  right: 0;
  bottom: -4px;
}
@media screen and (max-width: 767px) {
  .vol9 .product ._prefectures {
    width: 56px;
    height: 56px;
    font-size: 13px;
    bottom: -11px;
  }
}
.vol9 .product ._read {
  margin-top: 20px;
  font-size: 30px;
  line-height: 1.47;
}
@media screen and (max-width: 767px) {
  .vol9 .product ._read {
    font-size: 21px;
  }
}
.vol9 .product ._text {
  margin-top: 15px;
  text-align: justify;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .vol9 .product ._text {
    font-size: 14px;
  }
}
.vol9 .product ._textMin {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5333;
  letter-spacing: 0.02em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .vol9 .product ._textMin {
    font-size: 12px;
  }
}
.vol9 .product ._contImg {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .vol9 .product ._contImg {
    margin-top: 25px;
  }
}
.vol9 .product ._contImg img {
  width: 100%;
}
.vol9 .product ._linkBox {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .vol9 .product ._linkBox {
    margin-top: 30px;
  }
}
.vol9 .product ._linkBox a {
  display: block;
  width: 100%;
  max-width: 320px;
  background: #ccc;
  padding: 8px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .vol9 .product ._linkBox a {
    max-width: 100%;
    padding: 12px 0;
    font-size: 17px;
    letter-spacing: 0.2em;
  }
}
.vol9 .product ._linkBox a._boderLink {
  padding: 7px 0 5px;
  color: var(--color-red);
  border: 2px solid var(--color-red);
  background: #fff !important;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .vol9 .product ._linkBox a._boderLink {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 51px;
    letter-spacing: -0.01em;
    font-size: min(4vw, 15px);
  }
}
.vol9 #story .storyHead img {
  width: 100%;
}
.vol9 #story .storyIntro {
  padding: 80px 0 90px;
  max-width: 880px;
}
@media screen and (max-width: 767px) {
  .vol9 #story .storyIntro {
    padding: 55px 0 50px;
  }
}
.vol9 #story .storyIntro ._secTtl {
  margin-bottom: 45px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .vol9 #story .storyIntro ._secTtl {
    margin-bottom: 20px;
  }
}
.vol9 #story .storyIntro ._list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .vol9 #story .storyIntro ._list {
    margin-top: 35px;
  }
}
.vol9 #story .storyIntro ._list li {
  max-width: 244px;
  width: 31%;
}
@media screen and (max-width: 767px) {
  .vol9 #story .storyIntro ._list li {
    padding-bottom: 5px;
  }
  .vol9 #story .storyIntro ._list li:nth-child(1) img {
    width: 80px;
  }
  .vol9 #story .storyIntro ._list li:nth-child(2) img {
    width: 51px;
  }
  .vol9 #story .storyIntro ._list li:nth-child(3) img {
    width: 60px;
  }
}
.vol9 #story .storyIntro ._list a {
  display: block;
  padding-bottom: 25px;
  border-left: 2px solid var(--color-red);
  border-bottom: 2px solid var(--color-red);
  text-align: center;
  color: var(--color-red);
  font-size: 27px;
}
@media screen and (max-width: 767px) {
  .vol9 #story .storyIntro ._list a {
    padding-bottom: 5px;
    font-size: min(4.5333333333vw, 17px);
  }
}
@media (hover: hover) {
  .vol9 #story .storyIntro ._list a {
    transition: 0.3s;
  }
  .vol9 #story .storyIntro ._list a:hover {
    opacity: 0.8;
  }
}
.vol9 #story .storyIntro ._list ._img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
}
@media screen and (max-width: 767px) {
  .vol9 #story .storyIntro ._list ._img {
    height: 60px;
  }
}
.vol9 #story .storycont_head {
  position: relative;
}
.vol9 #story .storycont_headTtl {
  font-size: 3.046875vw;
  line-height: 1.08;
  text-align: center;
  letter-spacing: 0;
  position: absolute;
  top: calc((100 / 1280) * 100vw);
  left: calc((190 / 1280) * 100%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .vol9 #story .storycont_headTtl {
    font-size: 11.2vw;
    line-height: 0.95;
    top: calc((28 / 375) * 100vw);
    left: calc((19 / 375) * 100%);
  }
}
.vol9 #story .storycont ._red {
  color: var(--color-red);
}
.vol9 #story .storycont ._ja {
  display: inline-block;
  padding: 0.46875vw 1.171875vw 0.703125vw;
  background: var(--color-red);
  border-radius: 5px;
  color: #fff;
  font-size: 3.28125vw;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .vol9 #story .storycont ._ja {
    padding: 1.6vw 2.6666666667vw 2.4vw;
    font-size: 8.2666666667vw;
  }
}
.vol9 #story .storycont .day_mv_ttl {
  left: calc((186 / 1280) * 100%);
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .vol9 #story .storycont .day_mv_ttl {
    left: calc((32 / 375) * 100%);
  }
}
.vol9 #story .storycont .day_readBox {
  justify-content: flex-start;
  margin-top: calc((250 / 1280) * 100vw);
}
@media screen and (max-width: 767px) {
  .vol9 #story .storycont .day_readBox {
    margin-top: calc((237 / 375) * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .storycont .day_readBox p:nth-child(2) {
    margin-right: auto;
  }
}
.vol9 #story .day_textMin {
  margin-top: min(calc((20 / 1280) * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .vol9 #story .day_textMin {
    margin-top: calc((10 / 375) * 100vw);
  }
}
.vol9 #story .productContainer {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .vol9 #story .productContainer {
    padding-bottom: 40px;
  }
}
.vol9 #story .productContainer > .inner {
  width: 90%;
  max-width: 1140px;
}
@media screen and (max-width: 767px) {
  .vol9 #story .productContainer > .inner {
    max-width: 340px;
  }
}
.vol9 #story .product {
  display: flex;
  align-items: flex-end;
  gap: 0 10px;
}
@media screen and (max-width: 767px) {
  .vol9 #story .product {
    display: block;
    position: relative;
  }
}
.vol9 #story .product + .product {
  margin-top: 60px;
}
.vol9 #story .product::before {
  width: 380px;
  height: 380px;
  opacity: 0.1;
  background: var(--color-red);
}
@media screen and (max-width: 767px) {
  .vol9 #story .product::before {
    width: 230px;
    height: 230px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #story .product:nth-child(odd)::before {
    left: -72px;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .product:nth-child(odd)::before {
    right: -55px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #story .product:nth-child(even)::before {
    right: -72px;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .product:nth-child(even)::before {
    left: -55px;
  }
}
.vol9 #story .product ._head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .vol9 #story .product ._head {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
}
.vol9 #story .product ._name {
  color: var(--color-red);
}
@media screen and (max-width: 767px) {
  .vol9 #story .product ._name {
    font-size: 16px;
  }
}
@media screen and (max-width: 360px) {
  .vol9 #story .product ._name .xsBr {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .product ._sumally {
    position: relative;
    z-index: 2;
  }
}
.vol9 #story .product ._area span {
  color: var(--color-red);
}
.vol9 #story .product ._prefectures {
  background: var(--color-red);
}
@media screen and (max-width: 767px) {
  .vol9 #story .product ._read {
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    position: relative;
    z-index: 2;
    margin-top: 40px;
    margin-left: 12px;
    margin-right: 22px;
  }
  .vol9 #story .product ._read ._rotate {
    display: inline-block;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    letter-spacing: 0;
    line-height: 1;
  }
}
.vol9 #story .product ._linkBox a {
  background: var(--color-red);
}
.vol9 #story .product:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .vol9 #story .product:nth-child(even) ._head {
    right: auto;
    left: 0;
  }
  .vol9 #story .product:nth-child(even) ._head::before {
    left: 30%;
  }
  .vol9 #story .product:nth-child(even) ._sumally {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
.vol9 #story .story1 .day_mv_ttl {
  transform: translateY(50%);
}
.vol9 #story .story1_cont1 {
  display: flex;
  flex-wrap: wrap;
  margin-top: min(calc((188 / 1280) * 100vw), 188px);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1_cont1 {
    margin-top: calc((65 / 375) * 100vw);
  }
}
.vol9 #story .story1_cont1_read1 {
  position: absolute;
  top: calc((40 / 1280) * 100vw);
  left: calc((430 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1_cont1_read1 {
    top: 0;
    left: calc((36 / 375) * 100%);
  }
}
.vol9 #story .story1_cont1_box1 {
  width: calc((448 / 1280) * 100%);
  position: absolute;
  top: 0;
  left: calc((704 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1_cont1_box1 {
    width: 100%;
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1_cont1_box1 > * {
    width: calc((182 / 375) * 100%);
    margin-left: auto;
    margin-right: 5.3%;
  }
}
.vol9 #story .story1_cont1_box2 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .vol9 #story .story1_cont1_box2 > * {
    width: calc((260 / 1280) * 100%);
    margin-left: calc((74 / 1280) * 100%);
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1_cont1_box2 {
    order: 3;
    width: calc((154 / 375) * 100%);
    margin-top: calc((48 / 375) * 100vw);
    margin-left: auto;
    margin-right: 5.3%;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1_cont1_2 {
    width: 77.9220779221%;
    margin-left: auto;
  }
}
.vol9 #story .story1_cont1_box3 {
  order: 3;
  width: calc((396 / 1280) * 100%);
  margin-top: min(calc((65 / 1280) * 100vw), 65px);
  margin-left: calc((150 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1_cont1_box3 {
    order: 2;
    width: calc((167 / 375) * 100%);
    margin-top: calc((48 / 375) * 100vw);
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1_cont1_text3 {
    padding-left: 5.0666666667vw;
  }
}
.vol9 #story .story1_cont1_4 {
  order: 2;
  width: calc((670 / 1280) * 100%);
  margin-top: min(calc((65 / 1280) * 100vw), 65px);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1_cont1_4 {
    order: 4;
    width: 89.4%;
    margin-top: calc((30 / 375) * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}
.vol9 #story .story1_cont2 img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1_cont2 {
    margin-top: calc((55 / 375) * 100vw);
  }
}
.vol9 #story .story1 .productContainer {
  margin-top: -100px;
  padding-top: 100px;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1 .productContainer {
    margin-top: 0;
    padding-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #story .story1 .product._product1 {
    padding-left: 25px;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1 .product._product1 ._head {
    right: 0;
    top: 30px;
  }
  .vol9 #story .story1 .product._product1 ._img {
    width: 190px;
  }
}
.vol9 #story .story1 .product._product1::before {
  top: 20px;
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1 .product._product1::before {
    top: 50px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #story .story1 .product._product2 {
    padding-left: 25px;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1 .product._product2 ._head {
    left: 0;
  }
  .vol9 #story .story1 .product._product2 ._img {
    width: 177px;
  }
}
.vol9 #story .story1 .product._product2::before {
  top: 20px;
}
@media screen and (min-width: 768px) {
  .vol9 #story .story1 .product._product3 {
    padding-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1 .product._product3 ._head {
    right: 20px;
    top: 30px;
  }
  .vol9 #story .story1 .product._product3 ._img {
    width: 174px;
  }
}
.vol9 #story .story1 .product._product3::before {
  top: 10px;
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1 .product._product3::before {
    top: 30px;
  }
}
.vol9 #story .story1 .product._product4 ._read {
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .vol9 #story .story1 .product._product4 {
    padding-right: 40px;
  }
  .vol9 #story .story1 .product._product4 ._sumally {
    transform: translateX(40px);
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1 .product._product4 ._head {
    top: 30px;
    left: 0;
  }
  .vol9 #story .story1 .product._product4 ._img {
    width: 186px;
  }
  .vol9 #story .story1 .product._product4 ._read {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1 .product._product4::before {
    top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1 .product._product5 ._head {
    top: 80px;
    right: -45px;
  }
  .vol9 #story .story1 .product._product5 ._img {
    width: 263px;
  }
  .vol9 #story .story1 .product._product5 ._infoBox {
    margin-right: auto;
    padding-left: 8px;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .vol9 #story .story1 .product._product5 ._infoBox {
    margin-left: auto;
  }
}
.vol9 #story .story1 .product._product5::before {
  top: -60px;
}
@media screen and (max-width: 767px) {
  .vol9 #story .story1 .product._product5::before {
    top: 20px;
  }
}
.vol9 #story .story2 .day_mv_ttl {
  transform: translateY(58%);
}
.vol9 #story .story2 .day_readBox {
  margin-top: calc((280 / 1280) * 100vw);
}
@media screen and (max-width: 1279px) {
  .vol9 #story .story2 .day_readBox {
    margin-top: calc((370 / 1280) * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story2 .day_readBox {
    margin-top: calc((240 / 375) * 100vw);
  }
}
.vol9 #story .story2_cont1 {
  margin-top: min(calc((170 / 1280) * 100vw), 170px);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story2_cont1 {
    margin-top: calc((70 / 375) * 100vw);
  }
}
.vol9 #story .story2_cont1_box1 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: 0 min(calc(30 / 1280 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story2_cont1_box1 {
    flex-direction: row;
    align-items: flex-start;
    gap: 0 calc(15 / 375 * 100vw);
  }
}
.vol9 #story .story2_cont1_1 {
  width: calc((371 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story2_cont1_1 {
    width: calc((182 / 375) * 100%);
  }
}
.vol9 #story .story2_cont1_text1 {
  width: calc((221 / 1280) * 100%);
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .vol9 #story .story2_cont1_text1 {
    width: calc((140 / 375) * 100%);
  }
}
.vol9 #story .story2_cont1_2 {
  width: calc((448 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story2_cont1_2 {
    width: calc((167 / 375) * 100%);
    margin-top: calc((52 / 375) * 100vw);
    margin-left: calc((159 / 375) * 100%);
  }
}
.vol9 #story .story2_cont1_box2 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol9 #story .story2_cont1_box2 {
    margin-top: calc((52 / 375) * 100vw);
  }
}
.vol9 #story .story2_cont1_read1 {
  position: absolute;
  top: min(calc((360 / 1280) * 100vw), 360px);
  left: calc((226 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story2_cont1_read1 {
    top: 0;
    left: calc((230 / 375) * 100%);
  }
}
.vol9 #story .story2_cont1_box3 {
  width: calc((448 / 1280) * 100%);
  margin-top: max(calc((-170 / 1280) * 100vw), -170px);
  margin-left: calc((642 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story2_cont1_box3 {
    width: calc((167 / 375) * 100%);
    margin-top: 0;
    margin-left: 5.3%;
  }
}
.vol9 #story .story2_cont1_box4 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0 min(calc(25 / 1280 * 100vw), 25px);
  margin-top: min(calc((115 / 1280) * 100vw), 115px);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story2_cont1_box4 {
    display: block;
    width: 89.4%;
    margin-top: calc((36 / 375) * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #story .story2_cont1_4 {
    width: calc((670 / 1280) * 100%);
  }
}
@media screen and (min-width: 768px) {
  .vol9 #story .story2_cont1_text3 {
    width: calc((278 / 1280) * 100%);
    margin-left: calc((226 / 1280) * 100%);
  }
}
.vol9 #story .story2 .productContainer {
  padding: 171px 0 175px;
}
@media screen and (max-width: 767px) {
  .vol9 #story .story2 .productContainer {
    padding: 65px 0 40px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #story .story2 .product._product1 {
    padding-left: 40px;
    gap: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story2 .product._product1 ._head {
    right: 0;
    top: 25px;
  }
  .vol9 #story .story2 .product._product1 ._img {
    width: 152px;
  }
  .vol9 #story .story2 .product._product1 ._linkBox {
    margin-top: 55px;
  }
}
.vol9 #story .story2 .product._product1::before {
  top: 25px;
}
.vol9 #story .story3 .day_mv_ttl {
  transform: translateY(64.5%);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story3 .day_mv_ttl {
    transform: translateY(50%);
  }
}
@media screen and (max-width: 1279px) {
  .vol9 #story .story3 .day_readBox {
    margin-top: calc((480 / 1280) * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story3 .day_readBox {
    margin-top: calc((240 / 375) * 100vw);
  }
}
.vol9 #story .story3_cont1 {
  margin-top: calc((207 / 1280) * 100vw);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story3_cont1 {
    margin-top: calc((70 / 375) * 100vw);
  }
}
.vol9 #story .story3_cont1_read1 {
  position: absolute;
  top: 0;
  left: calc((584 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story3_cont1_read1 {
    left: calc((36 / 375) * 100%);
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story3_cont1_box1 {
    width: calc((182 / 375) * 100%);
    margin-left: auto;
    margin-right: 5.3%;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #story .story3_cont1_1 {
    width: calc((477 / 1280) * 100%);
  }
}
@media screen and (min-width: 768px) {
  .vol9 #story .story3_cont1_text1 {
    width: calc((336 / 1280) * 100%);
    margin-left: calc((140 / 1280) * 100%);
  }
}
.vol9 #story .story3_cont1_2 {
  width: calc((365 / 1280) * 100%);
  position: absolute;
  top: 0;
  left: calc((852 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story3_cont1_2 {
    width: calc((167 / 375) * 100%);
    margin-top: calc((26 / 375) * 100vw);
    margin-left: auto;
    position: static;
  }
}
.vol9 #story .story3_cont1_3 {
  width: calc((426 / 1280) * 100%);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .vol9 #story .story3_cont1_3 {
    width: calc((165 / 375) * 100%);
    margin-top: calc((-70 / 375) * 100vw);
    margin-left: 0;
  }
}
.vol9 #story .story3_cont1_text2 {
  width: calc((285 / 1280) * 100%);
  margin-left: calc((852 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story3_cont1_text2 {
    width: calc((202 / 375) * 100%);
    margin-left: 5.3%;
  }
}
.vol9 #story .story3_cont1_4 {
  width: calc((670 / 1280) * 100%);
  margin-top: max(calc((-246 / 1280) * 100vw), -246px);
  margin-left: calc((67 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol9 #story .story3_cont1_4 {
    width: 89.4%;
    margin-top: calc((30 / 375) * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}
.vol9 #story .story3 .productContainer {
  padding: 140px 0 164px;
}
@media screen and (max-width: 767px) {
  .vol9 #story .story3 .productContainer {
    padding: 84px 0 40px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #story .story3 .product:nth-child(odd)::before {
    left: auto;
    right: -72px;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story3 .product:nth-child(odd)::before {
    right: -55px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #story .story3 .product:nth-child(even)::before {
    right: auto;
    left: -72px;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story3 .product:nth-child(even)::before {
    left: -55px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #story .story3 .product:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .vol9 #story .story3 .product:nth-child(even) {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #story .story3 .product._product1 {
    gap: 0 0;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #story .story3 .product._product1 ._head {
    top: 90px;
  }
  .vol9 #story .story3 .product._product1 ._img {
    width: 190px;
  }
}
.vol9 #story .story3 .product._product1::before {
  top: -10px;
}
@media screen and (max-width: 767px) {
  .vol9 #story .story3 .product._product1::before {
    top: 60px;
  }
}
.vol9 #gourmet .gourmetMv_enTtl {
  color: #fff;
  font-size: 4.921875vw;
  line-height: 1.0476;
  letter-spacing: 0;
  text-align: center;
  position: absolute;
  top: calc((100 / 1280) * 100vw);
  right: calc((108 / 1280) * 100%);
}
.vol9 #gourmet .gourmetMv_enTtl ._red {
  color: var(--color-red);
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .gourmetMv_enTtl {
    width: 100%;
    color: inherit;
    font-size: 11.2vw;
    top: calc((20 / 375) * 100vw);
    right: 0;
  }
}
.vol9 #gourmet .gourmetMv .day_mv_ttl {
  position: absolute;
  right: calc((115 / 1280) * 100%);
  transform: translateY(56%);
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .gourmetMv .day_mv_ttl {
    text-shadow: 0 0 0.18em #fff, 0 0 0.18em #fff, 0 0 0.18em #fff, 0 0 0.18em #fff, 0 0 0.18em #fff, 0 0 0.18em #fff;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .gourmetMv .day_mv_ttl {
    right: auto;
    left: calc((30 / 375) * 100%);
    transform: translateY(57%);
  }
}
.vol9 #gourmet .day_readBox {
  margin-top: calc((245 / 1280) * 100vw);
}
@media screen and (max-width: 1279px) {
  .vol9 #gourmet .day_readBox {
    margin-top: calc((380 / 1280) * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .day_readBox {
    margin-top: calc((290 / 375) * 100vw);
  }
}
.vol9 #gourmet .day_readBox p {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .day_readBox p:nth-child(2) {
    margin-right: auto;
  }
}
.vol9 #gourmet .productContainer {
  overflow: hidden;
  margin-top: -40px;
  padding-top: 260px;
}
.vol9 #gourmet .productContainer > .inner {
  width: 90%;
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product::before {
    width: 61.3333333333vw;
    height: 61.3333333333vw;
  }
}
.vol9 #gourmet .product + .product {
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product + .product {
    margin-top: 90px;
  }
}
.vol9 #gourmet .product ._container {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}
.vol9 #gourmet .product ._area {
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product ._sumally {
    width: calc((100% - 30px) / 2);
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product ._read {
    margin-top: 0;
    font-size: 5.6vw;
  }
  .vol9 #gourmet .product ._read:not(._notVertical) {
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
  }
  .vol9 #gourmet .product ._read:not(._notVertical) ._num {
    display: inline-block;
    -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
    letter-spacing: 0;
    line-height: 1.1;
  }
  .vol9 #gourmet .product ._read:not(._notVertical) ._quotation-before {
    display: inline-block;
    transform: rotate(90deg) translate(-0.3em, -0.3em);
  }
  .vol9 #gourmet .product ._read:not(._notVertical) ._quotation-after {
    display: inline-block;
    transform: rotate(90deg) translate(-0.35em, 0.3em);
    margin-bottom: 0.3em;
  }
}
.vol9 #gourmet .product ._linkBox a {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product ._linkBox a {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product:nth-child(odd)::before {
    right: -105px;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product:nth-child(odd)::before {
    right: -14.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product:nth-child(even)::before {
    left: -105px;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product:nth-child(even)::before {
    left: auto;
    right: -14.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product:nth-child(even) ._container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product:nth-child(even) ._head {
    display: block;
    width: calc((100% - 30px) / 2);
    max-width: 320px;
    margin-right: 30px;
  }
}
@media screen and (min-width: 1001px) {
  .vol9 #gourmet .product._product1 ._container {
    margin-right: min((120 - 64) / 1280 * 100vw, 120px - 64px);
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product1::before {
    top: -40px;
  }
  .vol9 #gourmet .product._product1 ._head {
    width: 340px;
    position: absolute;
    left: calc(50% + 30px);
    bottom: 90px;
  }
  .vol9 #gourmet .product._product1 ._img {
    text-align: center;
    padding-right: 40px;
  }
  .vol9 #gourmet .product._product1 ._name {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product._product1::before {
    top: calc((90 / 375) * 100vw);
  }
  .vol9 #gourmet .product._product1 ._infoBox {
    text-align: right;
    position: absolute;
    right: 46%;
    top: calc((280 / 375) * 100vw);
  }
  .vol9 #gourmet .product._product1 ._img {
    width: calc(90 / 335 * 100%);
    margin-right: 10.6666666667vw;
    margin-left: auto;
  }
  .vol9 #gourmet .product._product1 ._read {
    position: absolute;
    top: calc((55 / 375) * 100vw);
    left: 15%;
  }
  .vol9 #gourmet .product._product1 ._sumally {
    margin-top: -60px;
  }
}
@media screen and (min-width: 1001px) {
  .vol9 #gourmet .product._product2 ._container {
    margin-left: min((288 - 64) / 1280 * 100vw, 288px - 64px);
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product2::before {
    top: 24%;
  }
  .vol9 #gourmet .product._product2 ._head {
    padding-top: 35px;
  }
  .vol9 #gourmet .product._product2 ._img {
    width: 380px;
    margin-left: -70px;
  }
  .vol9 #gourmet .product._product2 ._infoBox {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product._product2::before {
    top: calc((20 / 375) * 100vw);
  }
  .vol9 #gourmet .product._product2 ._head {
    padding-top: 40px;
    position: relative;
  }
  .vol9 #gourmet .product._product2 ._img {
    width: calc(240 / 335 * 100%);
    margin-left: auto;
    transform: translateX(5%);
  }
  .vol9 #gourmet .product._product2 ._infoBox1 {
    position: absolute;
    top: 0;
    left: 38%;
  }
  .vol9 #gourmet .product._product2 ._infoBox2 {
    position: absolute;
    top: 100%;
    right: 10%;
  }
  .vol9 #gourmet .product._product2 ._read {
    position: absolute;
    top: 0;
    left: 0;
  }
  .vol9 #gourmet .product._product2 ._sumally {
    margin-top: -20px;
  }
}
@media screen and (min-width: 1001px) {
  .vol9 #gourmet .product._product3 ._container {
    margin-left: min((138 - 64) / 1280 * 100vw, 138px - 64px);
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product3 {
    margin-top: 260px;
  }
}
.vol9 #gourmet .product._product3::before {
  top: 24%;
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product._product3::before {
    top: 20vw;
  }
}
.vol9 #gourmet .product._product3 ._head {
  width: 650px;
  position: absolute;
  left: 53%;
  top: 32%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1279px) {
  .vol9 #gourmet .product._product3 ._head {
    width: 49vw;
    left: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .vol9 #gourmet .product._product3 ._head {
    width: 55vw;
    top: 35%;
    padding: 55px 0;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product._product3 ._head {
    width: 100%;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
}
.vol9 #gourmet .product._product3 ._infoBox1 {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product3 ._infoBox1 ._price {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product._product3 ._infoBox1 {
    top: 75%;
  }
}
.vol9 #gourmet .product._product3 ._infoBox2 {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 1000px) {
  .vol9 #gourmet .product._product3 ._infoBox2 {
    right: 20%;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product._product3 ._infoBox2 {
    bottom: -50px;
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product3 ._textMin {
    width: 250px;
    position: absolute;
    left: calc(100% + 30px);
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product._product3 ._container {
    padding-top: 25vw;
  }
  .vol9 #gourmet .product._product3 ._img {
    width: calc(300 / 335 * 100%);
    margin: 10px auto 0;
  }
  .vol9 #gourmet .product._product3 ._read {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 360px) {
  .vol9 #gourmet .product._product3 ._sumally {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product4 {
    margin-top: 200px;
  }
  .vol9 #gourmet .product._product4::before {
    top: 65%;
  }
  .vol9 #gourmet .product._product4 ._head {
    margin-top: -50px;
  }
  .vol9 #gourmet .product._product4 ._img {
    width: 310px;
    margin-left: -15px;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product._product4::before {
    top: 36vw;
  }
  .vol9 #gourmet .product._product4 ._img {
    width: calc(120 / 335 * 100%);
    margin-left: auto;
    margin-right: 12vw;
  }
  .vol9 #gourmet .product._product4 ._infoBox {
    padding-left: 52vw;
  }
  .vol9 #gourmet .product._product4 ._read {
    position: absolute;
    top: 14vw;
    left: 7%;
  }
  .vol9 #gourmet .product._product4 ._sumally {
    margin-top: -50px;
  }
}
@media screen and (min-width: 1001px) {
  .vol9 #gourmet .product._product5 ._container {
    margin-left: min((323 - 64) / 1280 * 100vw, 323px - 64px);
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product5::before {
    top: 30%;
  }
  .vol9 #gourmet .product._product5 ._head {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin-right: min(-5vw, 54px);
    position: relative;
  }
  .vol9 #gourmet .product._product5 ._img {
    width: 70%;
    max-width: 540px;
  }
  .vol9 #gourmet .product._product5 ._infoBox {
    text-align: right;
  }
  .vol9 #gourmet .product._product5 ._sumally {
    width: 100%;
    margin-top: -100px;
  }
  .vol9 #gourmet .product._product5 ._product5_box1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
  }
  .vol9 #gourmet .product._product5 ._product5_box2 {
    width: calc((100% - 30px) / 2);
  }
  .vol9 #gourmet .product._product5 ._product5_box3 {
    width: calc((100% - 30px) / 2);
    padding-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product._product5::before {
    top: calc((5 / 375) * 100vw);
  }
  .vol9 #gourmet .product._product5 ._head {
    position: relative;
  }
  .vol9 #gourmet .product._product5 ._img {
    width: calc(230 / 335 * 100%);
    margin-left: auto;
    transform: translate(15%, -2%);
  }
  .vol9 #gourmet .product._product5 ._infoBox {
    text-align: right;
  }
  .vol9 #gourmet .product._product5 ._read {
    position: absolute;
    top: 0;
    left: 6%;
  }
  .vol9 #gourmet .product._product5 ._sumally {
    margin-top: 10px;
  }
}
@media screen and (min-width: 1001px) {
  .vol9 #gourmet .product._product6 ._container {
    margin-left: min((330 - 64) / 1280 * 100vw, 330px - 64px);
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product6::before {
    top: 40%;
  }
  .vol9 #gourmet .product._product6 ._head {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    position: relative;
  }
  .vol9 #gourmet .product._product6 ._product6_box1 {
    padding-right: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .vol9 #gourmet .product._product6 ._product6_box1 {
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product6 ._img {
    width: 41vw;
    max-width: 500px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product6 ._infoBox {
    width: 41vw;
    max-width: 500px;
    margin-top: 30px;
    padding-left: 4px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product6 ._textMin {
    width: 250px;
    position: absolute;
    right: calc(100% + 30px);
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product._product6::before {
    top: 5vw;
  }
  .vol9 #gourmet .product._product6 ._img {
    width: calc(200 / 335 * 100%);
    margin-left: auto;
  }
  .vol9 #gourmet .product._product6 ._infoBox {
    max-inline-size: -webkit-max-content;
    max-inline-size: -moz-max-content;
    max-inline-size: max-content;
    margin-inline: auto 0;
  }
  .vol9 #gourmet .product._product6 ._read {
    position: absolute;
    top: 0;
    left: 4%;
  }
  .vol9 #gourmet .product._product6 ._sumally {
    margin-top: -20px;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .vol9 #gourmet .product._product6 ._sumally {
    margin-top: 5px;
  }
}
@media screen and (min-width: 1001px) {
  .vol9 #gourmet .product._product7 ._container {
    margin-right: min((276 - 64) / 1280 * 100vw, 276px - 64px);
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product7::before {
    top: 51%;
  }
  .vol9 #gourmet .product._product7 ._container {
    display: flex;
    flex-direction: column;
  }
  .vol9 #gourmet .product._product7 ._head {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    order: 2;
    position: relative;
  }
  .vol9 #gourmet .product._product7 ._img {
    width: min(96.09375vw, 1230px);
    transform: translateX(-2%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .vol9 #gourmet .product._product7 ._img {
    transform: none;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product7 ._infoBox {
    position: absolute;
    left: 80%;
    bottom: 66%;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .vol9 #gourmet .product._product7 ._infoBox {
    left: auto;
    right: -35px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product7 ._sumally {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product7 ._read {
    margin-top: 35px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product7 ._product7_box1 {
    display: flex;
    justify-content: space-between;
  }
  .vol9 #gourmet .product._product7 ._product7_box1 > * {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product7 ._linkBox {
    order: 3;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product._product7::before {
    top: 26vw;
  }
  .vol9 #gourmet .product._product7 ._head {
    position: relative;
    padding-top: 24vw;
  }
  .vol9 #gourmet .product._product7 ._img {
    width: calc(350 / 335 * 100%);
    transform: translateX(-5vw);
  }
  .vol9 #gourmet .product._product7 ._infoBox {
    position: absolute;
    left: 0;
    bottom: 10%;
  }
  .vol9 #gourmet .product._product7 ._read {
    position: absolute;
    top: 0;
    left: 0;
  }
  .vol9 #gourmet .product._product7 ._sumally {
    margin-top: -15px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product8::before {
    top: 40%;
  }
  .vol9 #gourmet .product._product8 ._head {
    position: relative;
  }
  .vol9 #gourmet .product._product8 ._product8_box1 {
    width: 50.8vw;
    max-width: 650px;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .vol9 #gourmet .product._product8 ._product8_box1 {
    right: -30px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product8 ._infoBox {
    margin-top: -80px;
    padding-left: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .vol9 #gourmet .product._product8 ._infoBox {
    margin-top: -50px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product8 ._textMin {
    width: 250px;
    position: absolute;
    right: calc(100% + 30px);
    bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product8 ._container {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product8 ._linkBox::before {
    content: "";
    display: block;
    width: calc((100% - 30px) / 2);
    max-width: 320px;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product._product8::before {
    top: 11vw;
  }
  .vol9 #gourmet .product._product8 ._head {
    position: relative;
  }
  .vol9 #gourmet .product._product8 ._img {
    width: calc(260 / 335 * 100%);
    margin-left: auto;
    transform: translateX(18%);
  }
  .vol9 #gourmet .product._product8 ._infoBox {
    position: absolute;
    left: 0;
    bottom: 20px;
  }
  .vol9 #gourmet .product._product8 ._read {
    position: absolute;
    top: 6vw;
    left: 3%;
  }
}
@media screen and (min-width: 1001px) {
  .vol9 #gourmet .product._product9 ._container {
    margin-right: min((347 - 64) / 1280 * 100vw, 347px - 64px);
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product9 {
    margin-top: 160px;
  }
  .vol9 #gourmet .product._product9::before {
    top: 28%;
  }
  .vol9 #gourmet .product._product9 ._container {
    position: static;
    padding-top: 470px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .vol9 #gourmet .product._product9 ._container {
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product9 ._head {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin-right: max(-7vw, -90px);
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .vol9 #gourmet .product._product9 ._head {
    display: block;
    margin-right: 0;
    position: static;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product9 ._img {
    width: min(78vw, 780px);
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product9 ._infoBox {
    text-align: right;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .vol9 #gourmet .product._product9 ._infoBox {
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product9 ._sumally {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .vol9 #gourmet .product._product9 ._sumally {
    margin-top: -40px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product9 ._product9_box1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
  }
  .vol9 #gourmet .product._product9 ._product9_box1 > * {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product._product9::before {
    top: 4%;
  }
  .vol9 #gourmet .product._product9 ._head {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 28vw;
  }
  .vol9 #gourmet .product._product9 ._infoBox {
    text-align: right;
  }
  .vol9 #gourmet .product._product9 ._read {
    position: absolute;
    top: 0;
    left: 2%;
  }
}
@media screen and (min-width: 1001px) {
  .vol9 #gourmet .product._product10 ._container {
    margin-left: min((355 - 64) / 1280 * 100vw, 355px - 64px);
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product10::before {
    top: 28%;
  }
  .vol9 #gourmet .product._product10 ._head {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    position: relative;
    padding-top: 50px;
  }
  .vol9 #gourmet .product._product10 ._product6_box1 {
    padding-right: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .vol9 #gourmet .product._product10 ._product6_box1 {
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product10 ._img {
    width: 41vw;
    max-width: 410px;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product10 ._infoBox {
    width: 41vw;
    max-width: 410px;
    margin-top: 30px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .vol9 #gourmet .product._product10 ._area span {
    letter-spacing: -0.07em;
    margin-left: -0.2em;
  }
}
@media screen and (min-width: 768px) {
  .vol9 #gourmet .product._product10 ._textMin {
    width: 250px;
    position: absolute;
    right: calc(100% + 30px);
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .vol9 #gourmet .product._product10::before {
    top: 6vw;
  }
  .vol9 #gourmet .product._product10 ._img {
    width: calc(160 / 335 * 100%);
    margin-left: auto;
    margin-right: 9vw;
  }
  .vol9 #gourmet .product._product10 ._infoBox {
    padding-left: 45%;
  }
  .vol9 #gourmet .product._product10 ._read {
    position: absolute;
    top: 5vw;
    left: 6%;
  }
  .vol9 #gourmet .product._product10 ._sumally {
    margin-top: 10px;
  }
}
.vol9 #gourmet .product._blue::before,
.vol9 #gourmet .product._blue ._prefectures,
.vol9 #gourmet .product._blue ._linkBox a {
  background: #2ea7e0;
}
.vol9 #gourmet .product._blue ._name,
.vol9 #gourmet .product._blue ._area span {
  color: #2ea7e0;
}
.vol9 #gourmet .product._lightBlue::before,
.vol9 #gourmet .product._lightBlue ._prefectures,
.vol9 #gourmet .product._lightBlue ._linkBox a {
  background: #7ecef4;
}
.vol9 #gourmet .product._lightBlue ._name,
.vol9 #gourmet .product._lightBlue ._area span {
  color: #7ecef4;
}
.vol9 #gourmet .product._purple::before,
.vol9 #gourmet .product._purple ._prefectures,
.vol9 #gourmet .product._purple ._linkBox a {
  background: #b963a4;
}
.vol9 #gourmet .product._purple ._name,
.vol9 #gourmet .product._purple ._area span {
  color: #b963a4;
}
.vol9 #gourmet .product._pink::before,
.vol9 #gourmet .product._pink ._prefectures,
.vol9 #gourmet .product._pink ._linkBox a {
  background: #ec6d81;
}
.vol9 #gourmet .product._pink ._name,
.vol9 #gourmet .product._pink ._area span {
  color: #ec6d81;
}
.vol9 #gourmet .product._orange::before,
.vol9 #gourmet .product._orange ._prefectures,
.vol9 #gourmet .product._orange ._linkBox a {
  background: #ed6c00;
}
.vol9 #gourmet .product._orange ._name,
.vol9 #gourmet .product._orange ._area span {
  color: #ed6c00;
}
.vol9 #gourmet .product._green::before,
.vol9 #gourmet .product._green ._prefectures,
.vol9 #gourmet .product._green ._linkBox a {
  background: #8fc31f;
}
.vol9 #gourmet .product._green ._name,
.vol9 #gourmet .product._green ._area span {
  color: #8fc31f;
}
.vol9 .after {
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .vol9 .after {
    margin-top: 160px;
  }
}
.vol9 .after_ttlBox {
  display: block;
}
.vol9 .after_ttl {
  padding-right: 0;
  border-right: 0;
  border-bottom: 1px solid #231815;
  -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
  padding-bottom: 25px;
}
.vol9 .after_introBox {
  max-width: 100%;
  margin-top: 40px;
  padding-left: 0;
}
.vol9 .after ._utility01 {
  margin-top: 30px;
}
.vol9 .after ._utility01 dt {
  font-size: 19px;
  font-weight: 500;
}
.vol9 .after ._utility01 dd {
  font-size: 15px;
}
.vol9 .after ._utility02 {
  width: calc((100% - 32px) / 3);
  margin: 35px auto 0;
}
@media screen and (max-width: 767px) {
  .vol9 .after ._utility02 {
    width: 100%;
  }
}
.vol9 .after ._utility02 a {
  display: block;
  padding: 8px 0;
  border: 2px solid #000;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.vol9 .after_linkBox {
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .vol9 .after_linkBox {
    margin-top: 70px;
  }
}/*# sourceMappingURL=vol9.css.map */