/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
  /* Colors */
  --color-brand: #6e6358;
  --color-accent: #27b970;
  --color-bg-main: #ffffff;
  --color-bg-sub: #f6f4f1;
  --color-text-primary: #242424;
  --color-text-secondary: #525252;
  --color-border: #cbcbcb;
  --color-border-gold: #c0b099;
  --color-black: #000000;
  --color-white: #ffffff;

  /* Spacing */
  --section-margin: 6.5rem;
  --content-max-width: 66.25rem;
  --content-padding: 1rem;
}

/* ==========================================================================
   Common Components
   ========================================================================== */

/* Primary Button - ブランドカラー背景の共通ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.9375rem 5.4375rem;
  background-color: var(--color-brand);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn__text {
  font-family: "A-OTF Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-white);
}

.btn__icon {
  width: 0.4375rem;
  height: 0.75rem;
}

/* Visually Hidden - スクリーンリーダー用に視覚的に非表示 */
.visually-hidden,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1rem;
  color: var(--color-text-primary);
  background-color: var(--color-bg-main);
  overflow-x: hidden;
}

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

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

a:hover {
  text-decoration: underline;
}

.site-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 3.25rem 4.4375rem 0;
  border-bottom: 0.0625rem solid var(--color-border);
  background-color: var(--color-bg-main);
}

.site-header__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem 0;
  font-family: "A-OTF Ryumin Pr6N", "Noto Serif JP", serif;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-black);
}

.site-header__logo-text {
  margin: 0;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__nav-item {
  display: flex;
  position: relative;
}

.site-header__nav-item--has-dropdown:hover .site-header__dropdown,
.site-header__nav-item--has-dropdown:focus-within .site-header__dropdown {
  display: block;
}

.site-header__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  margin: 0;
  padding: 0.75rem 0;
  list-style: none;
  background: rgba(246, 244, 241, 0.95);
  border: 1px solid var(--color-border-gold);
  min-width: 14rem;
}

.site-header__dropdown-link {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  white-space: nowrap;
}

.site-header__dropdown-link:hover {
  background: #f5f5f5;
}

.site-header__nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.0625rem;
  padding: 1rem 0.875rem;
  font-family: "A-OTF Midashi Go MB31 Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  line-height: 1;
  color: var(--color-text-primary);
  font-feature-settings: "pkna";
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.1875rem;
}

.site-header__menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 1.9375rem;
  height: 1.6953rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.site-header__menu-line {
  position: absolute;
  left: 0.1875rem;
  right: 0.1875rem;
  height: 0.125rem;
  background-color: var(--color-text-primary);
}

.site-header__menu-line:nth-child(1) {
  top: 0.375rem;
}

.site-header__menu-line:nth-child(2) {
  top: 0.875rem;
}

.site-header__menu-line:nth-child(3) {
  top: 1.375rem;
}

.site-header__action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.4375rem;
  background-color: var(--color-brand);
  overflow: hidden;
}

.site-header__action-icon {
  width: 2.875rem;
  height: 2.875rem;
  display: block;
  filter: brightness(0) invert(1);
}

.hero {
  position: relative;
  width: 100%;
  height: 51.1875rem;
  margin: 0 auto;
  background-color: var(--color-bg-main);
  overflow: hidden;
}

.hero__campaign {
  position: absolute;
  top: 5.125rem;
  right: clamp(1rem, 4vw, 2.5rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6842rem;
  padding: 0.8363rem 1.125rem;
  border: 0.1875rem solid var(--color-accent);
  border-radius: 2.1286rem;
  background-color: var(--color-bg-main);
  white-space: nowrap;
}

.hero__campaign-icon {
  width: 2.4002rem;
  height: 1.8564rem;
}

.hero__campaign-text {
  font-family: "A-OTF Gothic MB101 Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.0788rem;
  color: var(--color-accent);
}

.hero__title-block {
  position: absolute;
  top: 0;
  left: 25.125rem;
  z-index: 2;
  width: 2.5625rem;
  height: 28rem;
  background-color: var(--color-bg-main);
  overflow: hidden;
}

.hero__title-line,
.hero__title-plus,
.hero__title-alpha {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  writing-mode: vertical-rl;
  text-align: center;
}

.hero__title-line {
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 1.3125rem;
  line-height: 1;
  color: var(--color-text-secondary);
}

.hero__title-line--top {
  top: 2.5625rem;
}

.hero__title-line--bottom {
  top: 17.875rem;
  font-feature-settings: "vrt2";
}

.hero__title-plus {
  top: 14.5rem;
  font-family: "A-OTF Maru Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.35rem;
  color: var(--color-accent);
}

.hero__title-alpha {
  top: 15.5rem;
  writing-mode: horizontal-tb;
  font-family: "A-OTF Maru Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-accent);
}

.hero__vertical-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero__quote {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "A-OTF Ryumin Pr6N", "Noto Serif JP", serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-text-primary);
  transform: translateX(-50%) rotate(270deg);
}

.hero__quote--top {
  left: 15rem;
  top: 33.375rem;
}

.hero__quote--middle {
  left: 20.8125rem;
  top: 17.6875rem;
}

.hero__quote--close-top {
  left: 22.3125rem;
  top: 0.9375rem;
}

.hero__quote--close-middle {
  left: 16.3125rem;
  top: 15.1875rem;
}

.hero__letter {
  position: absolute;
  transform: translateX(-50%);
  font-family: "A-OTF Ryumin Pr6N", "Noto Serif JP", serif;
  font-size: 4.75rem;
  line-height: 1;
  color: var(--color-text-primary);
}

.hero__letter--mo {
  left: 21.5rem;
  top: 3.375rem;
}

.hero__letter--small {
  left: 22.0625rem;
  top: 7.5625rem;
}

.hero__letter--to {
  left: 21.5625rem;
  top: 12.9375rem;
}

.hero__letter--wo {
  left: 21.4375rem;
  top: 18.9375rem;
}

.hero__letter--zu {
  left: 15.4375rem;
  top: 18.3125rem;
}

.hero__letter--small2 {
  left: 16.0625rem;
  top: 22.4375rem;
}

.hero__letter--to2 {
  left: 15.5625rem;
  top: 27.8125rem;
}

.hero__letter--period {
  left: 18.6875rem;
  top: 32.125rem;
}

.hero__image {
  position: absolute;
  top: 9.9375rem;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 41.25rem;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro {
  background-color: var(--color-bg-main);
  width: 100%;
  margin: 0 auto;
  padding: 6.5313rem clamp(1.5rem, 8vw, 18.875rem);
}

.intro__text {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  line-height: 2.35;
  color: var(--color-black);
  text-align: left;
}

.intro__text p {
  margin: 0;
}

.reasons {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: 24.125rem;
  margin: 0 auto 6.5rem;
  padding-left: clamp(2.5rem, 6vw, 6.5rem);
  background-color: var(--color-bg-main);
}

.reasons__label {
  width: 4.9375rem;
  height: 24.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reasons__label-text {
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 4.9375rem;
  line-height: 1;
  color: var(--color-bg-sub);
  transform: rotate(90deg);
  display: inline-block;
}

.reasons__panel {
  position: relative;
  width: 88.75rem;
  height: 23.375rem;
  margin-top: 0.375rem;
  background-color: var(--color-bg-sub);
  overflow: hidden;
}

.reasons__heading {
  position: absolute;
  top: 3.5rem;
  left: 28.875rem;
  width: 19.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  color: var(--color-black);
}

.reasons__heading-small {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1;
}

.reasons__heading-large {
  margin: 0;
  font-size: 2.125rem;
  line-height: 1;
}

.reasons__list {
  position: absolute;
  top: 10.3125rem;
  left: 6.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5.4375rem;
}

.reasons__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3125rem;
  text-align: center;
}

.reasons__item--gap-18 {
  gap: 1.125rem;
}

.reasons__item--gap-15 {
  gap: 0.9375rem;
}

.reasons__item--wide {
  width: 10.1875rem;
}

.reasons__item--narrow {
  width: 7.375rem;
}

.reasons__item--medium {
  width: 9.625rem;
}

.reasons__icon {
  display: block;
}

.reasons__icon--1 {
  width: 4.5rem;
  height: 4rem;
}

.reasons__icon--2 {
  width: 3.25rem;
  height: 3.625rem;
}

.reasons__icon--3 {
  width: 3.5rem;
  height: 4.0001rem;
}

.reasons__icon--4 {
  width: 4rem;
  height: 3.9997rem;
}

.reasons__icon--5 {
  width: 4.375rem;
  height: 4rem;
}

.reasons__text {
  margin: 0;
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-black);
  font-feature-settings: "palt";
}

.sale {
  position: relative;
  width: 100%;
  height: 19.625rem;
  margin: 0 auto 6.5rem;
  --sale-image-size: 15.875rem;
  --sale-content-width: 26rem;
  --sale-gap: 3.1875rem;
  --sale-image-overlap: 2.375rem;
  overflow-x: hidden;
  background-color: var(--color-bg-main);
}

.sale__label {
  position: absolute;
  top: 0;
  left: 63.625rem;
  margin: 0;
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 4.9375rem;
  line-height: 1;
  color: var(--color-bg-sub);
}

.sale__panel {
  position: absolute;
  top: 4.8125rem;
  left: 0;
  width: 100%;
  height: 14.8125rem;
  background-color: var(--color-bg-sub);
  overflow: visible;
}

.sale__content {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  width: var(--sale-content-width);
  transform: translateX(calc((var(--sale-image-size) + var(--sale-gap) - var(--sale-content-width)) / 2));
}

.sale__body {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  align-items: flex-start;
}

