@charset "utf-8";

/* ==========================================
 Common
============================================*/
:root {
  --font-honoka: "honoka-antique-maru", sans-serif;
  --font-honoka-maru: "honoka-maru-gothic", sans-serif;
  --font-mokoko: "mokoko", serif;
  --font-en: "Zen Old Mincho", serif;
  --mb-p: 1em;
  --color-key: #604c3f;
  --color-primary: #ac6041;
  --color-secondary: #a18f60;
  --color-gray: #b3b3b3;
  --min_w1: 375;
  --max_w1: 750;

  @media (min-width: 1200px) {
    --min_w1: 1200;
    --max_w1: 1920;
  }
}

body {
  font-size: var(--sz-30);
  line-height: 1.4;
  box-shadow: 0 3px 5px 3px #d9e5ed;
  max-width: 750px;
  margin-inline: auto;
  word-break: break-word;

  @media (min-width: 1200px) {
    max-width: 1920px;
  }
}

a,
a:hover {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

/* ==========================================
 Utility
============================================*/

/* shadow */
.text-shadow {
  text-shadow: 1px 1px 0 var(--bs-white), 1px -1px 0 var(--bs-white), -1px 1px 0 var(--bs-white), -1px -1px 0 var(--bs-white);
}

/* button */
.btn-type1 {
  color: var(--bs-white);
  background-color: var(--color-text);
  font-size: var(--sz-52);
  padding: 0.85em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  transition: 0.3s;
}

.btn-type1::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: 0.3s;
}

.btn-type1:hover {
  outline: var(--sz-4) solid var(--bs-white);
  outline-offset: calc(-1 * var(--sz-8));
  color: var(--bs-white);
}

.btn-type1:hover::after {
  transform: translateX(10%);
}

.btn-type2 {
  color: #50331a;
  background-color: #ebddbe;
  font-size: var(--sz-52);
  padding: 0.85em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  transition: 0.3s;
}

.btn-type2::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: 0.3s;
}

.btn-type2:hover {
  outline: var(--sz-4) solid var(--bs-white);
  outline-offset: calc(-1 * var(--sz-8));
  color: #50331a;
}

.btn-type2:hover::after {
  transform: translateX(10%);
}

@media (min-width: 1200px) {
  .btn-type1 {
    width: var(--sz-480);
    margin-inline: auto;
    font-size: var(--sz-32);
    padding: 0.8em;
    gap: 1em;
  }

  .btn-type1::after {
  }

  .btn-type1:hover {
  }

  .btn-type2 {
    width: var(--sz-480);
    margin-inline: auto;
    font-size: var(--sz-32);
    padding: 0.8em;
    gap: 1em;
  }

  .btn-type2::after {
  }

  .btn-type2:hover {
  }
}

