*,
*::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: min(8vw, 40px);
    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%;
}

.vol10 .headWrap {
  background: linear-gradient(to right, #7ecef4 50%, #05589a 50%);
}
@media screen and (max-width: 767px) {
  .vol10 .headWrap {
    background: #05589a;
  }
}
.vol10 .header01 {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding-top: min(3.125vw, 40px);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .vol10 .header01 {
    padding-top: 10.6666666667vw;
  }
}
.vol10 .header01_logo {
  width: min(22.65625vw, 290px);
  height: min(21.875vw, 280px);
  padding-top: min(3.125vw, 40px);
  margin-left: auto;
  background: #00114e;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .vol10 .header01_logo {
    width: calc((140 / 375) * 100%);
    height: min(60.5333333333vw, 227px);
  }
}
.vol10 .header01_logo img {
  width: 64.1379310345%;
}
@media screen and (max-width: 767px) {
  .vol10 .header01_logo img {
    width: 72.1428571429%;
  }
}
.vol10 .header01_headText {
  padding-left: min(13.28125vw, 170px);
  font-size: min(2.34375vw, 30px);
  line-height: 1.733;
}
@media screen and (max-width: 767px) {
  .vol10 .header01_headText {
    padding-left: 7.4666666667vw;
    color: #fff;
    position: relative;
    z-index: 2;
    font-size: 5.0666666667vw;
    line-height: 1.42;
  }
}
.vol10 .header01_ttl {
  width: min(56.25vw, 720px);
  position: absolute;
  left: min(11.71875vw, 150px);
  bottom: 0;
  transform: translateY(35%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .vol10 .header01_ttl {
    width: calc((334 / 375) * 100%);
    margin-left: calc((18 / 375) * 100%);
    margin-top: calc((-20 / 375) * 100vw);
    position: relative;
    left: 0;
    transform: none;
  }
}
.vol10 .headerSliderWrap {
  position: relative;
  width: 100%;
  margin-top: min(2.734375vw, 35px);
}
@media screen and (max-width: 767px) {
  .vol10 .headerSliderWrap {
    margin-top: calc((-40 / 375) * 100vw);
  }
}
.vol10 .headerSliderMain {
  width: 75.625%;
  margin-left: min(9.375vw, 120px);
}
@media screen and (max-width: 767px) {
  .vol10 .headerSliderMain {
    width: calc((323 / 375) * 100%);
    margin-left: 0;
  }
}
.vol10 .headerSliderSub {
  width: 34.0625%;
  margin-top: max(-8.59375vw, -110px);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .vol10 .headerSliderSub {
    width: calc((248 / 375) * 100%);
    margin-top: calc((32 / 375) * 100vw);
  }
}
.vol10 .introWrap {
  background: linear-gradient(to right, #7ecef4 50%, #05589a 50%);
  padding-top: min(30.46875vw, 390px);
  padding-bottom: 180px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .vol10 .introWrap {
    background: #7ecef4;
    padding-top: 0;
    padding-bottom: 28px;
    margin-top: calc((-60 / 375) * 100vw);
  }
  .vol10 .introWrap::before {
    content: "";
    display: block;
    background: #7ecef4;
    width: 100%;
    height: 63.2vw;
    position: absolute;
    bottom: 100%;
    left: 0;
  }
}
.vol10 .intro {
  position: relative;
}
.vol10 .intro_map {
  width: calc((416 / 1280) * 100%);
  position: absolute;
  top: max(calc((-520 / 1280) * 100vw), -520px);
  left: calc((810 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .intro_map {
    width: 100%;
    text-align: center;
    position: static;
  }
  .vol10 .intro_map img {
    width: 89.8666666667%;
    margin-top: calc((-48 / 375) * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .vol10 .intro_box1 {
    position: relative;
  }
}
.vol10 .intro_title1 {
  color: #fff;
  line-height: 1.6;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .vol10 .intro_title1 {
    font-size: 6.6666666667vw;
    top: calc((0 / 375) * 100vw);
    left: calc((200 / 375) * 100%);
    transform: none;
  }
}
.vol10 .intro_img1 {
  width: calc((354 / 1280) * 100%);
  margin-left: calc((98 / 1280) * 100%);
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .vol10 .intro_img1 {
    width: calc((177 / 375) * 100%);
    margin-top: calc((150 / 375) * 100vw);
    margin-left: 0;
    position: relative;
    z-index: 2;
  }
}
.vol10 .intro_img2 {
  width: calc((420 / 1280) * 100%);
  margin-top: -40px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .vol10 .intro_img2 {
    width: calc((245 / 375) * 100%);
    margin-top: calc((170 / 375) * 100vw);
    margin-left: calc((70 / 375) * 100%);
  }
}
.vol10 .intro_box2 {
  margin-top: min(calc((103 / 1280) * 100vw), 103px);
}
@media screen and (max-width: 767px) {
  .vol10 .intro_box2 {
    margin-top: 0;
    display: flex;
    flex-direction: column-reverse;
  }
}
.vol10 .intro_text1 {
  color: #fff;
  width: calc((397 / 1280) * 100%);
  margin-left: calc((740 / 1280) * 100%);
  margin-top: min(calc((-265 / 1280) * 100vw), -265px);
  line-height: 2.058;
}
@media screen and (max-width: 767px) {
  .vol10 .intro_text1 {
    width: 89.4%;
    margin-top: calc((50 / 375) * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}
.vol10 .intro_img3 {
  width: calc((537 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .intro_img3 {
    width: 89.4%;
    margin-top: calc((25 / 375) * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}
.vol10 .linkBox {
  padding: 70px 0 85px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .vol10 .linkBox {
    width: 94%;
    max-width: 1192px;
  }
}
@media screen and (max-width: 767px) {
  .vol10 .linkBox {
    padding: 10.6666666667vw 0 9.3333333333vw;
  }
}
.vol10 .linkBox_ttl {
  color: #036eb8;
  font-size: 35px;
  text-align: center;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .vol10 .linkBox_ttl {
    font-size: min(7.4666666667vw, 28px);
  }
}
.vol10 .linkBox ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px 2.3489932886%;
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .vol10 .linkBox ul {
    flex-direction: column;
    max-width: 614px;
    margin-top: 20px;
  }
}
.vol10 .linkBox li {
  width: 23.2382550336%;
}
@media screen and (max-width: 767px) {
  .vol10 .linkBox li {
    width: 100%;
  }
}
.vol10 .linkBox li img {
  width: 100%;
}
.vol10 .island_mv {
  position: relative;
}
.vol10 .island_mv img {
  width: 100%;
}
.vol10 .island_mv .inner {
  position: relative;
}
.vol10 .island_mainTtl {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.vol10 .island_mainTtl img {
  width: 100%;
}
.vol10 .island_intro {
  color: #fff;
  position: relative;
}
.vol10 .island_intro .day_readBox {
  margin-top: min(28.125vw, 360px);
}
@media screen and (max-width: 1279px) {
  .vol10 .island_intro .day_readBox {
    margin-top: 80px;
  }
}
@media screen and (max-width: 1000px) {
  .vol10 .island_intro .day_readBox {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .vol10 .island_intro .day_readBox {
    max-inline-size: -webkit-max-content;
    max-inline-size: -moz-max-content;
    max-inline-size: max-content;
    margin-inline: auto;
    margin-top: calc((50 / 375) * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .vol10 .island_intro .day_readBox p + p {
    margin-top: 40px;
  }
}
.vol10 .island_intro .day_mv_ttl {
  right: 0;
}
@media screen and (min-width: 768px) {
  .vol10 .island_intro .day_mv_ttl {
    font-size: min(3.90625vw, 50px);
  }
}
@media screen and (max-width: 1279px) {
  .vol10 .island_intro .day_mv_ttl {
    position: static;
    margin-top: 10vw;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .vol10 .island_intro .day_mv_ttl {
    margin-right: auto;
    margin-top: calc((200 / 375) * 100vw);
  }
}
.vol10 .island1 {
  background: #8eb1d9;
  color: #fff;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .vol10 .island1 {
    padding-bottom: 78px;
  }
}
.vol10 .island1 .island_mainTtl {
  width: min(59.84375vw, 766px);
  transform: translateY(-12%);
}
@media screen and (max-width: 767px) {
  .vol10 .island1 .island_mainTtl {
    width: 100%;
    transform: translateY(-11%);
  }
}
@media screen and (min-width: 768px) {
  .vol10 .island1 .day_readBox {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .vol10 .island1 .day_readBox {
    margin-top: 438px;
  }
}
.vol10 .island1 .day_mv_ttl {
  transform: translateY(12%);
}
@media screen and (max-width: 767px) {
  .vol10 .island1 .day_mv_ttl {
    margin-top: 70vw;
    transform: none;
  }
}
.vol10 .island1_cont1 {
  margin-top: calc((190 / 1280) * 100vw);
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont1 {
    margin-top: 84px;
  }
}
.vol10 .island1_cont1_read1 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont1_read1 {
    width: 89.4%;
    margin: 20px auto 0;
  }
}
.vol10 .island1_cont1_text1 {
  width: 61.4%;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont1_text1 {
    width: 89.4%;
    margin: 10px auto 0;
  }
}
.vol10 .island1_cont2 {
  margin-top: 96px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont2 {
    margin-top: 64px;
  }
}
.vol10 .island1_cont2_1 {
  width: calc((392 / 1280) * 100%);
  position: absolute;
  top: min(calc((-236 / 1280) * 100vw), -236px);
  right: 0;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont2_1 {
    width: calc((167 / 375) * 100%);
    margin-left: calc((148 / 375) * 100%);
    position: static;
  }
}
.vol10 .island1_cont2_2 {
  width: calc((426 / 1280) * 100%);
  margin-left: calc((217 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont2_2 {
    width: calc((234 / 375) * 100%);
    margin-top: calc((50 / 375) * 100vw);
    margin-left: 0;
  }
}
.vol10 .island1_cont2_box1 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont2_box1 {
    margin-top: calc((63 / 375) * 100vw);
  }
}
.vol10 .island1_cont2_3 {
  width: calc((311 / 1280) * 100%);
  margin-left: calc((760 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont2_3 {
    width: calc((167 / 375) * 100%);
    margin-top: 0;
    margin-left: auto;
  }
}
.vol10 .island1_cont2_read1 {
  position: absolute;
  top: min(calc((80 / 1280) * 100vw), 80px);
  left: calc((224 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont2_read1 {
    top: 0;
    left: calc((75 / 375) * 100%);
    z-index: 2;
  }
}
.vol10 .island1_cont2_4 {
  width: calc((670 / 1280) * 100%);
  margin-left: calc((533 / 1280) * 100%);
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .vol10 .island1_cont2_4 {
    margin-top: 250px;
  }
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont2_4 {
    width: calc((290 / 375) * 100%);
    margin-top: calc((90 / 375) * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}
.vol10 .island1_cont2_text1 {
  width: calc((335 / 1280) * 100%);
  position: absolute;
  left: calc((140 / 1280) * 100%);
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont2_text1 {
    width: calc((290 / 375) * 100%);
    margin: 10px auto 0;
    position: static;
  }
}
.vol10 .island1_cont3 {
  margin-top: min(calc((282 / 1280) * 100vw), 282px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont3 {
    margin-top: 64px;
  }
}
.vol10 .island1_cont3_1 {
  width: calc((519 / 1280) * 100%);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont3_1 {
    width: calc((167 / 375) * 100%);
    margin-left: calc((163 / 375) * 100%);
  }
}
.vol10 .island1_cont3_2 {
  width: calc((393 / 1280) * 100%);
  margin-top: max(calc((-240 / 1280) * 100vw), -240px);
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont3_2 {
    width: calc((234 / 375) * 100%);
    margin-top: calc((48 / 375) * 100vw);
    margin-left: calc((56 / 375) * 100%);
  }
}
.vol10 .island1_cont3_box1 {
  margin-top: min(calc((170 / 1280) * 100vw), 170px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont3_box1 {
    margin-top: calc((128 / 375) * 100vw);
  }
}
.vol10 .island1_cont3_read1 {
  position: absolute;
  top: min(calc((59 / 1280) * 100vw), 59px);
  left: calc((940 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont3_read1 {
    top: calc((-60 / 375) * 100vw);
    left: calc((204 / 375) * 100%);
    z-index: 2;
  }
}
.vol10 .island1_cont3_3 {
  width: calc((426 / 1280) * 100%);
  margin-left: calc((305 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont3_3 {
    width: calc((165 / 375) * 100%);
    margin-left: 0;
  }
}
.vol10 .island1_cont3_4 {
  width: calc((670 / 1280) * 100%);
  margin-left: calc((140 / 1280) * 100%);
  margin-top: 114px;
}
@media screen and (max-width: 1000px) {
  .vol10 .island1_cont3_4 {
    margin-top: 190px;
  }
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont3_4 {
    width: calc((335 / 375) * 100%);
    margin-top: calc((108 / 375) * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}
.vol10 .island1_cont3_text1 {
  width: calc((335 / 1280) * 100%);
  position: absolute;
  left: calc((868 / 1280) * 100%);
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont3_text1 {
    width: calc((335 / 375) * 100%);
    margin: 10px auto 0;
    position: static;
  }
}
.vol10 .island1_cont4 {
  margin-top: min(calc((198 / 1280) * 100vw), 198px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont4 {
    margin-top: 64px;
  }
}
.vol10 .island1_cont4_infoBox {
  position: absolute;
  z-index: 2;
  white-space: nowrap;
}
.vol10 .island1_cont4_name {
  font-size: 21px;
  line-height: 1.2857142857;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont4_name {
    font-size: 18px;
    letter-spacing: 0.05em;
  }
}
.vol10 .island1_cont4_price {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont4_price {
    margin-top: 2px;
    font-size: 12px;
  }
}
.vol10 .island1_cont4_box1 {
  width: calc((780 / 1280) * 100%);
  margin-left: calc((390 / 1280) * 100%);
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont4_box1 {
    width: calc((315 / 375) * 100%);
    margin-top: calc((84 / 375) * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}
.vol10 .island1_cont4_box1 .island1_cont4_infoBox {
  right: 32%;
  bottom: -30px;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont4_box1 .island1_cont4_infoBox {
    right: 36%;
    bottom: -25%;
  }
}
.vol10 .island1_cont4_box2 {
  width: calc((630 / 1280) * 100%);
  margin-left: calc((98 / 1280) * 100%);
  margin-top: max(calc((-35 / 1280) * 100vw), -35px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont4_box2 {
    width: calc((254 / 375) * 100%);
    margin-top: calc((108 / 375) * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}
.vol10 .island1_cont4_box2 .island1_cont4_infoBox {
  top: 100%;
  left: 16%;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont4_box2 .island1_cont4_infoBox {
    top: 95%;
    left: 40%;
  }
}
.vol10 .island1_cont4_box3 {
  width: calc((270 / 1280) * 100%);
  margin-left: calc((870 / 1280) * 100%);
  margin-top: max(calc((-330 / 1280) * 100vw), -330px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont4_box3 {
    width: calc((112 / 375) * 100%);
    margin-top: calc((80 / 375) * 100vw);
    margin-left: calc((160 / 375) * 100%);
  }
}
.vol10 .island1_cont4_box3 .island1_cont4_infoBox {
  text-align: right;
  right: 66%;
  bottom: 20%;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont4_box3 .island1_cont4_infoBox {
    text-align: left;
    bottom: 2%;
  }
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont4_3 {
    transform: rotate(-23deg);
  }
}
.vol10 .island1_cont4_box4 {
  width: calc((240 / 1280) * 100%);
  margin-left: calc((207 / 1280) * 100%);
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont4_box4 {
    width: calc((118 / 375) * 100%);
    margin-top: calc((60 / 375) * 100vw);
    margin-left: calc((30 / 375) * 100%);
  }
}
.vol10 .island1_cont4_box4 .island1_cont4_infoBox {
  top: 25%;
  left: 105%;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont4_box4 .island1_cont4_infoBox {
    top: 45%;
    left: 108%;
  }
}
.vol10 .island1_cont4_box5 {
  width: calc((700 / 1280) * 100%);
  margin-left: calc((388 / 1280) * 100%);
  margin-top: max(calc((-10 / 1280) * 100vw), -10px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont4_box5 {
    width: calc((290 / 375) * 100%);
    margin-top: calc((60 / 375) * 100vw);
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 80px;
  }
}
.vol10 .island1_cont4_box5 .island1_cont4_infoBox {
  text-align: right;
  right: 77%;
  bottom: 6%;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont4_box5 .island1_cont4_infoBox {
    text-align: left;
    right: auto;
    left: 0;
    bottom: 0;
  }
}
.vol10 .island1_cont5 {
  width: 89.0625%;
  padding: 60px 6.5625% 114px 7.65625%;
  margin-top: min(calc((138 / 1280) * 100vw), 138px);
  background: #fff;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont5 {
    width: calc(100% - 40px);
    padding: 60px 0;
  }
}
.vol10 .island1_cont5_head {
  display: flex;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont5_head {
    display: block;
    padding: 0 5.3%;
  }
}
.vol10 .island1_cont5_head ._textBox {
  flex: 1;
  min-height: 250px;
}
.vol10 .island1_cont5_head ._textBox ._ttl {
  color: #8eb1d9;
  font-size: min(3.90625vw, 50px);
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont5_head ._textBox ._ttl {
    font-size: min(7.7333333333vw, 29px);
    letter-spacing: 0;
    white-space: nowrap;
  }
}
.vol10 .island1_cont5_head ._textBox p {
  max-width: 542px;
  font-size: 17px;
  line-height: 1.8235294118;
  letter-spacing: 0.04em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont5_head ._textBox p {
    margin-top: 20px;
    padding-right: 145px;
    font-size: 14px;
    line-height: 1.6428571429;
  }
}
.vol10 .island1_cont5_head ._img {
  width: 34.0292275574%;
  margin-top: min(-8vw, -100px);
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont5_head ._img {
    width: 186px;
    height: 186px;
    margin-top: 0;
    position: absolute;
    top: 90px;
    right: -30px;
  }
}
.vol10 .island1_cont5_flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px 0;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont5_flow {
    gap: 35px 0;
    margin-top: 50px;
    padding-right: 40px;
  }
}
.vol10 .island1_cont5_flow > li {
  width: 45.4070981211%;
  font-size: 17px;
  line-height: 1.8235294118;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont5_flow > li {
    width: 100%;
    font-size: 12px;
    line-height: 1.5;
  }
}
.vol10 .island1_cont5_flow p {
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont5_flow p {
    padding-left: 40px;
  }
}
.vol10 .island1_cont5_flow ._num {
  color: #8eb1d9;
  font-size: min(3.828125vw, 49px);
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont5_flow ._num {
    margin-bottom: 5px;
    font-size: min(7.2vw, 27px);
  }
}
.vol10 .island1_cont5_flow ._ttl {
  color: #8eb1d9;
  font-size: min(2.65625vw, 34px);
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .vol10 .island1_cont5_flow ._ttl {
    margin: 10px 0 5px;
    font-size: min(4.5333333333vw, 17px);
  }
}
.vol10 .island1_cont5_flow li._complete {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .vol10 .island1_cont5_flow li._complete {
    display: block;
  }
}
.vol10 .island1_cont5_flow li._complete ._num {
  width: 100%;
}
.vol10 .island1_cont5_flow li._complete ._img {
  width: 69.9373695198%;
}
@media screen and (max-width: 1000px) {
  .vol10 .island1_cont5_flow li._complete ._img {
    width: 100%;
  }
}
.vol10 .island1_cont5_flow li._complete ._text {
  width: 26.9311064718%;
}
@media screen and (max-width: 1000px) {
  .vol10 .island1_cont5_flow li._complete ._text {
    width: 100%;
    margin-top: 10px;
  }
}
.vol10 .island2 {
  background: #23b3d3;
  color: #fff;
  padding-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .vol10 .island2 {
    padding-bottom: 68px;
  }
}
.vol10 .island2 .island_mainTtl {
  width: min(72.890625vw, 933px);
  transform: translateY(-19%);
}
@media screen and (max-width: 767px) {
  .vol10 .island2 .island_mainTtl {
    width: 62.9333333333vw;
    transform: translateY(-7%);
  }
}
@media screen and (min-width: 768px) {
  .vol10 .island2 .day_readBox {
    margin-top: 160px;
  }
}
@media screen and (min-width: 1280px) {
  .vol10 .island2 .day_readBox {
    margin-top: 278px;
  }
}
.vol10 .island2 .day_mv_ttl {
  transform: translateY(28%);
}
@media screen and (max-width: 1279px) {
  .vol10 .island2 .day_mv_ttl {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .vol10 .island2 .day_mv_ttl {
    margin-top: 90vw;
    transform: none;
  }
}
.vol10 .island2_cont1 {
  margin-top: calc((226 / 1280) * 100vw);
}
@media screen and (max-width: 767px) {
  .vol10 .island2_cont1 {
    margin-top: 84px;
  }
}
.vol10 .island2_cont1_read1 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .vol10 .island2_cont1_read1 {
    width: 89.4%;
    margin: 20px auto 0;
  }
}
.vol10 .island2_cont1_text1 {
  width: 51.2%;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .vol10 .island2_cont1_text1 {
    width: 89.4%;
    margin: 10px auto 0;
  }
}
.vol10 .island2_cont2 {
  margin-top: min(calc((160 / 1280) * 100vw), 160px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island2_cont2 {
    margin-top: calc((50 / 375) * 100vw);
  }
}
.vol10 .island2_cont2_1 {
  width: calc((507 / 1280) * 100%);
  position: absolute;
  top: min(calc((-374 / 1280) * 100vw), -374px);
  right: 0;
}
@media screen and (max-width: 767px) {
  .vol10 .island2_cont2_1 {
    width: calc((291 / 375) * 100%);
    margin-top: calc((48 / 375) * 100vw);
    margin-left: auto;
    position: static;
  }
}
.vol10 .island2_cont2_2 {
  width: calc((365 / 1280) * 100%);
  margin-left: calc((286 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island2_cont2_2 {
    width: calc((155 / 375) * 100%);
    margin-top: calc((67 / 375) * 100vw);
    margin-left: calc((130 / 375) * 100%);
  }
}
.vol10 .island2_cont2_3 {
  width: calc((311 / 1280) * 100%);
  margin-top: max(calc((-64 / 1280) * 100vw), -64px);
  margin-left: calc((860 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island2_cont2_3 {
    width: calc((211 / 375) * 100%);
    margin-top: calc((46 / 375) * 100vw);
    margin-left: 0;
  }
}
.vol10 .island2_cont3 {
  margin-top: min(calc((45 / 1280) * 100vw), 45px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island2_cont3 {
    margin-top: calc((96 / 375) * 100vw);
  }
}
.vol10 .island2_cont3_1 {
  width: calc((459 / 1280) * 100%);
  margin-left: calc((140 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island2_cont3_1 {
    width: calc((225 / 375) * 100%);
    margin-left: calc((105 / 375) * 100%);
  }
}
@media screen and (max-width: 767px) {
  .vol10 .island2_cont3_box1 {
    margin-top: calc((80 / 375) * 100vw);
    position: relative;
  }
}
.vol10 .island2_cont3_read1 {
  position: absolute;
  top: min(calc((130 / 1280) * 100vw), 130px);
  left: calc((830 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island2_cont3_read1 {
    top: 0;
    left: calc((46 / 375) * 100%);
  }
}
.vol10 .island2_cont3_2 {
  width: calc((477 / 1280) * 100%);
  margin-top: min(calc((127 / 1280) * 100vw), 127px);
}
@media screen and (max-width: 767px) {
  .vol10 .island2_cont3_2 {
    width: calc((182 / 375) * 100%);
    margin-top: 0;
    margin-left: auto;
  }
}
.vol10 .island2_cont3_3 {
  width: calc((365 / 1280) * 100%);
  margin-top: max(calc((-140 / 1280) * 100vw), -140px);
  margin-left: calc((737 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island2_cont3_3 {
    width: calc((211 / 375) * 100%);
    margin-top: calc((86 / 375) * 100vw);
    margin-left: 0;
  }
}
.vol10 .island2_cont3_box2 {
  width: calc((813 / 1280) * 100%);
  margin-top: min(calc((208 / 1280) * 100vw), 208px);
  margin-left: calc((140 / 1280) * 100%);
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island2_cont3_box2 {
    width: calc((290 / 375) * 100%);
    margin-top: calc((50 / 375) * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}
.vol10 .island2_cont3_5 {
  width: 40.098400984%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  transform: translate(70%, -12%);
}
@media screen and (max-width: 767px) {
  .vol10 .island2_cont3_5 {
    width: 42.4137931034%;
    transform: translate(18%, -45%);
  }
}
.vol10 .island2_cont3_text1 {
  margin-top: 10px;
}
.vol10 .island3 {
  background: #05589a;
  color: #fff;
  padding-bottom: 134px;
}
@media screen and (max-width: 767px) {
  .vol10 .island3 {
    padding-bottom: 74px;
  }
}
.vol10 .island3 .island_mainTtl {
  width: min(65.703125vw, 841px);
  transform: translateY(-10%);
}
@media screen and (max-width: 767px) {
  .vol10 .island3 .island_mainTtl {
    width: 100%;
    transform: translateY(-11%);
  }
}
@media screen and (min-width: 768px) {
  .vol10 .island3 .day_readBox {
    margin-top: 160px;
  }
}
@media screen and (min-width: 1280px) {
  .vol10 .island3 .day_readBox {
    margin-top: 438px;
  }
}
.vol10 .island3 .day_mv_ttl {
  transform: translateY(27%);
}
@media screen and (max-width: 1279px) {
  .vol10 .island3 .day_mv_ttl {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .vol10 .island3 .day_mv_ttl {
    margin-top: 70vw;
    transform: none;
  }
}
.vol10 .island3_cont1 {
  margin-top: calc((226 / 1280) * 100vw);
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont1 {
    margin-top: 84px;
  }
}
.vol10 .island3_cont1_read1 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont1_read1 {
    width: 89.4%;
    margin: 20px auto 0;
  }
}
.vol10 .island3_cont1_text1 {
  width: 58.6%;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont1_text1 {
    width: 89.4%;
    margin: 10px auto 0;
  }
}
.vol10 .island3_cont2 {
  position: relative;
}
.vol10 .island3_cont2_1 {
  width: calc((311 / 1280) * 100%);
  margin-top: max(calc((-200 / 1280) * 100vw), -200px);
  margin-left: calc((884 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont2_1 {
    width: calc((167 / 375) * 100%);
    margin-top: calc((50 / 375) * 100vw);
    margin-left: auto;
  }
}
.vol10 .island3_cont2_2 {
  width: calc((426 / 1280) * 100%);
  margin-top: min(calc((120 / 1280) * 100vw), 120px);
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont2_2 {
    width: calc((234 / 375) * 100%);
    margin-top: calc((53 / 375) * 100vw);
    margin-left: calc((41 / 375) * 100%);
  }
}
.vol10 .island3_cont2_box1 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont2_box1 {
    margin-top: calc((69 / 375) * 100vw);
  }
}
.vol10 .island3_cont2_3 {
  width: calc((433 / 1280) * 100%);
  margin-top: max(calc((-204 / 1280) * 100vw), -204px);
  margin-left: calc((721 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont2_3 {
    width: calc((167 / 375) * 100%);
    margin-top: 0;
    margin-left: calc((185 / 375) * 100%);
  }
}
.vol10 .island3_cont2_read1 {
  position: absolute;
  top: min(calc((386 / 1280) * 100vw), 386px);
  left: calc((214 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont2_read1 {
    top: 0;
    left: calc((45 / 375) * 100%);
    text-shadow: 0px 0px 5px #05589a, 0px 0px 5px #05589a, 0px 0px 5px #05589a, 0px 0px 5px #05589a;
    z-index: 2;
  }
}
.vol10 .island3_cont2_4 {
  width: calc((670 / 1280) * 100%);
  margin-left: auto;
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont2_4 {
    width: calc((335 / 375) * 100%);
    margin-top: calc((92 / 375) * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}
.vol10 .island3_cont2_text1 {
  width: calc((460 / 1280) * 100%);
  margin-top: 20px;
  margin-left: calc((610 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont2_text1 {
    width: calc((335 / 375) * 100%);
    margin: 10px auto 0;
  }
}
.vol10 .island3_cont3 {
  margin-top: min(calc((35 / 1280) * 100vw), 35px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont3 {
    margin-top: calc((50 / 375) * 100vw);
  }
}
.vol10 .island3_cont3_1 {
  width: calc((457 / 1280) * 100%);
  margin-left: calc((72 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont3_1 {
    width: calc((182 / 375) * 100%);
    margin-left: calc((59 / 375) * 100%);
  }
}
.vol10 .island3_cont3_2 {
  width: calc((426 / 1280) * 100%);
  margin-left: calc((745 / 1280) * 100%);
  margin-top: max(calc((-114 / 1280) * 100vw), -114px);
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont3_2 {
    width: calc((167 / 375) * 100%);
    margin-left: calc((185 / 375) * 100%);
    margin-top: calc((41 / 375) * 100vw);
  }
}
.vol10 .island3_cont3_box1 {
  margin-top: min(calc((112 / 1280) * 100vw), 112px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont3_box1 {
    margin-top: calc((80 / 375) * 100vw);
  }
}
.vol10 .island3_cont3_3 {
  width: calc((481 / 1280) * 100%);
  margin-left: calc((138 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont3_3 {
    width: calc((226 / 375) * 100%);
    margin-top: calc((86 / 375) * 100vw);
    margin-left: 0;
  }
}
.vol10 .island3_cont3_4 {
  width: calc((426 / 1280) * 100%);
  position: absolute;
  top: min(calc((195 / 1280) * 100vw), 195px);
  left: calc((675 / 1280) * 100%);
}
@media screen and (max-width: 1000px) {
  .vol10 .island3_cont3_4 {
    top: min(calc((260 / 1280) * 100vw), 260px);
  }
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont3_4 {
    width: calc((211 / 375) * 100%);
    margin-top: calc((57 / 375) * 100vw);
    margin-left: calc((143 / 375) * 100%);
    position: static;
  }
}
.vol10 .island3_cont3_text1 {
  width: calc((426 / 1280) * 100%);
  position: absolute;
  left: calc((675 / 1280) * 100%);
  top: 0;
}
@media screen and (max-width: 767px) {
  .vol10 .island3_cont3_text1 {
    width: calc((211 / 375) * 100%);
    margin-top: 10px;
    margin-left: calc((143 / 375) * 100%);
    position: static;
  }
}
.vol10 .island4 {
  background: #7ecef4;
  color: #fff;
  padding-bottom: 168px;
}
@media screen and (max-width: 767px) {
  .vol10 .island4 {
    padding-bottom: 70px;
  }
}
.vol10 .island4 .island_mainTtl {
  width: min(68.125vw, 871px);
  transform: translateY(-11%);
}
@media screen and (max-width: 767px) {
  .vol10 .island4 .island_mainTtl {
    width: 90.9333333333vw;
    transform: translateY(-7%);
  }
}
@media screen and (min-width: 768px) {
  .vol10 .island4 .day_readBox {
    margin-top: 160px;
  }
}
@media screen and (min-width: 1280px) {
  .vol10 .island4 .day_readBox {
    margin-top: 438px;
  }
}
.vol10 .island4 .day_mv_ttl {
  transform: translateY(24%);
}
@media screen and (max-width: 1279px) {
  .vol10 .island4 .day_mv_ttl {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .vol10 .island4 .day_mv_ttl {
    margin-top: 70vw;
    transform: none;
  }
}
.vol10 .island4_cont1 {
  margin-top: calc((226 / 1280) * 100vw);
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont1 {
    margin-top: 84px;
  }
}
.vol10 .island4_cont1_read1 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont1_read1 {
    width: 89.4%;
    margin: 20px auto 0;
  }
}
.vol10 .island4_cont1_text1 {
  width: 58.6%;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont1_text1 {
    width: 89.4%;
    margin: 10px auto 0;
  }
}
.vol10 .island4_cont2 {
  margin-top: min(calc((72 / 1280) * 100vw), 72px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont2 {
    margin-top: 0;
  }
}
.vol10 .island4_cont2_1 {
  width: calc((410 / 1280) * 100%);
  margin-top: max(calc((-144 / 1280) * 100vw), -144px);
  margin-left: calc((795 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont2_1 {
    width: calc((167 / 375) * 100%);
    margin-top: calc((50 / 375) * 100vw);
    margin-left: calc((21 / 375) * 100%);
  }
}
.vol10 .island4_cont2_2 {
  width: calc((627 / 1280) * 100%);
  margin-top: max(calc((-150 / 1280) * 100vw), -150px);
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont2_2 {
    width: calc((234 / 375) * 100%);
    margin-top: calc((37 / 375) * 100vw);
    margin-left: auto;
  }
}
.vol10 .island4_cont2_box1 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont2_box1 {
    margin-top: calc((69 / 375) * 100vw);
  }
}
.vol10 .island4_cont2_3 {
  width: calc((433 / 1280) * 100%);
  margin-top: max(calc((-204 / 1280) * 100vw), -204px);
  margin-left: calc((721 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont2_3 {
    width: calc((167 / 375) * 100%);
    margin-top: 0;
    margin-left: calc((185 / 375) * 100%);
  }
}
.vol10 .island4_cont2_read1 {
  position: absolute;
  top: min(calc((386 / 1280) * 100vw), 386px);
  left: calc((214 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont2_read1 {
    top: 0;
    left: calc((45 / 375) * 100%);
    text-shadow: 0px 0px 5px #05589a, 0px 0px 5px #05589a, 0px 0px 5px #05589a, 0px 0px 5px #05589a;
    z-index: 2;
  }
}
.vol10 .island4_cont2_4 {
  width: calc((670 / 1280) * 100%);
  margin-left: auto;
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont2_4 {
    width: calc((335 / 375) * 100%);
    margin-top: calc((92 / 375) * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}
.vol10 .island4_cont2_text1 {
  width: calc((460 / 1280) * 100%);
  margin-top: 20px;
  margin-left: calc((610 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont2_text1 {
    width: calc((335 / 375) * 100%);
    margin: 10px auto 0;
  }
}
.vol10 .island4_cont3_name {
  font-size: 21px;
  line-height: 1.2857142857;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont3_name {
    font-size: 18px;
  }
}
.vol10 .island4_cont3_price {
  margin: 5px 0 15px;
  font-weight: 500;
}
.vol10 .island4_cont3_box1 {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 30px;
  margin-top: max(calc((-50 / 1280) * 100vw), -50px);
  padding-right: min(7.34375%, 94px);
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont3_box1 {
    display: block;
    margin-top: calc((96 / 375) * 100vw);
    padding-right: 0;
  }
}
.vol10 .island4_cont3_box1 .island4_cont3_infoBox {
  padding-top: 90px;
  width: 216px;
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont3_box1 .island4_cont3_infoBox {
    width: calc((300 / 375) * 100%);
    margin: 15px auto 0;
    padding-top: 0;
  }
}
.vol10 .island4_cont3_1 {
  width: calc((470 / 1280) * 100%);
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont3_1 {
    width: calc((214 / 375) * 100%);
    margin: 0 auto;
  }
}
.vol10 .island4_cont3_box2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-left: min(7.34375%, 94px);
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont3_box2 {
    display: block;
    margin-top: calc((40 / 375) * 100vw);
    padding-left: 0;
  }
}
.vol10 .island4_cont3_box2 .island4_cont3_infoBox {
  padding-bottom: 48px;
  margin-left: -30px;
  width: 304px;
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont3_box2 .island4_cont3_infoBox {
    width: calc((300 / 375) * 100%);
    margin: 15px auto 0;
    padding-bottom: 0;
  }
}
.vol10 .island4_cont3_2 {
  width: calc((620 / 1280) * 100%);
  margin-top: max(calc((-80 / 1280) * 100vw), -80px);
}
@media screen and (max-width: 767px) {
  .vol10 .island4_cont3_2 {
    width: calc((250 / 375) * 100%);
    margin: 0 auto;
  }
}/*# sourceMappingURL=vol10.css.map */