@charset "UTF-8";

.no-splash #splash {
  display: none !important;
}

/* Variables */

:root {
  --c_main: #f7d6d0;
  --c_accent: #8a7968;
  --c_sub: #fffbfb;
  --c_black: #333333;
  --c_gray: #cccccc;
  --c_dark-gray: #707070;
  --c_light-gray: #eeeeee;
  --c_light-gray2: #e7e7e7;
  --c_white: #ffffff;
  --c_action: #ff7600;
  --c_alert: #df5656;

  --header-h: 100px;
  --header-h-sp: 50px;

  --sp-gutter: 20px;

  /* セクション境界の波形 */

  --header-wave: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 50' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 0 H420 V15 Q390 38 360 15 Q330 38 300 15 Q270 38 240 15 Q210 38 180 15 Q150 38 120 15 Q90 38 60 15 Q30 38 0 15 V0 Z'/%3E%3C/svg%3E");

  --footer-wave: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 50' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 35 Q30 12 60 35 Q90 12 120 35 Q150 12 180 35 Q210 12 240 35 Q270 12 300 35 Q330 12 360 35 Q390 12 420 35 V50 H0 Z'/%3E%3C/svg%3E");
}

/* base */

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  color: var(--c_black);
  font-family: "Kiwi Maru", serif;
  line-height: 1.75;

  overflow-x: hidden;
  overflow-y: auto;
}

a {
  color: var(--c_accent);
  transition: color 0.3s;
}

a:hover {
  color: var(--c_main);
  text-decoration: none;
}

/* site-header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  box-sizing: border-box;

  width: 100%;
  height: var(--header-h);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 50px;

  background: var(--c_white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 波形境界 */

.site-header::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -42px;

  width: 100vw;
  height: 50px;

  background: var(--c_white);

  -webkit-mask-image: var(--header-wave);
  mask-image: var(--header-wave);

  -webkit-mask-size: 420px 50px;
  mask-size: 420px 50px;

  -webkit-mask-position: center;
  mask-position: center;

  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;

  transform: translateX(-50%);

  z-index: -1;

  pointer-events: none;
}

.site-header__brand {
  height: 100%;

  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  flex-shrink: 0;
}

.site-header__brand > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;

  height: 100%;

  color: inherit;

  line-height: 1.2;
  text-decoration: none;
}

/* 追加 */
.site-header__brand-logo {
  flex-shrink: 0;

  width: 40px;
  height: 40px;

  object-fit: contain;
}

.site-header__brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.site-header__brand-name {
  font-family: Georgia, serif;

  font-size: clamp(16px, 2vw, 24px);

  letter-spacing: 0.06em;

  white-space: nowrap;
  text-align: left;
}

.site-header__brand-tagline {
  margin-top: 5px;

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

  font-size: clamp(7px, 1vw, 8px);
  font-weight: 500;

  letter-spacing: 0.12em;

  opacity: 0.7;

  white-space: nowrap;
  text-align: left;
}

/* nav-toggle（ハンバーガーボタン） */

.nav-toggle {
  display: none;

  place-items: center;

  width: 50px;
  height: 50px;

  flex-shrink: 0;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.nav-toggle__icon {
  position: relative;

  display: block;

  width: 22px;
  height: 2px;

  background: var(--c_black);

  transform: translateZ(0);

  transition: background-color 0.3s ease;
}

/* 上下の線 */

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";

  position: absolute;

  left: 0;

  width: 22px;
  height: 2px;

  background: var(--c_black);

  transform-origin: center center;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.nav-toggle__icon::before {
  top: 0;

  transform: translateY(-7px);
}

.nav-toggle__icon::after {
  top: 0;

  transform: translateY(7px);
}

/* open時 → ×印 */

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
  transform: translateY(0) rotate(-45deg);
}

/* global-nav（PCでは常時表示） */

.global-nav {
  position: static;

  width: auto;
  height: auto;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  box-sizing: border-box;

  margin: 0;
  padding: 0;

  background: transparent;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  overflow: visible;
}