.sale__title {
  margin: 0;
  font-family: "A-OTF Midashi Go MB31 Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.8125rem;
  line-height: 1;
  color: var(--color-brand);
  font-feature-settings: "pkna";
}

.sale__lead {
  margin: 0;
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-primary);
}

.sale__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.9375rem 5.4375rem;
  background-color: var(--color-brand);
}

.sale__button-icon {
  width: 0.4375rem;
  height: 0.75rem;
}

.sale__button-text {
  font-family: "A-OTF Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-white);
}

.sale__image {
  position: absolute;
  top: calc(-1 * var(--sale-image-overlap));
  left: 50%;
  width: var(--sale-image-size);
  height: var(--sale-image-size);
  transform: translateX(calc(-1 * (var(--sale-image-size) + var(--sale-gap) + var(--sale-content-width)) / 2));
}

.sale__image img {
  width: 100%;
  height: 100%;
  display: block;
}

.recommend {
  position: relative;
  width: 100%;
  height: 23.5rem;
  margin: 0 auto 6.5rem;
  background-color: var(--color-bg-main);
}

.recommend__card {
  position: absolute;
  top: 0;
  left: 25rem;
  width: 50.0625rem;
  height: 15rem;
  display: flex;
  align-items: center;
  gap: 2.4375rem;
  padding: 1.25rem 2.875rem 1.25rem 1.25rem;
  border: 0.0625rem solid var(--color-border-gold);
  border-radius: 0.625rem;
  background-color: var(--color-bg-main);
  box-shadow: 0.0625rem 0.0625rem 0.375rem 0.0625rem rgba(0, 0, 0, 0.2);
}

.recommend__image {
  width: 17.5rem;
  height: 12.5rem;
  flex-shrink: 0;
}

.recommend__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recommend__content {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  width: 26rem;
}

.recommend__title {
  margin: 0;
  font-family: "A-OTF Midashi Go MB31 Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.8125rem;
  line-height: 1;
  color: var(--color-brand);
  font-feature-settings: "pkna";
}

.recommend__lead {
  margin: 0;
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-primary);
}

.recommend__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.9375rem 5.4375rem;
  width: 25.3125rem;
  background-color: var(--color-brand);
}

.recommend__button-icon {
  width: 0.4375rem;
  height: 0.75rem;
}

.recommend__button-text {
  font-family: "A-OTF Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-white);
}

.recommend__badge {
  position: absolute;
  top: -1.4375rem;
  left: 45.9375rem;
  width: 5.25rem;
  height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recommend__badge-star {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.recommend__badge-text {
  position: relative;
  font-family: "A-OTF Midashi Go MB31 Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-white);
}

.recommend__line {
  position: absolute;
  left: 0;
  top: 23.5rem;
  width: 100%;
  height: 0;
}

.recommend__line img {
  width: 100%;
  height: 0.0625rem;
  display: block;
}

@media (min-width: 768px) {
  html {
    font-size: 1vw;
  }

  .reasons__panel {
    width: min(88.75rem, 94vw);
  }

  .reasons__heading {
    left: 50%;
    transform: translateX(-50%);
  }

  .reasons__list {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - clamp(3rem, 10vw, 13rem));
    justify-content: space-between;
    gap: clamp(2rem, 4vw, 5.4375rem);
  }

  .sale__label {
    left: auto;
    right: clamp(1.5rem, 6vw, 6.5rem);
  }

  .recommend__card {
    left: 50%;
    transform: translateX(-50%);
    width: min(50.0625rem, 90vw);
  }

  .recommend__content {
    width: clamp(18rem, 35vw, 26rem);
  }

  .recommend__button {
    width: clamp(18rem, 40vw, 25.3125rem);
  }

  .recommend__badge {
    left: auto;
    right: clamp(0.75rem, 2vw, 1.5rem);
  }

}

.works {
  position: relative;
  width: calc(100% - 11.25rem);
  height: 81.375rem;
  margin-left: 11.25rem;
  margin-bottom: var(--section-margin);
  background-color: var(--color-bg-main);
}

.works__intro {
  position: absolute;
  top: 0;
  left: 0;
  width: 24.7813rem;
  height: 23.6875rem;
}

.works__lead {
  margin: 0;
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  line-height: 1.75;
  color: var(--color-black);
}

.works__line {
  position: absolute;
  top: 5.5313rem;
  left: 0.2813rem;
  width: 24.5rem;
  height: 0.0625rem;
}

.works__title {
  margin: 0;
  position: absolute;
  top: 8.0625rem;
  left: 0;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 2.125rem;
  line-height: 1;
  color: var(--color-black);
}

.works__label {
  margin: 0;
  position: absolute;
  top: 18.75rem;
  left: 0.25rem;
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 4.9375rem;
  line-height: 1;
  color: var(--color-brand);
}

.works__item {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 15.5rem;
}

.works__item--detached {
  top: 0.375rem;
  left: 26.25rem;
  width: 25.125rem;
}

.works__item--apartment {
  top: 0.375rem;
  left: 52.375rem;
  width: 36.375rem;
}

.works__item--toilet {
  top: 28.1875rem;
  left: 0.125rem;
  width: 41.875rem;
}

.works__item--bathroom {
  top: 28.1875rem;
  left: 42.9375rem;
  width: 45.8125rem;
}

.works__item--store {
  top: 56.375rem;
  left: 0.125rem;
  width: 25.125rem;
}

.works__item--kitchen {
  top: 56.375rem;
  left: 26.25rem;
  width: 25.125rem;
}

.works__item--wash {
  top: 56.375rem;
  left: 52.375rem;
  width: 36.375rem;
}

.works__image {
  position: relative;
  height: 22.75rem;
  overflow: hidden;
}

.works__detail {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.works__detail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works__detail-text {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  height: 2.0625rem;
  padding: 0.625rem 0.8125rem;
  background-color: var(--color-brand);
  font-family: "A-OTF Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  line-height: 1;
  color: var(--color-white);
}

.works__detail-icon {
  width: 0.4375rem;
  height: 0.75rem;
  display: inline-block;
  background: url("../images/arrow-right.svg") no-repeat center/contain;
  flex: 0 0 0.4375rem;
}

.works__meta {
  display: flex;
  align-items: flex-end;
  gap: 0.875rem;
}

.works__name {
  margin: 0;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text-primary);
}

.works__name-en {
  margin: 0;
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  color: var(--color-brand);
}

.blog {
  position: relative;
  width: 100%;
  height: 57.8125rem;
  margin-left: 0;
  margin-bottom: var(--section-margin);
  background-color: var(--color-bg-main);
  overflow: hidden;
}

.blog__label {
  position: absolute;
  top: 0;
  right: 10%;
  margin: 0;
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 4.9375rem;
  line-height: 1;
  color: var(--color-brand);
}

.blog__bar {
  position: absolute;
  top: 4.375rem;
  left: 0;
  width: 100%;
  height: 11.125rem;
  background-color: var(--color-brand);
}

.blog__heading {
  position: absolute;
  top: 6.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 23.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  align-items: center;
  text-align: center;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  color: var(--color-white);
}

.blog__catch {
  margin: 0;
  width: 100%;
  padding: 0.75rem 1.625rem;
  border-bottom: 0.0625rem solid var(--color-white);
  font-size: 1.375rem;
  line-height: 1;
}

.blog__title {
  margin: 0;
  font-size: 2.125rem;
  line-height: 1;
}

.blog__slider {
  position: absolute;
  top: 16.3125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 78.375rem;
  overflow: hidden;
}

.blog__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
}

.blog__item {
  flex: 0 0 25.125rem;
  width: 25.125rem;
  height: 32.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.blog__image {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.blog__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog__detail {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  height: 2.0625rem;
  padding: 0.625rem 0.8125rem;
  background-color: var(--color-brand);
}

.blog__detail-text {
  font-family: "A-OTF Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  line-height: 1;
  color: var(--color-white);
}

.blog__detail-icon {
  width: 0.4375rem;
  height: 0.75rem;
  display: inline-block;
  background: url("../images/arrow-right.svg") no-repeat center/contain;
  flex: 0 0 0.4375rem;
}

.blog__meta {
  display: flex;
  align-items: flex-end;
  gap: 0.875rem;
}

.blog__name {
  margin: 0;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-black);
}

.blog__date {
  margin: 0;
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-brand);
}