/* ==========================================
 Drawer
============================================*/
.drawer-hamburger {
  background-color: var(--color-primary);
  width: var(--sz-120);
  height: var(--sz-120);
  box-sizing: border-box;
  padding: unset;
  display: flex;
  justify-content: center;
  align-items: center;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon::after,
.drawer-hamburger-icon::before {
  background-color: #fefaee;
  height: var(--sz-4);
}

.drawer-hamburger-icon {
  margin-top: unset;
  width: 54%;
}

.drawer-hamburger-icon::before {
  top: calc(-1 * var(--sz-20));
}

.drawer-hamburger-icon::after {
  top: var(--sz-20);
}

.drawer-hamburger:hover {
  background-color: var(--color-primary);
}

.drawer-nav {
  background-color: #fefaee;
  padding: var(--sz-150) var(--sz-30);
  font-family: var(--font-honoka-maru);
}

.drawer-caption {
  font-size: var(--sz-30);
  text-align: center;
  margin-bottom: 0.5em;
  margin-bottom: 1.8em;
  margin-bottom: 0.8em;
  display: block;
  color: inherit;
  text-decoration: none;
  width: fit-content;
  margin-inline: auto;
  text-decoration: none;
}

.drawer-caption:first-child {
  font-size: var(--sz-40);
}

:where(.drawer-nav) > a {
  margin-bottom: var(--sz-20);
}

:where(.drawer-nav) > a:nth-last-child(3) {
  margin-top: var(--sz-80);
}

@media (min-width: 1200px) {
  .drawer-hamburger {
    width: var(--sz-100);
    height: var(--sz-100);
  }

  .drawer--top .drawer-hamburger,
  .drawer--top.drawer-open .drawer-hamburger {
    top: var(--sz-32);
    right: calc((100% - 1300px) / 2);
  }

  .drawer-hamburger-icon,
  .drawer-hamburger-icon::after,
  .drawer-hamburger-icon::before {
  }

  .drawer-hamburger-icon {
  }

  .drawer-hamburger-icon::before {
  }

  .drawer-hamburger-icon::after {
  }

  .drawer-hamburger:hover {
  }

  .drawer-nav {
    padding-block: var(--sz-113) var(--sz-97);
  }

  .drawer--top .drawer-nav {
    max-width: 1300px;
    left: 50%;
    transform: translateX(-50%);
  }

  .drawer-caption {
    font-size: var(--sz-26);
    letter-spacing: 0.1em;
  }

  .drawer-caption:first-child {
    font-size: var(--sz-46);
  }

  :where(.drawer-nav) > a:nth-last-child(3) {
    margin-top: var(--sz-95);
    margin-bottom: var(--sz-18);
  }
}

/* ==========================================
 FV
============================================*/
.fv {
  padding-top: var(--sz-70);
  background: url(../images/sp/bg-1.webp) no-repeat top left / cover;
  /* aspect-ratio: 750 / 1287; */
  overflow: hidden;
  padding-top: var(--sz-130);
  padding-bottom: var(--sz-85);
}

.fv__inner {
  padding-inline: var(--sz-25);
}

.fv__heading {
  font-family: var(--font-mokoko);
  font-size: var(--sz-64);
  font-weight: 900;
  color: var(--color-key);
  text-align: center;
  margin-bottom: var(--sz-35);
}

.fv__pics {
  position: relative;
  aspect-ratio: 700 / 760;
  margin-bottom: var(--sz-30);

  & img {
    width: 100%;
  }
}

.fv__pic1 {
  width: 70.5%;
  position: absolute;
  top: 0;
  left: 0;
}

.fv__pic2 {
  width: 37%;
  position: absolute;
  top: 53%;
  left: 3%;
}

.fv__pic3 {
  width: 36.1%;
  position: absolute;
  top: 35%;
  right: 0;
}

.fv__pic4 {
  width: 24.8%;
  position: absolute;
  top: 8%;
  right: 0;
}

.fv__pic5 {
  width: 61.1%;
  position: absolute;
  bottom: 0;
  right: 3%;
}

.fv__lead {
  font-family: var(--font-honoka);
  font-size: var(--sz-42);
  color: var(--color-key);
  margin-bottom: 0;
}

.fv__lead ruby {
  display: flex;
  flex-direction: column;
}

.fv__lead rt {
  font-family: var(--font-en);
  font-size: var(--sz-27);
  color: var(--color-gray);
  padding-top: 0.2em;
}

@media (min-width: 1200px) {
  .fv {
    padding-top: var(--sz-55);
    padding-bottom: var(--sz-60);
    background-image: url(../images/pc/bg-1.webp);
    /* aspect-ratio: 1920 / 835; */
  }

  .fv__inner {
    width: min(56.25%, 1080px);
    padding-inline: 0;
    margin-inline: auto;
  }

  .fv__heading {
    font-size: var(--sz-80);
    margin-bottom: var(--sz-40);
  }

  .fv__pics {
    position: relative;
    aspect-ratio: 1080 / 400;
    margin-bottom: var(--sz-25);
  }

  .fv__pic1 {
    width: 48.3%;
    z-index: 1;
  }

  .fv__pic2 {
    width: 23.2%;
    bottom: 0;
    left: 45%;
    aspect-ratio: 229 / 173;
  }

  .fv__pic3 {
    width: 20.6%;
    top: 0;
    right: 17%;
  }

  .fv__pic4 {
    width: 15.5%;
    top: 0;
    right: 0;
  }

  .fv__pic5 {
    width: 29.8%;
    bottom: 0;
    right: 0;
  }

  .fv__lead {
    font-size: var(--sz-48);
    line-height: 1.2;
  }

  .fv__lead ruby {
  }

  .fv__lead rt {
    font-size: var(--sz-26);
  }
}

/* ==========================================
 Funding
============================================*/
.funding {
  padding-block: var(--sz-60) var(--sz-40);
}

.funding__link {
  width: min(93.3%, 700px);
  display: block;
  margin-inline: auto;
}

@media (min-width: 1200px) {
  .funding {
    padding-block: var(--sz-75) var(--sz-25);
  }

  .funding__link {
    width: min(36.4%, 700px);
  }
}

/* ==========================================
 Charm
============================================*/
.charm {
  padding-block: var(--sz-60) var(--sz-95);
  overflow: hidden;
}

.charm__inner {
  padding-inline: var(--sz-30);
}

.charm__heading {
  font-family: var(--font-honoka);
  font-size: var(--sz-70);
  font-weight: normal;
  color: var(--color-key);
  margin-bottom: var(--sz-35);

  & ruby {
    display: flex;
    flex-direction: column;
  }

  & rt {
    font-family: var(--font-en);
    font-size: var(--sz-44);
    color: var(--color-gray);
    padding-top: 0.2em;
    line-height: 1.1;
  }
}

.charm__list {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--sz-50);
}