.global-nav__list {
  width: auto;
  height: auto;

  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;

  gap: 28px;

  list-style: none;
}

.global-nav__item {
  width: auto;
  height: auto;

  margin: 0;
  padding: 0;

  display: block;

  list-style: none;

  border: 0;
}

.global-nav__link {
  position: relative;

  width: auto;
  height: auto;

  display: block;

  box-sizing: border-box;

  padding: 8px 0;

  color: var(--c_black);

  font-size: 15px;
  font-weight: 400;

  letter-spacing: 0.12em;
  line-height: 1.5;

  text-align: center;
  text-decoration: none;
}

/* 下線アニメーション（中央から左右へ、CONTACT以外） */

.global-nav__item:not(:last-child) .global-nav__link::after {
  content: "";

  position: absolute;

  left: 10%;
  bottom: 0;

  width: 80%;
  height: 2px;

  background: var(--c_accent);

  transform: scaleX(0);
  transform-origin: center center;

  transition: transform 0.3s ease;

  pointer-events: none;
}

.global-nav__item:not(:last-child) .global-nav__link:hover::after,
.global-nav__item:not(:last-child) .global-nav__link:focus-visible::after {
  transform: scaleX(1);
}

/* 現在ページは線を常時表示 */

.global-nav__item:not(:last-child)
  .global-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.global-nav__link[aria-current="page"] {
  padding-left: 0;

  border-left: 0;

  color: var(--c_accent);
}

/* CONTACT */

.global-nav__item:last-child .global-nav__link {
  width: auto;
  height: auto;

  margin: 0;
  padding: 8px 18px;

  border: 2px solid var(--c_main);
  border-radius: 999px;

  background: var(--c_main);

  color: var(--c_accent);

  white-space: nowrap;
}

.global-nav__link:hover,
.global-nav__link:focus {
  color: var(--c_accent);
}

.global-nav__item:last-child .global-nav__link:hover,
.global-nav__item:last-child .global-nav__link:focus {
  background: var(--c_white);

  color: var(--c_accent);
}

/* site-main */

.site-main {
  margin-top: var(--header-h);
}

/* page-footer */

.page-footer {
  position: relative;

  background: var(--c_black);

  color: var(--c_white);
}

/* 波形境界 */

.page-footer::before {
  content: "";

  position: absolute;

  left: 50%;
  top: -42px;

  width: 100vw;
  height: 50px;

  background: var(--c_black);

  -webkit-mask-image: var(--footer-wave);
  mask-image: var(--footer-wave);

  -webkit-mask-size: 420px 50px;
  mask-size: 420px 50px;

  -webkit-mask-position: center;
  mask-position: center;

  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;

  transform: translateX(-50%);

  pointer-events: none;
}

.page-footer__main {
  position: relative;
  z-index: 1;

  max-width: 1120px;

  margin: auto;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 40px;

  padding: 100px 50px 50px;

  box-sizing: border-box;
}

.page-footer__brand {
  display: inline-flex;

  flex-direction: column;

  color: inherit;

  line-height: 1.2;

  text-decoration: none;
}

.page-footer__brand-name {
  font-family: Georgia, serif;

  font-size: 22px;

  letter-spacing: 0.12em;
}

.page-footer__brand-tagline {
  margin-top: 6px;

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

  font-size: 8px;
  font-weight: 500;

  letter-spacing: 0.16em;

  opacity: 0.7;
}

.page-footer__description {
  margin-top: 20px;

  max-width: 320px;

  color: inherit;

  font-size: 13px;

  line-height: 2;

  opacity: 0.75;
}

.page-footer__nav {
  display: grid;

  grid-template-columns: 100px 130px 130px;

  column-gap: 50px;

  align-items: start;
  justify-content: end;

  margin: 0;
  padding: 0;
}

.page-footer__nav-col {
  width: 100%;

  display: flex;

  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;

  gap: 12px;
}

.page-footer__nav a {
  display: block;

  width: 100%;

  margin: 0;
  padding: 0;

  color: var(--c_white);

  font-size: 14px;
  font-weight: bold;

  line-height: 1.5;

  white-space: nowrap;

  text-align: left;

  text-decoration: none;
}