.blog__pager {
  position: absolute;
  top: 50.8125rem;
  left: 50%;
  transform: translateX(-50%);
  height: 2.625rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog__arrow {
  position: relative;
  width: 2.625rem;
  height: 2.625rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.blog__arrow-circle {
  width: 2.7188rem;
  height: 2.7188rem;
  display: block;
}

.blog__arrow-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.413rem;
  height: 1.413rem;
  transform: translate(-50%, -50%) rotate(180deg);
}

.blog__arrow--next .blog__arrow-icon {
  transform: translate(-50%, -50%);
}

.blog__dots {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.blog__dot {
  width: 0.625rem;
  height: 0.625rem;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.blog__dot.is-active {
  opacity: 1;
}

.blog__line {
  position: absolute;
  top: 57.8125rem;
  left: 0;
  width: 100%;
  height: 0;
}

.blog__line img {
  width: 100%;
  height: 0.0625rem;
  display: block;
}

.news-links {
  width: 44.5rem;
  margin: 0 auto 6.5rem;
  background-color: var(--color-bg-main);
}

.news-links__heading {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  align-items: center;
  text-align: center;
}

.news-links__lead {
  margin: 0;
  width: 100%;
  padding: 0.75rem 1.625rem;
  border-bottom: 0.0625rem solid var(--color-black);
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  line-height: 1;
  color: var(--color-black);
}

.news-links__title {
  margin: 0;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 2.125rem;
  line-height: 1;
  color: var(--color-black);
}

.news-links__grid {
  margin-top: 2.875rem;
  display: grid;
  grid-template-columns: repeat(3, 9.75rem);
  column-gap: 2.9355rem;
  row-gap: 2.625rem;
  justify-content: center;
}

.news-links__item {
  width: 9.75rem;
  height: 9.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 0.875rem;
  background-color: var(--color-bg-sub);
  color: var(--color-border-gold);
  text-align: center;
}

.news-links__item:nth-child(2) {
  gap: 0.375rem;
}

.news-links__item:nth-child(3),
.news-links__item:nth-child(4),
.news-links__item:nth-child(5),
.news-links__item:nth-child(6) {
  gap: 0.875rem;
}

.news-links__icon {
  display: block;
}

.news-links__icon--latest {
  width: 3.2773rem;
  height: 3.3888rem;
}

.news-links__icon--staff {
  width: 2.875rem;
  height: 3.375rem;
}

.news-links__icon--diary {
  width: 2.75rem;
  height: 2.75rem;
}

.news-links__icon--event {
  width: 3.3891rem;
  height: 2.6213rem;
}

.news-links__icon--ameblo {
  width: 3.3641rem;
  height: 3.3641rem;
}

.news-links__icon--facebook {
  width: 3.25rem;
  height: 3.25rem;
}

.news-links__text {
  font-family: "A-OTF Midashi Go MB31 Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.412rem;
  line-height: 1.25;
  color: var(--color-border-gold);
}

.news-links__item:nth-child(4) .news-links__text {
  letter-spacing: -0.14rem;
}

.campaign {
  position: relative;
  width: 100%;
  height: 55rem;
  margin-left: 0;
  margin-bottom: var(--section-margin);
  background-color: var(--color-bg-main);
  overflow: hidden;
}

.campaign__label {
  position: absolute;
  top: 0;
  right: 20%;
  margin: 0;
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 4.9375rem;
  line-height: 1;
  color: var(--color-border-gold);
}

.campaign__bar {
  position: absolute;
  top: 4.375rem;
  left: 0;
  width: 100%;
  height: 11.125rem;
  background-color: var(--color-border-gold);
}

.campaign__heading {
  position: absolute;
  top: 6.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 37.625rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  align-items: center;
  text-align: center;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  color: var(--color-white);
}

.campaign__catch {
  margin: 0;
  width: 100%;
  padding: 0.75rem 1.625rem;
  border-bottom: 0.0625rem solid var(--color-white);
  font-size: 1.375rem;
  line-height: 1;
}

.campaign__title {
  margin: 0;
  font-size: 2.125rem;
  line-height: 1;
}

.campaign__slider {
  position: absolute;
  top: 16.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 95.375rem;
  overflow: hidden;
}

.campaign__track {
  display: flex;
  gap: 1.5625rem;
  transition: transform 0.5s ease;
}

.campaign__item {
  width: 30.75rem;
  height: 28.625rem;
  display: flex;
  flex: 0 0 30.75rem;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 0.875rem 1.5rem 0.875rem 0;
  background-color: #836b53;
  text-decoration: none;
  color: inherit;
}

.campaign__item--2 {
  background-color: #a27b54;
}

.campaign__item--3 {
  background-color: #927c73;
}

.campaign__image {
  width: 21.875rem;
  height: 26.875rem;
  margin-left: 0.375rem;
  overflow: hidden;
}

.campaign__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.campaign__info {
  width: 5.875rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--color-white);
}

.campaign__date {
  width: 100%;
  padding: 0.25rem 0 0.5rem;
  border-bottom: 0.0625rem solid var(--color-white);
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.3;
  text-align: center;
}

.campaign__date span {
  display: block;
}

.campaign__vertical {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  gap: 0.625rem;
}

.campaign__vertical-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 1.3125rem;
  line-height: 1;
  text-align: center;
  font-feature-settings: "vert";
}

.campaign__item--3 .campaign__vertical-text {
  font-size: 1.25rem;
}

.campaign__pager {
  position: absolute;
  top: 48.75rem;
  left: 50%;
  transform: translateX(-50%);
  height: 2.625rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.campaign__arrow {
  position: relative;
  width: 2.625rem;
  height: 2.625rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.campaign__arrow-circle {
  width: 2.7188rem;
  height: 2.7188rem;
  display: block;
}

.campaign__arrow-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.413rem;
  height: 1.413rem;
  transform: translate(-50%, -50%) rotate(180deg);
}

.campaign__arrow--next .campaign__arrow-icon {
  transform: translate(-50%, -50%);
}

.campaign__dots {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.campaign__dot {
  width: 0.625rem;
  height: 0.625rem;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.campaign__dot.is-active {
  opacity: 1;
}

.campaign__line {
  position: absolute;
  top: 55rem;
  left: 0;
  width: 100%;
  height: 0;
}

.campaign__line img {
  width: 100%;
  height: 0.0625rem;
  display: block;
}

.extra-links {
  width: 100%;
  max-width: 77.5rem;
  margin: 0 auto 6.5rem;
  background-color: var(--color-bg-main);
}

.extra-links__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.625rem 2.375rem;
  border-top: 0.0625rem solid var(--color-border);
  border-bottom: 0.0625rem solid var(--color-border);
}

.extra-links__label {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.extra-links__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.375rem;
  border-radius: 0.3125rem;
  background-color: var(--color-border-gold);
  font-family: "A-OTF Midashi Go MB31 Pr6N", "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  line-height: 1;
  color: var(--color-white);
}

.extra-links__text {
  font-family: "A-OTF Midashi Go MB31 Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  line-height: 1.375rem;
  color: var(--color-text-primary);
}

.extra-links__icon {
  width: 1.375rem;
  height: 0.9375rem;
}

.site-footer {
  background-color: var(--color-bg-sub);
  padding: 3.75rem 0 4rem;
}

.site-footer__inner {
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  padding: 0 2rem;
}

.site-footer__brand {
  width: 20.3125rem;
  display: flex;
  flex-direction: column;
  gap: 2.0625rem;
}

.site-footer__logo {
  font-family: "A-OTF Ryumin Pr6N", "Noto Serif JP", serif;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-black);
}

.site-footer__logo-text {
  margin: 0;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
}

.site-footer__phone {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.site-footer__phone-icon {
  width: 1.8879rem;
  height: 1.8879rem;
}

.site-footer__phone-number {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 2.6875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-brand);
}

.site-footer__address {
  display: flex;
  flex-direction: column;
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.6875rem;
  color: var(--color-text-secondary);
  font-style: normal;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.site-footer__social img {
  display: block;
}

.site-footer__social a:first-child img {
  width: 1.8981rem;
  height: 1.3288rem;
}

.site-footer__social a:last-child img {
  width: 1.7042rem;
  height: 1.6979rem;
}

.site-footer__copyright {
  display: flex;
  flex-direction: column;
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.site-footer__menu {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.8125rem;
  padding: 1.5rem;
  border-left: 0.0625rem solid var(--color-border);
}

.site-footer__menu--secondary {
  gap: 1.8125rem;
}

.site-footer__menu--tertiary {
  gap: 2.125rem;
  color: var(--color-brand);
}

.site-footer__menu-title {
  margin: 0;
  font-family: "A-OTF Midashi Go MB31 Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-brand);
  white-space: nowrap;
}

.site-footer__menu--secondary .site-footer__menu-title,
.site-footer__menu--tertiary .site-footer__menu-title {
  color: var(--color-brand);
}

.site-footer__menu-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
}

.site-footer__menu-sub {
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-text-secondary);
  padding-left: 0.75rem;
  white-space: nowrap;
}

.site-footer__menu-sublist--cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9375rem 1.5rem;
}

.site-footer__menu-sublist--cats .site-footer__menu-sub::before {
  content: '・';
}

/* SP Menu (hamburger) */
.sp-menu {
  display: none;
}

.site-footer__sp-menu {
  display: none;
}

@media (max-width: 767px) {
  html {
    font-size: 16px;
    overflow-x: clip;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 300;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.0625rem 1rem;
    background-color: rgba(255, 255, 255, 0.95);
  }

  body {
    padding-top: 3.75rem;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__logo {
    padding: 0;
    font-size: 0.75rem;
    color: var(--color-text-primary);
  }

  .site-header__actions {
    display: flex;
    gap: 1.0625rem;
  }

  .site-header__action {
    width: 2.3125rem;
    height: 2.3125rem;
    padding: 0;
    background-color: transparent;
  }

  .site-header__action-icon {
    width: 2.3125rem;
    height: 2.3125rem;
    filter: none;
  }

  .site-header__menu-button {
    display: inline-flex;
  }

  /* SP Menu panel */
  .sp-menu {
    display: none;
    position: fixed;
    top: 4.25rem;
    left: 0;
    width: 100%;
    height: calc(100dvh - 4.25rem);
    background: #fff;
    z-index: 200;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sp-menu.is-open {
    display: block;
  }

  .sp-menu__close {
    display: none;
  }

  /* Hamburger → × animation */
  .site-header__menu-line {
    transition: transform 0.3s, top 0.3s, opacity 0.3s;
  }

  .site-header__menu-button.is-open .site-header__menu-line:nth-child(1) {
    top: 0.875rem;
    transform: rotate(45deg);
  }

  .site-header__menu-button.is-open .site-header__menu-line:nth-child(2) {
    opacity: 0;
  }

  .site-header__menu-button.is-open .site-header__menu-line:nth-child(3) {
    top: 0.875rem;
    transform: rotate(-45deg);
  }

  .sp-menu__nav {
    padding: 0 1rem;
  }

  .sp-menu__section {
    border-bottom: 0.5px solid #d9d9d9;
    padding: 0.3125rem 0;
  }

  .sp-menu__title {
    margin: 0;
    padding: 0.625rem 0.6875rem;
    font-family: "A-OTF Midashi Go MB31 Pr6N", "Noto Sans JP", sans-serif;
    font-size: 1.125rem;
    line-height: 1.22;
    color: var(--color-brand);
  }

  .sp-menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .sp-menu__list-item {
    margin: 0;
  }

  .sp-menu__list-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.6875rem;
    font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
    font-size: 0.8125rem;
    line-height: 1;
    color: var(--color-text-primary);
  }

  .sp-menu__arrow {
    width: 0.3164rem;
    height: 0.5801rem;
    flex-shrink: 0;
  }

  .sp-menu__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1.0625rem 1.375rem;
    padding: 0 0.6875rem 1rem;
  }

  .sp-menu__tag {
    font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
    font-size: 0.9375rem;
    line-height: 1;
    color: var(--color-text-secondary);
  }

  .sp-menu__single {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.25rem;
    padding: 0 0.6875rem;
    border-bottom: 0.5px solid #d9d9d9;
    font-family: "A-OTF Midashi Go MB31 Pr6N", "Noto Sans JP", sans-serif;
    font-size: 1.125rem;
    line-height: 1;
    color: var(--color-brand);
  }

  .sp-menu__bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.0625rem 2rem;
    padding: 0.75rem 0.6875rem;
    border-bottom: 0.5px solid #d9d9d9;
  }

  .sp-menu__bottom-link {
    font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
    font-size: 0.9375rem;
    line-height: 1;
    color: var(--color-text-secondary);
  }

  .sp-menu__sns {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6875rem;
    height: 3.6875rem;
  }

  .sp-menu__sns a {
    display: flex;
    align-items: center;
  }

  .sp-menu__sns img {
    height: 1.5rem;
    width: auto;
  }


  .hero {
    height: auto;
    padding: 0;
  }

  .hero__campaign {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    top: auto;
    right: auto;
    transform: translateX(-50%);
    margin: 0;
    border-width: 0.1875rem;
    border-radius: 2.1286rem;
    padding: 0.7rem 1.5rem;
    gap: 0.6rem;
    z-index: 3;
  }

  .hero__campaign-text {
    font-size: 1rem;
    letter-spacing: -0.06rem;
    line-height: 1.2;
  }

  .hero__vertical-text {
    left: 1rem;
  }

  .hero__title-block {
    left: auto;
    right: 1.5rem;
    top: 0;
    width: 2.05rem;
    height: 22.4rem;
  }

  .hero__title-line {
    font-size: 1.05rem;
  }

  .hero__title-line--top {
    top: 2.05rem;
  }

  .hero__title-line--bottom {
    top: 14.3rem;
  }

  .hero__title-plus {
    top: 11.6rem;
    font-size: 1rem;
    letter-spacing: -0.28rem;
  }

  .hero__title-alpha {
    top: 12.4rem;
    font-size: 1.4rem;
  }

  .hero__quote {
    font-size: 1.82rem;
  }

  .hero__quote--top {
    left: auto;
    right: 11.4rem;
    top: 24.7rem;
  }

  .hero__quote--middle {
    left: auto;
    right: 6.7rem;
    top: 13.25rem;
  }

  .hero__quote--close-top {
    left: auto;
    right: 4.8rem;
    top: 1.1rem;
  }

  .hero__quote--close-middle {
    left: auto;
    right: 9.7rem;
    top: 11.45rem;
  }

  .hero__letter {
    font-size: 3.45rem;
  }

  .hero__letter--mo {
    left: auto;
    right: 5.25rem;
    top: 3.1rem;
  }

  .hero__letter--small {
    left: auto;
    right: 4.6rem;
    top: 6.15rem;
  }

  .hero__letter--to {
    left: auto;
    right: 5.3rem;
    top: 10.15rem;
  }

  .hero__letter--wo {
    left: auto;
    right: 5.15rem;
    top: 14.35rem;
  }

  .hero__letter--zu {
    left: auto;
    right: 9.6rem;
    top: 13.85rem;
  }

  .hero__letter--small2 {
    left: auto;
    right: 8.9rem;
    top: 17rem;
  }

  .hero__letter--to2 {
    left: auto;
    right: 9.45rem;
    top: 20.9rem;
  }

  .hero__letter--period {
    left: auto;
    right: 11.8rem;
    top: 24.6rem;
    transform: translateX(90%);
  }

  .hero__image {
    position: relative;
    top: 5.125rem;
    height: 38.5rem;
  }

  .intro {
    padding: 3rem 1rem;
  }

  .intro__text {
    font-size: 1rem;
    line-height: 2;
  }

  .reasons {
    flex-direction: column;
    height: auto;
    margin-bottom: 3.5rem;
    padding: 0;
  }

  .reasons__label {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    padding: 0 1rem;
    margin-bottom: -0.8rem;
  }

  .reasons__label-text {
    transform: none;
    font-size: 3.8125rem;
    color: var(--color-bg-sub);
  }

  .reasons__panel {
    position: static;
    width: 100%;
    height: auto;
    padding: 3.25rem 2.25rem 3.5rem;
    background-color: var(--color-bg-sub);
  }

  .reasons__heading {
    position: static;
    width: 100%;
    margin-bottom: 2.3125rem;
    gap: 0.5rem;
  }

  .reasons__list {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 2.3125rem;
    padding: 0;
  }

  .reasons__item {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 1.3125rem;
    text-align: left;
  }

  .reasons__icon {
    width: 3.6rem;
    height: 3.6rem;
    object-fit: contain;
  }

  .reasons__text {
    font-size: 1rem;
    line-height: 1.5;
  }


  .sale {
    height: auto;
    margin-bottom: 3.5rem;
    padding-top: 0;
  }

  .sale__label {
    position: static;
    margin: 0 0 -0.5rem 1rem;
    font-size: 3.8125rem;
    color: var(--color-bg-sub);
  }

  .sale__panel {
    position: static;
    height: auto;
    padding: 3.4375rem 1.25rem 1.5625rem;
    background-color: var(--color-bg-sub);
  }

  .sale__image {
    position: static;
    width: 15.875rem;
    height: 15.875rem;
    margin: 0 auto 2.4375rem;
    transform: none;
  }

  .sale__content {
    position: static;
    width: 100%;
    transform: none;
  }

  .sale__title {
    font-size: 1.5625rem;
  }

  .sale__lead {
    font-size: 1rem;
    line-height: 2;
  }

  .sale__button {
    width: 100%;
    padding: 0.9375rem 1rem;
    justify-content: center;
  }

  .recommend {
    height: auto;
    margin-bottom: 3.5rem;
    padding: 0 1rem 1rem;
  }

  .recommend__card {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .recommend__image {
    width: 100%;
    height: 12.5rem;
  }

  .recommend__content {
    width: 100%;
  }

  .recommend__title,
  .recommend__button-text {
    white-space: nowrap;
  }

  .recommend__title {
    font-size: 1.3125rem;
  }

  .recommend__button {
    width: 100%;
  }

  .recommend__badge {
    left: auto;
    right: 1rem;
  }

  .recommend__line {
    position: static;
  }

  .works {
    position: static;
    width: 100%;
    height: auto;
    margin: 0 0 3.5rem;
    padding: 0 1rem;
  }

  .works__intro {
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
  }

  .works__lead {
    order: 1;
  }

  .works__line {
    position: static;
    width: 100%;
    margin: 0.75rem 0 1rem;
    order: 2;
  }

  .works__title,
  .works__label {
    position: static;
  }

  .works__title {
    order: 3;
  }

  .works__label {
    font-size: 3rem;
    margin-top: 0.25rem;
    order: 0;
  }

  .works__item {
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: 1.75rem;
  }

  .works__item .works__image {
    height: 29.25rem;
  }

  .works__item--apartment .works__image img {
    inset: auto;
    width: 195.21%;
    height: 100%;
    left: -47.61%;
    top: 0;
    object-fit: none;
    max-width: none;
    max-height: none;
  }

  .works__item--toilet .works__image img {
    inset: auto;
    width: 218.26%;
    height: 100%;
    left: -98.74%;
    top: 0;
    object-fit: none;
    max-width: none;
    max-height: none;
  }

  .works__item--kitchen .works__image img {
    inset: auto;
    width: 151.6%;
    height: 111.62%;
    left: -33.05%;
    top: -9.03%;
    object-fit: none;
    max-width: none;
    max-height: none;
  }

  .blog__image {
    position: relative;
    height: 12.5rem;
    min-height: 12.5rem;
    flex: none;
  }

  .blog__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .campaign__vertical-text {
    font-size: 1rem;
    text-align: start;
  }

  .works__meta {
    gap: 0.5rem;
  }

  .works__name {
    font-size: 1.25rem;
  }

  .blog {
    height: auto;
    margin-bottom: 3.5rem;
    padding: 2.5rem 0 2.5rem;
  }

  .blog__label {
    position: static;
    margin: 0 1rem -0.5rem;
    font-size: 3rem;
  }

  .blog__bar {
    position: static;
    height: 8rem;
  }

  .blog__heading {
    position: relative;
    left: auto;
    top: auto;
    z-index: 1;
    transform: none;
    width: calc(100% - 2rem);
    margin: -6.5rem auto 1.5rem;
    gap: 1rem;
  }

  .blog__catch {
    font-size: 1.125rem;
  }

  .blog__title {
    font-size: 1.5rem;
  }

  .blog__slider {
    position: static;
    transform: none;
    width: 100%;
    padding: 0 1rem;
  }

  .blog__track {
    gap: 1rem;
  }

  .blog__item {
    flex: 0 0 75%;
    width: 75%;
    height: auto;
  }

  .blog__image {
    height: 12.5rem;
  }

  .blog__meta {
    gap: 0.5rem;
  }

  .blog__name {
    font-size: 1.25rem;
  }

  .blog__date {
    font-size: 0.875rem;
  }

  .blog__pager {
    position: static;
    transform: none;
    margin: 1.5rem auto 0;
    justify-content: center;
  }

  .blog__line {
    position: static;
    margin-top: 2rem;
  }

  .news-links {
    width: 100%;
    margin: 0 auto 3.5rem;
    padding: 0 1rem;
  }

  .news-links__lead {
    font-size: 1.125rem;
  }

  .news-links__title {
    font-size: 1.5rem;
  }

  .news-links__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 1rem;
  }

  .news-links__item {
    width: 100%;
    height: auto;
    padding: 1rem;
  }

  .news-links__text {
    font-size: 1.1rem;
  }

  .campaign {
    height: auto;
    margin-bottom: 3.5rem;
    padding: 2.5rem 0;
  }

  .campaign__label {
    position: static;
    margin: 0 1rem 0.5rem;
    font-size: 3rem;
  }

  .campaign__bar {
    position: static;
    height: 8rem;
  }

  .campaign__heading {
    position: relative;
    left: auto;
    top: auto;
    z-index: 1;
    transform: none;
    width: calc(100% - 2rem);
    margin: -6.5rem auto 1.5rem;
    gap: 1rem;
  }

  .campaign__catch {
    font-size: 1.125rem;
  }

  .campaign__title {
    font-size: 1.5rem;
  }

  .campaign__slider {
    position: static;
    transform: none;
    width: 100%;
    padding: 0 1rem;
  }

  .campaign__track {
    gap: 1rem;
  }

  .campaign__item {
    width: 85%;
    height: 25rem;
    flex: 0 0 85%;
    padding: 0.75rem;
    overflow: hidden;
  }

  .campaign__image {
    width: 65%;
    height: 14rem;
    margin-left: 0;
  }

  .campaign__info {
    width: 35%;
  }

  .campaign__pager {
    position: static;
    transform: none;
    margin: 1.5rem auto 0;
    justify-content: center;
  }

  .campaign__line {
    position: static;
    margin-top: 2rem;
  }

  .extra-links {
    margin: 0 auto 3.5rem;
    padding: 0 1rem;
  }

  .extra-links__item {
    padding: 1.5rem 1rem;
  }

  .extra-links__text {
    font-size: 1.125rem;
  }

  .site-footer {
    padding: 3.75rem 0;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 0 0 1rem;
  }

  .site-footer__brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .site-footer__logo {
    font-size: 1.1875rem;
    margin-bottom: 1.75rem;
    order: -2;
  }

  .site-footer__sp-menu {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    margin-bottom: 2.5rem;
    order: -1;
  }

  .site-footer__sp-sns {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0.375rem;
  }

  .site-footer__sp-sns-label {
    font-family: "A-OTF Midashi Go MB31 Pr6N", "Noto Sans JP", sans-serif;
    font-size: 1.125rem;
    line-height: 1;
    color: var(--color-brand);
  }

  .site-footer__sp-sns img {
    display: block;
  }

  .site-footer__sp-sns a:first-of-type img {
    width: 1.8981rem;
    height: 1.3288rem;
  }

  .site-footer__sp-sns a:last-of-type img {
    width: 1.7042rem;
    height: 1.6979rem;
  }

  .site-footer__sp-menu-link {
    font-family: "A-OTF Midashi Go MB31 Pr6N", "Noto Sans JP", sans-serif;
    font-size: 1.125rem;
    line-height: 1;
    color: var(--color-brand);
  }

  .site-footer__contact {
    margin-bottom: 1.75rem;
  }

  .site-footer__phone-number {
    font-size: 2.6875rem;
  }

  .site-footer__address {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }

  .site-footer__social {
    display: none;
  }

  .site-footer__menu {
    display: none;
  }

  .site-footer__copyright {
    font-size: 0.625rem;
    display: inline;
  }

  .site-footer__copyright span {
    display: inline;
  }
}

