@charset "UTF-8";

/* =========================
共通
========================= */
:root {
  --red: #fe5558;
  --lightgreen: #5db652;
  --orange: #f29417;
  --blue: #3587c8;
  --black: #444444;
  --white: #fff;
  --pink: #ef8b9b;
  --font-sm: clamp(0.75rem, 0.659rem + 0.39vw, 1.125rem); /* SP14px〜PC18px*/
  --font-md: clamp(0.938rem, 0.862rem + 0.32vw, 1.25rem); /* SP15px〜PC20px */
  --font-lg: clamp(1.125rem, 1.019rem + 0.45vw, 1.563rem); /* SP18px〜PC25px */
  --font-xl: clamp(1.375rem, 1.254rem + 0.52vw, 1.875rem); /* SP22px〜PC30px */
  --font-xl2: clamp(2rem, 1.5rem + 2.5vw, 3.75rem); /* SP32px〜PC60px */
  --font-xl3: clamp(2.5rem, 1.5rem + 5vw, 5rem); /* SP40px〜PC80px */
  --font-l: clamp(1.625rem, 1.431rem + 0.97vw, 2.5rem); /* SP26px〜PC40px */
  --font-xxl: clamp(3rem, 1.875rem + 6.25vw, 6.25rem); /* SP50px〜PC100px */
  /* 固定ヘッダーの見込み高さ（JSが参照） */
  --header-h: clamp(60px, 5vw + 32px, 88px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: var(--font-sm);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  background-color: #f6f4f0;
  position: relative;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--black);
  transition: opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

li {
  list-style: none;
}

.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

/* アンカーのヘッダーかぶり対策（JSが上書きもします） */
[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* =========================
   Header（固定＋スクロール時に実体化）
========================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1000;
  background: transparent; /* 初期は透明でFVに重ねる */
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.header.is-scrolled {
  background: rgba(246, 244, 240, 0.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.header__inner {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
  padding: 16px 20px;
  box-sizing: content-box;
}

.header__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.header__nav-item a {
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.header.is-scrolled .header__inner {
  margin-top: 0;
}

.header.is-scrolled .header__nav-item a {
  color: var(--black);
}

.header__nav-item--cta a {
  display: block;
  background: var(--pink);
  color: #fff;
  padding: 1rem 3rem;
  border-radius: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.header.is-scrolled .header__nav-item--cta a {
  color: var(--white);
}

@media (max-width: 1199px) {
  .header__inner {
    padding: 16px 20px;
  }
  .header__nav-item--cta a {
    padding: 1rem 2rem;
  }
  .header__nav-list {
    gap: 2rem;
  }
}

@media (max-width: 1023px) {
  .header__nav-list {
    gap: 24px;
    justify-content: space-around;
  }
}
@media only screen and (max-width: 767px) {
  .header__inner {
    margin-top: 0;
  }
  .header__nav {
    display: none;
  }
}

/* === ハンバーガー（SP） =================== */
.header__toggle {
  display: none; /* PCで非表示 */
  position: fixed;
  z-index: 1100;
  top: 12px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.header__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 6px auto;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

/* スクロール前のFV上に白文字ナビが乗っている想定に合わせて */
.header:not(.is-scrolled) .header__toggle-bar {
  background: var(--white);
}

/* 開いた時の×アニメ */
.header__toggle.is-active .header__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__toggle.is-active .header__toggle-bar:nth-child(2) {
  opacity: 0;
}
.header__toggle.is-active .header__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* === ドロワー本体 ========================= */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 1090;
  pointer-events: none;
}
.drawer.is-open {
  pointer-events: auto;
}
.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.drawer.is-open .drawer__backdrop {
  opacity: 1;
}

/* パネル：右からスライドイン */
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(84vw, 360px);
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: grid;
  grid-template-rows: auto 1fr;
  padding-top: calc(var(--header-h) / 2);
}
.drawer.is-open .drawer__panel {
  transform: translateX(0);
}

.drawer__close {
  position: absolute;
  top: 10px;
  right: 10px;
  appearance: none;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.drawer__list {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px 24px 32px;
  overflow-y: auto;
  height: 100%;
}
.drawer__item a {
  display: block;
  padding: 14px 12px;
  font-size: var(--font-md);
  border-bottom: 1px solid #eee;
}
.drawer__item--cta a {
  margin-top: 8px;
  background: var(--pink);
  color: #fff;
  text-align: center;
  border-radius: 12px;
  border-bottom: none;
}

/* SP表示制御 */
@media (max-width: 767px) {
  .header__toggle {
    display: block;
  }
  .header__nav {
    display: none;
  } /* 既存：PC用ナビ非表示のまま */
}

/* ドロワー表示中は背面固定 */
.body--no-scroll {
  overflow: hidden;
  touch-action: none;
}

/* =========================
   First View（相対配置で安定）
========================= */
.fv {
  position: relative; /* ここを relative に変更してフロー内に */
  overflow: clip; /* Safariはoverflow:hiddenでも可 */
  z-index: 0; /* ヘッダーより下に */
}

.fv__image img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 55% 78%, 45% 78%, 0 96%, 0 0);
}

.fv__open-notice {
  max-width: 300px;
  position: absolute;
  top: 20%;
  right: 5%;
  animation: balloon 10s ease-in-out infinite;
}

@keyframes balloon {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(40px, -10px) rotate(-3deg);
  }
  50% {
    transform: translate(-40px, 0px) rotate(3deg);
  }
  75% {
    transform: translate(40px, 10px) rotate(-2deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@media (max-width: 1199px) {
  .fv__open-notice {
    max-width: 180px;
    top: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .fv__open-notice {
    animation: balloon-sp 10s ease-in-out infinite;
  }
  @keyframes balloon-sp {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    25% {
      transform: translate(20px, -5px) rotate(-2deg);
    }
    50% {
      transform: translate(-20px, 0px) rotate(2deg);
    }
    75% {
      transform: translate(20px, 5px) rotate(-1deg);
    }
    100% {
      transform: translate(0, 0) rotate(0deg);
    }
  }
}

@media (max-width: 499px) {
  .fv__open-notice {
    max-width: 100px;
    top: 23%;
  }
}
/* =========================
   News Board
========================= */
.news-board__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
  position: relative;
  will-change: transform;
}

.news-board__brand {
  display: grid;
  place-items: center;
  margin-bottom: 110px;
}

.news-board__logo {
  max-width: 333px;
  height: auto;
}

.news-board__panel {
  position: relative;
  background: #fff;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 150px 65% 120px; /* 左ラベル | リスト | 右ボタン */
  align-items: stretch;
  gap: clamp(16px, 2.5vw, 32px);
  padding: clamp(18px, 2vw, 24px) clamp(18px, 2.5vw, 28px);
}

/* 左ラベル */
.news-board__label {
  position: relative;
  display: grid;
  place-items: center;
  font-size: var(--font-md);
  font-weight: bold;
  color: var(--lightgreen);
  letter-spacing: 0.05em;
  padding-inline: clamp(12px, 2vw, 16px);
}
.news-board__label::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--black);
}

/* リスト */
.news-board__item + .news-board__item {
  margin-top: clamp(18px, 2.2vw, 26px);
}

/* バッジ・日付・テキスト */
.news-board__badge {
  display: inline-block;
  font-size: var(--font-sm);
  font-weight: bold;
  letter-spacing: 0.01em;
  color: #fff;
  margin-right: 8px;
  padding: 0.5rem 2rem;
}
.news-board__badge--red {
  background: var(--red);
}
.news-board__badge--blue {
  background: var(--blue);
}
.news-board__badge--gray {
  background: gray;
}
.news-board__date {
  font-size: var(--font-sm);
  font-weight: bold;
  letter-spacing: 0.01em;
  display: inline-block;
}

/* 右の「一覧へ」ボタン（正方形） */
.news-board__more {
  align-self: center;
  justify-self: center;
  width: 150px;
  height: 150px;
  border-radius: 8px;
  background: var(--lightgreen);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.news-board__more:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.news-board__more span {
  pointer-events: none;
}

.news-board__list > li + li {
  margin-top: clamp(18px, 2.2vw, 26px);
}

.news-board__title {
  font-size: var(--font-sm);
  font-weight: normal;
  letter-spacing: 0.01em;
  margin-top: 8px;
  padding-left: 0.5em;
}

@media only screen and (max-width: 999px) {
  .news-board__panel {
    grid-template-columns: 150px 55% 120px;
  }
}

@media (max-width: 767px) {
  .news-board__panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .news-board__label {
    font-size: 22px;
    padding-block: 8px;
  }
  .news-board__label::after {
    display: none;
  }
  .news-board__title {
    font-size: 16px;
  }

  .news-board__badge {
    margin-right: 4px;
    padding: 0.5rem 1rem;
  }

  .news-board__more {
    width: 100%;
    height: auto;
    padding: 12px 0;
    border-radius: 4px;
  }

  .news-board__logo {
    max-width: 235px;
    height: auto;
  }
  .news-board__brand {
    margin-bottom: 40px;
  }
}

/* =========================
   Intro
========================= */

.intro {
  background: #fff;
  padding-top: 120px;
  padding-bottom: 185px;
}
.intro__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
  text-align: center;
}

/* 上部テキスト */
.intro__eyebrow {
  font-size: var(--font-xl);
  font-weight: bold;
  color: var(--black);
  margin-bottom: 40px;
}

.intro__title {
  font-size: clamp(1.25rem, 0.947rem + 1.29vw, 2.5rem);
  font-weight: bold;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 56px;
}

/* 家の写真 */
.intro__house {
  max-width: 800px;
  margin: 0 auto 190px;
}
.intro__house img {
  display: block;
}

/* 3ブロック */
.intro__grid {
  display: grid;
  gap: 120px;
}

.intro-card {
  position: relative;
  text-align: center;
  padding-inline: clamp(12px, 3vw, 24px);
}

/* ドット円のデコ */
.intro-card__decor {
  position: absolute;
  z-index: -1;
  inset: auto auto 0 auto;
  width: clamp(180px, 35vw, 320px);
  aspect-ratio: 1/1;
  background-size: cover;
  opacity: 0.65;
  z-index: 10;
}
.intro-card__decor--orange {
  max-width: 290px;
  background-image: url("../images/dot-circle-orange.png");
  left: 5%;
  bottom: -12%;
}
.intro-card__decor--blue {
  max-width: 290px;
  background-image: url("../images/dot-circle-blue.png");
  right: 5%;
  bottom: -18%;
}
.intro-card__decor--green {
  max-width: 290px;
  background-image: url("../images/dot-circle-green.png");
  left: 5%;
  bottom: -14%;
}

/* 見出し */
.intro-card__title {
  font-size: var(--font-xxl);
  font-weight: bold;
  line-height: 0.7;
  margin-bottom: 30px;
}
.intro-card__title--iro {
  color: var(--orange);
}
.intro-card__title--base {
  color: var(--blue);
}
.intro-card__title--kotobuki {
  color: var(--lightgreen);
}

/* 説明文 */
.intro-card__text {
  font-size: var(--font-xl);
  color: var(--black);
  font-weight: bold;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .intro {
    padding-top: 80px;
    padding-bottom: 100px;
    margin-top: 40px;
  }
  .intro__inner {
    padding: 0 10px;
  }
  .intro-card__title {
    margin-bottom: 20px;
  }
  .intro .pc-only {
    display: none;
  }
  .intro__eyebrow {
    margin-bottom: 25px;
  }
  .intro__house {
    margin: 0 auto 90px;
  }
  .intro__grid {
    gap: 100px;
  }
  .intro-card__decor--orange {
    max-width: 120px;
  }
  .intro-card__decor--blue {
    max-width: 120px;
  }
  .intro-card__decor--green {
    max-width: 120px;
  }
  .intro-card__text {
    line-height: 1.6;
  }
  .intro .sp-only {
    display: block;
  }
}

/* =========================
   Unit Hero
========================= */

.unit-hero {
  padding-top: 60px;
  text-align: center;
}
.unit-hero--green {
  padding-top: 120px;
}
/* カラーバリエーション */
.unit-hero--green .unit-hero__lead {
  color: var(--lightgreen);
}

.unit-hero--pink .unit-hero__btn {
  background: var(--pink);
}
.unit-hero--green .unit-hero__btn {
  background: var(--lightgreen);
}

.unit-hero__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.unit-hero__logo {
  width: 120px;
  margin: 0 auto 16px;
}
.unit-hero__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.unit-hero__visual {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.unit-hero__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.unit-hero__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.unit-hero__eyebrow {
  display: inline-block;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 14px;
}

.unit-hero__title {
  font-size: 36px;
  font-weight: 900;
  margin-top: 12px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.unit-hero__body {
  margin: 50px auto 0;
  max-width: 700px;
  color: var(--black);
}

.unit-hero__lead {
  font-size: var(--font-l);
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.01em;
  color: var(--red);
  margin-bottom: 1rem;
}

.unit-hero__desc {
  font-size: var(--font-md);
  font-weight: normal;
  line-height: 2.25;
  letter-spacing: 0.01em;
  margin-bottom: 60px;
}
.unit-hero__desc span {
  font-weight: bold;
}

.unit-hero__meta {
  font-size: var(--font-md);
  font-weight: normal;
  line-height: 2.25;
  letter-spacing: 0.01em;
  margin-bottom: 70px;
}

.unit-hero__btn {
  display: block;
  max-width: 900px;
  padding: 20px 24px;
  border-radius: 50px;
  color: var(--white);
  font-size: var(--font-lg);
  font-weight: bold;
  transition: 0.3s;
}

.unit-hero__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .unit-hero__body {
    margin: 30px auto 0;
  }
  .unit-hero--green {
    padding-top: 20px;
  }
  .unit-hero__lead {
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .unit-hero__desc {
    margin-bottom: 35px;
    padding-inline: 10px;
  }
  .unit-hero__meta {
    margin-bottom: 45px;
  }
  .unit-hero__btn {
    width: 90%;
    margin: 0 auto;
    padding: 12px 24px;
  }

  .unit-hero .pc-only {
    display: none;
  }
  .unit-hero .sp-only {
    display: block;
  }
}

/* =========================
 Others
========================= */

.others {
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  padding-top: 145px;
  padding-bottom: 120px;
  margin-top: 150px;
}
.others__inner {
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: content-box;
}

.others__eyebrow {
  font-size: var(--font-lg);
  font-weight: bold;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}
.others__title {
  font-size: var(--font-xl2);
  font-weight: bold;
  margin-bottom: 50px;
}
.others__lead {
  line-height: 2;
  font-size: var(--font-md);
  max-width: 640px;
  margin: 0 auto 48px;
}

/* grid */
.others__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 100px;
  row-gap: 185px;
  align-items: start;
  margin-top: 96px;
}

/* card */
.others-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}
.others-card__thumb {
  width: 100%;
  aspect-ratio: 4/4;
  margin: 0 0 40px;
}
.others-card__thumb img {
  border-radius: 50px;
}
.others-card__thumb .andmore-image {
  border-radius: 0;
}
.others-card__title {
  font-size: var(--font-xl);
  font-weight: bold;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}
.others-card__title small {
  font-size: var(--font-sm);
  font-weight: bold;
}
.others-card__text {
  margin-top: auto; /* 下揃え */
  font-size: var(--font-sm);
  font-weight: normal;
  letter-spacing: 0.01em;
  line-height: 2.1;
  color: #000;
}

/* responsive */
@media (max-width: 960px) {
  .others__grid {
    gap: 36px 28px;
  }
}
@media (max-width: 768px) {
  .others {
    padding: 80px 20px 80px;
    margin-top: 80px;
  }
  .others-card__thumb {
    width: 90%;
    margin: 0 auto 10px;
  }
  .others__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 50px;
  }
  .others__lead {
    margin: 0 auto 30px;
  }
}
@media (max-width: 499px) {
  .others-card__text {
    font-size: 14px;
  }
  .others-card__title small {
    font-size: 16px;
  }
  .others .pc-only {
    display: none;
  }
}
/* =========================
 Access
========================= */

.access {
  color: var(--black);
  text-align: center;
  padding-block: 120px;
}
.access__inner {
  max-width: 1000px;
  margin-inline: auto;
  padding: 0 1rem;
  box-sizing: content-box;
}

.access__title {
  font-size: var(--font-xl2);
  font-weight: bold;
  margin-bottom: 1rem;
}
.access__note {
  font-size: var(--font-md);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: normal;
  margin-bottom: 1rem;
}

.access__address {
  font-size: var(--font-md);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.access__map {
  width: 100%;
  height: 550px;
}

@media only screen and (max-width: 1449px) {
  .access__map {
    height: 400px;
  }
}
@media only screen and (max-width: 768px) {
  .access {
    padding-block: 80px;
  }
  .access .sp-only {
    display: block;
  }
}
@media only screen and (max-width: 499px) {
  .access__map {
    height: 300px;
  }
}

/* =========================
 Contact
========================= */

.contact {
  padding-top: 80px;
  padding-bottom: 120px;
  color: var(--black);
  text-align: center;
}
.contact__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.contact__eyebrow {
  font-size: var(--font-lg);
  font-weight: bold;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}
.contact__title {
  font-size: var(--font-xl2);
  font-weight: bold;
  margin-bottom: 72px;
}

.contact__list {
  display: grid;
  gap: 2rem;
}

.contact__row {
  display: grid;
  grid-template-columns: 25% 1fr;
  align-items: center;
  gap: 24px;
  padding: 1rem;
}

.contact__icon {
  display: grid;
  place-items: center;
  margin-left: auto;
}
.contact__icon img {
  max-width: 60px;
}

.contact__main {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.contact__text {
  font-size: var(--font-lg);
  font-weight: normal;
}
.contact__tel {
  font-feature-settings: "pnum" 1, "lnum" 1;
}

.contact__sub {
  font-size: var(--font-md);
  color: var(--black);
}
@media only screen and (max-width: 768px) {
  .contact {
    padding: 40px 20px 78px;
  }
}

@media (max-width: 640px) {
  .contact__row {
    grid-template-columns: 64px 1fr;
    gap: 20px;
  }

  .contact__icon img {
    max-width: 45px;
  }
  .contact__text {
    text-align: left;
  }
  .contact__sub {
    font-size: 14px;
  }
}

/* フッター上のTOPボタン */
.back-to-top {
  display: grid;
  place-items: center;
  margin-bottom: 50px;
}
.back-btn {
  display: grid;
  place-items: center;
  width: clamp(100px, 10vw, 150px);
  aspect-ratio: 1/1;
  border-radius: 999px;
  font-size: var(--font-md);
  background: #8ebf5e;
  color: var(--white);
}

/* =========================
Footer
========================= */
.footer {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding-top: 60px;
  padding-bottom: 30px;
}

.footer__nav {
  margin-bottom: 70px;
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.footer__nav-item a {
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__logo img {
  max-width: 500px;
  height: auto;
}

.footer__address {
  font-size: var(--font-sm);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: normal;
  font-style: normal;
  margin-bottom: 72px;
}

.footer__copy {
  font-size: var(--font-sm);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: normal;
  line-height: 2;
}
.footer__corp {
  color: var(--white);
}
@media only screen and (max-width: 767px) {
  .footer__inner {
    padding: 0 2rem;
  }
  .footer__nav {
    margin-bottom: 40px;
  }
  .footer__nav-list {
    gap: 20px;
    column-gap: 2rem;
  }
  .footer__address {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 499px) {
  .footer__inner {
    padding: 0;
  }
  .footer__copy .sp-only {
    display: block;
  }
}
@media only screen and (max-width: 399px) {
  .contact__row {
    padding: 0;
  }
}