.charm__item {
  background: url(../images/sp/bg-2.webp) no-repeat bottom center / 103.4%;
}

.charm__item:first-child {
  background-position: bottom -8% center;
}

.charm__pic {
}

.charm__desc {
  color: var(--color-key);
  font-size: var(--sz-50);
  padding-block: 1em;
  margin-bottom: 0;
}

.charm__nav {
  display: flex;
  flex-direction: column;
  gap: var(--sz-78);
  position: relative;

  &::before {
    content: "";
    background-color: #fff0de;
    width: calc(100% + 8.2%);
    height: 100%;
    display: block;
    position: absolute;
    top: 25%;
    left: 0;
    z-index: -1;
  }
}

.charm__link {
}

@media (min-width: 1200px) {
  .charm {
    padding-block: var(--sz-60) var(--sz-50);
  }

  .charm__inner {
    width: min(48.43%, 930px);
    padding-inline: 0;
    margin-inline: auto;
  }

  .charm__heading {
    font-size: var(--sz-60);
    margin-bottom: var(--sz-30);

    & ruby {
    }

    & rt {
      font-size: var(--sz-23);
    }
  }

  .charm__list {
    gap: var(--sz-35);
    margin-bottom: var(--sz-50);
  }

  .charm__item {
    background-image: url(../images/pc/bg-2.webp);
    background-size: contain;
    display: flex;
    gap: var(--sz-90);
    justify-content: space-between;
    align-items: center;
  }

  .charm__item:first-child {
    flex-direction: row-reverse;
    background-position: center left -25%;
  }

  .charm__item:last-child {
    background-position: center right;
  }

  .charm__pic {
    width: 44.94%;
  }

  .charm__desc {
    font-size: var(--sz-32);
    width: fit-content;
    padding-block: 0;
    margin-inline: auto;
    line-height: 1.562;
    letter-spacing: 0.04em;
  }

  .charm__nav {
    display: flex;
    flex-direction: row;
    gap: var(--sz-30);

    &::before {
      width: calc(100% + (100vw - 100%) / 2 + 16.3%);
      left: -16.3%;
    }
  }

  .charm__link {
  }
}

/* ==========================================
 Space
============================================*/
.space {
  padding-block: var(--sz-60) var(--sz-105);
  background: url(../images/sp/bg-4.webp) no-repeat top 5% center / 139.2%;
}

.space__inner {
  padding-inline: var(--sz-30);
}

.space__heading {
  font-family: var(--font-honoka);
  font-size: var(--sz-70);
  font-weight: normal;
  color: var(--color-key);
  margin-bottom: var(--sz-45);

  & ruby {
    display: flex;
    flex-direction: column;
  }

  & rt {
    font-family: var(--font-en);
    font-size: var(--sz-44);
    color: var(--color-gray);
    padding-top: 0.2em;
    line-height: 1.1;
  }
}

.space__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sz-20);
  margin-bottom: var(--sz-40);
}

.space__tag {
  font-size: var(--sz-31);
  /* font-weight: bold; */
  color: var(--color-key);
  padding: 0.3em 1.2em 0.2em;
  background-color: #fff;
}