/* News Page */
.news-page {
  background-color: var(--color-bg-main);
}

.news-page__title-stripe {
  padding: 4rem 0 0 17rem;
  background-color: var(--color-bg-sub);
  background-image: repeating-linear-gradient(
    -45deg,
    #fff,
    #fff 8px,
    rgba(200, 190, 175, 0.3) 8px,
    rgba(200, 190, 175, 0.3) 15px
  );
  border-bottom: 3px solid var(--color-brand);
  margin-bottom: 5.4375rem;
}

.news-page__title {
  margin: 0;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 2.125rem;
  line-height: 1;
  color: var(--color-black);
}

.news-page__title-en {
  margin: 1.5rem 0 -0.15em;
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 4.9375rem;
  line-height: 1;
  color: var(--color-brand);
}

.news-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.4375rem;
  padding: 0 16.875rem 6.5rem;
}

.news-page__list {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 0.0625rem solid var(--color-border);
}

.news-page__item {
  border-top: 0.0625rem solid var(--color-border);
}

.news-page__link {
  display: flex;
  align-items: center;
  gap: 6.875rem;
  height: 4.375rem;
  padding: 0.8125rem 0.5rem;
  transition: background-color 0.2s;
}

.news-page__link:hover {
  background-color: var(--color-bg-sub);
}

