/* ========================================
   Base
======================================== */

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;

  color: #333333;
  background-color: #f3eee7;

  font-family:
    "Noto Sans JP",
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;

  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 2;
  letter-spacing: 0.04em;

  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ========================================
   Common
======================================== */
.fv {
  position: relative;
}

.inner {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-heading {
  margin-bottom: 50px;
  text-align: center;
}

.section-heading__title {
  margin: 0;

  color: #222222;

  font-family:
    "Zen Old Mincho",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;

  font-size: clamp(1.1rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.section-heading__lead {
  max-width: 800px;
  margin: 32px auto 80px;
  text-align: center;
  line-height: 2;
}


.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-width: 200px;
  padding: 10px 15px;
  font-size: .7rem;;

  border: 1px solid rgba(255,255,255,.5);

  background-color: transparent;
  color: #ffffff;

  transition: transform .7s ease,
    box-shadow .7s ease;
}

.button:hover {
  transform: translateX(3px);
  box-shadow:
    0 8px 20px rgba(0,0,0,.12);
  background-color: rgba(255,255,255,.6);
  color: #222222;
  border-color: transparent;
}

.button--dark {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-width: 220px;
  padding: 18px 32px;

  border: 1px solid rgba(0,0,0,.3);

  background-color: transparent;
  color: #222;

  transition:
    transform .7s ease,
    background-color .7s ease;
}

.button--dark:hover {
  transform: translate(2px, 2px);
  color: #ffffff;
  background-color: rgba(0,0,0,.4);
  box-shadow: none;
}

.button-wrap {
  margin-top: 80px;
  text-align: center;
}

.section-divider::after {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  margin: 60px auto 0;
  background: rgba(0,0,0,.1);
}

.bg-white {
  background-color: rgba(255,255,255,.5);
}

/* ========================================
   FV
======================================== */

.fv {
  --fv-side-space: 8%;
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
}

.fv__logo {
  position: absolute;
  top: 40px;
  left: var(--fv-side-space);
  transition: .5;
  z-index: 2;
}

.fv__logo svg {
    height: 40px;
    width: auto;
}

.fv__logo .logo_color {
  fill: #ffffff;
  transition: fill .15s;
}

.fv__logo:hover .logo_color {
  opacity: .7;
}

.fv__image {
  position: relative;
  height: 100dvh;
}

.fv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.fv__image::before {
  content: ""; 

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.60) 0%,
      rgba(0,0,0,.40) 30%,
      rgba(0,0,0,.00) 100%
    );
}

.fv__content {
  position: absolute;
  top: 50%;
  left: var(--fv-side-space);

  transform: translateY(-50%);

  z-index: 1;

  color: #ffffff;
}

.fv__title {
  margin-bottom: 20px;

  font-family:
    "Zen Old Mincho",
    serif;

  font-size: clamp(1.5rem, 3.5vw, 3.5rem);
  line-height: 1.8;
  letter-spacing: 0.15em;
}

.fv__subcopy {
  margin-bottom: 20px;

  font-size: clamp(.85rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.2em;
}

.fv__text {
  max-width: 500px;
  margin-bottom: 20px;

  font-size: .75rem;
  line-height: 2.2;
}


/* ========================================
   Concept
======================================== */

.concept__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.concept__text {
 line-height: 1.;
}

.concept__text p:not(:last-child) {
  margin-bottom: 24px;
}


/* ========================================
   Features
======================================== */

.feature-card {
  padding: 5px;
  box-shadow: 2px 2px 10px rgba(0,0,0,.05);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.feature-card__image {
  margin-bottom: 20px;
  aspect-ratio: 5 / 4;
  overflow: hidden;
}

.feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card__title {
  text-align: center;
  margin-bottom: 12px;

  font-family:
    "Zen Old Mincho",
    serif;

  font-size: .9rem;
  font-weight: 500;
}

.feature-card__text {
  font-size: .85rem;
  line-height: 2;
}

.features__inner {
  max-width: 1400px;
}


/* ========================================
   Lifestyle
======================================== */

.lifestyle__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.lifestyle-item {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
  padding: 5px;
  box-shadow: 2px 2px 10px rgba(0,0,0,.05);
}

.lifestyle-item__title {
  margin-bottom: 16px;

  font-family:
    "Zen Old Mincho",
    serif;

  font-size: 1.2rem;
  font-weight: 500;
}



/* ========================================
   Story
======================================== */

.story__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.story-card {
  padding: 5px;
  box-shadow: 2px 2px 10px rgba(0,0,0,.05);
}

.story-card__image {
  margin-bottom: 20px;
  aspect-ratio: 8 / 4;
  overflow: hidden;
}

.feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-card__title {
  margin-bottom: 12px;

  font-family:
    "Zen Old Mincho",
    serif;
}

.story-card__text {
  text-align: left;
  font-size: .8rem;
  line-height: 2;
}

.story-card__text p {
  margin-bottom: 1.5em;
}

.story-card__text p:last-child {
  margin-bottom: 0;
}


/* ========================================
   Voice
======================================== */

.voice__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.voice-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  padding: 5px;
  box-shadow: 2px 2px 10px rgba(0,0,0,.05);
}

.voice-item__title {
  margin-bottom: 16px;

  font-family:
    "Zen Old Mincho",
    serif;
}

.voice-item__text {
  text-align: left;
  font-size: .8rem;
  line-height: 2;
}


/* ========================================
   Location
======================================== */

.location__content {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}

.location__image {
  width: 100%;
  display: block;
}

.location__map {
  margin-bottom: 40px;
}

.location__map img {
  width: 100%;
  display: block;
}

.location__spots {
  display: flex;
  align-items: flex-end;
  gap: 80px;
  margin-bottom: 20px;
}

.location__spots-title {
  font-family:
    "Zen Old Mincho",
    serif;

  font-size: 1.3rem;
  margin-bottom: -3px;
}

.location__address {
  font-size: .9rem;
}

.location__access-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;

  text-align: center;
}

