@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
}

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

html {
  font-size: clamp(12px, 1.1111111111vw, 28px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  html {
    font-size: max(13.5px, 1.5625vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: min(4.1025641026vw, 17.5px);
  }
}

body {
  background: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.1;
}
body.no-scroll {
  overflow: hidden;
}

a {
  display: inline-block;
  color: #2D2D2D;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

p,
span {
  font-weight: 500;
}

span {
  display: inline-block;
  font-weight: inherit;
}

input[type=button],
input[type=submit],
select,
button[type=button] {
  appearance: none;
  -webkit-appearance: none;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 62.5rem #f5f5f5 inset;
}

button {
  cursor: pointer;
  color: inherit;
  background: transparent;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  padding: 0;
  border: none;
}

img {
  display: inline-block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.inner {
  width: 79.375rem;
  max-width: 100%;
  margin: 0 auto;
  padding-inline: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 36.875rem;
    padding-inline: 1.25rem;
  }
}
.inner.--wide {
  width: 90rem;
}
@media screen and (max-width: 767px) {
  .inner.--wide {
    width: 36.875rem;
    padding-inline: 1.25rem;
  }
}
.inner.--narrow {
  width: 66.875rem;
}
@media screen and (max-width: 767px) {
  .inner.--narrow {
    width: 36.875rem;
    padding-inline: 1.25rem;
  }
}

.heading {
  color: #1724B0;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .heading {
    font-size: 4.6875vw;
  }
}
@media screen and (max-width: 767px) {
  .heading {
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .heading br {
    display: none;
  }
}

.deco-wave {
  overflow: hidden;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 100%;
  left: 0;
}
.deco-wave img {
  display: block;
  width: 102.4375rem;
  height: auto;
  aspect-ratio: 8.0343137255;
  margin-left: -6.25rem;
}
@media screen and (max-width: 767px) {
  .deco-wave img {
    width: 116.1538461538vw;
    aspect-ratio: 5.3294117647;
    margin-left: -1.9375rem;
  }
}

.cta {
  color: #fff;
  background: #E12F11;
  font-size: 1.125rem;
  font-weight: 700;
  width: fit-content;
  padding-block: 0.8125rem;
  padding-inline: 1.75rem;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cta.--small {
  padding-inline: 3.3125rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .cta.--small {
    padding-block: 0.5rem;
    padding-inline: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .cta.--small {
    padding-inline: 1.9375rem;
  }
}
.cta.--black {
  background-color: #2D2D2D;
  font-size: 1rem;
  padding-block: 0.71875rem;
}
@media screen and (max-width: 767px) {
  .cta.--black {
    font-size: 0.875rem;
    padding-block: 0.3125rem;
  }
}

.cta__txt {
  font-weight: 700;
  flex-shrink: 0;
}

.cta__img {
  width: 1.625rem;
  height: auto;
  aspect-ratio: 1;
  flex-shrink: 0;
}
.--black .cta__img {
  width: 1.25rem;
}

.header {
  width: 100%;
  padding-block: 1.375rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header {
    padding-block: 0.9375rem;
  }
}

.header__inner {
  padding-inline: 2.25rem;
}

.header__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__nav {
    gap: 3.90625vw;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__nav-list {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-list {
    display: none;
  }
}

.header__nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__nav-link span {
  font-weight: 700;
}

.drawer-icon {
  cursor: pointer;
  width: 4.3125rem;
  height: 1.1875rem;
  border: none;
  position: fixed;
  top: 2.125rem;
  left: 3.125rem;
  z-index: 11;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .drawer-icon {
    top: 2.6041666667vw;
    left: 2.6041666667vw;
  }
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    width: 2.9375rem;
    height: 0.8125rem;
    top: 1.1875rem;
    left: 1.3125rem;
  }
}

.drawer-icon__bg {
  width: 23.421875rem;
  height: auto;
  position: fixed;
  top: -3.375rem;
  left: -7.3125rem;
  z-index: 11;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .drawer-icon__bg {
    width: 31.25vw;
    left: -9.1145833333vw;
  }
}
@media screen and (max-width: 767px) {
  .drawer-icon__bg {
    width: 11.4475rem;
    top: -1.0625rem;
    left: -3.0625rem;
  }
}

.drawer-icon__bar {
  content: "";
  display: block;
  background: #2D2D2D;
  width: inherit;
  height: 0.125rem;
  transition: top 0.3s linear, bottom 0.3s linear, transform 0.3s linear;
  position: absolute;
  left: 0;
}
.drawer-icon__bar.--bar1 {
  top: 0;
}
.drawer-icon__bar.--bar3 {
  bottom: 0;
}
.drawer-icon.is-show .drawer-icon__bar.--bar1 {
  top: 50%;
  transform: translateY(-50%) rotate(25deg);
}
.drawer-icon.is-show .drawer-icon__bar.--bar3 {
  top: 50%;
  transform: translateY(-50%) rotate(-25deg);
}

.drawer-icon__txt {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .drawer-icon__txt {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    margin-top: 0.9375rem;
  }
}

.drawer-content {
  color: #fff;
  background: #D9D9D9;
  width: 35%;
  height: 100vh;
  height: 100svh;
  padding-block: 9.25rem;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  left: -120%;
  z-index: 9;
  transition: left 0.3s linear;
}
@media screen and (max-width: 767px) {
  .drawer-content {
    width: 100%;
    top: -120%;
    left: 50%;
    translate: -50%;
    transition: top 0.3s linear;
  }
}
.drawer-content.is-show {
  left: 0;
}
@media screen and (max-width: 767px) {
  .drawer-content.is-show {
    top: 0;
    left: 50%;
    translate: -50%;
  }
}

.drawer-content__nav {
  height: fit-content;
  margin-inline: auto;
}

.drawer-content__item {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
.drawer-content__item:nth-of-type(n + 2) {
  margin-top: 1.5625rem;
}

.drawer-content__link {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  width: 100%;
}

.drawer-content__sns-icons {
  width: 15rem;
  height: 4.375rem;
  margin-top: 2.875rem;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}

.drawer-content__sns-icon {
  width: 4.375rem;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 半透明の黒い背景 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 8;
  /* 必要に応じて調整 */
}
.drawer-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.fv {
  width: 100%;
  height: 89.9375rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv {
    height: 123.6979166667vw;
  }
}
@media screen and (max-width: 767px) {
  .fv {
    height: 74.3125rem;
  }
}

.fv__img {
  width: 110.9375rem;
  height: auto;
  aspect-ratio: 0.5627774255;
  position: absolute;
  top: -22.0625rem;
  left: calc(50% - 2.6875rem);
  translate: -50%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__img {
    width: 104.1666666667vw;
    top: 0;
    left: 50%;
  }
}
@media screen and (max-width: 767px) {
  .fv__img {
    width: 100%;
    top: 0;
    left: 0;
    translate: 0;
  }
}
@media screen and (min-width: 701px) and (max-width: 767px) {
  .fv__img {
    top: -36.5058670143vw;
  }
}
@media screen and (min-width: 651px) and (max-width: 700px) {
  .fv__img {
    top: -30vw;
  }
}
@media screen and (min-width: 601px) and (max-width: 650px) {
  .fv__img {
    top: -23.0769230769vw;
  }
}
@media screen and (min-width: 551px) and (max-width: 600px) {
  .fv__img {
    top: -18.3333333333vw;
  }
}
@media screen and (min-width: 501px) and (max-width: 550px) {
  .fv__img {
    top: -10.9090909091vw;
  }
}
@media screen and (min-width: 451px) and (max-width: 500px) {
  .fv__img {
    top: -9vw;
  }
}

.fv__title {
  width: 13.5625rem;
  height: auto;
  aspect-ratio: 0.3640939597;
  position: absolute;
  top: 8.375rem;
  right: 7.4375rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__title {
    width: 15.625vw;
    right: 6.5104166667vw;
  }
}
@media screen and (max-width: 767px) {
  .fv__title {
    width: 18.846875rem;
    aspect-ratio: 2.1543902265;
    top: 5.5rem;
    right: unset;
    left: 50%;
    translate: -50%;
  }
}

.fv__desc {
  position: absolute;
  top: 11.875rem;
  left: 6.875rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__desc {
    left: 6.5104166667vw;
  }
}
@media screen and (max-width: 767px) {
  .fv__desc {
    top: 15.5rem;
    left: 50%;
    translate: -50%;
  }
}
.fv__desc p {
  font-size: 1.230625rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .fv__desc p {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    line-height: 1.5333333333;
    writing-mode: unset;
    text-align: center;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .fv__desc p br:nth-of-type(2) {
    display: none;
  }
}

.fv-card {
  position: absolute;
  bottom: 11.75rem;
  left: 50%;
  translate: -50%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv-card {
    bottom: 14.3229166667vw;
  }
}
@media screen and (max-width: 767px) {
  .fv-card {
    bottom: 7.0625rem;
  }
}

.fv-card__deco {
  width: 16.208125rem;
  height: auto;
  position: absolute;
  top: -11.8125rem;
  left: -8.25rem;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv-card__deco {
    width: 13.0208333333vw;
    top: -8.4635416667vw;
    left: -4.5572916667vw;
  }
}
@media screen and (max-width: 767px) {
  .fv-card__deco {
    width: 7.651875rem;
    top: -3.375rem;
    left: -0.625rem;
  }
}
@media screen and (min-width: 501px) and (max-width: 767px) {
  .fv-card__deco {
    width: 15.6453715776vw;
    top: -5.8670143416vw;
    left: -5.8670143416vw;
  }
}

.fv-card__wrap {
  background-image: linear-gradient(-90deg, rgba(255, 255, 255, 0) 1.17%, rgba(255, 255, 255, 0.800972) 43.27%, #FFFFFF 56.06%, #FFFFFF 100%), url("../img/bg_fv-card.webp");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  width: 75rem;
  height: auto;
  aspect-ratio: 2.7777777778;
  padding-inline: 6.25rem 9.125rem;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv-card__wrap {
    width: 93.75vw;
    padding-inline: 5.2083333333vw;
    gap: 2.6041666667vw;
  }
}
@media screen and (max-width: 767px) {
  .fv-card__wrap {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.800972) 41.81%, #FFFFFF 54.52%, #FFFFFF 98.15%), url("../img/bg_fv-card-sp.webp");
    background-position: top left;
    width: 21.875rem;
    aspect-ratio: 0.7261410788;
    padding-top: 3.75rem;
    padding-inline: 1.5rem;
    justify-content: unset;
  }
}
@media screen and (min-width: 501px) and (max-width: 767px) {
  .fv-card__wrap {
    background-position: center;
    background-size: cover;
    width: 78.2268578879vw;
    aspect-ratio: 1.5;
    padding-bottom: 5.2151238592vw;
  }
}

.fv-card__txt {
  width: 61.6352201258%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv-card__txt {
    width: 65%;
  }
}
@media screen and (max-width: 767px) {
  .fv-card__txt {
    width: 100%;
  }
}

.fv-card__title {
  color: #1724B0;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv-card__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .fv-card__title {
    font-size: 1.0625rem;
  }
}
.fv-card__title .--large {
  font-size: 3rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv-card__title .--large {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 767px) {
  .fv-card__title .--large {
    font-size: 1.625rem;
  }
}
.fv-card__title .--large:nth-of-type(2) {
  margin-left: -0.75rem;
}
.fv-card__title .--accent {
  color: #E12F11;
}

.fv-card__desc {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv-card__desc {
    margin-top: 0.9114583333vw;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .fv-card__desc {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 501px) and (max-width: 767px) {
  .fv-card__desc {
    line-height: 1.8;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv-card__desc br:nth-of-type(1) {
    display: none;
  }
}

.fv-card__img {
  width: 20.875rem;
  height: auto;
  position: absolute;
  top: -3.625rem;
  right: 7.1875rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv-card__img {
    width: 28.6458333333vw;
    bottom: 110%;
    right: 2.6041666667vw;
  }
}
@media screen and (max-width: 767px) {
  .fv-card__img {
    width: 6.6875rem;
    top: -1.25rem;
    right: 0.6875rem;
  }
}

.tokyo {
  background: #fff;
  margin-top: 1.6875rem;
  padding-top: 1.375rem;
  padding-bottom: 14.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tokyo {
    margin-top: -0.25rem;
    padding-top: 1.5625rem;
    padding-bottom: 5.875rem;
  }
}

.tokyo__heading-icon {
  width: 7.375rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .tokyo__heading-icon {
    width: 6.25rem;
  }
}

.tokyo__heading-txt {
  font-weight: inherit;
  letter-spacing: 0.055em;
  width: fit-content;
  margin-top: 1.125rem;
  margin-inline: auto;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .tokyo__heading-txt {
    font-size: 1.75rem;
    line-height: 1.5;
    margin-top: 0.75rem;
    padding-left: 1.25rem;
  }
}
.tokyo__heading-txt .--accent {
  color: #E12F11;
  margin-left: -0.9375rem;
}

.tokyo-common__container {
  margin-top: 6.625rem;
  display: flex;
  align-items: center;
  gap: 4.625rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tokyo-common__container {
    margin-top: 3.75rem;
    gap: 2.6041666667vw;
  }
}
@media screen and (max-width: 767px) {
  .tokyo-common__container {
    margin-top: 2.6875rem;
    flex-direction: column;
    gap: 1.9375rem;
  }
}
.--cafe .tokyo-common__container {
  margin-top: 9.375rem;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .--cafe .tokyo-common__container {
    margin-top: 6.375rem;
    flex-direction: column;
  }
}

.tokyo-common__img {
  overflow: hidden;
  width: 32.375rem;
  height: auto;
  aspect-ratio: 0.8170347003;
  border-radius: 0.625rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tokyo-common__img {
    width: 50%;
    height: fit-content;
  }
}
@media screen and (max-width: 767px) {
  .tokyo-common__img {
    width: 100%;
    aspect-ratio: 1.6129032258;
  }
}

.tokyo-common__title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tokyo-common__title {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 767px) {
  .tokyo-common__title {
    font-size: 1.75rem;
  }
}

.tokyo-common__desc {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tokyo-common__desc {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 767px) {
  .tokyo-common__desc {
    font-size: 0.9375rem;
    margin-top: 1.0625rem;
    line-height: 2.07;
  }
}

.tokyo-common__hour {
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .tokyo-common__hour {
    margin-top: 0.625rem;
  }
}

.tokyo-common__hour-tag {
  color: #fff;
  background: #2D2D2D;
  line-height: 1;
  padding: 0.5625rem 1rem;
  border-radius: 100vmax;
}
@media screen and (max-width: 767px) {
  .tokyo-common__hour-tag {
    font-size: 0.9375rem;
    padding-inline: 0.9375rem;
  }
}

.tokyo-common__hour-txt {
  font-family: "Montserrat", sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-left: 0.625rem;
}

.tokyo-common__link {
  margin-top: 2.8125rem;
  display: flex;
  gap: 0.875rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tokyo-common__link {
    margin-top: 3.125vw;
  }
}
@media screen and (max-width: 767px) {
  .tokyo-common__link {
    margin-top: 1.5rem;
    gap: 0.4375rem;
  }
}

@media screen and (max-width: 767px) {
  .tokyo-common__swiper-inner {
    padding-inline: 0;
  }
}

.tokyo-common__swiper-container,
.tokyo-common__swiper,
.tokyo-common__swiper-wrapper,
.tokyo-common__swiper-slide {
  position: relative;
}

.tokyo-common__swiper-container {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .tokyo-common__swiper-container {
    margin-top: 2.6875rem;
  }
}

.tokyo-common__swiper-slide {
  width: 17.75rem;
  height: auto;
  aspect-ratio: 1.2136752137;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tokyo-common__swiper-slide {
    width: 28.6458333333vw;
  }
}
@media screen and (max-width: 767px) {
  .tokyo-common__swiper-slide {
    width: 9.9375rem;
  }
}

.tokyo-common__swiper-button-prev,
.tokyo-common__swiper-button-next,
.tokyo-common__swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.tokyo-common__swiper-button-prev::after,
.tokyo-common__swiper-button-next::after {
  content: "";
}

.tokyo-common__swiper-button-prev,
.tokyo-common__swiper-button-next {
  background: #2D2D2D;
  width: 3.125rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  bottom: 50%;
  z-index: 7;
}
@media screen and (max-width: 767px) {
  .tokyo-common__swiper-button-prev,
  .tokyo-common__swiper-button-next {
    width: 2.25rem;
  }
}
.tokyo-common__swiper-button-prev::before,
.tokyo-common__swiper-button-next::before {
  content: "";
  width: 0.625rem;
  height: auto;
  aspect-ratio: 1;
  border-top: 0.125rem solid #fff;
  border-left: 0.125rem solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media screen and (max-width: 767px) {
  .tokyo-common__swiper-button-prev::before,
  .tokyo-common__swiper-button-next::before {
    width: 0.5rem;
  }
}

.tokyo-common__swiper-button-prev {
  left: 0;
  translate: -50% 50%;
}
@media screen and (max-width: 767px) {
  .tokyo-common__swiper-button-prev {
    left: 1.875rem;
  }
}
.tokyo-common__swiper-button-prev::before {
  rotate: -45deg;
}

.tokyo-common__swiper-button-next {
  right: 0;
  translate: 50% 50%;
}
@media screen and (max-width: 767px) {
  .tokyo-common__swiper-button-next {
    right: 1.875rem;
  }
}
.tokyo-common__swiper-button-next::before {
  rotate: 135deg;
}

.tokyo-logo {
  margin-top: 7.25rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tokyo-logo {
    margin-top: 10.4166666667vw;
  }
}
@media screen and (max-width: 767px) {
  .tokyo-logo {
    margin-top: 3.8125rem;
    margin-left: -13.1875rem;
  }
}

.tokyo-logo__swiper-container,
.tokyo-logo__swiper,
.tokyo-logo__swiper-wrapper,
.tokyo-logo__swiper-slide {
  position: relative;
}

.tokyo-logo__swiper-wrapper {
  transition-timing-function: linear;
}

.tokyo-logo__swiper-slide {
  width: 42.401875rem;
  height: auto;
  aspect-ratio: 4.2288225394;
}
@media screen and (max-width: 767px) {
  .tokyo-logo__swiper-slide {
    width: 19.35125rem;
    aspect-ratio: 4.2286260585;
  }
}

.commitment {
  background: #FBF7EC;
  padding-top: 7.25rem;
  padding-bottom: 4.8125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .commitment {
    padding-top: 2.375rem;
    padding-bottom: 2.1875rem;
  }
}

.commitment__cards {
  margin-top: 5.875rem;
}
@media screen and (max-width: 767px) {
  .commitment__cards {
    margin-top: 1.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .--gyunyu .commitment__cards {
    margin-top: 1.875rem;
  }
}

.commitment__card {
  display: flex;
  align-items: center;
  gap: 3.75rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .commitment__card {
    gap: 2.6041666667vw;
  }
}
@media screen and (max-width: 767px) {
  .commitment__card {
    flex-direction: column-reverse;
    gap: 1.875rem;
  }
  .--gyunyu .commitment__card {
    flex-direction: column;
  }
}
.commitment__card:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .commitment__card:nth-of-type(even) {
    flex-direction: column-reverse;
  }
  .--gyunyu .commitment__card:nth-of-type(even) {
    flex-direction: column;
  }
}
.commitment__card:nth-of-type(n + 2) {
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .commitment__card:nth-of-type(n + 2) {
    margin-top: 3rem;
  }
}

.commitment__card-img {
  overflow: hidden;
  width: 34rem;
  height: auto;
  aspect-ratio: 1.4468085106;
  border-radius: 0.625rem;
  flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .commitment__card-img {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .commitment__card-img {
    width: 100%;
  }
}

.commitment__card-img-icon {
  width: 5.375rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 0.375rem;
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .commitment__card-img-icon {
    width: 7.03125vw;
  }
}
@media screen and (max-width: 767px) {
  .commitment__card-img-icon {
    width: 3.625rem;
    top: 0.375rem;
    right: 0.375rem;
  }
}

.commitment__card-title {
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .commitment__card-title {
    gap: 0.6875rem;
  }
}

.commitment__card-title-num {
  color: #E12F11;
  font-family: "Montserrat", sans-serif;
  font-size: 3.875rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .commitment__card-title-num {
    font-size: 5.2083333333vw;
  }
}
@media screen and (max-width: 767px) {
  .commitment__card-title-num {
    font-size: 2.75rem;
  }
}

.commitment__card-title-txt {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .commitment__card-title-txt {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 767px) {
  .commitment__card-title-txt {
    font-size: 1.5rem;
  }
}
.commitment__card-title-txt .num {
  font-family: "Montserrat", sans-serif;
}

.commitment__card-desc {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .commitment__card-desc {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 767px) {
  .commitment__card-desc {
    font-size: 0.9375rem;
    margin-top: 0.5rem;
  }
}

.voice {
  background: #FBF7EC;
  overflow: hidden;
  padding-top: 1.5rem;
  padding-bottom: 29.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .voice {
    padding-bottom: 15rem;
  }
}

.voice__bg {
  width: 91.1875rem;
  height: auto;
  aspect-ratio: 1.3360805861;
  position: absolute;
  top: -10.25rem;
  left: -0.6875rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .voice__bg {
    width: 101.5625vw;
    top: 19.53125vw;
  }
}
@media screen and (max-width: 767px) {
  .voice__bg {
    width: 100%;
    aspect-ratio: 0.9512195122;
    top: unset;
    bottom: 0.375rem;
    left: 0;
  }
}

.voice__inner {
  position: relative;
}

.voice__container {
  background: #fff;
  padding: 1.5625rem 3.125rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .voice__container {
    gap: 3.2552083333vw;
  }
}
@media screen and (max-width: 767px) {
  .voice__container {
    padding: 2.0625rem 1.625rem 1.875rem;
    flex-direction: column;
    gap: 1.125rem;
  }
}

.voice__img {
  width: 18.5625rem;
  height: auto;
  aspect-ratio: 1;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .voice__img {
    width: 11.0625rem;
  }
}
.voice__img img {
  display: block;
}

@media screen and (max-width: 767px) {
  .voice__txt {
    text-align: center;
  }
}

.voice__lead {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .voice__lead {
    font-size: 0.9375rem;
  }
}

.voice__heading {
  font-size: 2.25rem;
  margin-top: 0.25rem;
  line-height: 1.4;
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .voice__heading {
    font-size: 2.9947916667vw;
  }
}
@media screen and (max-width: 767px) {
  .voice__heading {
    font-size: 1.25rem;
    margin-top: 0.125rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .voice__heading br {
    display: block;
  }
}

.voice__desc {
  font-size: 1.125rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .voice__desc {
    font-size: 0.9375rem;
    line-height: 2.07;
    margin-top: 0.5rem;
    text-align: left;
  }
}

.online {
  padding-top: 4.6875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .online {
    padding-top: 2.375rem;
  }
}

.online__images {
  margin-top: 4.375rem;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 1.3125rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .online__images {
    grid-template-columns: repeat(2, auto);
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .online__images {
    margin-top: 1.6875rem;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 0.5625rem;
  }
}

.online__img {
  overflow: hidden;
  width: 17.75rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .online__img {
    width: 6.9375rem;
    border-radius: 0.3125rem;
  }
}
@media screen and (min-width: 768px) {
  .online__img:nth-of-type(n + 9) {
    display: none;
  }
}

.online__cta {
  margin-top: 3.75rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .online__cta {
    margin-top: 1.8125rem;
  }
}

.qa {
  padding-top: 7.6875rem;
}
@media screen and (max-width: 767px) {
  .qa {
    padding-top: 5.25rem;
  }
}

.qa__boxes {
  margin-top: 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .qa__boxes {
    margin-top: 1.75rem;
    gap: 1.1875rem;
  }
}

.qa-box__head {
  cursor: pointer;
  color: #fff;
  background: #2D2D2D;
  width: 100%;
  padding-block: 1.25rem;
  padding-inline: 1.9375rem 4.5rem;
  border-radius: 0.9375rem;
  overflow: hidden;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 767px) {
  .qa-box__head {
    padding-block: 0.875rem;
    padding-inline: 0.75rem 2.9375rem;
    border-radius: 0.625rem;
  }
}

.qa-box__head-container {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.qa-box__head-icon {
  font-size: 1.875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .qa-box__head-icon {
    font-size: 1.6875rem;
    line-height: 1.1481481481;
  }
}

.qa-box__head-txt {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.65;
}
@media screen and (max-width: 767px) {
  .qa-box__head-txt {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}

.qa-box__head-btn {
  display: block;
  background: #F1F1F1;
  width: 2.125rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 100vmax;
  position: absolute;
  right: 1.4375rem;
  top: 50%;
  translate: 0 -50%;
  transition: rotate 0.3s;
}
@media screen and (max-width: 767px) {
  .qa-box__head-btn {
    width: 1.75rem;
    right: 0.6875rem;
  }
}

.qa-box__head-btn-bar {
  content: "";
  background: #2D2D2D;
  width: 0.9rem;
  height: 0.1875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media screen and (max-width: 767px) {
  .qa-box__head-btn-bar {
    width: 0.74375rem;
    height: 0.125rem;
  }
}
.qa-box__head-btn-bar.--bar2 {
  rotate: 90deg;
  transition: rotate 0.3s ease;
}
.qa-box.is-open .qa-box__head-btn-bar.--bar2 {
  rotate: 0deg;
}

.qa-box__body {
  display: none;
  background: #F1F1F1;
  padding-block: 1.5625rem;
  padding-inline: 2.125rem;
  border-radius: 0.9375rem;
  margin-top: 0.625rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .qa-box__body {
    padding-block: 0.6875rem;
    padding-inline: 1rem;
    border-radius: 0.625rem;
  }
}
.qa-box__body-txt {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5555555556;
}

.shop {
  padding-top: 7.6875rem;
  padding-bottom: 16.9375rem;
}
@media screen and (max-width: 767px) {
  .shop {
    padding-top: 5.25rem;
    padding-bottom: 6.4375rem;
  }
}

.shop__inner {
  width: calc(68.75rem + 4.375rem);
}
@media screen and (max-width: 767px) {
  .shop__inner {
    width: 36.875rem;
    padding-inline: 1.25rem;
  }
}

.shop__list {
  line-height: 1;
  margin-top: 4.375rem;
  display: flex;
  gap: 2.625rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__list {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .shop__list {
    margin-top: 1.75rem;
    flex-direction: column;
    gap: 2.9375rem;
  }
}

.shop__item {
  width: 33.0625rem;
  height: auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__item {
    width: 39.0625vw;
  }
}
@media screen and (max-width: 767px) {
  .shop__item {
    width: 100%;
  }
}

.shop__map {
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 1.6226993865;
  border-radius: 0.625rem;
}
.shop__map iframe {
  width: 100%;
  height: 100%;
}

.shop__txt {
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .shop__txt {
    margin-top: 2rem;
  }
}

.shop__title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .shop__title {
    font-size: 1.75rem;
    margin-top: 1.5rem;
  }
}

.shop__common {
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .shop__common {
    margin-top: 1.5625rem;
  }
}
.shop__common.--hour {
  margin-top: 0.75rem;
}

.shop__common-tag {
  color: #fff;
  background: #E12F11;
  font-weight: 600;
  padding: 0.5625rem 1.0625rem;
  border-radius: 100vmax;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__common-tag {
    font-size: 0.75rem;
  }
}

.shop__common-txt {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-left: 0.6875rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__common-txt {
    font-size: 0.875rem;
  }
}

.supporter {
  background: #FBF7EC;
  padding-top: 5rem;
  padding-bottom: 15.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .supporter {
    padding-top: 2.375rem;
    padding-bottom: 7.5rem;
  }
}

.supporter__list {
  margin-top: 5.75rem;
  display: flex;
  flex-direction: column;
  row-gap: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .supporter__list {
    margin-top: 1.25rem;
    row-gap: 3.125rem;
  }
}

.supporter__item .supporter__img {
  grid-area: img;
}
.supporter__item .supporter__title {
  grid-area: title;
}
.supporter__item .supporter__desc {
  grid-area: desc;
}
.supporter__item .supporter__link {
  grid-area: link;
}

.supporter__item {
  display: grid;
  grid-template-areas: "img title" "img desc" "img link";
  align-items: center;
  column-gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .supporter__item {
    grid-template-areas: "title" "img" "desc" "link";
  }
}
.supporter__item:nth-of-type(even) {
  grid-template-areas: "title img" "desc img" "link img";
}
@media screen and (max-width: 767px) {
  .supporter__item:nth-of-type(even) {
    grid-template-areas: "title" "img" "desc" "link";
  }
}

.supporter__img {
  width: 33.0625rem;
  height: auto;
  aspect-ratio: 1.4901408451;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .supporter__img {
    width: 39.0625vw;
  }
}
@media screen and (max-width: 767px) {
  .supporter__img {
    width: 100%;
    margin-top: 0.9375rem;
  }
}

.supporter__title {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
.--item1 .supporter__title {
  font-size: 2.375rem;
}
@media screen and (max-width: 767px) {
  .--item1 .supporter__title {
    font-size: 1.625rem;
    text-align: center;
  }
}
.--item3 .supporter__title {
  padding-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .--item3 .supporter__title {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .supporter__title {
    font-size: 1.625rem;
    text-align: center;
  }
}

.supporter__desc {
  line-height: 1.87;
}
@media screen and (max-width: 767px) {
  .supporter__desc {
    margin-top: 0.9375rem;
  }
}

.supporter__link {
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .supporter__link {
    margin-top: 0.9375rem;
  }
}

.supporter__link-icons {
  display: flex;
  column-gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .supporter__link-icons {
    justify-content: center;
  }
}
.--item3 .supporter__link-icons {
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .--item3 .supporter__link-icons {
    padding-bottom: 0;
  }
}

.supporter__link-icon i {
  color: #E12F11;
  font-size: 2.75rem;
}

.supporter__link-wrap {
  display: flex;
  align-items: center;
  column-gap: 0.6875rem;
}

.supporter__link-label {
  color: #fff;
  background: #E12F11;
  font-weight: 500;
  line-height: 1;
  padding-block: 0.5625rem;
  padding-inline: 1.0625rem;
  border-radius: 100vmax;
}
@media screen and (max-width: 767px) {
  .supporter__link-label {
    font-size: 0.8125rem;
    padding-block: 0.3125rem;
    padding-inline: 0.75rem;
  }
}

.supporter__link-url {
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .supporter__link-url {
    font-size: 1rem;
  }
}

.footer {
  background: #2D2D2D;
  padding-top: 1.6875rem;
  padding-bottom: 5.4375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 8.75rem;
  }
}

.footer__inner {
  width: calc(68.75rem + 4.375rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-inline: 2.6875rem;
  }
}

.footer__title {
  width: 6.4375rem;
  height: auto;
  aspect-ratio: 0.3639575972;
  position: absolute;
  right: 2.1875rem;
  top: -7.375rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__title {
    width: 9.1145833333vw;
    top: -6.5104166667vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__title {
    width: 11.653125rem;
    aspect-ratio: 2.1542461005;
    top: -7.6875rem;
    left: 50%;
    translate: -50%;
  }
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 900;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: max(10px, 0.625rem);
    letter-spacing: 0.06em;
    margin-top: 1.25rem;
    text-align: center;
  }
}

.footer-nav {
  width: 40.625rem;
}
@media screen and (max-width: 767px) {
  .footer-nav {
    width: fit-content;
    margin-inline: auto;
  }
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1875rem 2.125rem;
}
@media screen and (max-width: 767px) {
  .footer-nav__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem 2.4375rem;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav__item {
    width: 8.25rem;
  }
}

.footer-nav__link {
  color: #fff;
  font-weight: 900;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer-nav__link {
    font-size: max(0.875rem, 12px);
  }
}/*# sourceMappingURL=style.css.map */