.news-page__date {
  flex-shrink: 0;
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.45;
  color: var(--color-text-secondary);
}

.news-page__text {
  flex: 1;
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.45;
  color: var(--color-text-secondary);
}

.news-page__new-icon {
  flex-shrink: 0;
  width: 2.125rem;
  height: 2.125rem;
}

.news-page__pager {
  display: flex;
  align-items: center;
  gap: 1.1875rem;
}

.news-page__arrow {
  position: relative;
  width: 2.625rem;
  height: 2.625rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.news-page__arrow-circle {
  width: 2.625rem;
  height: 2.625rem;
  display: block;
}

.news-page__arrow-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.413rem;
  height: 1.413rem;
  transform: translate(-50%, -50%) rotate(180deg);
}

.news-page__arrow--next .news-page__arrow-icon {
  transform: translate(-50%, -50%);
}

.news-page__dots {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.news-page__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: var(--color-border);
}

.news-page__dot--active {
  background-color: var(--color-brand);
}

@media (max-width: 767px) {
  .news-page__title-stripe {
    padding: 2rem 1rem 0;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .news-page__title {
    padding-top: 0;
    font-size: 1.5rem;
  }

  .news-page__title-en {
    font-size: 3rem;
    margin-bottom: -0.15em;
  }

  .news-page__content {
    padding: 0 1rem 3rem;
    gap: 2rem;
  }

  .news-page__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    height: auto;
    padding: 1rem 0.5rem;
  }

  .news-page__date {
    font-size: 0.875rem;
  }

  .news-page__text {
    font-size: 0.9375rem;
  }

  .news-page__new-icon {
    width: 1.75rem;
    height: 1.75rem;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .news-page__item {
    position: relative;
  }

  .news-page__item:has(.news-page__new-icon) .news-page__link {
    padding-right: 2.5rem;
  }
}

/* News Detail Page */
.news-detail {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 4rem 1rem 6rem;
}

.news-detail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.6875rem;
  border-bottom: 0.0625rem solid var(--color-brand);
  margin-bottom: 2.5rem;
}

.news-detail__title {
  margin: 0;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-brand);
}

.news-detail__date {
  flex-shrink: 0;
  padding: 0.4375rem 1.625rem;
  background-color: var(--color-brand);
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-white);
}

.news-detail__content {
  margin-bottom: 5rem;
}

.news-detail__content p {
  margin: 0;
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-black);
}

.news-detail__figure {
  margin: 1.25rem 0;
}

.news-detail__image {
  width: 100%;
  height: auto;
  display: block;
}

.news-detail__images-row {
  display: flex;
  gap: 1.25rem;
  margin: 1.25rem 0;
}

.news-detail__figure--half {
  flex: 1;
  margin: 0;
}

.news-detail__nav {
  display: flex;
  border-top: 0.0625rem solid var(--color-border);
  margin-bottom: 5.25rem;
}

.news-detail__nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 2.1875rem 1rem 1.5625rem;
  text-align: center;
  transition: background-color 0.2s;
}

.news-detail__nav-item:hover {
  background-color: var(--color-bg-sub);
}

.news-detail__nav-item--prev {
  border-right: 0.0625rem solid var(--color-border);
}

.news-detail__nav-label {
  font-family: "A-OTF Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--color-black);
}

.news-detail__nav-title {
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #8c6239;
}

.news-detail__back {
  display: flex;
  justify-content: center;
}

.news-detail__back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.9375rem 5.4375rem;
  background-color: var(--color-brand);
  transition: opacity 0.2s;
}

.news-detail__back-button:hover {
  opacity: 0.8;
}

.news-detail__back-icon {
  width: 0.4375rem;
  height: 0.75rem;
}

.news-detail__back-text {
  font-family: "A-OTF Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-white);
}

