@charset "UTF-8";

/* ========================================
  Variables
======================================== */
:root {
  --color-main: #36364c;
  --color-main-dark: #27283e;
  --color-red: #ff8989;
  --color-white: #fff;
  --color-bg-contact: #f6f5ed;
  --color-text: #303149;
  --color-muted: #777;
  --color-line: #4cc764;
  --color-glass: rgba(246, 245, 237, 0.23);

  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Fredoka", sans-serif;

  --inner: 1200px;
  --header-height: 60px;
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  color: var(--color-text);
  font-family: var(--font-ja);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  background: var(--color-white);
}

body.is-menu-open {
  overflow: hidden;
}

img,
picture {
  display: block;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

/* ========================================
  Utility / Common
======================================== */
.section-dark {
  color: var(--color-white);
  background: var(--color-main);
}

.section-heading {
  display: inline-block;
  padding: 0 5% 24px 0;
}

.section-heading__en {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: clamp(32px, 10vw, 40px);
  font-weight: 100;
  line-height: 1;
}

.section-heading__ja {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.section-heading__ja::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  background: var(--color-main);
}

.section-heading__ja.white::before {
  background: var(--color-white);
}

.section-heading--light .section-heading__en,
.section-heading--light .section-heading__ja {
  color: var(--color-white);
}

.text__link {
  display: inline;
  color: var(--color-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__link {
  color: var(--color-white);
  font-weight: 400;
}

.asterisk {
  display: inline-block;
  padding-left: 1em;
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.8;
  text-indent: -1em;
}

.asterisk strong {
  color: var(--color-red);
}

.text-center {
  display: block;
  text-align: center;
}

.sp-only {
  display: initial;
}

.color-change {
  transition: background-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.js-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-fade-in.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/* ========================================
  Header
======================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 16px;
}

.site-header__logo {
  display: grid;
  line-height: 1;
}

.site-header__logo img {
  width: 120px;
  max-width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta {
  display: flex;
}

.header-cta .cta__button {
  gap: 0;
  width: auto;
  min-height: 40px;
  padding: 0 1.5em;
  font-size: clamp(12px, 3vw, 16px);
  box-shadow: none;
}

.header-cta .cta__button img {
  width: 40px;
  max-width: 40px;
}

.menu-button {
  position: relative;
  z-index: 1002;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-button__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-red);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-button.is-active .menu-button__line:nth-child(1) {
  transform: translateY(21px) rotate(40deg);
}

.menu-button.is-active .menu-button__line:nth-child(2) {
  opacity: 0;
}

.menu-button.is-active .menu-button__line:nth-child(3) {
  transform: translateY(-5px) rotate(-40deg);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: 80px 24px 32px;
  color: var(--color-white);
  background: rgba(48, 49, 73, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer__inner {
  width: min(100%, 420px);
  text-align: center;
}

.drawer__label {
  margin-bottom: 24px;
  font-family: var(--font-en);
  font-size: 32px;
  letter-spacing: 0.18em;
}

.drawer__list {
  display: grid;
  gap: 18px;
  padding: 0;
  list-style: none;
}

.drawer__link {
  display: block;
  padding: 8px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.drawer__button {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 32px;
  padding: 14px 20px;
  color: var(--color-white);
  font-weight: 500;
  background: var(--color-red);
  border-radius: 999px;
}

@media (min-width: 768px) {
  .site-header__inner {
    width: min(100%, var(--inner));
    margin-inline: auto;
    padding-inline: 32px;
  }

  .site-header__logo img {
    width: 150px;
  }
}

/* ========================================
  Generic Layout Hooks
======================================== */
.sec,
.link,
.flow-card,
.access__body,
.point-card__body,
.voice-card__text {
  min-width: 0;
}

/* ========================================
  FV
======================================== */
.fv__sec {
  margin-top: var(--header-height);
}

.fv__picture {
  width: 100%;
}

.fv__image {
  width: 100%;
}

/* ========================================
  CTA
======================================== */
.cta {
  padding: 40px 1rem;
  background: var(--color-main);
}

.cta.border-pink {
  padding: 0 5% 80px;
  background: var(--color-white);
}

.cta__inner {
  width: min(100%, 520px);
  margin-inline: auto;
  padding: 1rem;
  text-align: center;
  background: var(--color-white);
  border-radius: 4px;
}

.cta.border-pink .cta__inner {
  border: 1px solid var(--color-red);
  border-radius: 1rem;
}

.cta__text {
  margin-bottom: 14px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.cta__text span {
  color: var(--color-red);
  font-size: 0.95rem;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: min(100%, 380px);
  padding: 14px 20px;
  color: var(--color-white);
  font-size: clamp(1.125rem, 2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.5;
  background: var(--color-line);
  border-radius: 999px;
  box-shadow: 0 5px 0 #105b32c9;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cta__button img {
  width: 55px;
  max-width: 55px;
}

.cta__time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 1.5rem 0 1rem;
  padding: 3px 24px;
  font-size: 0.875rem;
  border: 1px solid var(--color-main);
}

.cta__time span {
  font-weight: 500;
}

/* ========================================
  About
======================================== */
.about {
  position: relative;
  overflow: visible;
  margin-bottom: 40px;
  color: var(--color-white);
  background: var(--color-main);
}

.about__inner {
  position: relative;
  overflow: visible;
  padding-bottom: 0;
}

.about__image {
  width: 73%;
  margin-left: auto;
  overflow: hidden;
}

.about__image img {
  border-radius: 5px 0 0 5px;
}

.about__text__box {
  padding: 16px 12px 0;
}

.about__body {
  text-align: center;
}

.about__body p + p {
  margin-top: 1rem;
}

.about__under-item {
  position: relative;
  min-height: 220px;
  margin-top: 28px;
  overflow: visible;
  transform: translateY(40px);
}

.coordinate__image {
  position: relative;
  z-index: 2;
  width: 78%;
}

.coordinate__image img {
  border-radius: 0 5px 5px 0;
}

.about__vertical {
  position: absolute;
  top: 16px;
  right: 5vw;
  z-index: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: rgba(255, 255, 255, 0.38);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.26em;
}

@media (min-width: 768px) {
  .about {
    margin-bottom: 80px;
  }

  .about__image {
    position: absolute;
    top: -50px;
    right: 0;
    z-index: 1;
    width: 45%;
    max-width: 400px;
    max-height: 200px;
  }

  .about__text__box {
    position: relative;
    z-index: 2;
    width: 50%;
    margin-inline: auto;
    padding: 3rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
  }

  .about__body {
    text-align: left;
  }

  .coordinate__image {
    width: 60%;
  }

  .about__vertical {
    top: 110%;
    left: 38%;
    width: 5%;
  }
}

/* ========================================
  Link Buttons
======================================== */
.link-buttons {
  padding: 40px 20px;
  background: var(--color-white);
}

.coordinate-link-btn {
  padding-top: 80px;
}

.link-buttons__inner {
  display: grid;
  gap: 18px;
  width: min(95%, 360px);
  margin-inline: auto;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: var(--color-white);
  font-weight: 500;
  letter-spacing: 0.08em;
  background: var(--color-red);
  border-radius: 5px;
  transition: background-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.link-button span img {
  width: 24px;
}

.arrow-white {
  position: relative;
  display: block;
  width: 34px;
  height: 1px;
  flex-shrink: 0;
  background: currentColor;
}

.arrow-white::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

@media (min-width: 768px) {
  .link-buttons {
    padding: 80px 32px;
  }

  .coordinate-link-btn {
    padding: 80px 32px 40px;
  }

  .link-buttons__inner {
    grid-template-columns: repeat(2, 1fr);
    width: min(100%, 720px);
  }

  .coordinate-link-btn .link-buttons__inner {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* ========================================
  Problems
======================================== */
.problems {
  padding: 58px 18px 0;
  background: var(--color-white);
}

.problems__inner {
  width: min(100%, var(--inner));
  margin-inline: auto;
}

.problems__cards {
  display: grid;
  gap: 12px;
  padding: 1rem;
  border: 2px solid var(--color-main);
  border-radius: 1rem;
}

.problem-card {
  padding: 18px 20px;
  color: var(--color-white);
  background: var(--color-main);
  border-radius: 4px;
}

.problems__person {
  position: relative;
  margin-top: 20px;
}

.problems__person::before {
  content: "";
  position: absolute;
  top: -25px;
  right: 26px;
  z-index: 2;
  width: 69px;
  height: 54px;
  background: url("../img/svg/bubble.svg") center / contain no-repeat;
}

@media (min-width: 768px) {
  .problems {
    padding-top: 88px;
  }

  .problems__contents {
    display: flex;
    align-items: center;
  }

  .problems__cards {
    flex: 1;
    order: 2;
  }

  .problems__person {
    width: 50%;
    order: 1;
    margin-top: 0;
  }
  .problems__person::before {
    top: 50px;
    right: -13px;
    transform: scaleX(-1) rotate(-90deg);
  }
}

/* ========================================
  Solution
======================================== */
.solution {
  padding: 44px 20px 50px;
  text-align: center;
  background: var(--color-white);
}

.solution__inner {
  width: min(100%, var(--inner));
  margin-inline: auto;
}

.solution__label {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.solution__text {
  font-size: clamp(20px, 6vw, 34px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.solution__text span {
  color: var(--color-red);
}

.solution__arrow {
  position: relative;
  width: 1px;
  height: 50px;
  margin: 26px auto 0;
  background: var(--color-main);
}

.solution__arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
  transform: translateX(-50%) rotate(45deg);
}

@media (min-width: 768px) {
  .solution {
    padding: 80px 0 40px;
  }

  .solution__text {
    font-size: 30px;
  }
}

/* ========================================
  Points
======================================== */
.points {
  padding: 0 5% 80px;
}

.points__inner {
  width: min(100%, var(--inner));
  margin-inline: auto;
}

.point-list {
  display: grid;
  gap: 42px;
}

.point-card {
  display: grid;
  gap: 16px;
}

.point-card__image {
  overflow: hidden;
  background: #eee;
  border-radius: 4px;
}

.point-card__image img {
  object-fit: cover;
}

.point-card__num {
  display: flex;
  align-items: flex-start;
  font-family: var(--font-en);
  font-weight: 300;
}

.point-card__num span {
  display: inline-block;
  margin-left: 1px;
  color: var(--color-red);
  font-size: 12px;
}

.point-card__title {
  display: inline;
  font-size: clamp(18px, 4.8vw, 20px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  background: linear-gradient(transparent 62%, rgba(240, 120, 120, 0.35) 62%);
}

.point-card__text {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .point-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }

  .point-card {
    align-content: start;
  }
}

/* ========================================
  Coordinate
======================================== */
.coordinate {
  padding: 0 5% 80px;
}
.coordinate__inner {
  width: min(100%, var(--inner));
  margin-inline: auto;
}

.coordinate__lead {
  margin-top: -6px;
  margin-bottom: 24px;
  color: var(--color-muted);
  font-size: 0.85rem;
}

.coordinate__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.coordinate-card {
  display: block;
  overflow: hidden;
  background: #f2f2f2;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.coordinate-card img {
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .coordinate {
    margin-inline: auto;
  }

  .coordinate .section-heading,
  .coordinate__lead {
    margin-left: 0;
  }

  .coordinate__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* ========================================
  Rental Period
======================================== */
.rental-period {
  padding: 40px 20px;
  background: var(--color-white);
}

.rental-period__inner {
  width: min(100%, 720px);
  margin-inline: auto;
}

.rental-period__title {
  margin-bottom: 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.rental-period__table-wrap {
  margin-bottom: 16px;
}

.rental-period__table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}

.rental-period__table th,
.rental-period__table td {
  padding: 16px 10px;
  border: 1px solid var(--color-main);
}

.rental-period__table thead th {
  color: var(--color-white);
  font-weight: 500;
  background: var(--color-main);
}

.rental-period__table tbody th {
  width: 45%;
  font-weight: 400;
  background: #fafafa;
}

@media (min-width: 768px) {
  .rental-period {
    padding: 80px 32px 54px;
  }

  .rental-period__title {
    font-size: 26px;
  }

  .rental-period__table th,
  .rental-period__table td {
    padding: 20px 16px;
  }

  .rental-period__inner .asterisk {
    display: block;
    text-align: center;
  }
}

/* ========================================
  Price
======================================== */
.price {
  padding: 40px 20px;
}

.price__inner {
  width: min(100%, 760px);
  margin-inline: auto;
}

.price__title {
  margin-bottom: 6px;
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.price__inner .asterisk {
  margin-bottom: 1rem;
}

.price__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 12px;
}

.price-card {
  text-align: center;
}

.price-card__image {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 14px;
  background: var(--color-white);
  border: 1px solid var(--color-red);
  border-radius: 8px;
}

.price-card__image img {
  object-fit: contain;
}

.price-card h3 {
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.4;
}

.price-card p {
  margin-top: 2px;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .price {
    padding: 54px 32px 70px;
  }

  .price__title {
    font-size: 26px;
  }

  .price__grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 18px;
  }

  .price-card__image {
    padding: 18px;
  }
}

/* ========================================
  Scene
======================================== */
.scene {
  overflow: hidden;
  padding: 56px 0 64px;
  color: var(--color-white);
  background: var(--color-main);
}

.scene__inner {
  width: min(100%, 1080px);
  margin-inline: auto;
  padding-inline: 20px;
}

.scene-slider {
  margin-top: 26px;
}

.scene-slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 28px;
  cursor: grab;
  scroll-behavior: smooth;
  scrollbar-color: var(--color-white) rgba(255, 255, 255, 0.35);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.scene-slider__viewport::-webkit-scrollbar {
  height: 3px;
}

.scene-slider__viewport::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.scene-slider__viewport::-webkit-scrollbar-thumb {
  background: var(--color-white);
  border-radius: 999px;
}

.scene-slider__viewport.is-dragging {
  cursor: grabbing;
}

.scene-slider__viewport.is-dragging * {
  user-select: none;
  pointer-events: none;
}

.scene-slider__track {
  display: flex;
  gap: 20px;
}

.scene-card {
  flex: 0 0 min(82vw, 360px);
}

.scene-card__image {
  overflow: hidden;
  margin-bottom: 22px;
  background: #ddd;
}

.scene-card__image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.scene-card__body h3 {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 14px;
  font-size: 16px;
  letter-spacing: 0.06em;
}

.scene-card__body h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 1px;
  background: var(--color-white);
}

.scene__bottom-text {
  margin-top: 54px;
  text-align: center;
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  font-weight: 500;
}

@media (min-width: 768px) {
  .scene {
    padding: 86px 0 96px;
  }

  .scene__inner {
    padding-inline: 32px;
  }

  .scene-slider__viewport {
    overflow: visible;
    padding-bottom: 0;
    scrollbar-width: none;
  }

  .scene-slider__viewport::-webkit-scrollbar {
    display: none;
  }

  .scene-slider__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .scene-card {
    width: auto;
    flex: initial;
  }

  .scene-card__body h3 {
    font-size: 20px;
  }

  .scene-card__body p {
    font-size: 14px;
  }
}

/* ========================================
  Voice
======================================== */
.voice {
  margin-bottom: 80px;
  padding: 80px 5%;
  color: var(--color-white);
  background: var(--color-main);
}

.voice__inner {
  width: min(100%, var(--inner));
  margin-inline: auto;
}

.voice__list {
  display: grid;
  gap: 40px;
}

.voice-card {
  padding: 24px 16px;
  color: var(--color-white);
  background: var(--color-glass);
  border-radius: 8px;
}

.voice-card__title {
  margin-bottom: 16px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
}

.voice-card__profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.voice-card__icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.voice-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.voice-card__name {
  text-align: center;
}

.voice-card__stars {
  margin-top: 2px;
  color: #ffb7b7;
  letter-spacing: 0.12em;
}

.voice-card__meta {
  margin-bottom: 14px;
  padding-bottom: 1rem;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

@media (min-width: 768px) {
  .voice {
    padding: 86px 32px 110px;
  }

  .voice__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .voice-card {
    padding: 26px 22px;
  }

  .voice-card__title {
    font-size: 17px;
  }
}

/* ========================================
  Rental Flow
======================================== */
.rental-flow {
  padding: 0 5% 80px;
  background: var(--color-white);
}

.rental-flow__inner {
  width: min(100%, 780px);
  margin-inline: auto;
}

.flow-list {
  display: grid;
  gap: 28px;
}

.flow-card__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 16px;
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: var(--color-main);
  border-radius: 3px 3px 0 0;
}

.flow-card__head p {
  font-size: 0.9375rem;
}

.flow-card__head span {
  font-size: 12px;
}

.flow-card__body {
  padding: 20px 2px 0;
}

.flow-card__body p {
  line-height: 2.25;
  letter-spacing: 0.04em;
}

.flow-card__body p + p {
  margin-top: 8px;
}

.flow-card__body strong {
  font-weight: 500;
}

@media (min-width: 768px) {
  .flow-list {
    gap: 34px;
  }

  .flow-card__head {
    padding: 16px 22px;
    font-size: 17px;
  }

  .flow-card__body {
    padding: 24px 8px 0;
  }

  .flow-card__body p {
    font-size: 14px;
  }
}

/* ========================================
  FAQ
======================================== */
.faq {
  padding: 0 5% 80px;
  background: var(--color-white);
}

.faq__inner {
  width: min(100%, 780px);
  margin-inline: auto;
}

.faq__list {
  display: grid;
  gap: 20px;
}

.faq-card {
  padding: 18px 16px;
  color: var(--color-white);
  background: var(--color-main);
  border-radius: 3px;
}

.faq-card__question {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.9375rem;
  font-weight: 400;
}

.faq-card__answer {
  padding: 18px 16px;
  color: var(--color-text);
  background: var(--color-white);
  border-radius: 2px;
}

.faq-card__answer p + p {
  margin-top: 12px;
}

.faq-card__answer ul {
  margin-top: 12px;
  padding-left: 1.2em;
}

.faq-card__answer strong {
  font-weight: 500;
}

@media (min-width: 768px) {
  .faq__list {
    gap: 24px;
  }

  .faq-card {
    padding: 22px 20px;
  }

  .faq-card__question {
    font-size: 15px;
  }

  .faq-card__answer p,
  .faq-card__answer li {
    font-size: 14px;
  }
}

/* ========================================
  Access
======================================== */
.access {
  padding: 0 5% 80px;
}

.access__inner {
  width: min(100%, var(--inner));
  margin-inline: auto;
}

.access__content {
  display: grid;
  gap: 24px;
}

.access__map {
  overflow: hidden;
  background: #eee;
}

.access iframe {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
}

.access__name {
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1;
}

.access__lead {
  font-size: 0.75rem;
  font-weight: 500;
}

.access__text {
  margin-block: 1rem;
}

.access-info {
  margin: 0;
  padding: 1rem;
  color: var(--color-white);
  background: var(--color-main);
  border-radius: 8px;
}

.access-info__row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding-block: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.access-info__row:first-child {
  padding-top: 0;
}

.access-info__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.access-info dd {
  margin: 0;
}

@media (min-width: 768px) {
  .access {
    padding: 88px 32px 110px;
  }

  .access__content {
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
  }

  .access iframe {
    aspect-ratio: 4 / 3;
  }

  .access__name {
    font-size: 24px;
  }

  .access-info {
    padding: 24px 22px;
  }
}

/* ========================================
  Contact
======================================== */
.contact {
  padding: 66px 16px 74px;
  background: var(--color-bg-contact);
}

.contact__inner {
  width: min(100%, 780px);
  margin-inline: auto;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form__field {
  display: grid;
  gap: 8px;
}

.contact-form__field label {
  font-size: 1rem;
  font-weight: 700;
}

.contact-form__field label span {
  color: var(--color-red);
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--color-muted);
  font-size: 14px;
  background: var(--color-white);
  border: 1px solid transparent;
  border-radius: 5px;
  outline: none;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--color-muted);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--color-red);
}

.contact-form__field textarea {
  min-height: 176px;
  resize: vertical;
}

.contact-form__button-wrap {
  margin-top: 22px;
  text-align: center;
}

.contact-form__button {
  width: min(100%, 270px);
  min-height: 70px;
  padding: 18px 24px;
  color: var(--color-white);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: var(--color-main);
  border: 0;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.contact-form__field input.is-error,
.contact-form__field textarea.is-error {
  background: #fff8f8;
  border-color: var(--color-red);
}

@media (min-width: 768px) {
  .contact {
    padding: 96px 32px 110px;
  }

  .contact-form {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 22px;
  }

  .contact-form__field--full,
  .contact-form__button-wrap {
    grid-column: 1 / -1;
  }
}

/* ========================================
  Banner
======================================== */
.banner-area {
  padding: 76px 16px 92px;
  background: var(--color-white);
}

.banner-area__inner {
  display: grid;
  gap: 18px;
  width: min(100%, 760px);
  margin-inline: auto;
}

.banner-area__item {
  display: block;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .banner-area {
    padding: 96px 32px 120px;
  }

  .banner-area__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: min(100%, 960px);
  }
}

/* ========================================
  Footer
======================================== */
.footer {
  padding: 68px 16px 44px;
  color: var(--color-white);
  text-align: center;
  background: var(--color-main);
}

.footer__inner {
  width: min(100%, 760px);
  margin-inline: auto;
}

.footer__logo {
  display: block;
  margin-bottom: 1rem;
}

.footer__logo img {
  width: min(100%, 320px);
  margin-inline: auto;
}

.footer__company {
  margin-bottom: 14px;
}

.footer__company a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 768px) {
  .footer {
    padding: 96px 32px 58px;
  }

  .footer__company,
  .footer__copy {
    font-size: 14px;
  }
}

/* ========================================
  Hover
======================================== */
@media (hover: hover) and (pointer: fine) {
  a:hover {
    cursor: pointer;
  }

  .header-cta .cta__button:hover {
    transform: scale(0.94);
  }

  .cta__button.hover:hover {
    box-shadow: none;
    transform: translateY(4px);
  }

  .contact-form__button:hover {
    background-color: var(--color-red);
  }

  .color-change:hover {
    background-color: var(--color-main);
  }

  .coordinate-card:hover {
    opacity: 0.82;
    transform: scale(0.96);
  }

  .banner-area__item:hover {
    opacity: 0.82;
  }
}