.page-footer__nav a:hover {
  text-decoration: underline;
}

.page-footer__bottom {
  position: relative;
  z-index: 1;

  padding: 25px 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);

  text-align: center;
}

.page-footer__bottom small {
  font-size: 12px;

  font-weight: bold;

  opacity: 0.7;
}

/* page-container */

.page-container {
  max-width: 1120px;

  margin: auto;

  padding-left: 20px;
  padding-right: 20px;
}

/* content-block（セクション共通） */

.content-block {
  padding-top: 80px;
  padding-bottom: 80px;
}

.content-block + .content-block {
  padding-top: 0;
}

.content-block__title {
  margin-bottom: 40px;
}

.content-block__action {
  margin-top: 60px;
}

/* btn */

.btn {
  -webkit-appearance: none;
  appearance: none;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 100%;

  border: 2px solid transparent;
  border-radius: 8px;

  font-family: inherit;

  font-weight: bold;

  text-align: center;

  text-decoration: none;

  line-height: 1;

  transition: 0.3s;

  cursor: pointer;
}

/* サイズ */

.btn--lg {
  max-width: 400px;

  padding: 20px;

  font-size: 18px;
}

.btn--md {
  max-width: 300px;

  padding: 20px;

  font-size: 16px;
}

.btn--sm {
  width: auto;

  min-width: 150px;

  padding: 10px;

  font-size: 14px;
}

/* 種類 */

.btn--primary {
  background: var(--c_main);

  color: var(--c_black);
}

.btn--primary:hover,
.btn--primary:focus {
  opacity: 0.7;

  color: var(--c_black);
}

.btn--outline {
  border: 2px solid var(--c_main);

  background: var(--c_white);

  color: var(--c_black);
}

.btn--outline:hover,
.btn--outline:focus {
  background: var(--c_sub);

  color: var(--c_black);
}

.btn--ghost {
  border: 2px solid var(--c_black);

  color: var(--c_black);
}

.btn--ghost:hover,
.btn--ghost:focus {
  background: rgba(51, 51, 51, 0.08);

  color: var(--c_black);
}

.btn--accent {
  background: var(--c_action);

  color: var(--c_white);
}

.btn--accent:hover,
.btn--accent:focus {
  opacity: 0.7;

  color: var(--c_white);
}

.btn--light {
  max-width: 280px;

  padding: 18px 20px;

  background: var(--c_white);

  color: var(--c_accent);

  font-size: 16px;
}

.btn--light:hover,
.btn--light:focus {
  opacity: 0.8;

  color: var(--c_accent);
}

.btn--light span {
  display: inline-block;

  margin-left: 0.5em;

  transition: transform 0.3s;
}

.btn--light:hover span,
.btn--light:focus span {
  transform: translateX(4px);
}

.btn--disabled,
.btn[disabled] {
  background: var(--c_gray);

  color: var(--c_white);

  opacity: 1;

  cursor: default;
}

.btn-row {
  display: flex;

  flex-direction: row;

  justify-content: center;
  align-items: center;

  gap: 20px;
}

/* ボタン内矢印 */

.btn__arrow {
  display: inline-block;

  flex-shrink: 0;

  width: 7px;
  height: 7px;

  margin-left: 10px;

  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;

  transform: translateY(1px) rotate(45deg);

  transition: transform 0.3s ease;
}

.btn:hover .btn__arrow,
.btn:focus .btn__arrow {
  transform: translate(3px, -2px) rotate(45deg);
}

/* テキスト */

.text-emphasis {
  font-weight: bold;
}

.text-warning {
  color: var(--c_alert);

  font-weight: bold;
}

.text-footnote {
  margin-left: 1em;

  text-indent: -1em;

  color: var(--c_dark-gray);

  font-size: 0.875em;
}

/* リスト */

.list-dot {
  display: grid;

  gap: 1em;
}

.list-dot > li {
  position: relative;

  padding-left: 1em;
}