@media (max-width: 767px) {
  .news-detail {
    padding: 2rem 1rem 3rem;
  }

  .news-detail__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .news-detail__title {
    font-size: 1.25rem;
  }

  .news-detail__date {
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
  }

  .news-detail__content {
    margin-bottom: 3rem;
  }

  .news-detail__content p {
    font-size: 0.9375rem;
  }

  .news-detail__images-row {
    flex-direction: column;
  }

  .news-detail__nav {
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .news-detail__nav-item {
    padding: 1.5rem 1rem;
  }

  .news-detail__nav-item--prev {
    border-right: none;
    border-bottom: 0.0625rem solid var(--color-border);
  }

  .news-detail__nav-label {
    font-size: 1rem;
  }

  .news-detail__nav-title {
    font-size: 0.9375rem;
  }

  .news-detail__back-button {
    width: 100%;
    padding: 0.9375rem 1rem;
  }
}

/* Voice Page (お客様の声) */
.voice-hero {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 0 3rem calc((100% - 66.25rem) / 2 + 1rem);
}

.voice-hero__text {
  flex-shrink: 0;
  width: 24.78rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 21.0625rem;
}

.voice-hero__lead {
  margin: 0 0 2.5rem;
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  line-height: 1.75;
  color: var(--color-black);
  padding-bottom: 0.6875rem;
  border-bottom: 1px solid var(--color-black);
}

.voice-hero__title {
  margin: 0;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-black);
}

.voice-hero__label {
  margin: 0;
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 4.9375rem;
  line-height: 1;
  color: var(--color-brand);
}

.voice-hero__image {
  flex-shrink: 0;
  width: 62.5rem;
  max-width: 62.5rem;
}

.voice-hero__image img {
  width: 100%;
  height: 22.75rem;
  object-fit: cover;
}

.voice-line {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  margin-bottom: 5.6875rem;
}

.voice-list {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 1rem 5rem;
}

.voice-card {
  margin-bottom: 5.4375rem;
}

.voice-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.6875rem;
  border-bottom: 1px solid var(--color-brand);
}

.voice-card__title {
  margin: 0;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-brand);
}

.voice-card__location {
  flex-shrink: 0;
  padding: 0.4375rem 1.625rem;
  background-color: var(--color-brand);
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-white);
}

.voice-card__body {
  display: flex;
  gap: 2.375rem;
  padding-top: 0;
}

.voice-card__qa {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.voice-card__qa-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  padding: 1.3125rem 0;
  border-bottom: 1px dashed var(--color-border);
}

.voice-card__question {
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-black);
}

.voice-card__answer {
  margin: 0;
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-accent);
}

.voice-card__survey {
  flex-shrink: 0;
  width: 28rem;
  padding-top: 1.25rem;
}

.voice-card__survey img {
  width: 100%;
  height: auto;
  display: block;
}

.voice-list__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1875rem;
  margin-top: 2rem;
}

.voice-list__arrow {
  position: relative;
  width: 2.625rem;
  height: 2.625rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.voice-list__arrow-circle {
  width: 2.625rem;
  height: 2.625rem;
  display: block;
}

.voice-list__arrow-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.413rem;
  height: 1.413rem;
  transform: translate(-50%, -50%) rotate(180deg);
}

.voice-list__arrow--next .voice-list__arrow-icon {
  transform: translate(-50%, -50%);
}

.voice-list__dots {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.voice-list__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: var(--color-border);
}

.voice-list__dot--active {
  background-color: var(--color-brand);
}

@media (max-width: 767px) {
  .voice-hero {
    flex-direction: column;
    padding: 0;
  }

  .voice-hero__text {
    order: 2;
    width: 100%;
    height: auto;
    padding: 1.5rem 1rem 2rem;
  }

  .voice-hero__lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .voice-hero__title {
    font-size: 1.5rem;
  }

  .voice-hero__label {
    font-size: 3rem;
  }

  .voice-hero__image {
    order: 1;
    width: 100%;
    max-width: none;
  }

  .voice-hero__image img {
    height: 15rem;
  }

  .voice-line {
    margin-bottom: 2rem;
  }

  .voice-list {
    padding: 0 1rem 3rem;
  }

  .voice-card {
    margin-bottom: 2rem;
  }

  .voice-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .voice-card__title {
    font-size: 1.125rem;
  }

  .voice-card__location {
    font-size: 0.875rem;
  }

  .voice-card__body {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
  }

  .voice-card__qa-item {
    padding: 1rem 0;
  }

  .voice-card__question {
    font-size: 0.9375rem;
  }

  .voice-card__answer {
    font-size: 0.9375rem;
  }

  .voice-card__survey {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }
}

/* ========================================
   Works Page - 施工事例一覧
   ======================================== */

.works-hero {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 0 3rem calc((100% - 66.25rem) / 2 + 1rem);
}

.works-hero__text {
  flex-shrink: 0;
  width: 24.78rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 21.0625rem;
}

.works-hero__lead {
  margin: 0 0 2.5rem;
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  line-height: 1.75;
  color: var(--color-black);
  padding-bottom: 0.6875rem;
  border-bottom: 1px solid var(--color-black);
}

.works-hero__title {
  margin: 0;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-black);
}

.works-hero__label {
  margin: 0;
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 4.9375rem;
  line-height: 1;
  color: var(--color-brand);
}

.works-hero__image {
  flex-shrink: 0;
  width: 62.5rem;
  max-width: 62.5rem;
}

.works-hero__image img {
  width: 100%;
  height: 22.75rem;
  object-fit: cover;
}

.works-category {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 2.625rem 1rem 0;
}

.works-category__lead {
  margin: 0 0 2rem;
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  line-height: 1.75;
  color: var(--color-black);
}

.works-category__icons {
  display: flex;
  gap: 1.875rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.works-category__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 6.5rem;
  height: 6.5rem;
  padding: 0.75rem 0.5rem;
  background-color: var(--color-bg-sub);
  text-decoration: none;
  transition: border 0.2s ease, filter 0.2s ease;
  border: 1px solid transparent;
}

.works-category__icon img {
  filter: brightness(1.7) saturate(0.7) contrast(0.85);
  transition: filter 0.2s ease;
}

.works-category__icon:hover,
.works-category__icon--active {
  border: 1px solid var(--color-brand);
}

.works-category__icon:hover img,
.works-category__icon--active img {
  filter: none;
}

.works-category__icon img {
  width: 3.125rem;
  height: 3.125rem;
  object-fit: contain;
}

.works-category__icon span {
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--color-brand);
  text-align: center;
}

.works-line {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  margin: 4rem 0;
}

.works-list {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 1rem 5rem;
}

.works-list__title {
  margin: 0 0 2.5rem;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-black);
  text-align: center;
}

.works-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.25rem;
}

.works-card {
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
  text-decoration: none;
  color: inherit;
}

.works-card__image {
  position: relative;
  width: 100%;
  height: 22.75rem;
  overflow: hidden;
}

.works-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.works-card:hover .works-card__image img {
  transform: scale(1.15);
}

.works-card__detail {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.625rem 0.8125rem;
  background-color: var(--color-brand);
  text-decoration: none;
}

.works-card__detail-text {
  font-family: "A-OTF Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  line-height: 1;
  color: var(--color-white);
}

.works-card__detail-icon {
  width: 0.4375rem;
  height: 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 12' fill='none'%3E%3Cpath d='M1 1L6 6L1 11' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.works-card__title {
  margin: 0;
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1.1875rem;
  line-height: 1.75;
  color: var(--color-black);
}

@media (max-width: 767px) {
  .works-hero {
    flex-direction: column;
    padding: 0;
  }

  .works-hero__text {
    order: 2;
    width: 100%;
    height: auto;
    padding: 1.5rem 1rem 2rem;
  }

  .works-hero__lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .works-hero__title {
    font-size: 1.5rem;
  }

  .works-hero__label {
    font-size: 3rem;
  }

  .works-hero__image {
    order: 1;
    width: 100%;
    max-width: none;
  }

  .works-hero__image img {
    height: 15rem;
  }

  .works-category {
    padding: 1.5rem 1rem 0;
  }

  .works-category__lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .works-category__icons {
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }

  .works-category__icon {
    width: calc((100% - 1.5rem) / 3);
    height: auto;
    aspect-ratio: 1;
  }

  .works-category__icon img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .works-category__icon span {
    font-size: 0.625rem;
  }

  .works-line {
    margin: 2rem 0;
  }

  .works-list {
    padding: 0 1rem 3rem;
  }

  .works-list__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .works-list__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .works-card__image {
    height: 15rem;
  }

  .works-card__title {
    font-size: 1rem;
  }
}

/* Archive Pagination (shared) */
.archive-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3.5rem;
}

.archive-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.archive-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  border: 1px solid var(--color-border);
  transition: background-color 0.2s, color 0.2s;
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background-color: var(--color-brand);
  color: #fff;
  border-color: var(--color-brand);
}

.archive-pagination .page-numbers.dots {
  border: none;
  pointer-events: none;
}

.archive-pagination .page-numbers.prev,
.archive-pagination .page-numbers.next {
  font-size: 1rem;
}

/* Works Detail Page */
.works-detail-header {
  padding: 3rem 0 2rem;
}

.works-detail-header__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: flex-start;
  gap: 2.25rem;
}

.works-detail-header__icon {
  width: 6.5rem;
  height: 6.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-sub);
  border: 1px solid var(--color-brand);
}

.works-detail-header__icon img {
  width: 3.125rem;
  height: 3.125rem;
  object-fit: contain;
}

.works-detail-header__text {
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
  padding-top: 0.5rem;
}

.works-detail-header__title {
  margin: 0;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-black);
}

.works-detail-header__subtitle {
  margin: 0;
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-black);
}

.works-detail-content {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}

.works-detail-gallery {
  margin-bottom: 3rem;
}