.location__access-name {
  font-size: .9rem;
  font-weight: 500;
  margin: 0%;
}

.location__access-name span {
  font-size: .7rem;
  font-weight: 400;
}

.location__access-time {
  font-size: .8rem;
  color: #555;
  margin: 0%;
}

.location__access-item {
  position: relative;
}

.location__access-item:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 50%;
  right: -12px;

  transform: translateY(-50%);

  width: 1px;
  height: 36px;

  background-color: rgba(0,0,0,.15);
}

/* ========================================
   CTA
======================================== */

.cta {
  text-align: center;
}

.cta__text {
  max-width: 680px;
  margin:
    0 auto 40px;
}

.cta__info-title {
  margin: 20px 0;

  color: #222222;

  font-family:
    "Zen Old Mincho",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;

  font-size: clamp(1rem, 2vw, 1rem);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.cta__check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: clamp(.8rem, 2vw, .9rem);
}

.cta__check-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 5px;
}

.cta__check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
}

.cta__info {
  width: 80%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  text-align: left;
}

.cta__info-left {
  position: relative;
  padding-right: 40px;
  font-size: clamp(.8rem, 2vw, .9rem);
}

.cta__info-left p {
  font-size: 14px;
  font-weight: 400;
}

.cta__info-left::after {
  content: "";

  position: absolute;
  top: 10%;
  right: 0;

  width: 1px;
  height: 80%;

  background-color: rgba(0,0,0,.2);
}

.cta__info-right {
  justify-self: start;
  text-align: left;
}

.cta__note {
  max-width: 70%;
  margin: 20px auto 80px;
  padding: 10px 15px;
  background-color: rgba(0,0,0,.03);
  border: 1px dashed rgba(0,0,0,.15);
  font-size: .8rem;
}

.cta__flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.cta__flow-title {
  text-align: center;
  margin-bottom: 12px;

  font-family:
    "Zen Old Mincho",
    serif;

  font-size: 1.2rem;
  font-weight: 400;
}

.flow-card {
  padding: 15px 30px;
  border: 1px solid rgba(0,0,0,.15);
  box-shadow:
    2px 2px 12px rgba(0,0,0,.05);

  text-align: left;
}

.flow-card__title {
  margin: 0;
  font-weight: 400;
}

/* ========================================
   FAQ
======================================== */
.faq-title {
  text-align: center;
  margin-bottom: 12px;

  font-family:
    "Zen Old Mincho",
    serif;

  font-size: 1.3rem;
  font-weight: 400;
}

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

.faq-card {
  padding: 32px;
  border: 1px solid rgba(0,0,0,.15);
  background-color: rgba(255,255,255,.2);
  box-shadow: 2px 2px 10px rgba(0,0,0,.05);
}

.faq-card__question,
.faq-card__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  margin: 0;
}

.faq-card__question {
  margin-bottom: 24px;

  font-size: 1rem;
  font-weight: 400;
}

.faq-card__answer {
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 400;
}

.faq-card__question span,
.faq-card__answer span {
  flex-shrink: 0;
  width: 28px;
  font-weight: 500;
}