.list-dot > li::before {
  position: absolute;

  left: 0;
  top: 0.75em;

  content: "";

  display: block;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--c_accent);
}

.list-chevron {
  display: grid;

  gap: 1em;
}

.list-chevron > li {
  position: relative;

  padding-left: 1em;
}

.list-chevron > li::before {
  position: absolute;

  left: 0;
  top: 0.75em;

  content: "";

  display: block;

  width: 0.625em;
  height: 0.625em;

  border-top: 2px solid var(--c_accent);
  border-right: 2px solid var(--c_accent);

  transform: rotate(45deg);
}

.list-chevron a {
  color: inherit;

  text-decoration: none;
}

.list-chevron a:hover,
.list-chevron a:focus {
  color: var(--c_accent);
}

.list-number {
  display: grid;

  gap: 1em;
}

.list-number > li {
  margin-left: 1em;

  list-style-type: decimal;
}

/* 枠囲み */

.outline-box {
  border: 2px solid var(--c_accent);

  padding: 40px;
}

.outline-box__title {
  padding-left: 20px;

  border-left: 2px solid var(--c_accent);

  font-size: 24px;
  font-weight: bold;

  line-height: 1.5;
}

.outline-box__title + * {
  margin-top: 30px;
}

.outline-box--warning {
  border: 2px solid var(--c_alert);

  color: var(--c_alert);

  font-weight: bold;
}

.outline-box--warning .outline-box__title {
  display: flex;

  align-items: center;

  padding-left: 0;

  border-left: 0;
}

.outline-box--warning .outline-box__title::before {
  flex-shrink: 0;

  content: "";

  display: inline-block;

  width: 40px;
  height: 40px;

  margin-right: 10px;

  background: url(../img/icon_attention.svg) center center / contain no-repeat;

  vertical-align: middle;
}

/* ページタイトル */

.page-heading {
  line-height: 1.5;
}

.page-heading__label {
  display: block;

  color: var(--c_accent);

  font-size: 24px;

  letter-spacing: 0.2em;

  text-transform: uppercase;
}

.page-heading__title {
  display: block;

  font-size: 48px;

  letter-spacing: 0.2em;
}

/* ページヘッダー領域 */

.page-banner--lg {
  display: grid;

  place-content: center;

  height: 400px;

  padding: 0 50px;

  background-position: center center;
  background-size: cover;

  text-align: center;
}

.page-banner--md {
  padding: 100px 0;

  background: var(--c_sub);

  text-align: center;
}

.page-banner__lead {
  margin-top: 50px;
}

.page-banner--sm {
  padding: 70px 20px;

  background: var(--c_main);

  text-align: center;
}

/* lead-block */

.lead-block {
  padding: 80px 0;

  line-height: 1.8;
}

.lead-block__headline {
  margin: -14px 0;

  text-align: center;

  font-size: 36px;
}

.lead-block__text {
  margin-top: 40px;
}

/* contact-banner */

.contact-banner {
  padding: 100px 20px;

  background: var(--c_main);

  color: var(--c_black);

  text-align: center;
}

.contact-banner__inner {
  max-width: 640px;

  margin: auto;
}

.contact-banner .overline {
  color: inherit;

  opacity: 0.85;
}

.contact-banner h2 {
  margin-top: 15px;

  font-size: clamp(26px, 3.2vw, 36px);

  font-weight: bold;

  line-height: 1.6;
}

.contact-banner__inner > p:not(.overline) {
  margin-top: 25px;

  line-height: 2;

  opacity: 0.9;
}

.contact-banner .btn {
  margin: 40px auto 0;
}

/* breadcrumbs */

.breadcrumbs {
  display: block;

  padding: 15px 50px;

  background: var(--c_light-gray);
}

.breadcrumbs__list li {
  display: inline-block;

  font-size: 12px;
}

.breadcrumbs__list li:not(:last-child)::after {
  content: "";

  display: inline-block;

  width: 5px;
  height: 5px;

  margin: 0 3px;

  border-top: 1px solid;
  border-right: 1px solid;

  transform: rotate(45deg);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
  color: var(--c_white);
}

