@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;1,300;1,400&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");

.u-desktop {
  display: none;
  visibility: hidden;
}

@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
    visibility: visible;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none !important;
    visibility: hidden;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #1C1C1C;
}

.fadeImg {
  -webkit-animation-name: fadeImg;
  animation-name: fadeImg;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes fadeImg {
  from {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes fadeImg {
  from {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.fadeUpText {
  -webkit-animation-name: fadeUpText;
  animation-name: fadeUpText;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
  -webkit-animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -webkit-transform: translateY(80%);
  transform: translateY(80%);
}

@-webkit-keyframes fadeUpText {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeUpText {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.delighter.imageUp {
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0.2, 0.5, 1);
  transition-timing-function: cubic-bezier(0.5, 0.2, 0.5, 1);
  opacity: 0;
}

.delighter.started.imageUp {
  -webkit-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}

.delighter .up {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0.2, 0.5, 1);
  transition-timing-function: cubic-bezier(0.5, 0.2, 0.5, 1);
  opacity: 0;
}

.delighter.started .up {
  -webkit-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}

.delighter .textUp {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0.2, 0.5, 1);
  transition-timing-function: cubic-bezier(0.5, 0.2, 0.5, 1);
}

.delighter.started .textUp {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.delighter.border:after {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 2s;
  transition-duration: 2s;
  -webkit-transition-delay: -0.3s;
  transition-delay: -0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0.2, 0.5, 1);
  transition-timing-function: cubic-bezier(0.5, 0.2, 0.5, 1);
}

.delighter.started.border:after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.delighter .fadeText {
  opacity: 0;
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 1.2s;
  transition-duration: 1.2s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0.2, 0.5, 1);
  transition-timing-function: cubic-bezier(0.5, 0.2, 0.5, 1);
}

.delighter.started .fadeText {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.delighter .scaleSlide {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 1.2s;
  transition-duration: 1.2s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0.2, 0.5, 1);
  transition-timing-function: cubic-bezier(0.5, 0.2, 0.5, 1);
}

.delighter.started .scaleSlide {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.delighter.fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 1.2s;
  transition-duration: 1.2s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0.2, 0.5, 1);
  transition-timing-function: cubic-bezier(0.5, 0.2, 0.5, 1);
}

.delighter.started.fade {
  opacity: 1;
}

html {
  font-size: 16px;
  font-size: 1rem;
}

body {
  background-color: #FCFCFC;
}

body>* {
  letter-spacing: 0.04em;
}

/* hover */
a {
  text-decoration: none;
  color: inherit;
}

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

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article>*+* {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.btn {
  border: 1px solid #1C1C1C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  white-space: nowrap;
  letter-spacing: 0;
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 36px;
  width: 2.25rem;
  height: 36px;
  height: 2.25rem;
  background-color: #1C1C1C;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.btn span {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.btn span:after {
  content: attr(data-text);
  color: #fff;
  top: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  height: 100%;
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover span {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  .btn:hover:before {
    -webkit-transition: 0.6s;
    transition: 0.6s;
    -webkit-transform: scale(10);
    transform: scale(10);
    opacity: 1;
  }
}

.btn._md_ {
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .btn._md_ {
    max-width: 20.5rem;
    padding-inline: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .btn._md_ {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.25rem;
    padding-inline: 3rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn._md_:hover:before {
    -webkit-transform: scale(20);
    transform: scale(20);
  }

  .btn._md_:hover .btn__inner:after {
    background-image: url(../images/icon-arrow-wh.svg);
  }

  .btn._md_:hover .btn__inner._pin_:after {
    background-image: url(../images/icon-pin-wh.svg);
  }
}

.btn._md_ span {
  padding-block: 11px;
  padding-block: 0.6875rem;
}

@media screen and (min-width: 768px) {
  .btn._md_ span {
    padding-block: 1.375rem;
  }
}

.btn__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 7px;
  gap: 0.4375rem;
}

@media screen and (min-width: 768px) {
  .btn__inner {
    gap: 0.625rem;
  }
}

.btn__inner:after {
  content: "";
  background-image: url(../images/icon-arrow-bk.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .btn__inner:after {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}

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

.btn__inner._pin_:after {
  background-image: url(../images/icon-pin.svg);
}

.features {
  display: grid;
}

@media screen and (max-width: 767px) {
  .features {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    border-top: 1px solid #1C1C1C;
    margin-top: -0.5625rem;
    padding-top: 1.625rem;
  }
}

@media screen and (min-width: 768px) {
  .features {
    border: 1px solid #1C1C1C;
    grid-template-columns: repeat(auto-fit, minmax(173px, 1fr));
    padding: min(2.635431918vw, 2.25rem);
    gap: min(1.317715959vw, 1.125rem);
    margin-top: -0.75rem;
  }
}

.features__item {
  background-color: #fff;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  gap: 0.375rem;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
}

.features__item span {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
  display: block;
}

#footer {
  background-color: #000;
}

.copyright {
  height: 24px;
  line-height: 24px;
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .copyright {
    height: 54px;
    line-height: 54px;
  }
}

.page_home {
  padding-top: 40px;
}

@media screen and (min-width: 768px) {
  .page_home {
    padding-top: 64px;
  }
}

#header {
  background-color: #000;
  width: 100%;
  z-index: 100;
}

#header.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

#header .site-logo {
  width: 120px;
  padding: 12px 0;
  line-height: 0;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  #header .site-logo {
    width: 184px;
    padding: 20px 0;
  }
}

#header #online-shop {
  width: 20px;
  position: absolute;
  top: 12px;
  right: 12px;
  line-height: 0;
  z-index: 10000;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  #header #online-shop {
    width: 28px;
    top: 18px;
    right: 24px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.banner {
  max-width: 246px;
  max-width: 15.375rem;
  width: 57.1808510638vw;
  position: fixed;
  z-index: 10;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
}

.banner a {
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .banner a:hover {
    opacity: 0.8;
  }
}

@media screen and (min-width: 768px) {
  .banner {
    width: 100%;
    right: 2.5rem;
    bottom: 2.5rem;
  }
}

.hero__main {
  position: relative;
  overflow: hidden;
}

.hero__image {
  height: 100%;
}

.hero__image img {
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .hero__image img {
    height: 100%;
  }
}

.hero__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  gap: 21px;
  gap: 1.3125rem;
  position: absolute;
  top: -12px;
  top: -0.75rem;
  left: 12px;
  left: 0.75rem;
}

@media screen and (min-width: 768px) {
  .hero__links {
    gap: min(1.756954612vw, 1.5rem);
    top: min(1.1713030747vw, 1rem);
    left: min(2.9282576867vw, 2.5rem);
  }
}

.hero__link {
  font-family: Roboto;
  font-weight: 300;
  letter-spacing: 0.08em;
  font-size: 10px;
  font-size: 0.625rem;
  color: #1F1F1D;
  padding: 3px 12px;
  padding: 0.1875rem 0.75rem;
  border: 1px solid #1F1F1D;
  text-transform: uppercase;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .hero__link {
    font-size: 0.75rem;
    line-height: 1.1666666667;
    padding: 0.25rem 0.625rem;
  }
}

.hero__title {
  position: absolute;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  bottom: 24px;
  bottom: 1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .hero__title {
    padding-left: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .hero__title {
    font-size: min(4.6852122987vw, 4rem);
    width: 42%;
    bottom: min(2.9282576867vw, 2.5rem);
    margin: 20%;
  }
}

.hero__title span {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .hero__title span {
    font-size: min(1.756954612vw, 1.5rem);
  }
}

.hero__titleMain {
  /*overflow: hidden;*/
  margin-left: -12px;
  margin-left: -0.75rem;
  line-height: 1.8;
}

@media screen and (min-width: 1024px) {
  .hero__titleMain {
    margin-left: min(-1.756954612vw, -1.5rem);
  }
}

.hero__ja {
  margin-bottom: -10px;
  margin-bottom: -0.625rem;
  letter-spacing: 0.04em;
}

.hero__en {
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .hero__text {
    padding-block: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .hero__text {
    text-align: center;
    padding-block: min(11.7130307467vw, 10rem);
  }
}

.inner {
  width: 100%;
  margin-inline: auto;
  width: calc(100% - 3rem);
}

@media screen and (min-width: 768px) {
  .inner {
    max-width: 1206px;
    width: calc(100% - 5rem);
  }
}

.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  min-height: 100vh;
  inset: 0;
  z-index: 1000;
  -webkit-transition: visibility 0s linear 0.4s, opacity 0.3s ease-out;
  transition: visibility 0s linear 0.4s, opacity 0.3s ease-out;
}

.modal.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.modal__overlay {
  background-color: rgba(28, 28, 28, .2);
  position: absolute;
  inset: 0;
}

.modal__container {
  z-index: 10000;
  position: fixed;
  background-color: #fff;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .modal__container {
    overflow-y: auto;
    max-height: 39.375rem;
    width: calc(100% - 3rem);
    height: calc(100% - 6.25rem);
    padding: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .modal__container {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-height: 35.375rem;
    max-width: 53rem;
    width: calc(100% - 5rem);
    padding: 2.5rem;
  }
}

.modal__contents {
  display: grid;
  gap: 12px;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

@media screen and (min-width: 768px) {
  .modal__contents {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.modal__contents.is-show {
  opacity: 1;
  visibility: visible;
  position: static;
  z-index: 1;
}

.modal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
}

@media screen and (min-width: 768px) {
  .modal__content {
    gap: 1.25rem;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.modal__close {
  position: fixed;
  top: 0;
  right: 0;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  padding: 6px;
  padding: 0.375rem;
  background-color: #1C1C1C;
}

@media screen and (min-width: 768px) {
  .modal__close {
    width: 2rem;
    height: 2rem;
    padding: 0.5rem;
  }
}

.modal__text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (min-width: 768px) {
  .modal__text {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
  }
}

.modal__credit {
  color: #6A6A6A;
  font-size: 12px;
  font-size: 0.75rem;
}

.modal__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 12px;
  margin-top: 0.75rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .modal__navigation {
    position: absolute;
    bottom: 0;
  }
}

.modal__navigation button {
  position: static !important;
  width: auto;
  height: auto;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  gap: 0.75rem;
}

.modal__navigation button:before {
  content: "";
  background-color: #6A6A6A;
  height: 1px;
  width: 24px;
  width: 1.5rem;
  display: block;
}

.modal__navigation button:after {
  color: #6A6A6A;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
}

.modal__slider {
  overflow: hidden;
}

.section {
  padding-block: 80px;
  padding-block: 5rem;
}

@media screen and (min-width: 768px) {
  .section {
    padding-block: min(11.7130307467vw, 10rem);
  }
}

.section__catch {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.8em;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 768px) {
  .section__catch {
    font-size: 1.25rem;
  }
}

.section__text {
  line-height: 2;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 768px) {
  .section__text {
    font-size: 0.875rem;
  }
}

.section__text span {
  font-size: 10px;
  font-size: 0.625rem;
  color: #6A6A6A;
}

@media screen and (min-width: 768px) {
  .section__text span {
    font-size: 0.75rem;
  }
}

.section__label {
  text-transform: uppercase;
  font-style: normal;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1;
  padding-bottom: 1em;
  text-align: right;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  position: relative;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 768px) {
  .section__label {
    font-size: 0.75rem;
    line-height: 1.1666666667;
    margin-bottom: min(2.9282576867vw, 2.5rem);
  }
}

.section__label:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #1C1C1C;
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.section__announce {
  font-size: 10px;
  font-size: 0.625rem;
  color: #6A6A6A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .section__announce {
    font-size: 0.75rem;
  }
}

.section__announce:before {
  content: "※";
}

.section__announce._mt_ {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.section01 {
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  .section01__title.title {
    margin-bottom: 1.875rem;
  }
}

.section01__btn {
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .section01__btn {
    margin-top: min(8.78477306vw, 7.5rem);
  }
}

.section01__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .section01__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .section01__heading {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: min(3.2942898975vw, 2.8125rem);
  }
}

@media screen and (min-width: 768px) {
  .section01__heading p {
    max-width: 424px;
  }
}

.section01__formal {
  padding-bottom: 48px;
  padding-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .section01__formal {
    padding-bottom: min(7.027818448vw, 6rem);
  }
}

.section01__type._formal_ {
  width: 60.1063829787vw;
}

@media screen and (min-width: 768px) {
  .section01__type._formal_ {
    width: min(41.0688140556vw, 35.0625rem);
  }
}

.section01__type._arrange_ {
  width: 70.4787234043vw;
}

@media screen and (min-width: 768px) {
  .section01__type._arrange_ {
    width: min(48.0966325037vw, 41.0625rem);
  }
}

.section01__slider {
  display: grid;
  gap: 12px;
  gap: 0.75rem;
}

@media screen and (min-width: 768px) {
  .section01__slider {
    gap: min(1.1713030747vw, 1rem) min(3.8067349927vw, 3.25rem);
  }
}

.section01__slider._formal_ {
  margin-right: -24px;
  margin-right: -1.5rem;
  grid-template-columns: 64.6276595745vw 1fr;
}

@media screen and (min-width: 768px) {
  .section01__slider._formal_ {
    grid-template-columns: min(42.6793557833vw, 36.4375rem) 1fr;
    margin-right: calc(50% - 50vw);
  }
}

.section01__slider._arrange_ {
  margin-left: -24px;
  margin-left: -1.5rem;
  grid-template-columns: 1fr 64.6276595745vw;
}

@media screen and (min-width: 768px) {
  .section01__slider._arrange_ {
    grid-template-columns: 1fr min(42.6793557833vw, 36.4375rem);
    margin-left: calc(50% - 50vw);
  }
}

.section01__sliderMain {
  overflow: hidden;
  grid-row: span 2;
}

@media screen and (min-width: 768px) {
  .section01__sliderMain {
    grid-row: span 4;
  }
}

.section01__sliderMain._arrange_ {
  grid-column: 2;
}

.section01__sliderMain ._caption_ {
  position: relative;
}

.section01__sliderMain ._caption_:before {
  display: none;
  content: "俳優　前原滉";
  color: #fff;
  position: absolute;
  right: 5px;
  right: 0.3125rem;
  bottom: 5px;
  bottom: 0.3125rem;
  font-size: 10px;
  font-size: 0.625rem;
}

@media screen and (min-width: 768px) {
  .section01__sliderMain ._caption_:before {
    right: 0.375rem;
    bottom: 0.375rem;
    font-size: 0.75rem;
    line-height: 2;
  }
}

.section01__sliderThumbs {
  overflow: hidden;
}

.section01__sliderThumbs._formal_ .swiper-wrapper {
  margin-left: -172px;
  margin-left: -10.75rem;
}

@media screen and (min-width: 768px) {
  .section01__sliderThumbs._formal_ .swiper-wrapper {
    margin-left: -13.5rem;
  }
}

.section01__sliderThumbs._arrange_ {
  grid-row: 2;
}

@media screen and (min-width: 768px) {
  .section01__sliderThumbs._arrange_ {
    grid-row: 1;
  }
}

.section01__sliderThumbs._arrange_ .swiper-wrapper {
  margin-right: -172px;
  margin-right: -10.75rem;
}

@media screen and (min-width: 768px) {
  .section01__sliderThumbs._arrange_ .swiper-wrapper {
    margin-right: -13.5rem;
  }
}

.section01__sliderContents {
  position: relative;
}

@media screen and (max-width: 767px) {
  .section01__sliderContents {
    grid-column: span 2;
    margin-top: 0.5rem;
    width: calc(100% - 1.5rem);
  }
}

@media screen and (min-width: 768px) {
  .section01__sliderContents {
    margin-top: 3rem;
    max-width: 571px;
    width: calc(100% - 5rem);
  }
}

@media screen and (min-width: 768px) {
  .section01__sliderContents._formal_ {
    grid-column: 2;
  }
}

.section01__sliderContents._arrange_ {
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .section01__sliderContents._arrange_ {
    grid-column: 1;
  }
}

.section01__sliderThumb.swiper-slide {
  width: 156px;
  width: 9.75rem;
}

@media screen and (min-width: 768px) {
  .section01__sliderThumb.swiper-slide {
    width: 12.5rem;
  }
}

.section01__sliderText {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  display: none;
}

.section01__sliderText.is-active {
  display: block;
  -webkit-transform: translate(0);
  transform: translate(0);
  -webkit-animation: fadeUp 0.4s ease-out 0s;
  animation: fadeUp 0.4s ease-out 0s;
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.swiper-slide {
  overflow: hidden;
}

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

.swiper-navigation .swiper-button-prev,
.swiper-navigation .swiper-button-next {
  position: static !important;
  width: auto;
  height: auto;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  gap: 0.75rem;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.swiper-navigation .swiper-button-prev:before,
.swiper-navigation .swiper-button-next:before {
  content: "";
  background-color: #6A6A6A;
  height: 1px;
  width: 24px;
  width: 1.5rem;
  display: block;
}

.swiper-navigation .swiper-button-prev:after,
.swiper-navigation .swiper-button-next:after {
  color: #6A6A6A;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
}

@media (hover: hover) and (pointer: fine) {
  .swiper-navigation .swiper-button-prev:hover {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
}

.swiper-navigation .swiper-button-next {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .swiper-navigation .swiper-button-next:hover {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
}

@media screen and (max-width: 767px) {
  .section01__sliderNavigation {
    grid-column: span 2;
    width: calc(100% - 1.5rem);
  }
}

@media screen and (min-width: 768px) {
  .section01__sliderNavigation {
    max-width: 571px;
    width: calc(100% - 5rem);
    grid-column: 2;
    grid-row: 2;
  }
}

.section01__sliderNavigation._arrange_ {
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .section01__sliderNavigation._arrange_ {
    grid-column: 1;
  }
}

.section02 {
  background-color: #EDEFF0;
}

.section02__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

@media screen and (min-width: 768px) {
  .section02__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-bottom: min(8.78477306vw, 7.5rem);
    gap: min(5.1244509517vw, 4.375rem);
  }
}

.section02__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  gap: 0.75rem;
}

@media screen and (min-width: 768px) {
  .section02__items {
    grid-template-columns: 1fr 1fr 1fr;
    gap: min(2.3426061493vw, 2rem);
    max-width: 50.125rem;
  }
}

.section02__item {
  position: relative;
  background-color: #1C1C1C;
  overflow: hidden;
  cursor: pointer;
}

.section02__item img {
  -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}

@media screen and (max-width: 767px) {
  .section02__item:nth-child(3) {
    grid-column: span 2;
    width: calc(50% - 0.375rem);
    margin-inline: auto;
  }
}

@media (hover: hover) and (pointer: fine) {
  .section02__item:hover img {
    opacity: 0.8;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.section02__item:before,
.section02__item:after {
  content: "";
  position: absolute;
  display: block;
  z-index: 1;
}

.section02__item:before {
  right: 4px;
  right: 0.25rem;
  bottom: 4px;
  bottom: 0.25rem;
  background-color: #EDEFF0;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
}

@media screen and (min-width: 768px) {
  .section02__item:before {
    width: 2rem;
    height: 2rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }
}

.section02__item:after {
  right: 10px;
  right: 0.625rem;
  bottom: 10px;
  bottom: 0.625rem;
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  background-image: url(../images/icon-modal.svg);
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .section02__item:after {
    right: 1rem;
    bottom: 1rem;
    width: 1rem;
    height: 1rem;
  }
}

.section02__point {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section02__accessories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .section02__accessories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: min(2.3426061493vw, 2rem);
  }
}

.section02__accessory {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .section02__accessory {
    gap: 0.75rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .section02__accessory:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .section02__accessory {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.625rem;
  }
}

.section02__accessory p {
  font-size: 10px;
  font-size: 0.625rem;
}

@media screen and (min-width: 768px) {
  .section02__accessory p {
    font-size: 0.75rem;
  }
}

.section02__accessoryContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
  gap: 0.4375rem;
}

@media screen and (max-width: 767px) {
  .section02__accessoryImg {
    width: calc(50% - 0.375rem);
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

.section02__accessoryName {
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
}

.section03__slider {
  overflow: hidden;
}

.section03__slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.section03__slider .swiper-slide {
  width: 25vw;
}

@media screen and (min-width: 768px) {
  .section03__slider .swiper-slide {
    width: min(14.6412884334vw, 12.5rem);
  }
}

.section03__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
  .section03__heading {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 4rem;
    margin-bottom: min(4.6852122987vw, 4rem);
  }
}

@media screen and (min-width: 1024px) {
  .section03__title {
    width: min(32.2108345534vw, 27.5rem);
  }
}

.section03__catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
}

@media screen and (min-width: 768px) {
  .section03__catch {
    gap: 0.5rem;
  }
}

.section03__catch>p {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.section03__catchWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .section03__catchWrapper {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    gap: min(1.6105417277vw, 1.375rem);
  }
}

.section03__catchWrapper p {
  letter-spacing: 0.04em;
  font-size: 12px;
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .section03__catchWrapper p {
    font-size: 1.5rem;
  }
}

.section03__catchText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 4px;
  gap: 0.25rem;
  font-size: 16px;
  font-size: 1rem;
  overflow: hidden;
  position: relative;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .section03__catchText {
    gap: min(0.7320644217vw, 0.625rem);
    font-size: 2rem;
  }
}

.section03__catchText:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #1C1C1C;
  position: absolute;
  bottom: 0;
}

.section03__catchNo {
  font-size: 32px;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .section03__catchNo {
    font-size: 4rem;
    line-height: 5.25rem;
  }
}

.section04 {
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  .section04__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .section04__container {
    position: relative;
    margin-bottom: min(8.78477306vw, 7.5rem);
  }
}

.section04__hero {
  position: relative;
}

@media screen and (max-width: 767px) {
  .section04__hero {
    margin-inline: -1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .section04__heading {
    grid-column: 2;
    position: absolute;
    max-width: 394px;
    margin-right: 1rem;
    top: min(8.78477306vw, 7.5rem);
    left: min(46.486090776vw, 39.6875rem);
  }
}

.section05 {
  background-color: #EDEFF0;
}

.section05 .section__announce {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.section05__heading {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .section05__heading {
    margin-bottom: min(4.6852122987vw, 4rem);
  }
}

.section05__subheading {
  position: relative;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .section05__subheading {
    text-align: center;
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .section05__subheading {
    font-size: 1rem;
    padding-left: min(2.9282576867vw, 2.5rem);
  }
}

.section05__subheading span {
  position: relative;
  z-index: 1;
  padding-inline: 14px;
  padding-inline: 0.875rem;
  background-color: #EDEFF0;
}

@media screen and (min-width: 768px) {
  .section05__subheading span {
    padding-inline: min(1.1713030747vw, 1rem);
  }
}

.section06 {
  background-color: #CACCCE;
}

.section06__heading {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.section06__subheading {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .section06__subheading {
    text-align: center;
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .section06__subheading {
    font-size: 1rem;
    padding-left: min(2.9282576867vw, 2.5rem);
  }
}

.section06__subheading span {
  position: relative;
  z-index: 1;
  padding-inline: 14px;
  padding-inline: 0.875rem;
  background-color: #CACCCE;
}

@media screen and (min-width: 768px) {
  .section06__subheading span {
    padding-inline: min(1.1713030747vw, 1rem);
  }
}

.section06__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
  gap: 3.75rem;
}

@media screen and (min-width: 768px) {
  .section06__contents {
    gap: min(8.78477306vw, 7.5rem);
  }
}

@media screen and (max-width: 767px) {
  .section06__stylingItem {
    gap: 0.875rem;
  }
}

.section06__announce {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.section07__heading {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.section07__question {
  padding-block: 16px;
  padding-block: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  row-gap: 5px;
  row-gap: 0.3125rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .section07__question {
    font-size: 1.5rem;
    padding-block: min(2.3426061493vw, 2rem);
    -webkit-column-gap: min(5.6368960469vw, 4.8125rem);
    -moz-column-gap: min(5.6368960469vw, 4.8125rem);
    column-gap: min(5.6368960469vw, 4.8125rem);
    row-gap: min(0.5856515373vw, 0.5rem);
  }
}

.section07__question:first-child {
  border-top: 1px solid #1C1C1C;
}

.section07__question span {
  grid-column: 1;
  grid-row: 2;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section07__question:before {
  content: "question";
  text-transform: uppercase;
  font-size: 10px;
  font-size: 0.625rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 768px) {
  .section07__question:before {
    font-size: 0.75rem;
  }
}

.section07__question:after {
  content: "";
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  display: block;
  grid-column: 2;
  grid-row: span 2;
  background-image: url(../images/icon-arrow.svg);
  background-size: contain;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.section07__question.is-active:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .section07__question:hover:not(.is-active):after {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}

.section07__answer {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.4s ease-out;
  transition: max-height 0.4s ease-out;
  border-bottom: 1px solid #1C1C1C;
}

.section07__answer p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 768px) {
  .section07__answer p {
    padding-bottom: min(2.3426061493vw, 2rem);
  }
}

.section07__answer p:before {
  content: "answer";
  text-transform: uppercase;
  font-size: 10px;
  font-size: 0.625rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 768px) {
  .section07__answer p:before {
    font-size: 0.75rem;
  }
}

.section07__list {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

@media screen and (min-width: 768px) {
  .section07__list {
    margin-bottom: min(8.78477306vw, 7.5rem);
  }
}

.reserve {
  background-color: #EDEFF0;
  border-radius: 0.25rem;
  padding: 24px;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 28px;
  gap: 1.75rem;
}

@media screen and (min-width: 768px) {
  .reserve {
    padding: min(4.39238653vw, 3.75rem) min(5.8565153734vw, 5rem);
    gap: min(2.9282576867vw, 2.5rem);
    border-radius: 0.5rem;
  }
}

.reserve__heading {
  border-bottom: 1px solid #1C1C1C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 9px;
  padding-bottom: 0.5625rem;
}

@media screen and (max-width: 767px) {
  .reserve__heading {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .reserve__heading {
    padding-bottom: 0.875rem;
    gap: min(5.8565153734vw, 5rem);
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

.reserve__headingMain {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 768px) {
  .reserve__headingMain {
    font-size: min(8.78477306vw, 7.5rem);
  }
}

.reserve__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 768px) {
  .reserve__text {
    font-size: 1.25rem;
  }
}

.reserve__discount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px 7px;
  gap: 0.125rem 0.4375rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 32px;
  font-size: 2rem;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: auto auto;
}

@media screen and (min-width: 768px) {
  .reserve__discount {
    font-size: min(4.6852122987vw, 4rem);
    gap: 0 min(0.7320644217vw, 0.625rem);
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

.reserve__discount span {
  letter-spacing: 0.04em;
}

.reverse__discountText {
  font-size: 10px;
  font-size: 0.625rem;
  grid-column: span 2;
  font-weight: 700;
  margin-left: 1em;
}

@media screen and (min-width: 768px) {
  .reverse__discountText {
    font-size: min(1.4641288433vw, 1.25rem);
    margin-left: min(0.2928257687vw, 0.25rem);
    margin-bottom: min(-0.7320644217vw, -0.625rem);
  }
}

.reserve__discountRate {
  font-size: 48px;
  font-size: 3rem;
  line-height: 48px;
  line-height: 3rem;
  font-style: italic;
  grid-column: 1;
  grid-row: 2;
}

@media screen and (min-width: 768px) {
  .reserve__discountRate {
    font-size: min(7.027818448vw, 6rem);
    line-height: 1.3333333333;
  }
}

.reserve__discountPer {
  font-size: 32px;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .reserve__discountPer {
    font-size: min(4.6852122987vw, 4rem);
  }
}

.reserve__discountOff {
  grid-column: 2;
  grid-row: 2;
}

@media screen and (min-width: 768px) {
  .reserve__discountOff {
    font-size: min(4.6852122987vw, 4rem);
    margin-bottom: min(0.2928257687vw, 0.25rem);
  }
}

.reserve__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .reserve__list {
    gap: min(2.9282576867vw, 2.5rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.reserve__item {
  background-color: #fff;
  padding: 13px 16px;
  padding: 0.8125rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  gap: 0.375rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 2;
  counter-increment: number;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 768px) {
  .reserve__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.75rem;
    padding: min(1.1713030747vw, 1rem) min(2.3426061493vw, 2rem) min(2.3426061493vw, 2rem);
    font-size: 0.875rem;
  }
}

.reserve__item:before {
  content: counter(number);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  font-size: 1.25rem;
  width: 26px;
  width: 1.625rem;
  line-height: 1.3;
  text-align: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .reserve__item:before {
    font-size: 2.5rem;
    line-height: 3.3125rem;
  }
}

.reserve__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
  font-size: 14px;
  font-size: 0.875rem;
}

.reserve__container p {
  line-height: 2;
  font-weight: 500;
}

.reserve__announce {
  color: #6A6A6A;
  font-size: 12px;
  font-size: 0.75rem;
}

.reserve__announce li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reserve__announce li:before {
  content: "※";
}

.reserve__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  gap: 2.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

@media screen and (min-width: 1024px) {
  .reserve__cta {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: min(8.5651537335vw, 7.3125rem);
    margin-bottom: 0;
  }
}

.reserve__cta a.btn {
  margin-inline: auto;
  background-color: white;
  border: none;

}

@media screen and (min-width: 1024px) {
  .reserve__cta a.btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-inline: auto 1.25rem;
    width: 18.1875rem;
    padding: 0;
    background-color: white;
    border: none;
  }
}

.reserve__ctaText {
  font-size: 14px;
  font-size: 0.875rem;
  max-width: 610px;
}

@media screen and (min-width: 768px) {
  .reserve__ctaText {
    font-size: 1.25rem;
  }
}

.section07__announce {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.styling {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  gap: 2rem;
}

@media screen and (min-width: 768px) {
  .styling {
    gap: min(4.6852122987vw, 4rem);
  }
}

.styling__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .styling__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: min(4.6852122987vw, 4rem);
  }
}

.styling__label {
  font-size: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.8em;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 768px) {
  .styling__label {
    font-size: 1.25rem;
  }
}

.styling__credit {
  color: #6A6A6A;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 1.6em;
  letter-spacing: 0.04em;
}

.styling__btn {
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 164px;
  width: 10.25rem;
  height: 36px;
  height: 2.25rem;
}

@media screen and (min-width: 768px) {
  .styling__btn {
    margin-top: 1.6em;
  }
}

.styling__img {
  position: relative;
}

.styling__caption {
  display: none;
  color: #fff;
  position: absolute;
  right: 5px;
  right: 0.3125rem;
  bottom: 5px;
  bottom: 0.3125rem;
  font-size: 10px;
  font-size: 0.625rem;
}

@media screen and (min-width: 768px) {
  .styling__caption {
    right: 0.375rem;
    bottom: 0.375rem;
    font-size: 0.75rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 768px) {
  .styling__content {
    max-width: 469px;
  }
}

@media screen and (min-width: 768px) {
  .styling__content._sm_ {
    padding-left: min(2.7086383602vw, 2.3125rem);
  }
}

.styling__wrapper>p {
  margin-top: 4px;
  margin-top: 0.25rem;
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  gap: 0.3125rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .title {
    gap: 0.5rem;
    margin-bottom: min(4.39238653vw, 3.75rem);
  }
}

.title__no {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .title__no {
    font-size: 1rem;
  }
}

.title__ja {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 768px) {
  .title__ja {
    font-size: 2rem;
  }
}

.title__en {
  text-transform: uppercase;
  font-size: 10px;
  font-size: 0.625rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .title__en {
    font-size: 0.75rem;
  }
}

.title__wrapper {
  overflow: hidden;
}

/*# sourceMappingURL=styles.css.map */