.works-detail-gallery__main {
  width: 100%;
  height: 28rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.works-detail-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-detail-gallery__thumbs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.works-detail-gallery__thumb {
  width: 6rem;
  height: 4rem;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.works-detail-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-detail-gallery__thumb:hover,
.works-detail-gallery__thumb--active {
  border-color: var(--color-brand);
}

.works-detail-specs {
  margin-bottom: 3rem;
}

.works-detail-specs__table {
  width: 100%;
  border-collapse: collapse;
}

.works-detail-specs__table th,
.works-detail-specs__table td {
  padding: 0.5rem 1.4375rem;
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  text-align: left;
  vertical-align: top;
}

.works-detail-specs__table th {
  width: 8rem;
  white-space: nowrap;
  font-family: "A-OTF Midashi Go MB31 Pr6N", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: var(--color-black);
  border-right: 1px dashed var(--color-border);
}

.works-detail-specs__table td {
  color: var(--color-black);
}

.works-detail-accordion {
  margin-bottom: 3rem;
}

.works-detail-accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.works-detail-accordion__item:first-child {
  border-top: 1px solid var(--color-border);
}

.works-detail-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1rem;
  cursor: pointer;
  list-style: none;
}

.works-detail-accordion__header::-webkit-details-marker {
  display: none;
}

.works-detail-accordion__title {
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-brand);
}

.works-detail-accordion__icon {
  width: 1rem;
  height: 1rem;
  position: relative;
  transition: transform 0.2s ease;
}

.works-detail-accordion__icon::before,
.works-detail-accordion__icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-brand);
}

.works-detail-accordion__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.works-detail-accordion__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  transition: transform 0.2s ease;
}

.works-detail-accordion__item[open] .works-detail-accordion__icon::after {
  transform: translateX(-50%) scaleY(0);
}

.works-detail-accordion__body {
  padding: 0 1rem 1.5rem;
}

.works-detail-accordion__body p {
  margin: 0;
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-primary);
}

.works-detail-nav {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.works-detail-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  width: 50%;
  padding: 2.1875rem 1rem 1.5625rem;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s ease;
}

.works-detail-nav__link--prev {
  border-right: 1px solid var(--color-border);
}

.works-detail-nav__link:hover {
  opacity: 0.7;
}

.works-detail-nav__label {
  font-family: "A-OTF Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--color-black);
}

.works-detail-nav__title {
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #8c6239;
}

.works-detail-back {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 3rem 1rem 5rem;
  display: flex;
  justify-content: center;
}

.works-detail-back__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 3rem;
  background-color: var(--color-brand);
  border: none;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.works-detail-back__button:hover {
  opacity: 0.85;
}

.works-detail-back__icon {
  width: 0.5rem;
  height: 0.875rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 14' fill='none'%3E%3Cpath d='M7 1L1 7L7 13' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.works-detail-back__text {
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-white);
}

/* Works Detail SP Responsive */
@media (max-width: 767px) {
  .works-detail-header {
    padding: 1.5rem 0;
  }

  .works-detail-header__inner {
    gap: 1rem;
  }

  .works-detail-header__icon {
    width: 4rem;
    height: 4rem;
  }

  .works-detail-header__icon img {
    width: 2rem;
    height: 2rem;
  }

  .works-detail-header__text {
    gap: 0.5rem;
    padding-top: 0;
  }

  .works-detail-header__title {
    font-size: 1.25rem;
  }

  .works-detail-header__subtitle {
    font-size: 1rem;
  }

  .works-detail-content {
    padding: 2rem 1rem 3rem;
  }

  .works-detail-gallery {
    margin-bottom: 2rem;
  }

  .works-detail-gallery__main {
    height: 15rem;
  }

  .works-detail-gallery__thumbs {
    gap: 0.5rem;
  }

  .works-detail-gallery__thumb {
    width: calc((100% - 2rem) / 5);
    height: auto;
    aspect-ratio: 1.5;
  }

  .works-detail-specs {
    margin-bottom: 2rem;
  }

  .works-detail-specs__table th,
  .works-detail-specs__table td {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
  }

  .works-detail-specs__table th {
    border-right: none;
    padding-bottom: 0.25rem;
  }

  .works-detail-specs__table td {
    padding-top: 0.25rem;
    border-bottom: 1px solid var(--color-border);
  }

  .works-detail-accordion {
    margin-bottom: 2rem;
  }

  .works-detail-accordion__header {
    padding: 1rem;
  }

  .works-detail-accordion__title {
    font-size: 1rem;
  }

  .works-detail-accordion__body {
    padding: 0 1rem 1.25rem;
  }

  .works-detail-accordion__body p {
    font-size: 0.9375rem;
  }

  .works-detail-nav__link {
    padding: 1.5rem 0.5rem 1rem;
  }

  .works-detail-nav__label {
    font-size: 0.875rem;
  }

  .works-detail-nav__title {
    font-size: 0.875rem;
  }

  .works-detail-back {
    padding: 2rem 1rem 4rem;
  }

  .works-detail-back__button {
    padding: 0.875rem 2rem;
  }

  .works-detail-back__text {
    font-size: 0.875rem;
  }
}

/* Page Title with Stripe */
.page-title-stripe {
  position: relative;
  padding: 3.5rem 0 0;
  border-bottom: 1px solid var(--color-brand);
  background: repeating-linear-gradient(
    -45deg,
    #ffffff,
    #ffffff 10px,
    #f6f4f1 10px,
    #f6f4f1 20px
  );
}

.page-title-stripe__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 1rem 0;
}

.page-title-stripe__title {
  margin: 0;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-black);
}

.page-title-stripe__label {
  margin: 0;
  padding: 1rem 0 0;
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 4.9375rem;
  font-weight: 500;
  line-height: 0.81;
  color: var(--color-brand);
}

/* Contact Page */
.contact {
  padding: 3.5rem 0 5rem;
}

.contact__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.contact__notice {
  background-color: var(--color-brand);
  padding: 1.875rem 3.125rem;
  margin-bottom: 3rem;
}

.contact__notice p {
  margin: 0;
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-white);
}

.contact__notice p + p {
  margin-top: 0.5625rem;
}

/* Contact Form */
.contact-form {
  max-width: 55rem;
  margin: 0 auto 4rem;
}

.contact-form__row {
  display: flex;
  align-items: center;
  gap: 1.8125rem;
  margin-bottom: 1.8125rem;
}

.contact-form__row--textarea {
  align-items: flex-start;
}

.contact-form__label {
  width: 8rem;
  flex-shrink: 0;
  font-family: "A-OTF Midashi Go MB31 Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  line-height: 1.45;
  color: var(--color-black);
  text-align: right;
}

.contact-form__required {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.125rem 0.625rem;
  background-color: var(--color-accent);
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--color-white);
}

.contact-form__optional {
  flex-shrink: 0;
  width: 2.75rem;
}

.contact-form__input {
  flex: 1;
  padding: 0.625rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--color-text-primary);
}

.contact-form__input::placeholder {
  color: var(--color-border);
}

.contact-form__textarea {
  flex: 1;
  padding: 0.625rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--color-text-primary);
  resize: vertical;
}

.contact-form__row--radio {
  gap: 1.8125rem;
}

.contact-form__radio-group {
  display: flex;
  align-items: center;
  gap: 1.8125rem;
}

.contact-form__radio {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  cursor: pointer;
}

.contact-form__radio input {
  display: none;
}

.contact-form__radio-mark {
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background-color: var(--color-bg-main);
  position: relative;
}

.contact-form__radio input:checked + .contact-form__radio-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: var(--color-brand);
}

.contact-form__radio-text {
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.45;
  color: var(--color-black);
}

.contact-form__submit {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.contact-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.9375rem 5.4375rem;
  background-color: var(--color-brand);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.contact-form__button:hover {
  opacity: 0.85;
}

.contact-form__button-icon {
  width: 0.4375rem;
  height: 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 12' fill='none'%3E%3Cpath d='M1 1L6 6L1 11' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.contact-form__button-text {
  font-family: "A-OTF Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-white);
}

/* Contact Phone Section */
.contact__phone {
  text-align: center;
  padding-top: 2rem;
}

.contact__phone-lead {
  margin: 0 0 0.75rem;
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  line-height: 1;
  color: var(--color-black);
}

.contact__phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5625rem;
  margin-bottom: 0.75rem;
}

.contact__phone-icon {
  width: 2.8125rem;
  height: 2.8125rem;
}

.contact__phone-number span {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-brand);
}

.contact__phone-hours {
  margin: 0;
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--color-brand);
}

/* CF7 Compatibility */
.contact__inner > p:empty {
  display: none;
}

.contact-form__row > p {
  display: flex;
  align-items: center;
  gap: 1.8125rem;
  width: 100%;
  margin: 0;
}

.contact-form__row--textarea > p {
  align-items: flex-start;
}

.contact-form__row br {
  display: none;
}

.contact-form__row .wpcf7-form-control-wrap {
  flex: 1;
}

.contact-form__row .wpcf7-form-control-wrap .contact-form__input,
.contact-form__row .wpcf7-form-control-wrap .contact-form__textarea {
  width: 100%;
  box-sizing: border-box;
}

.contact-form__row--radio > p {
  width: auto;
  flex-shrink: 0;
}

.contact-form__radio-group > p {
  margin: 0;
}

.contact-form__radio-group .wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 1.8125rem;
}

.contact-form__radio-group .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  line-height: 1.45;
}

.contact-form__submit > p {
  margin: 0;
}

input.contact-form__button {
  cursor: pointer;
}