/* 見出し */

.split-heading {
  text-align: center;

  font-weight: bold;

  line-height: 1.2;
}

.split-heading__primary {
  display: block;

  font-size: 48px;

  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: 0.2em;
}

.split-heading__secondary {
  display: block;

  margin-top: 0.5em;

  color: var(--c_accent);

  font-size: 20px;

  font-weight: bold;
}

.split-heading--inverted {
  color: var(--c_white);
}

.split-heading--inverted .split-heading__secondary {
  color: inherit;
}

.split-heading--left {
  text-align: left;
}

.stacked-heading {
  text-align: center;

  font-weight: bold;

  line-height: 1.2;
}

.stacked-heading::after {
  content: "";

  display: block;

  width: 100px;

  margin: 30px auto 0;

  border-top: 1px solid var(--c_accent);
}

.stacked-heading__primary {
  display: block;

  font-size: 40px;
}

.stacked-heading__secondary {
  display: block;

  margin-bottom: 0.5em;

  font-size: 18px;
}

.stacked-heading--inverted {
  color: var(--c_white);
}

.stacked-heading--inverted::after {
  border-color: var(--c_white);
}

.heading-underline {
  font-size: 28px;

  font-weight: bold;

  line-height: 1.5;
}

.heading-underline::after {
  content: "";

  display: block;

  width: 50px;

  margin-top: 20px;

  border-top: 1px solid var(--c_accent);
}

.heading-underline--centered {
  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;
}

.heading-underline--inverted {
  color: var(--c_white);
}

.heading-underline--inverted::after {
  border-color: var(--c_white);
}

.heading-sidebar {
  padding-left: 20px;

  border-left: 2px solid var(--c_accent);

  font-size: 24px;

  font-weight: bold;

  line-height: 1.5;
}

.heading-sidebar--inverted {
  color: var(--c_white);

  border-color: var(--c_white);
}

.heading-accent {
  color: var(--c_accent);

  font-size: 20px;

  font-weight: bold;

  line-height: 1.5;
}

.heading-plain {
  font-size: 16px;

  font-weight: bold;

  line-height: 1.5;
}

/* グリッド */

.auto-grid {
  display: grid;

  gap: 40px 20px;
}

.auto-grid--4up {
  grid-template-columns: repeat(4, 1fr);
}

.auto-grid--3up {
  max-width: none;

  margin-left: auto;
  margin-right: auto;

  grid-template-columns: repeat(3, 1fr);
}

.auto-grid--2up {
  max-width: none;

  margin-left: auto;
  margin-right: auto;

  grid-template-columns: repeat(2, 1fr);
}

/* thumb-link */

.thumb-link {
  display: block;

  color: inherit;

  text-decoration: none;
}

a.thumb-link:hover,
a.thumb-link:focus {
  color: var(--c_accent);
}

a.thumb-link:hover .thumb-link__image img,
a.thumb-link:focus .thumb-link__image img {
  transform: scale(1.2);
}

.thumb-link__image {
  overflow: hidden;
}

.thumb-link__image img {
  width: 100%;

  max-width: none;

  aspect-ratio: 256 / 164;

  object-fit: cover;

  transition: 0.5s;
}

.thumb-link__caption {
  margin-top: 0.56em;

  display: grid;

  grid-template-columns: 15px 1fr;

  align-items: baseline;

  font-weight: bold;
}

.thumb-link__description {
  margin-top: 0.2em;
}

/* media-card */

.media-card {
  display: flex;

  flex-direction: column;

  border: 1px solid var(--c_gray);

  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.07);

  color: inherit;

  text-decoration: none;

  line-height: 1.5;

  transition: 0.3s;
}

a.media-card:hover,
a.media-card:focus {
  border: 1px solid var(--c_accent);

  color: inherit;
}

a.media-card:hover .media-card__image img,
a.media-card:focus .media-card__image img {
  transform: scale(1.2);
}

.media-card__image {
  overflow: hidden;

  aspect-ratio: 256 / 164;
}