.space__lead {
  color: var(--color-key);
  font-size: var(--sz-46);
  margin-bottom: var(--sz-70);
}

.space__pics {
  display: flex;
  flex-direction: column;
  gap: var(--sz-30);
}

.space__pic1 {
  width: min(93.9%, 648px);
}

.space__pic2 {
  width: min(92.4%, 638px);
  margin-left: auto;
}

@media (min-width: 1200px) {
  .space {
    padding-block: var(--sz-85) var(--sz-90);
    background-image: url(../images/pc/bg-4.webp);
    background-size: 64%;
    background-position: top 4% left 33%;
  }

  .space__inner {
    width: min(48.43%, 930px);
    padding-inline: 0;
    margin-inline: auto;
  }

  .space__heading {
    font-size: var(--sz-60);
    margin-bottom: var(--sz-15);

    & ruby {
    }

    & rt {
      font-size: var(--sz-23);
    }
  }

  .space__tags {
    gap: var(--sz-15);
    margin-bottom: var(--sz-40);
  }

  .space__tag {
    font-size: var(--sz-31);
    /* font-weight: bold; */
    color: var(--color-key);
    padding: 0.3em 1.2em 0.2em;
    background-color: #fff;
  }

  .space__lead {
    font-size: var(--sz-30);
    margin-bottom: var(--sz-50);
    line-height: 1.562;
    letter-spacing: 0.04em;
  }

  .space__pics {
    flex-direction: row;
    justify-content: space-between;
    gap: var(--sz-50);
  }

  .space__pic1 {
    width: min(47.4%, 441px);
    padding-top: var(--sz-25);
  }

  .space__pic2 {
    width: min(46.7%, 435px);
  }
}

/* ==========================================
 Usage
============================================*/
.usage {
  padding-block: var(--sz-100) var(--sz-80);
  background-image: linear-gradient(to bottom, #fdf4e9 25%, #fff 30%);
}

.usage__inner {
  padding-inline: var(--sz-30);
}

.usage__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sz-20);
  margin-bottom: var(--sz-55);
}

.usage__tag {
  font-size: var(--sz-31);
  /* font-weight: bold; */
  color: var(--color-key);
  text-align: center;
  padding: 0.3em 0.9em 0.2em;
  background-color: #fff;
}

.usage__heading {
  font-family: var(--font-honoka);
  font-size: var(--sz-70);
  font-weight: normal;
  color: var(--color-key);
  margin-bottom: var(--sz-45);

  & ruby {
    display: flex;
    flex-direction: column;
  }

  & rt {
    font-family: var(--font-en);
    font-size: var(--sz-44);
    color: var(--color-gray);
    padding-top: 0.2em;
    line-height: 1.1;
  }
}

.usage__pics {
  display: flex;
  flex-direction: column;
  gap: var(--sz-35);
  margin-bottom: var(--sz-60);
}

.usage__equipment {
  width: 100%;
  margin-bottom: var(--sz-40);
}

.usage__lead {
  color: var(--color-key);
  font-size: var(--sz-46);
  /* font-weight: bold; */
  margin-bottom: 0.5em;
}