/* Contact SP Responsive */
@media (max-width: 767px) {
  .page-title-stripe {
    padding: 2rem 0 0;
  }

  .page-title-stripe__title {
    font-size: 1.5rem;
  }

  .page-title-stripe__label {
    font-size: 2.5rem;
  }

  .contact {
    padding: 2rem 0 3rem;
  }

  .contact__notice {
    padding: 1.25rem 1rem;
    margin-bottom: 2rem;
  }

  .contact__notice p {
    font-size: 0.875rem;
  }

  .contact-form {
    margin-bottom: 3rem;
  }

  .contact-form__row {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .contact-form__row > p {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .contact-form__label {
    width: auto;
    text-align: left;
    font-size: 1rem;
  }

  .contact-form__required {
    font-size: 0.875rem;
    padding: 0.0625rem 0.5rem;
  }

  .contact-form__input,
  .contact-form__textarea {
    width: 100%;
    flex: none;
  }

  .contact-form__row .wpcf7-form-control-wrap {
    width: 100%;
    flex: none;
  }

  .contact-form__radio-group {
    width: 100%;
    gap: 1.5rem;
  }

  .contact-form__submit {
    margin-top: 2rem;
  }

  .contact-form__button {
    padding: 0.875rem 2rem;
    width: 100%;
  }

  .contact__phone-lead {
    font-size: 0.8125rem;
    white-space: nowrap;
  }

  .contact__phone-number span {
    font-size: 2.5rem;
  }

  .contact__phone-icon {
    width: 2rem;
    height: 2rem;
  }

  .contact__phone-hours {
    font-size: 0.9375rem;
  }
}

/* ========================================
   Blog Page - お知らせ・ブログ一覧
   ======================================== */

.blog-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 0 4rem calc((100vw - 66.25rem) / 2 + 1rem);
}

.blog-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6.25rem;
  width: 100%;
  height: calc(100% - 6.25rem);
  background-color: var(--color-brand);
  z-index: 0;
}

.blog-hero__text {
  position: relative;
  flex-shrink: 0;
  width: 24.78rem;
  display: flex;
  flex-direction: column;
  height: 22.7rem;
  justify-content: flex-end;
  z-index: 1;
}

.blog-hero__lead {
  margin: 0;
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  line-height: 1.75;
  color: #FFFFFF;
  padding-bottom: 0.6875rem;
  border-bottom: 1px solid #FFFFFF;
}

.blog-hero__title {
  margin: 1rem 0 3rem 0;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-white);

}

.blog-hero__label {
  margin: 0;
  font-family: "A-OTF UD Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 4.9375rem;
  line-height: 1;
  color: var(--color-white);
}

.blog-hero__image {
  position: relative;
  flex-shrink: 0;
  width: 62.5rem;
  max-width: calc(100vw - 24.78rem - 1.5rem - ((100vw - 66.25rem) / 2 + 1rem));
  z-index: 1;
}

.blog-hero__image img {
  width: 100%;
  height: 22.75rem;
  object-fit: cover;
}

/* Blog Category */
.blog-category {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 2.625rem 1rem 0;
}

.blog-category__lead {
  margin: 0 0 2rem;
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  line-height: 1.75;
  color: var(--color-black);
}

.blog-category__icons {
  display: flex;
  gap: 1.875rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.blog-category__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 6.5rem;
  height: 6.5rem;
  padding: 0.75rem 0.5rem;
  background-color: var(--color-bg-sub);
  text-decoration: none;
  transition: border 0.2s ease, filter 0.2s ease;
  border: 1px solid transparent;
}

.blog-category__icon img {
  width: 3.125rem;
  height: 3.125rem;
  object-fit: contain;
  filter: brightness(1.7) saturate(0.7) contrast(0.85);
  transition: filter 0.2s ease;
}

.blog-category__icon:hover,
.blog-category__icon--active {
  border: 1px solid var(--color-brand);
}

.blog-category__icon:hover img,
.blog-category__icon--active img {
  filter: none;
}

.blog-category__icon span {
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--color-brand);
  text-align: center;
}

.blog-line {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  margin: 4rem 0;
}

/* Blog List */
.blog-list {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 1rem 5rem;
}

.blog-list__title {
  margin: 0 0 2.5rem;
  font-family: "A-OTF Kakumin Pro", "Noto Sans JP", sans-serif;
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-black);
  text-align: center;
}

.blog-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.25rem;
}

/* Blog Card */
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
  text-decoration: none;
  color: inherit;
}

.blog-card__image {
  position: relative;
  width: 100%;
  height: 14rem;
  overflow: hidden;
}

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

.blog-card__detail {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.625rem 0.8125rem;
  background-color: var(--color-brand);
  text-decoration: none;
}

.blog-card__detail-text {
  font-family: "A-OTF Shin Go Pr6N", "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  line-height: 1;
  color: var(--color-white);
}

.blog-card__detail-icon {
  width: 0.4375rem;
  height: 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 12' fill='none'%3E%3Cpath d='M1 1L6 6L1 11' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.blog-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.blog-card__title {
  margin: 0;
  font-family: "A-OTF Folk Pro", "Noto Sans JP", sans-serif;
  font-size: 1.1875rem;
  line-height: 1.75;
  color: var(--color-black);
}

.blog-card__date {
  margin: 0;
  font-family: "A-OTF UD Shin Go Pro", "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  line-height: 1;
  color: var(--color-text-secondary);
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1875rem;
  margin-top: 3.5rem;
}

.blog-pagination__arrow {
  position: relative;
  width: 2.625rem;
  height: 2.625rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.blog-pagination__circle {
  width: 100%;
  height: 100%;
}

.blog-pagination__arrow-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.375rem;
  height: 1.375rem;
}

.blog-pagination__arrow--prev .blog-pagination__arrow-icon {
  transform: translate(-50%, -50%) rotate(180deg);
}

.blog-pagination__dots {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.blog-pagination__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: var(--color-border);
}

.blog-pagination__dot--active {
  background-color: var(--color-brand);
}

/* Blog Page SP Responsive */
@media (max-width: 767px) {
  .blog-hero {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .blog-hero::before {
    top: 15rem;
    height: calc(100% - 15rem);
  }

  .blog-hero__text {
    order: 2;
    width: 100%;
    height: auto;
    padding: 1.5rem 1rem 2rem;
    gap: 1rem;
  }

  .blog-hero__lead {
    font-size: 1rem;
    color: var(--color-white);
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .blog-hero__title {
    font-size: 1.5rem;
    margin: 0;
  }

  .blog-hero__label {
    font-size: 3rem;
  }

  .blog-hero__image {
    order: 1;
    width: 100%;
    max-width: none;
  }

  .blog-hero__image img {
    height: 15rem;
  }

  .blog-category {
    padding: 1.5rem 1rem 0;
  }

  .blog-category__lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .blog-category__icons {
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: space-between;
  }

  .blog-category__icon {
    width: calc((100% - 1.5rem) / 4);
    height: auto;
    aspect-ratio: 1;
    padding: 0.5rem;
  }

  .blog-category__icon img {
    width: 2rem;
    height: 2rem;
  }

  .blog-category__icon span {
    font-size: 0.5rem;
  }

  .blog-line {
    margin: 2rem 0;
  }

  .blog-list {
    padding: 0 1rem 3rem;
  }

  .blog-list__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .blog-list__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card__image {
    height: 12rem;
  }

  .blog-card__title {
    font-size: 1rem;
  }

  .blog-card__date {
    font-size: 0.875rem;
  }

  .blog-pagination {
    margin-top: 2rem;
  }
}

/* ==========================================================================
   Scroll Animation
   ========================================================================== */

/* --- prefers-reduced-motion: アニメーション無効化 --- */
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1 !important;
    transition: none !important;
  }

  [data-animate="bar-expand"] {
    transform: scaleX(1) !important;
  }
}

/* --- 共通: アニメーション前の状態 --- */
[data-animate] {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].is-visible {
  opacity: 1;
}

/* --- Hero: ページ読み込み時 --- */
[data-animate="hero-image"] {
  transition: opacity 0.8s ease-out;
}

[data-animate="hero-title"] {
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate="hero-title"].is-visible {
  transform: translateY(0);
}

[data-animate="hero-campaign"] {
  transition: opacity 0.5s ease-out;
}

/* --- Fade Up (下から上) --- */
[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-up"].is-visible {
  transform: translateY(0);
}

/* --- Slide Left (左からスライド) --- */
[data-animate="slide-left"] {
  transform: translateX(-40px);
}

[data-animate="slide-left"].is-visible {
  transform: translateX(0);
}

/* --- Slide Right (右からスライド) --- */
[data-animate="slide-right"] {
  transform: translateX(40px);
}

[data-animate="slide-right"].is-visible {
  transform: translateX(0);
}

/* --- Fade In (その場でフェード、transformは触らない) --- */
[data-animate="fade-in"] {
  transform: none;
}

/* --- Stagger 左から (reasons) --- */
[data-animate="stagger-left"] {
  opacity: 1;
  transition: none;
}

[data-animate="stagger-left"] .reasons__item {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-animate="stagger-left"] .reasons__item.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Stagger 下から (news-links, extra-links) --- */
[data-animate="stagger-up"] {
  opacity: 1;
  transition: none;
}

[data-animate="stagger-up"] [data-animate-child] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-animate="stagger-up"] [data-animate-child].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Bar Expand (左からスケール展開) --- */
[data-animate="bar-expand"] {
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s ease-out;
}

[data-animate="bar-expand"].is-visible {
  transform: scaleX(1);
}

/* --- センタリング(translateX(-50%))を使う要素の保護 --- */
@media (min-width: 768px) {
  .blog__heading[data-animate],
  .blog__slider[data-animate],
  .campaign__heading[data-animate],
  .campaign__slider[data-animate] {
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .reasons__heading[data-animate] {
    transform: translateX(-50%);
  }

  .reasons__list[data-animate="stagger-left"] {
    transform: translateX(-50%);
  }

  .recommend__card[data-animate] {
    transform: translateX(-50%);
  }

  .recommend__card[data-animate].is-visible {
    transform: translateX(-50%);
  }
}