.media-card__image img {
  width: 100%;

  max-width: none;

  aspect-ratio: 256 / 164;

  object-fit: cover;

  transition: 0.5s;
}

.media-card__body {
  padding: 30px 20px 20px 20px;
}

.media-card__title {
  font-size: 20px;
}

.media-card__text {
  margin-top: 10px;
}

.page-footer__brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 14px;
}

.page-footer__brand-row {
  display: flex;
  align-items: center;

  gap: 12px;
}

.page-footer__brand-logo {
  flex-shrink: 0;

  width: 36px;
  height: 36px;

  object-fit: contain;
}

.page-footer__brand-col > .page-footer__description {
  margin-top: 0;
}

.splash__logo-img {
  display: block;

  width: clamp(48px, 8vw, 72px);
  height: auto;

  margin-bottom: 16px;

  object-fit: contain;
}

/* SP: max-width 767px */

@media screen and (max-width: 767px) {
  /* ナビ下線アニメーションはSPで無効化 */

  .global-nav__item:not(:last-child) .global-nav__link::after {
    display: none;
  }

  .site-header {
    height: var(--header-h-sp);

    padding: 0 10px 0 15px;
  }

  .site-header__brand-tagline {
    display: block;

    margin-top: 3px;

    font-size: 7px;

    letter-spacing: 0.08em;
  }

  .site-header__brand-logo {
    width: 30px;
    height: 30px;
  }

  .site-header::after {
    bottom: -42px;

    height: 50px;

    -webkit-mask-size: 420px 50px;
    mask-size: 420px 50px;

    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;

    -webkit-mask-position: center;
    mask-position: center;
  }

  .nav-toggle {
    position: fixed;

    top: 5px;
    right: 10px;

    z-index: 10000;

    display: grid;

    place-items: center;

    width: 40px;
    height: 40px;

    flex-shrink: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
  }

  .nav-toggle__icon {
    width: 22px;
    height: 2px;

    background: var(--c_black);
  }

  .nav-toggle__icon::before,
  .nav-toggle__icon::after {
    width: 22px;
    height: 2px;

    background: var(--c_black);
  }

  /* SPは開閉式 */

  .global-nav {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 9998;

    width: 100%;
    height: 100vh;
    height: 100dvh;

    display: flex;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    margin: 0;
    padding: 80px 20px 40px;

    background: var(--c_white);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    overflow-y: auto;

    -webkit-overflow-scrolling: touch;

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .global-nav.is-open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
  }

  .global-nav__list {
    width: 100%;
    height: auto;

    margin: 0;
    padding: 0;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 8px;

    list-style: none;
  }

  .global-nav__item {
    width: 100%;
    height: auto;

    margin: 0;
    padding: 0;

    display: block;

    border: 0;
  }

  .global-nav__link {
    width: 100%;
    height: auto;

    display: block;

    box-sizing: border-box;

    padding: 12px 20px;

    color: var(--c_black);

    font-size: 22px;
    font-weight: 400;

    letter-spacing: 0.12em;

    line-height: 1.5;

    text-align: center;

    text-decoration: none;
  }

  .global-nav__link[aria-current] {
    padding-left: 20px;

    border-left: 0;
  }

  .global-nav__item:last-child {
    display: flex;

    justify-content: center;

    width: 100%;
  }

  .global-nav__item:last-child .global-nav__link {
    display: inline-block;

    width: fit-content;
    height: auto;

    margin: 15px 0 0;

    padding: 10px 16px;

    border: 2px solid var(--c_main);

    border-radius: 999px;

    background: var(--c_main);

    color: var(--c_accent);

    white-space: nowrap;
  }

  .global-nav__link:hover,
  .global-nav__link:focus {
    color: var(--c_accent);
  }

  .global-nav__item:last-child .global-nav__link:hover,
  .global-nav__item:last-child .global-nav__link:focus {
    background: var(--c_white);

    color: var(--c_accent);
  }

  .site-main {
    margin-top: var(--header-h-sp);
  }

  .page-footer::before {
    top: -42px;

    height: 50px;

    -webkit-mask-size: 420px 50px;
    mask-size: 420px 50px;

    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;

    -webkit-mask-position: center;
    mask-position: center;
  }

  .page-footer__main {
    flex-direction: column;

    align-items: center;

    gap: 30px;

    padding: 75px 15px 40px;

    text-align: center;
  }

  .page-footer__brand-row {
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .page-footer__brand-col {
    align-items: center;
    text-align: center;
  }

  .page-footer__nav {
    width: 100%;

    max-width: 420px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    column-gap: 20px;

    justify-content: center;

    margin: 0 auto;
  }

  .page-footer__nav-col {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    gap: 12px;
  }

  .page-footer__nav a {
    display: block;

    width: 100%;

    margin: 0;

    padding: 0;

    font-size: 12px;

    text-align: left;
  }

  .content-block {
    padding-top: 50px;

    padding-bottom: 50px;
    padding-left: var(--sp-gutter);
    padding-right: var(--sp-gutter);
  }

  .content-block__title {
    margin-bottom: 20px;
  }

  .content-block__action {
    margin-top: 40px;
  }

  .btn-row {
    flex-direction: column;

    justify-content: center;

    gap: 20px;
  }

  .page-heading__label {
    font-size: 20px;
  }

  .page-heading__title {
    font-size: 30px;
  }

  .page-banner--lg {
    display: grid;

    place-content: center;

    height: calc(200 / 375 * 100vw);

    padding: 0 20px;

    text-align: center;
  }

  .page-banner--md {
    padding: 80px 20px;
  }

  .page-banner__lead {
    margin-top: 40px;
  }

  .lead-block {
    padding: 50px 0;
  }

  .lead-block__headline {
    margin: -4px 0;

    text-align: left;

    font-size: 22px;
  }

  .contact-banner {
    padding: 60px 20px;
  }

  .contact-banner h2 {
    font-size: 24px;
  }

  .contact-banner .btn {
    max-width: 100%;
  }

  .breadcrumbs {
    display: none;
  }

  .split-heading__primary {
    font-size: 28px;
  }

  .split-heading__secondary {
    font-size: 16px;
  }

  .stacked-heading__primary {
    font-size: 28px;
  }

  .stacked-heading__secondary {
    font-size: 16px;
  }

  .heading-underline {
    font-size: 24px;
  }

  .heading-sidebar {
    font-size: 20px;
  }

  .auto-grid--4up {
    grid-template-columns: repeat(2, 1fr);
  }

  .auto-grid--3up {
    max-width: 400px;

    grid-template-columns: 1fr;
  }

  .auto-grid--2up {
    max-width: 400px;

    grid-template-columns: 1fr;
  }

  .auto-grid--4up .thumb-link {
    font-size: 14px;
  }

  .breed-overview__action .btn,
  .faq__action .btn {
    max-width: 100%;
  }
}

/* Loading */

#splash {
  position: fixed;

  inset: 0;

  z-index: 99999;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100vh;
  height: 100dvh;

  background: var(--c_main);

  color: var(--c_black);

  opacity: 1;

  visibility: visible;

  transition:
    opacity 1s ease,
    visibility 1s ease;
}

#splash__logo {
  display: flex;

  flex-direction: column;

  align-items: center;

  opacity: 0;

  transform: translateY(10px);

  transition:
    opacity 1s ease,
    transform 1s ease;
}

#splash.is-start #splash__logo {
  opacity: 1;

  transform: translateY(0);
}

#splash.is-fadeout {
  opacity: 0;

  visibility: hidden;

  pointer-events: none;
}

.splash__brand {
  display: block;

  font-family: Georgia, serif;

  font-size: clamp(28px, 5vw, 52px);

  font-weight: 400;

  letter-spacing: 0.12em;

  line-height: 1.2;

  white-space: nowrap;
}

.splash__tagline {
  display: block;

  margin-top: 8px;

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

  font-size: 9px;

  font-weight: 500;

  letter-spacing: 0.18em;

  line-height: 1.5;

  opacity: 0.7;
}