.usage__desc {
  color: var(--color-key);
  font-size: var(--sz-36);
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .usage {
    padding-block: var(--sz-60) var(--sz-70);
    background-image: linear-gradient(to bottom, #fdf4e9 60%, #fff 75%);
  }

  .usage__inner {
    width: min(48.43%, 930px);
    padding-inline: 0;
    margin-inline: auto;
  }

  .usage__tags {
    gap: var(--sz-10);
    margin-bottom: var(--sz-30);
  }

  .usage__tag {
    font-size: var(--sz-25);
  }

  .usage__heading {
    font-size: var(--sz-60);
    margin-bottom: var(--sz-45);

    & ruby {
    }

    & rt {
      font-size: var(--sz-23);
    }
  }

  .usage__pics {
    flex-direction: row;
    justify-content: flex-end;
    gap: var(--sz-30);
    margin-bottom: var(--sz-40);
  }

  .usage__pic1 {
    width: min(45.5%, 424px);
  }

  .usage__pic2 {
    width: min(44.7%, 416px);
  }

  .usage__equipment {
    width: min(73.2%, 681px);
    margin-inline: auto;
    margin-bottom: var(--sz-40);
  }

  .usage__lead {
    font-size: var(--sz-30);
    line-height: 1.562;
    letter-spacing: 0.04em;
  }

  .usage__desc {
    font-size: var(--sz-22);
  }
}

/* ==========================================
 Pets
============================================*/
.pets {
  padding-block: var(--sz-90) var(--sz-55);
  background-image: linear-gradient(to bottom, #fdf4e9 27%, transparent 27%);
}

.pets__inner {
  padding-inline: var(--sz-30);
}

.pets__heading {
  font-family: var(--font-honoka);
  font-size: var(--sz-70);
  font-weight: normal;
  color: var(--color-key);
  margin-bottom: var(--sz-25);

  & ruby {
    display: flex;
    flex-direction: column;
  }

  & rt {
    font-family: var(--font-en);
    font-size: var(--sz-44);
    color: var(--color-gray);
    padding-top: 0.2em;
    line-height: 1.1;
  }
}

.pets__lead {
  font-size: var(--sz-46);
  color: var(--color-key);
  margin-bottom: var(--sz-45);
}

.pets__pics {
  display: flex;
  flex-direction: column;
  gap: var(--sz-45);
  margin-bottom: var(--sz-75);
}

.pets__pic1 {
  width: min(84.9%, 525px);
  margin-left: auto;
}

.pets__pic2 {
}

.pets__equipment {
}

@media (min-width: 1200px) {
  .pets {
    padding-block: var(--sz-60) var(--sz-60);
    background-image: unset;
    overflow: hidden;
  }

  .pets__inner {
    width: min(48.43%, 930px);
    padding-inline: 0;
    margin-inline: auto;
    position: relative;

    &::before {
      content: "";
      background-color: #fff0de;
      width: calc(100% + (100vw - 100%) / 2 + 16.3%);
      height: 100%;
      display: block;
      position: absolute;
      top: 30%;
      z-index: -1;
      right: -16.3%;
    }
  }

  .pets__heading {
    font-size: var(--sz-60);
    margin-bottom: var(--sz-20);

    & ruby {
    }

    & rt {
      font-size: var(--sz-23);
    }
  }

  .pets__lead {
    font-size: var(--sz-30);
    margin-bottom: var(--sz-55);
    line-height: 1.562;
    letter-spacing: 0.04em;
  }

  .pets__pics {
    position: absolute;
    bottom: 0;
    right: 0;
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: var(--sz-20);
    margin-bottom: 0;
  }

  .pets__pic1 {
    width: min(29.5%, 275px);
    margin-left: 0;
    padding-bottom: 7%;
  }

  .pets__pic2 {
    width: min(31.1%, 290px);
  }

  .pets__equipment {
    width: min(35.3%, 329px);
  }
}

/* ==========================================
 Connect
============================================*/
.connect {
  padding-block: var(--sz-90) var(--sz-110);
  background-image: url(../images/sp/bg-4.webp), url(../images/sp/21.webp);
  background-repeat: no-repeat;
  background-position: top 0% left 20%, bottom center;
  background-size: 139.2%, 100%;
}

.connect__inner {
  padding-inline: var(--sz-30);
}

.connect__heading {
  font-family: var(--font-honoka);
  font-size: var(--sz-70);
  font-weight: normal;
  color: var(--color-key);
  margin-bottom: var(--sz-25);

  & ruby {
    display: flex;
    flex-direction: column;
  }

  & rt {
    font-family: var(--font-en);
    font-size: var(--sz-44);
    color: var(--color-gray);
    padding-top: 0.2em;
    line-height: 1.1;
  }
}

.connect__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sz-20);
  margin-bottom: var(--sz-50);
}

.connect__tag {
  font-size: var(--sz-31);
  /* font-weight: bold; */
  color: var(--color-key);
  padding: 0.3em 1.2em 0.2em;
  background-color: #fff;
}

.connect__lead {
  color: var(--color-key);
  font-feature-settings: "palt";
  font-size: var(--sz-40);
  margin-bottom: var(--sz-55);
}

.connect__pics {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--sz-85);
}

.connect__pic1 {
  width: min(93.1%, 643px);
  margin-left: auto;
  margin-bottom: calc(-1 * var(--sz-28));
}

.connect__pic2 {
  width: min(93.1%, 643px);
}