/* ========================================
   Closing
======================================== */

.closing {
  text-align: center;
}

.closing__title {
  text-align: center;
  margin-bottom: 12px;

  font-family:
    "Zen Old Mincho",
    serif;

  font-size: 1.5rem;
  font-weight: 400;
}

.closing__message {
  max-width: 760px;
  margin: 0 auto 60px;
}

.closing__message p {
  margin-bottom: 40px;
  line-height: 2;
}

.closing__button {
  margin-bottom: 48px;
}

.closing__official-link {
  margin: 0;
}

.closing__official-link a {
  color: inherit;
  text-decoration: none;
}

.closing__official-link a:hover {
  text-decoration: underline;
}

.closing.section {
  padding: 80px 0;
}


/* footer */

.footer {
  background: #737373;
  color: #fff;
  padding: 60px 20px;
}

.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer__site-name {
  margin: 0 0 24px;

  font-family:
    "Noto Sans JP",
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;

  font-size: 1.4rem;
}

.footer__company {
  margin-bottom: 40px;

  font-size: .9rem;
  line-height: 2;
}

.footer__company-name,
.footer__address {
  margin: 0;
}

.footer__line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.4);
  margin-bottom: 30px;
}

.footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.footer__sns img {
  height: 28px;
  width: auto;
  display: block;

  opacity: .9;
  transition: .3s;
}

.footer__sns img:hover {
  opacity: 1;
}

.footer__sns-link svg {
  width: 24px;
  height: 24px;
}

.footer__sns-link .logo_color {
  fill: #ffffff;
  transition: fill .15s;
}

.footer__sns-link:hover .logo_color {
  opacity: .7;
}

/* ========================================
   Footer 修正前のコード　完成後消す


.footer {
  margin-top: 80px;
  padding: 60px 0;
  border-top: 1px solid rgba(0,0,0,.1);
}

.footer__company {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 32px;
}

.footer__logo img {
  width: auto;
  height: 60px;
  display: block;
  padding: 5px 0px;
}

.footer__info {
  text-align: left;
}

.footer__company-name {
  margin-bottom: 5px;
  font-weight: 400;
}

.footer__address {
  margin: 0;
  font-size: .9rem;
}

======================================== */

/* ========================================
   Responsive
======================================== */

@media screen and (max-width: 768px) {



 .fv__title {
  line-height: 1.5;
}

.fv__subcopy {
  line-height: 1.8;
}

  .section {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading__lead {
    text-align: left;
    margin-bottom: 40px;
  }

  .fv__content {
    left: 24px;
    right: 24px;
  }

  .concept__content,
  .lifestyle-item,
  .voice-item,
  .location__content {
    grid-template-columns: 1fr;
  }

  .features__grid,
  .story__grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-item,
  .voice-item {
    gap: 24px;
  }

  .lifestyle-item__title {
    font-size: 1rem;
  }

 .lifestyle-item__text {
  text-align: left;
  font-size: .9rem;
  line-height: 2;
  padding: 0 4%;
 }

  .concept__content,
  .location__content {
    gap: 40px;
  }

  .features__grid,
  .story__grid {
    gap: 48px;
  }

  .feature-card__title {
    font-size: 1rem;
    padding: 0 4%;
  }

  .feature-card__text {
    padding: 0 4%;
  }

  .story-card__title {
    font-size: 1rem;
    padding: 0 4%;
}

 .story-card__text {
   padding: 0 4%;
 }

 .voice-item__title {
    font-size: 1rem;
    padding: 0 4%;
 }

 .voice-item__text {
  padding: 0 4%;
 }

 .button {
  width: auto;
 }

  /* CTA */
  .cta__info {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta__info-left {
    padding-right: 0;
  }

  .cta__info-left::after {
    display: none;
  }

  .cta__note {
    max-width: 100%;
  }

  .cta__flow-grid {
    grid-template-columns: 1fr;
  }

  .closing__message {
    text-align: left;
  }


  /* FAQ */
  .faq__grid {
    grid-template-columns: 1fr;
  }


  /* Location */

  .location__text {
    font-size: .9rem;
  }

  .location__spots {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .location__access-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .location__access-item::after {
    display: none;
  }

  .location__spots-title {
    font-size: 1rem;
  }

  .location__address {
    font-size: .7rem;
  }

  /* Footer */
  .footer__company {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .footer__info {
    text-align: center;
  }

  .footer__site-name {
    font-size: 1.1rem;
  }

}