.connect__list {
  display: flex;
  flex-direction: column;
  gap: var(--sz-90);
}

.connect__item {
  position: relative;

  &::before {
    content: "";
    background-color: #fdf4e9;
    position: absolute;
    width: 100%;
    height: 100%;
    top: calc(-1 * var(--sz-30));
    left: var(--sz-30);
  }
}

.connect__box {
  border: 1px solid #bd9982;
  background-color: #fff;
  position: relative;
  font-size: var(--sz-36);
  color: var(--color-key);
  padding: 1em;
  line-height: 1.6;

  & p:last-child {
    margin-bottom: 0;
  }
}

.connect__name {
  font-size: 88.8%;
  text-align: right;
  color: #9d9d9d;
}

@media (min-width: 1200px) {
  .connect {
    padding-block: var(--sz-105) var(--sz-100);
    background-image: url(../images/pc/bg-4.webp), url(../images/pc/21.webp);
    background-position: top 0% left 20%, bottom right 20%;
    background-size: 64%, 49.5%;
  }

  .connect__inner {
    width: min(48.43%, 930px);
    padding-inline: 0;
    margin-inline: auto;
    position: relative;
  }

  .connect__heading {
    font-size: var(--sz-60);
    margin-bottom: var(--sz-25);

    & ruby {
    }

    & rt {
      font-size: var(--sz-23);
    }
  }

  .connect__tags {
    gap: var(--sz-10);
    margin-bottom: var(--sz-40);
  }

  .connect__tag {
    font-size: var(--sz-23);
  }

  .connect__lead {
    font-feature-settings: unset;
    font-size: var(--sz-28);
    margin-bottom: var(--sz-70);
    line-height: 1.562;
    letter-spacing: 0.04em;
  }

  .connect__pics {
    margin-bottom: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: min(35.3%, 329px);
  }

  .connect__pic1 {
    width: min(82%, 270px);
    margin-bottom: calc(-1 * var(--sz-18));
  }

  .connect__pic2 {
    width: min(82%, 270px);
  }

  .connect__list {
    gap: var(--sz-30);
  }

  .connect__item {
    position: relative;
    width: min(81.7%, 760px);

    &::before {
      top: var(--sz-10);
      left: var(--sz-10);
    }
  }

  .connect__box {
    font-size: var(--sz-16);
    padding: 2em;
    --mb-p: 2em;

    & p:last-child {
    }
  }

  .connect__name {
  }
}

/* ==========================================
 Voice
============================================*/
.voice {
  padding-block: var(--sz-85) var(--sz-100);
  background-color: #fdf4e9;
}

.voice__inner {
  /* padding-inline: var(--sz-30); */
}

.voice__heading {
  font-family: var(--font-honoka);
  font-size: var(--sz-70);
  font-weight: normal;
  color: var(--color-key);
  margin-bottom: var(--sz-45);

  & ruby {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  & rt {
    font-family: var(--font-en);
    font-size: var(--sz-44);
    color: var(--color-gray);
    padding-top: 0.2em;
    line-height: 1.1;
  }
}

.voice__review {
  padding: var(--sz-30);
  & > div {
    width: 100% !important;
  }
}

@media (min-width: 1200px) {
  .voice {
    padding-block: var(--sz-60) var(--sz-60);
  }

  .voice__inner {
    /* width: min(48.43%, 930px); */
    padding-inline: 0;
    margin-inline: auto;
  }

  .voice__heading {
    font-size: var(--sz-60);
    margin-bottom: var(--sz-50);

    & ruby {
    }

    & rt {
      font-size: var(--sz-23);
    }
  }

  .voice__review {
    margin: 0;
    /* padding: var(--sz-30); */
    /* background-image: repeating-linear-gradient(90deg, #efe4cc, #efe4cc 1px, transparent 1px, transparent var(--sz-15)), repeating-linear-gradient(0deg, #efe4cc, #efe4cc 1px, #fff 1px, #fff var(--sz-15)); */
  }
}

/* ==========================================
 ACCESS
============================================*/
.access {
  padding-block: var(--sz-90) 0;
}

.access__inner {
  padding-inline: var(--sz-30);
}

.access__heading {
  font-family: var(--font-honoka);
  font-size: var(--sz-70);
  font-weight: normal;
  color: var(--color-key);
  margin-bottom: var(--sz-30);

  & ruby {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  & rt {
    font-family: var(--font-en);
    font-size: var(--sz-44);
    color: var(--color-gray);
    padding-top: 0.2em;
    line-height: 1.1;
  }
}

.access__row {
  display: flex;
  flex-direction: column;
  margin-bottom: calc(-1 * var(--sz-140));
}

.access__map {
}

.access__map > .ratio {
  --bs-aspect-ratio: 57.97%;
}

.access__info {
  padding-left: var(--sz-30);
  margin-bottom: var(--sz-65);
}

.access__table {
  color: #4f3118;
}

.access__table th,
.access__table td {
  display: block;
  font-size: var(--sz-32);
}

.access__table th {
  font-weight: 400;
}

.access__table td {
  margin-bottom: 1em;
}

.access__table dl {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
}

.access__table dt {
  padding-right: 0.5em;
  font-weight: inherit;
}

.access__table dd {
  margin-bottom: 0;
}

.access__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sz-60);
  margin-inline: auto;
  margin-bottom: var(--sz-55);
  width: 85.3%;
}

.access__logo1 {
  width: 87%;
}

.access__logo2 {
  /* width: 39.7%; */
}

.access__pics {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--sz-120);
}

.access__pic1 {
  width: min(81.1%, 560px);
  margin-left: auto;
  margin-bottom: calc(-1 * var(--sz-55));
  z-index: 1;
}

.access__pic2 {
  width: min(81.1%, 560px);
}

@media (min-width: 1200px) {
  .access {
    padding-block: var(--sz-80) 0;
  }

  .access__inner {
    width: min(48.43%, 930px);
    padding-inline: 0;
    margin-inline: auto;
  }

  .access__heading {
    font-size: var(--sz-60);
    margin-bottom: var(--sz-30);

    & ruby {
    }

    & rt {
      font-size: var(--sz-23);
    }
  }

  .access__row {
    margin-bottom: calc(-1 * var(--sz-100));
    position: relative;
  }

  .access__map {
  }

  .access__map > .ratio {
    --bs-aspect-ratio: 40.86%;
  }

  .access__info {
    padding-left: 0;
    margin-bottom: var(--sz-55);
  }

  .access__table {
  }

  .access__table th,
  .access__table td {
    display: table-cell;
    font-size: var(--sz-16);
  }

  .access__table th {
    vertical-align: top;
    padding-right: 2em;
  }

  .access__table td {
    padding-bottom: 1em;
  }

  .access__table dl {
  }

  .access__table dt {
  }

  .access__table dd {
  }

  .access__logos {
    gap: var(--sz-35);
    margin-bottom: var(--sz-50);
    width: auto;
  }

  .access__logo1 {
    width: 42%;
  }

  .access__logo2 {
    /* width: auto; */
  }

  .access__pics {
    width: min(48.9%, 455px);
    position: absolute;
    top: 0;
    right: 0;
  }

  .access__pic1 {
    width: min(53.1%, 455px);
    margin-bottom: calc(-1 * var(--sz-30));
  }

  .access__pic2 {
    width: min(53.1%, 455px);
  }
}

/* ==========================================
 Footer
============================================*/
.footer {
  padding: var(--sz-220) var(--sz-30) var(--sz-70);
}

.footer__social {
  margin-bottom: var(--sz-32);
}

.footer__social > a {
  color: #f6f2ea;
  font-size: var(--sz-74);
  line-height: 1;
}

.footer__copy {
  color: #f6f2ea;
  font-size: var(--sz-26);
  font-weight: 400;
}

@media (min-width: 1200px) {
  .footer {
    padding-block: var(--sz-135) var(--sz-70);
  }

  .footer__social {
    margin-bottom: var(--sz-32);
  }

  .footer__social > a {
    font-size: var(--sz-50);
  }

  .footer__copy {
    font-size: var(--sz-16);
  }
}

/* ==========================================
 PageTop
============================================*/
.pagetop {
  bottom: 20vw;

  @media (min-width: 750px) {
    font-size: 74%;
  }

  @media (min-width: 992px) {
    bottom: 5%;
  }
}

/* ==========================================
 Follow
============================================*/
.follow {
  display: none !important;
}
