@charset "UTF-8";
/* Foundation */
/* ==================================================
Reset
================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  border-style: none;
}

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

button,
input,
textarea,
select {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font-style: normal;
}

iframe {
  border: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  padding: 0;
}

textarea {
  resize: vertical;
}

:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 2px;
}

/* ========================================
Font
======================================== */
/* ========================================
Break Point
======================================== */
/* ========================================
Container
======================================== */
/* ==================================================
Base
================================================== */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  background: #fff;
  font-weight: 400;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
}

button {
  cursor: pointer;
}

strong {
  font-weight: 700;
}

small {
  font-size: 1.2rem;
}

::-moz-selection {
  background: rgba(127, 150, 97, 0.2);
}

::selection {
  background: rgba(127, 150, 97, 0.2);
}

/* ==================================================
Animation
================================================== */
/* フェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* 左から */
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-left.is-active {
  opacity: 1;
  transform: translateX(0);
}

/* 右から */
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-right.is-active {
  opacity: 1;
  transform: translateX(0);
}

/* 拡大表示 */
.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.zoom-in.is-active {
  opacity: 1;
  transform: scale(1);
}

/* 遅延 */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

/* ホバー時の浮き上がり */
.hover-up {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-up:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ホバー拡大 */
.hover-scale {
  overflow: hidden;
}
.hover-scale img {
  transition: transform 0.6s ease;
}
.hover-scale:hover img {
  transform: scale(1.05);
}

/* Layout */
/* ==================================================
Container
================================================== */
.l-container {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}

.l-container--sm {
  width: min(100% - 40px, 960px);
  margin-inline: auto;
}

.l-container--lg {
  width: min(100% - 40px, 1320px);
  margin-inline: auto;
}

/* ==================================================
Section
================================================== */
.l-section {
  padding: 120px 0;
}

.l-section--sm {
  padding: 80px 0;
}

.l-section--lg {
  padding: 160px 0;
}

@media (max-width: 1024px) {
  .l-container,
  .l-container--sm,
  .l-container--lg {
    width: calc(100% - 32px);
  }
  .l-section {
    padding: 80px 0;
  }
  .l-section--sm {
    padding: 60px 0;
  }
  .l-section--lg {
    padding: 100px 0;
  }
}
/* ==================================================
Header
================================================== */
.l-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.p-header {
  --header-height: 84px;
  width: 100%;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(127, 150, 97, 0.12);
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 18px rgba(39, 48, 37, 0.045);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  /* ========================================
  Inner
  ======================================== */
}
.p-header__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  width: min(100%, 1440px);
  min-height: var(--header-height);
  margin-inline: auto;
  padding-inline: clamp(24px, 4vw, 64px);
}
.p-header {
  /* ========================================
  Brand
  ======================================== */
}
.p-header__brand {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 120px;
}
.p-header__logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 100px;
  opacity: 1;
  visibility: visible;
}
.p-header__logo-image {
  display: block;
  width: auto;
  max-width: 180px;
  height: 52px;
  opacity: 1;
  visibility: visible;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
.p-header__drawer-logo-image {
  display: block;
  width: auto;
  max-width: 180px;
  height: 52px;
  opacity: 1;
  visibility: visible;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
.p-header__description {
  max-width: 230px;
  margin: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(127, 150, 97, 0.22);
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.p-header {
  /* ========================================
  Desktop navigation
  ======================================== */
}
.p-header__nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  margin-left: auto;
}
.p-header__menu {
  display: flex;
  align-items: stretch;
  gap: clamp(18px, 2.2vw, 38px);
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-header__menu > li {
  position: relative;
  display: flex;
  align-items: stretch;
}
.p-header__menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: 2px;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.55rem, 1.05vw, 1.22rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.055em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.p-header__menu > li > a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  width: 0;
  height: 1px;
  margin-inline: auto;
  background-color: #7f9661;
  content: "";
  transition: width 0.25s ease;
}
.p-header__menu > li > a:hover, .p-header__menu > li > a:focus-visible {
  color: #7f9661;
}
.p-header__menu > li > a:hover::after, .p-header__menu > li > a:focus-visible::after {
  width: 100%;
}
.p-header__menu > li > a:focus-visible {
  outline: 0;
}
.p-header__menu > li.current-menu-item > a, .p-header__menu > li.current-menu-ancestor > a, .p-header__menu > li.current_page_item > a {
  color: #7f9661;
}
.p-header__menu > li.current-menu-item > a::after, .p-header__menu > li.current-menu-ancestor > a::after, .p-header__menu > li.current_page_item > a::after {
  width: 100%;
}
.p-header .menu-item-has-children > a {
  gap: 7px;
}
.p-header .menu-item-has-children > a::before {
  order: 2;
  width: 6px;
  height: 6px;
  margin-top: -4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.p-header .menu-item-has-children:hover > a::before, .p-header .menu-item-has-children:focus-within > a::before {
  transform: translateY(4px) rotate(225deg);
}
.p-header .menu-item-has-children:hover > .sub-menu, .p-header .menu-item-has-children:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.p-header .sub-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  z-index: 10;
  width: -moz-max-content;
  width: max-content;
  min-width: 210px;
  margin: 0;
  padding: 12px;
  visibility: hidden;
  border: 1px solid rgba(127, 150, 97, 0.14);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(41, 49, 39, 0.12);
  opacity: 0;
  pointer-events: none;
  list-style: none;
  transform: translate(-50%, 10px);
  transition: visibility 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}
.p-header .sub-menu li {
  margin: 0;
}
.p-header .sub-menu li + li {
  border-top: 1px solid rgba(127, 150, 97, 0.1);
}
.p-header .sub-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 6px;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.08rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.p-header .sub-menu a:hover, .p-header .sub-menu a:focus-visible {
  background-color: rgba(127, 150, 97, 0.07);
  color: #7f9661;
  outline: 0;
}
.p-header {
  /* ========================================
  Desktop contact
  ======================================== */
}
.p-header__actions {
  display: flex;
  align-items: center;
  margin-left: clamp(22px, 3vw, 48px);
}
.p-header__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-width: 152px;
  min-height: 46px;
  padding: 11px 22px;
  border: 1px solid #7f9661;
  border-radius: 999px;
  background-color: #7f9661;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.p-header__contact:hover {
  background-color: #fff;
  box-shadow: 0 8px 18px rgba(127, 150, 97, 0.14);
  color: #7f9661;
  transform: translateY(-2px);
}
.p-header__contact:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 4px;
}
.p-header__contact-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.055em;
  white-space: nowrap;
}
.p-header__contact-arrow {
  position: relative;
  display: block;
  width: 22px;
  height: 1px;
  background-color: currentColor;
}
.p-header__contact-arrow::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
.p-header {
  /* ========================================
  Hamburger button
  ======================================== */
}
.p-header__hamburger {
  position: fixed;
  top: 14px;
  right: 18px;
  z-index: 1300;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(127, 150, 97, 0.2);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 7px 22px rgba(39, 48, 37, 0.13);
  color: #333;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.p-header__hamburger:hover {
  border-color: rgba(127, 150, 97, 0.48);
  color: #7f9661;
  transform: translateY(-2px);
}
.p-header__hamburger:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 4px;
}
.p-header__hamburger.is-open {
  border-color: rgba(127, 150, 97, 0.5);
  background-color: #7f9661;
  color: #fff;
  box-shadow: 0 8px 24px rgba(127, 150, 97, 0.24);
}
.p-header__hamburger-lines {
  position: relative;
  display: block;
  width: 23px;
  height: 15px;
}
.p-header__hamburger-line {
  position: absolute;
  left: 0;
  display: block;
  width: 23px;
  height: 1px;
  background-color: currentColor;
  transform-origin: center;
  transition: top 0.3s ease, opacity 0.25s ease, transform 0.3s ease;
}
.p-header__hamburger-line:nth-child(1) {
  top: 0;
}
.p-header__hamburger-line:nth-child(2) {
  top: 7px;
}
.p-header__hamburger-line:nth-child(3) {
  top: 14px;
}
.p-header__hamburger.is-open .p-header__hamburger-line:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
.p-header__hamburger.is-open .p-header__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.p-header__hamburger.is-open .p-header__hamburger-line:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}
.p-header__hamburger-label {
  display: block;
  color: currentColor;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
}
.p-header__hamburger-label::before {
  content: "MENU";
  font-size: 0.72rem;
}
.p-header__hamburger.is-open .p-header__hamburger-label::before {
  content: "CLOSE";
  font-size: 0.66rem;
}
.p-header {
  /* ========================================
  Drawer
  ======================================== */
}
.p-header__drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  width: 100%;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  visibility: hidden;
  background: linear-gradient(135deg, rgba(247, 245, 237, 0.99) 0%, rgba(255, 255, 255, 0.99) 58%, rgba(238, 242, 235, 0.99) 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: visibility 0.45s ease, opacity 0.45s ease, transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.p-header__drawer::before {
  position: fixed;
  top: -160px;
  right: -160px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background-color: rgba(127, 150, 97, 0.055);
  content: "";
  pointer-events: none;
}
.p-header__drawer::after {
  position: fixed;
  bottom: -180px;
  left: -170px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background-color: rgba(181, 167, 124, 0.07);
  content: "";
  pointer-events: none;
}
.p-header__drawer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.p-header__drawer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100% - 48px, 760px);
  min-height: 100%;
  margin-inline: auto;
  padding-block: 28px 50px;
}
.p-header {
  /* ========================================
  Drawer header
  ======================================== */
}
.p-header__drawer-header {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding-right: 78px;
}
.p-header__drawer-logo {
  display: inline-flex;
  align-items: center;
  color: #333;
  text-decoration: none;
}
.p-header__drawer-logo:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 4px;
}
.p-header__drawer-logo-image {
  display: block;
  width: auto;
  max-width: 160px;
  height: 46px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
.p-header__drawer-logo-text {
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}
.p-header {
  /* ========================================
  Drawer navigation
  ======================================== */
}
.p-header__drawer-nav {
  width: min(100%, 580px);
  margin: clamp(55px, 9vh, 92px) auto 0;
}
.p-header__drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-header__drawer-menu > li {
  border-bottom: 1px solid rgba(127, 150, 97, 0.2);
}
.p-header__drawer-menu > li:first-child {
  border-top: 1px solid rgba(127, 150, 97, 0.2);
}
.p-header__drawer-menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding: 16px 8px;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.p-header__drawer-menu > li > a::after {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-right: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}
.p-header__drawer-menu > li > a:hover, .p-header__drawer-menu > li > a:focus-visible {
  padding-left: 17px;
  color: #7f9661;
  outline: 0;
}
.p-header__drawer-menu > li.current-menu-item > a, .p-header__drawer-menu > li.current-menu-ancestor > a, .p-header__drawer-menu > li.current_page_item > a {
  color: #7f9661;
}
.p-header__drawer-menu .menu-item-has-children > a::after {
  transform: rotate(135deg);
}
.p-header__drawer-menu .sub-menu {
  display: grid;
  gap: 3px;
  margin: -2px 0 14px;
  padding: 0 8px 4px 24px;
  list-style: none;
}
.p-header__drawer-menu .sub-menu li {
  margin: 0;
}
.p-header__drawer-menu .sub-menu a {
  position: relative;
  display: block;
  padding: 8px 12px 8px 17px;
  color: #666;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.15rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.p-header__drawer-menu .sub-menu a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 1px;
  background-color: currentColor;
  content: "";
}
.p-header__drawer-menu .sub-menu a:hover, .p-header__drawer-menu .sub-menu a:focus-visible {
  padding-left: 22px;
  color: #7f9661;
  outline: 0;
}
.p-header {
  /* ========================================
  Drawer footer
  ======================================== */
}
.p-header__drawer-footer {
  width: min(100%, 580px);
  margin: auto auto 0;
  padding-top: 48px;
}
.p-header__drawer-contact {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "label arrow" "text arrow";
  align-items: center;
  gap: 5px 24px;
  width: 100%;
  padding: 22px 26px;
  border: 1px solid #7f9661;
  border-radius: 12px;
  background-color: #7f9661;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.p-header__drawer-contact:hover {
  background-color: #fff;
  box-shadow: 0 10px 24px rgba(127, 150, 97, 0.15);
  color: #7f9661;
  transform: translateY(-3px);
}
.p-header__drawer-contact:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 4px;
}
.p-header__drawer-contact-label {
  grid-area: label;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
}
.p-header__drawer-contact-text {
  grid-area: text;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.055em;
}
.p-header__drawer-contact-arrow {
  position: relative;
  grid-area: arrow;
  display: block;
  width: 30px;
  height: 1px;
  background-color: currentColor;
}
.p-header__drawer-contact-arrow::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
.p-header__drawer-information {
  margin-top: 28px;
  color: #666;
  text-align: center;
}
.p-header__drawer-description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.p-header__drawer-copyright {
  margin: 10px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.p-header {
  /* ==================================================
  Navigation breakpoint
  ================================================== */
}
@media screen and (max-width: 768px) {
  .p-header .p-header {
    --header-height: 72px;
  }
  .p-header .p-header__inner {
    width: 100%;
    padding-right: 88px;
    padding-left: 18px;
  }
  .p-header .p-header__brand {
    min-width: 100px;
  }
  .p-header .p-header__logo-image {
    max-width: 145px;
    height: 42px;
  }
  .p-header .p-header__description, .p-header .p-header__nav, .p-header .p-header__actions {
    display: none;
  }
  .p-header .p-header__logo-image {
    max-width: 145px;
    height: 42px;
  }
  .p-header .p-header__logo-text {
    font-size: 2.2rem;
  }
  .p-header .p-header__hamburger {
    display: flex;
  }
}
.p-header {
  /* ==================================================
  Smartphone
  ================================================== */
}
@media (max-width: 768px) {
  .p-header .p-header__drawer-inner {
    width: calc(100% - 36px);
    padding-block: 18px 36px;
  }
  .p-header .p-header__drawer-header {
    min-height: 54px;
    padding-right: 70px;
  }
  .p-header .p-header__drawer-logo-image {
    max-width: 140px;
    height: 42px;
  }
  .p-header .p-header__drawer-logo-text {
    font-size: 2.2rem;
  }
  .p-header .p-header__drawer-nav {
    margin-top: clamp(42px, 7vh, 66px);
  }
  .p-header .p-header__drawer-menu > li > a {
    min-height: 62px;
    padding-block: 13px;
    font-size: clamp(1.5rem, 5.2vw, 1.9rem);
  }
  .p-header .p-header__drawer-menu .sub-menu {
    padding-left: 17px;
  }
  .p-header .p-header__drawer-menu .sub-menu a {
    font-size: 1.08rem;
  }
  .p-header .p-header__drawer-footer {
    padding-top: 38px;
  }
  .p-header .p-header__drawer-contact {
    padding: 19px 20px;
  }
  .p-header .p-header__drawer-contact-text {
    font-size: 1.3rem;
  }
  .p-header .p-header__drawer-contact-arrow {
    width: 25px;
  }
}
.p-header {
  /* ==================================================
  Small smartphone
  ================================================== */
}
@media screen and (max-width: 374px) {
  .p-header .p-header {
    --header-height: 66px;
  }
  .p-header .p-header__inner {
    padding-right: 77px;
    padding-left: 14px;
  }
  .p-header .p-header__logo-image {
    max-width: 125px;
    height: 38px;
  }
  .p-header .p-header__logo-text {
    font-size: 2rem;
  }
  .p-header .p-header__hamburger {
    top: 11px;
    right: 12px;
    width: 50px;
    height: 50px;
  }
  .p-header .p-header__drawer-inner {
    width: calc(100% - 28px);
  }
  .p-header .p-header__drawer-logo-image {
    max-width: 125px;
    height: 38px;
  }
  .p-header .p-header__drawer-menu > li > a {
    min-height: 58px;
    font-size: 1.45rem;
  }
  .p-header .p-header__drawer-contact {
    padding-inline: 17px;
  }
  .p-header .p-header__drawer-contact-text {
    font-size: 1.18rem;
  }
}
.p-header {
  /* ==================================================
  WordPress admin bar
  ================================================== */
}
.p-header body.admin-bar .l-header {
  top: 32px;
}
.p-header body.admin-bar .p-header__hamburger {
  top: 46px;
}
.p-header body.admin-bar .p-header__drawer {
  top: 32px;
  height: calc(100dvh - 32px);
}
@media screen and (max-width: 782px) {
  .p-header body.admin-bar .l-header {
    top: 46px;
  }
  .p-header body.admin-bar .p-header__hamburger {
    top: 60px;
  }
  .p-header body.admin-bar .p-header__drawer {
    top: 46px;
    height: calc(100dvh - 46px);
  }
}
.p-header {
  /* ==================================================
  Menu open
  ================================================== */
}
.p-header body.is-menu-open {
  overflow: hidden;
  touch-action: none;
}
.p-header {
  /* ==================================================
  Reduced motion
  ================================================== */
}
@media (prefers-reduced-motion: reduce) {
  .p-header .p-header__menu a, .p-header .p-header__menu a::after, .p-header .p-header__menu .sub-menu, .p-header .p-header__contact, .p-header .p-header__hamburger, .p-header .p-header__hamburger-line, .p-header .p-header__drawer, .p-header .p-header__drawer-menu a, .p-header .p-header__drawer-contact {
    transition: none;
  }
}

/* ==================================================
Footer
================================================== */
.l-footer {
  position: relative;
  background-color: #fff;
}
.l-footer__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(150px, 16vw, 230px);
  padding-block: clamp(48px, 7vw, 90px);
  text-align: center;
}
.l-footer {
  /* ========================================
  Logo
  ======================================== */
}
.l-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(54px, 5vw, 76px);
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.l-footer__logo img,
.l-footer__logo svg {
  display: block;
  width: 100%;
  height: auto;
}
.l-footer__logo:hover, .l-footer__logo:focus-visible {
  opacity: 0.65;
}
.l-footer {
  /* ========================================
  Navigation
  必要な場合のみ使用
  ======================================== */
}
.l-footer__nav {
  margin-top: 30px;
}
.l-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-footer__nav-link {
  position: relative;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.3s ease;
}
.l-footer__nav-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background-color: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}
.l-footer__nav-link:hover, .l-footer__nav-link:focus-visible {
  color: #7f9661;
}
.l-footer__nav-link:hover::after, .l-footer__nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.l-footer {
  /* ========================================
  Copyright
  ======================================== */
}
.l-footer__copyright {
  margin: 24px 0 0;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .l-footer__inner {
    width: calc(100% - 32px);
    min-height: 150px;
    padding-block: 48px;
  }
  .l-footer__logo {
    width: 58px;
  }
  .l-footer__nav {
    margin-top: 26px;
  }
  .l-footer__nav-list {
    flex-direction: column;
    gap: 12px;
  }
  .l-footer__nav-link {
    font-size: 0.95rem;
  }
  .l-footer__copyright {
    margin-top: 20px;
    font-size: 0.8rem;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .l-footer__inner {
    width: calc(100% - 24px);
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .l-footer__logo,
  .l-footer__nav-link,
  .l-footer__nav-link::after {
    transition: none;
  }
}
/* Components */
/* ==================================================
Button
================================================== */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  height: 60px;
  padding: 0 32px;
  border-radius: 999px;
  background: #7f9661;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.c-button:hover {
  background: #5c7146;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.c-button--arrow::after {
  content: "→";
  font-size: 1.4rem;
  transition: transform 0.3s;
}
.c-button--arrow:hover::after {
  transform: translateX(4px);
}

.c-button--white {
  background: #fff;
  color: #7f9661;
}
.c-button--white:hover {
  background: #f6f6f6;
}

.c-button--outline {
  background: transparent;
  color: #7f9661;
  border: 2px solid #7f9661;
}
.c-button--outline:hover {
  background: #7f9661;
  color: #fff;
}

.c-button--sm {
  min-width: 160px;
  height: 48px;
  font-size: 1.4rem;
}

.c-button--lg {
  min-width: 280px;
  height: 68px;
  font-size: 1.8rem;
}

@media (max-width: 1024px) {
  .c-button {
    min-width: 100%;
    height: 56px;
  }
}
/* ==================================================
Section Title
================================================== */
.c-section-title {
  margin-bottom: 64px;
}

.c-section-title__number {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #7f9661;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.c-section-title__sub {
  display: block;
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #7f9661;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.c-section-title__main {
  margin-bottom: 24px;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(3rem, 4vw, 4.8rem);
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}

.c-section-title__text {
  max-width: 620px;
  font-size: 1.6rem;
  line-height: 2;
  color: #666;
}

@media (max-width: 1024px) {
  .c-section-title {
    margin-bottom: 48px;
  }
  .c-section-title__main {
    font-size: 3rem;
  }
}
.c-section-title--center {
  text-align: center;
}

.c-section-title--center .c-section-title__text {
  margin-inline: auto;
}

/* ==================================================
Card
================================================== */
.c-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.c-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ========================================
Image
======================================== */
.c-card__image {
  overflow: hidden;
}
.c-card__image img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.c-card:hover .c-card__image img {
  transform: scale(1.06);
}

/* ========================================
Body
======================================== */
.c-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px;
}

/* ========================================
Icon
======================================== */
.c-card__icon {
  width: 64px;
  margin-bottom: 24px;
}
.c-card__icon img {
  width: 100%;
}

/* ========================================
Title
======================================== */
.c-card__title {
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
}

/* ========================================
Text
======================================== */
.c-card__text {
  flex: 1;
  color: #666;
  line-height: 2;
}

/* ========================================
Footer
======================================== */
.c-card__footer {
  margin-top: 32px;
}

/* ========================================
Arrow
======================================== */
.c-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7f9661;
  font-weight: 700;
  transition: 0.3s;
}
.c-card__link::after {
  content: "→";
  transition: transform 0.3s;
}
.c-card__link:hover::after {
  transform: translateX(4px);
}

/* ========================================
Responsive
======================================== */
@media (max-width: 1024px) {
  .c-card__body {
    padding: 24px;
  }
  .c-card__title {
    font-size: 1.8rem;
  }
}
.c-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .c-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .c-card-grid {
    grid-template-columns: 1fr;
  }
}
/* ==================================================
Icon
================================================== */
.c-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ========================================
Image
======================================== */
.c-icon img,
.c-icon svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
Size
======================================== */
.c-icon--sm {
  width: 32px;
  height: 32px;
}

.c-icon--md {
  width: 48px;
  height: 48px;
}

.c-icon--lg {
  width: 64px;
  height: 64px;
}

.c-icon--xl {
  width: 80px;
  height: 80px;
}

/* ========================================
Circle
======================================== */
.c-icon--circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(127, 150, 97, 0.08);
}

/* ========================================
Square
======================================== */
.c-icon--square {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(127, 150, 97, 0.08);
}

/* ========================================
Color
======================================== */
.c-icon--green {
  color: #7f9661;
}
.c-icon--green svg {
  fill: currentColor;
}

.c-icon--white {
  color: #fff;
}
.c-icon--white svg {
  fill: currentColor;
}

/* ========================================
Responsive
======================================== */
@media (max-width: 1024px) {
  .c-icon--lg {
    width: 56px;
    height: 56px;
  }
  .c-icon--xl {
    width: 64px;
    height: 64px;
  }
}
/* toppage */
/* ==================================================
Hero
================================================== */
.p-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50vh;
  padding-top: 90px;
  overflow: hidden;
  background: #fff;
}

.p-hero__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.p-hero__content {
  position: relative;
  z-index: 2;
}

.p-hero__lead {
  display: inline-block;
  margin-bottom: 20px;
  color: #7f9661;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.p-hero__title {
  margin-bottom: 32px;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(4rem, 5vw, 7rem);
  line-height: 1.35;
  font-weight: 700;
}

.p-hero__text {
  max-width: 520px;
  margin-bottom: 48px;
  color: #666;
  line-height: 2;
}

.p-hero__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.p-hero__image {
  position: relative;
}

.p-hero__image img {
  width: 100%;
  height: 50vh;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 背景装飾 */
.p-hero__bg-circle {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(127, 150, 97, 0.08);
}

/* Scroll */
.p-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
  font-size: 1.2rem;
}

.p-hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  margin: 12px auto 0;
  background: #333;
  animation: scroll-line 2s infinite;
}

/* animation */
@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* ======================================
Responsive
====================================== */
@media screen and (min-width: 1025px) {
  .p-hero {
    overflow: hidden;
  }
  .p-hero__inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 0;
  }
  .p-hero__content {
    position: relative;
    z-index: 2;
  }
  .p-hero__image {
    position: relative;
    z-index: 1;
    width: 145%;
    max-width: none;
    margin-left: -18%;
  }
  .p-hero__image-element {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 1024px) {
  .p-hero {
    min-height: auto;
    padding: 0px 0 80px;
  }
  .p-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .p-hero__content {
    order: 2;
  }
  .p-hero__image {
    order: 1;
  }
  .p-hero__title {
    font-size: 4rem;
  }
  .p-hero__buttons {
    flex-direction: column;
  }
  .p-hero__scroll {
    display: none;
  }
}
/* ==================================================
Front - About
================================================== */
.p-about {
  position: relative;
  overflow: hidden;
  padding-block: clamp(96px, 11vw, 160px);
  background-color: #f8f7f2;
}
.p-about::before {
  position: absolute;
  top: -180px;
  right: -140px;
  width: clamp(320px, 38vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: rgba(127, 150, 97, 0.035);
  content: "";
  pointer-events: none;
}
.p-about__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.35fr);
  gap: clamp(60px, 8vw, 130px);
  width: min(100%, 1180px);
}
.p-about {
  /* ========================================
  Head
  ======================================== */
}
.p-about__head {
  align-self: start;
}
.p-about__english {
  margin: 0 0 18px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.22em;
}
.p-about__title {
  margin: 0;
  color: #625d4c;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(3rem, 4vw, 4.6rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.06em;
}
.p-about {
  /* ========================================
  Body
  ======================================== */
}
.p-about__body {
  min-width: 0;
}
.p-about__lead {
  margin: 0;
  color: #625d4c;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  line-height: 2;
  letter-spacing: 0.045em;
}
.p-about__lead strong {
  color: #7f9661;
  font-weight: 500;
}
.p-about__text {
  max-width: 720px;
  margin: 28px 0 0;
  color: #666;
  font-size: 1.3rem;
  line-height: 2.05;
  letter-spacing: 0.035em;
}
.p-about {
  /* ========================================
  Points
  ======================================== */
}
.p-about__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(44px, 5vw, 64px) 0 0;
  padding: 0;
  border-top: 1px solid rgba(127, 150, 97, 0.18);
  border-bottom: 1px solid rgba(127, 150, 97, 0.18);
  list-style: none;
}
.p-about__point {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 0;
  padding: 25px 24px 27px;
}
.p-about__point + .p-about__point {
  border-left: 1px solid rgba(127, 150, 97, 0.18);
}
.p-about__point-number {
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
}
.p-about__point-text {
  color: #625d4c;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.p-about {
  /* ========================================
  More
  ======================================== */
}
.p-about__more {
  margin-top: clamp(36px, 4vw, 50px);
}
.p-about__more-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.15rem;
  line-height: 1.5;
  letter-spacing: 0.045em;
  text-decoration: none;
  transition: color 0.25s ease;
}
.p-about__more-link:hover .p-about__more-arrow {
  transform: translateX(5px);
}
.p-about__more-link:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 6px;
}
.p-about__more-label {
  position: relative;
}
.p-about__more-label::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background-color: currentColor;
  content: "";
  opacity: 0.35;
  transform: scaleX(0);
  transform-origin: right center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.p-about__more-link:hover .p-about__more-label::after {
  opacity: 0.65;
  transform: scaleX(1);
  transform-origin: left center;
}
.p-about__more-arrow {
  position: relative;
  display: block;
  width: 38px;
  height: 1px;
  background-color: currentColor;
  transition: transform 0.25s ease;
}
.p-about__more-arrow::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-about__inner {
    grid-template-columns: 1fr;
    gap: 46px;
    width: min(100% - 48px, 900px);
  }
  .p-about__head {
    max-width: 620px;
  }
  .p-about__body {
    max-width: 820px;
  }
  .p-about__lead {
    max-width: 760px;
  }
  .p-about__text {
    max-width: 760px;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-about {
    padding-block: 78px 86px;
  }
  .p-about::before {
    top: -90px;
    right: -120px;
    width: 300px;
  }
  .p-about__inner {
    width: calc(100% - 32px);
    gap: 34px;
  }
  .p-about__english {
    margin-bottom: 11px;
    font-size: 0.88rem;
  }
  .p-about__title {
    font-size: 2.65rem;
    line-height: 1.6;
  }
  .p-about__lead {
    font-size: 1.55rem;
    line-height: 1.95;
  }
  .p-about__lead br {
    display: none;
  }
  .p-about__text {
    margin-top: 22px;
    font-size: 1.18rem;
    line-height: 2;
  }
  .p-about__text br {
    display: none;
  }
  .p-about__points {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }
  .p-about__point {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 20px 4px;
  }
  .p-about__point + .p-about__point {
    border-top: 1px solid rgba(127, 150, 97, 0.18);
    border-left: 0;
  }
  .p-about__point-number {
    font-size: 0.8rem;
  }
  .p-about__point-text {
    font-size: 1.35rem;
  }
  .p-about__more {
    margin-top: 34px;
  }
  .p-about__more-link {
    gap: 17px;
    font-size: 1.08rem;
  }
  .p-about__more-arrow {
    width: 31px;
  }
}
/* ==================================================
Small Smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-about__inner {
    width: calc(100% - 24px);
  }
  .p-about__title {
    font-size: 2.4rem;
  }
  .p-about__lead {
    font-size: 1.45rem;
  }
  .p-about__text {
    font-size: 1.12rem;
  }
  .p-about__point-text {
    font-size: 1.28rem;
  }
}
/* ==================================================
Reduced Motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-about__more-link, .p-about__more-label::after, .p-about__more-arrow {
    transition: none;
  }
}
/* ==================================================
Build
02 買う家と、つくる家。
================================================== */
.p-build {
  position: relative;
  padding-block: clamp(120px, 12vw, 200px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Inner
  ======================================== */
}
.p-build__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(56px, 7vw, 120px);
}
.p-build {
  /* ========================================
  Left visual
  ======================================== */
}
.p-build__visual {
  position: relative;
  align-self: center;
  width: 115%;
  margin: 80px 0 0 -15%;
}
.p-build__image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-build {
  /* ========================================
  Right content
  ======================================== */
}
.p-build__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
}
.p-build {
  /* ========================================
  Section heading
  ======================================== */
}
.p-build__header {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-bottom: 44px;
}
.p-build__section-number {
  flex-shrink: 0;
  margin: 0;
}
.p-build__section-number-text {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(3rem, 3.2vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}
.p-build__section-number-text::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #7f9661;
  content: "";
}
.p-build__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.5rem, 2.8vw, 3.8rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.p-build {
  /* ========================================
  Text body
  ======================================== */
}
.p-build__body {
  display: grid;
  gap: 38px;
}
.p-build__block {
  display: grid;
  gap: 14px;
}
.p-build__heading {
  margin: 0 0 4px;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.9rem, 1.8vw, 2.4rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
.p-build__text {
  margin: 0;
  color: #666;
  font-size: 1.45rem;
  line-height: 2;
  letter-spacing: 0.055em;
}
.p-build {
  /* ========================================
  Button
  ======================================== */
}
.p-build__button {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
.p-build__button .c-button {
  min-width: 220px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1.3rem;
}
.p-build {
  /* ========================================
  Leaf decoration
  ======================================== */
}
.p-build__decoration {
  position: absolute;
  top: -10px;
  right: -35px;
  z-index: 1;
  width: clamp(170px, 18vw, 300px);
  pointer-events: none;
}
.p-build__decoration img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ==================================================
Large desktop
================================================== */
@media screen and (min-width: 1280px) {
  .p-build__visual {
    width: 125%;
    margin-left: -25%;
  }
  .p-build__content {
    margin-left: auto;
  }
}
/* ==================================================
Tablet
1024px以下
================================================== */
@media (max-width: 1024px) {
  .p-build {
    padding-block: 100px;
  }
  .p-build__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .p-build__content {
    width: min(100%, 680px);
    max-width: none;
    margin-inline: auto;
    order: 1;
  }
  .p-build__visual {
    width: min(100%, 760px);
    margin: 0 auto;
    order: 2;
  }
  .p-build__header {
    margin-bottom: 36px;
  }
  .p-build__body {
    gap: 32px;
  }
  .p-build__decoration {
    top: 0;
    right: -55px;
    width: 220px;
    opacity: 0.8;
  }
}
/* ==================================================
Smartphone
767px以下
================================================== */
@media (max-width: 768px) {
  .p-build {
    padding-block: 72px 88px;
  }
  .p-build__inner {
    width: calc(100% - 32px);
    gap: 44px;
  }
  .p-build__header {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 30px;
  }
  .p-build__section-number-text {
    padding-bottom: 6px;
    font-size: 2.8rem;
  }
  .p-build__title {
    padding-top: 1px;
    font-size: 2.2rem;
    line-height: 1.55;
    letter-spacing: 0.06em;
  }
  .p-build__body {
    gap: 28px;
  }
  .p-build__block {
    gap: 11px;
  }
  .p-build__heading {
    font-size: 1.8rem;
    line-height: 1.65;
  }
  .p-build__text {
    font-size: 1.4rem;
    line-height: 1.95;
  }
  .p-build__visual {
    width: 112%;
    max-width: none;
    margin-left: -10%;
  }
  .p-build__button {
    justify-content: flex-start;
    margin-top: 34px;
  }
  .p-build__button .c-button {
    width: 100%;
    min-width: 100%;
  }
  .p-build__decoration {
    top: 10px;
    right: -65px;
    width: 150px;
    opacity: 0.45;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-build__inner {
    width: calc(100% - 24px);
  }
  .p-build__header {
    gap: 12px;
  }
  .p-build__section-number-text {
    font-size: 2.5rem;
  }
  .p-build__title {
    font-size: 2rem;
  }
  .p-build__visual {
    width: 116%;
    margin-left: -13%;
  }
}
/* ==================================================
Attachment
03 完成後も、愛着が続く。
================================================== */
.p-attachment {
  position: relative;
  padding-block: clamp(110px, 11vw, 180px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Inner
  ======================================== */
}
.p-attachment__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(56px, 7vw, 120px);
}
.p-attachment {
  /* ========================================
  Left content
  ======================================== */
}
.p-attachment__content {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.p-attachment {
  /* ========================================
  Section heading
  ======================================== */
}
.p-attachment__header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 30px;
}
.p-attachment__section-number {
  position: relative;
  flex-shrink: 0;
  margin: 0;
  padding-bottom: 7px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(3rem, 3.2vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}
.p-attachment__section-number::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #7f9661;
  content: "";
}
.p-attachment__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.2rem, 2.4vw, 3.3rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.p-attachment {
  /* ========================================
  Introduction
  ======================================== */
}
.p-attachment__introduction {
  max-width: 520px;
}
.p-attachment__lead {
  margin: 0 0 18px;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.9rem, 1.8vw, 2.5rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.07em;
}
.p-attachment__text {
  margin: 0;
  color: #666;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.045em;
}
.p-attachment {
  /* ========================================
  Small images
  ======================================== */
}
.p-attachment__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}
.p-attachment__item {
  min-width: 0;
}
.p-attachment__item-figure {
  margin: 0;
}
.p-attachment__item-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  background-color: rgba(127, 150, 97, 0.08);
}
.p-attachment__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.p-attachment__item-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(51, 51, 51, 0.06);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
.p-attachment__item:hover .p-attachment__item-image img {
  transform: scale(1.05);
}
.p-attachment__item-caption {
  margin-top: 8px;
  color: #333;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.04em;
}
.p-attachment {
  /* ========================================
  Bottom message
  ======================================== */
}
.p-attachment__message {
  max-width: 540px;
  margin: 28px 0 0;
  color: #666;
  font-size: 1.35rem;
  line-height: 2;
  letter-spacing: 0.045em;
}
.p-attachment {
  /* ========================================
  Right visual
  ======================================== */
}
.p-attachment__visual {
  position: relative;
  width: 112%;
  margin: 0 -12% 0 0;
}
.p-attachment__image {
  display: block;
  width: 100%;
  max-width: none;
  height: clamp(430px, 47vw, 680px);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-radius: 6px 0 0 6px;
}

/* ==================================================
Large desktop
================================================== */
@media screen and (min-width: 1280px) {
  .p-attachment__inner {
    grid-template-columns: minmax(400px, 0.78fr) minmax(0, 1.22fr);
  }
  .p-attachment__visual {
    width: 120%;
    margin-right: -20%;
  }
}
/* ==================================================
Tablet
1024px以下
================================================== */
@media (max-width: 1024px) {
  .p-attachment {
    padding-block: 100px;
  }
  .p-attachment__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .p-attachment__content {
    width: min(100%, 720px);
    margin-inline: auto;
  }
  .p-attachment__introduction {
    max-width: 680px;
  }
  .p-attachment__items {
    max-width: 620px;
  }
  .p-attachment__visual {
    width: min(100%, 820px);
    margin: 0 auto;
  }
  .p-attachment__image {
    height: clamp(420px, 70vw, 620px);
    border-radius: 8px;
  }
}
/* ==================================================
Smartphone
767px以下
================================================== */
@media (max-width: 768px) {
  .p-attachment {
    padding-block: 72px 84px;
  }
  .p-attachment__inner {
    width: calc(100% - 32px);
    gap: 42px;
  }
  .p-attachment__header {
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 24px;
  }
  .p-attachment__section-number {
    padding-bottom: 6px;
    font-size: 2.8rem;
  }
  .p-attachment__title {
    padding-top: 1px;
    font-size: 2.1rem;
    line-height: 1.55;
    letter-spacing: 0.05em;
  }
  .p-attachment__lead {
    margin-bottom: 16px;
    font-size: 1.9rem;
    line-height: 1.7;
  }
  .p-attachment__lead br {
    display: none;
  }
  .p-attachment__text {
    font-size: 1.4rem;
    line-height: 1.95;
  }
  .p-attachment__items {
    gap: 10px;
    margin-top: 28px;
  }
  .p-attachment__item-image {
    border-radius: 9px;
  }
  .p-attachment__item-caption {
    margin-top: 7px;
    font-size: 0.95rem;
  }
  .p-attachment__message {
    margin-top: 24px;
    font-size: 1.35rem;
    line-height: 1.95;
  }
  .p-attachment__visual {
    width: 108%;
    margin-left: -4%;
  }
  .p-attachment__image {
    height: clamp(330px, 90vw, 480px);
    border-radius: 6px;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-attachment__inner {
    width: calc(100% - 24px);
  }
  .p-attachment__header {
    gap: 10px;
  }
  .p-attachment__section-number {
    font-size: 2.5rem;
  }
  .p-attachment__title {
    font-size: 1.9rem;
  }
  .p-attachment__items {
    gap: 8px;
  }
  .p-attachment__item-caption {
    font-size: 0.9rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-attachment__item-image img {
    transition: none;
  }
}
/* ==================================================
Reason
04 なぜTAGが必要なのか？
================================================== */
.p-reason {
  position: relative;
  padding-block: clamp(100px, 10vw, 160px);
  overflow: hidden;
  background-color: #fff;
}
.p-reason__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(56px, 7vw, 110px);
}
.p-reason {
  /* ========================================
  Left content
  ======================================== */
}
.p-reason__content {
  min-width: 0;
}
.p-reason__header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 32px;
}
.p-reason__section-number {
  position: relative;
  flex-shrink: 0;
  margin: 0;
  padding-bottom: 7px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(3rem, 3.2vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}
.p-reason__section-number::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #7f9661;
  content: "";
}
.p-reason__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.2rem, 2.4vw, 3.3rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
}
.p-reason__description {
  display: grid;
  gap: 22px;
  max-width: 460px;
}
.p-reason__description p {
  margin: 0;
  color: #666;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.045em;
}
.p-reason {
  /* ========================================
  Roles
  ======================================== */
}
.p-reason__roles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 46px);
  min-width: 0;
}
.p-reason {
  /* ========================================
  Bottom button
  ======================================== */
}
.p-reason__button {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.p-reason__button .c-button {
  min-width: 210px;
  min-height: 48px;
  padding-inline: 30px;
  border-radius: 8px;
  font-size: 1.3rem;
}

/* ==================================================
Role
================================================== */
.p-reason-role {
  position: relative;
  min-width: 0;
}
.p-reason-role:not(:last-child)::after {
  position: absolute;
  top: 0;
  right: calc(clamp(24px, 3vw, 46px) / -2);
  width: 1px;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.12);
  content: "";
}
.p-reason-role__title {
  min-height: 3.2em;
  margin: 0 0 24px;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.6rem, 1.45vw, 2rem);
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-reason-role__body {
  display: grid;
  gap: 22px;
}
.p-reason-role__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(120px, 12vw, 170px);
  margin: 0;
}
.p-reason-role__visual img {
  display: block;
  width: 100%;
  max-width: 180px;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.45s ease;
}
.p-reason-role:hover .p-reason-role__visual img {
  transform: translateY(-5px);
}
.p-reason-role__list {
  display: grid;
  gap: 9px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.p-reason-role__list li {
  position: relative;
  margin: 0;
  padding-left: 20px;
  color: #333;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.035em;
}
.p-reason-role__list li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 10px;
  height: 6px;
  border-bottom: 1.5px solid #7f9661;
  border-left: 1.5px solid #7f9661;
  content: "";
  transform: rotate(-45deg);
}

/* ==================================================
Large desktop
================================================== */
@media screen and (min-width: 1280px) {
  .p-reason__inner {
    grid-template-columns: minmax(340px, 0.68fr) minmax(0, 1.32fr);
  }
  .p-reason-role__visual img {
    max-width: 200px;
  }
}
/* ==================================================
Tablet
1024px以下
================================================== */
@media (max-width: 1024px) {
  .p-reason {
    padding-block: 100px;
  }
  .p-reason__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .p-reason__content {
    max-width: 700px;
  }
  .p-reason__description {
    max-width: 650px;
  }
  .p-reason__roles {
    gap: 32px;
  }
  .p-reason__button {
    margin-top: 0;
  }
  .p-reason-role:not(:last-child)::after {
    right: -16px;
  }
  .p-reason-role__title {
    font-size: 1.7rem;
  }
  .p-reason-role__visual {
    height: 140px;
  }
  .p-reason-role__visual img {
    max-width: 150px;
  }
}
/* ==================================================
Smartphone
767px以下
================================================== */
@media (max-width: 768px) {
  .p-reason {
    padding-block: 72px 84px;
  }
  .p-reason__inner {
    width: calc(100% - 32px);
    gap: 44px;
  }
  .p-reason__header {
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 26px;
  }
  .p-reason__section-number {
    padding-bottom: 6px;
    font-size: 2.8rem;
  }
  .p-reason__title {
    padding-top: 1px;
    font-size: 2.1rem;
    line-height: 1.55;
    letter-spacing: 0.05em;
  }
  .p-reason__description {
    gap: 18px;
  }
  .p-reason__description p {
    font-size: 1.4rem;
    line-height: 1.95;
  }
  .p-reason__description p br {
    display: none;
  }
  .p-reason__roles {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .p-reason__button {
    margin-top: 0;
  }
  .p-reason__button .c-button {
    width: 100%;
    min-width: 100%;
  }
  .p-reason-role {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    grid-template-areas: "visual title" "visual list";
    align-items: center;
    -moz-column-gap: 22px;
         column-gap: 22px;
    padding-block: 30px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.12);
  }
  .p-reason-role:first-child {
    border-top: 1px solid rgba(51, 51, 51, 0.12);
  }
  .p-reason-role:not(:last-child)::after {
    display: none;
  }
  .p-reason-role__title {
    grid-area: title;
    min-height: auto;
    margin: 0 0 13px;
    font-size: 1.65rem;
    text-align: left;
  }
  .p-reason-role__body {
    display: contents;
  }
  .p-reason-role__visual {
    grid-area: visual;
    width: 120px;
    height: 120px;
  }
  .p-reason-role__visual img {
    max-width: 110px;
  }
  .p-reason-role__list {
    grid-area: list;
    width: 100%;
    margin: 0;
  }
  .p-reason-role__list li {
    font-size: 1.15rem;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-reason__inner {
    width: calc(100% - 24px);
  }
  .p-reason__header {
    gap: 10px;
  }
  .p-reason__section-number {
    font-size: 2.5rem;
  }
  .p-reason__title {
    font-size: 1.9rem;
  }
  .p-reason-role {
    grid-template-columns: 96px minmax(0, 1fr);
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .p-reason-role__visual {
    width: 96px;
    height: 105px;
  }
  .p-reason-role__visual img {
    max-width: 90px;
  }
  .p-reason-role__title {
    font-size: 1.5rem;
  }
  .p-reason-role__list li {
    padding-left: 17px;
    font-size: 1.05rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-reason-role__visual img {
    transition: none;
  }
}
/* ==================================================
Recommend
05 こんな方におすすめ
================================================== */
.p-recommend {
  position: relative;
  padding-block: clamp(80px, 8vw, 130px);
  overflow: hidden;
  background-color: rgba(127, 150, 97, 0.065);
}
.p-recommend__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}
.p-recommend__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 16px;
  max-width: 900px;
  margin: 38px auto 0;
  padding: 0;
  list-style: none;
}
.p-recommend__item {
  width: calc((100% - 48px) / 4);
  min-width: 0;
}
.p-recommend {
  /* ========================================
  Section heading
  ======================================== */
}
.p-recommend__header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 24px;
}
.p-recommend__section-number {
  position: relative;
  flex-shrink: 0;
  margin: 0;
  padding-bottom: 7px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(3rem, 3.2vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}
.p-recommend__section-number::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #7f9661;
  content: "";
}
.p-recommend__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.2rem, 2.3vw, 3.2rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
}
.p-recommend {
  /* ========================================
  Introduction
  ======================================== */
}
.p-recommend__introduction {
  max-width: 520px;
  margin: 0;
  color: #666;
  font-size: 1.35rem;
  line-height: 1.95;
  letter-spacing: 0.04em;
}
.p-recommend {
  /* ========================================
  Recommend items
  ======================================== */
}
.p-recommend__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 16px;
  max-width: 900px;
  margin: 38px auto 0;
  padding: 0;
  list-style: none;
}
.p-recommend__item {
  width: calc((100% - 48px) / 4);
  min-width: 0;
}
.p-recommend__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  text-align: center;
}
.p-recommend__icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 74px;
  margin-bottom: 10px;
}
.p-recommend__icon img {
  display: block;
  width: auto;
  max-width: 96px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.4s ease;
}
.p-recommend__item:hover .p-recommend__icon img {
  transform: translateY(-4px);
}
.p-recommend__item-text {
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.025em;
}

/* ==================================================
Large desktop
================================================== */
@media screen and (min-width: 1280px) {
  .p-support-overview__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
  .p-recommend__icon {
    height: 82px;
  }
  .p-recommend__icon img {
    max-width: 106px;
  }
}
/* ==================================================
Tablet
1024px以下
================================================== */
@media (max-width: 1024px) {
  .p-recommend__introduction {
    max-width: 680px;
  }
  .p-recommend__list {
    max-width: 700px;
    gap: 32px 20px;
  }
  .p-recommend__icon {
    height: 84px;
  }
}
/* ==================================================
Smartphone
767px以下
================================================== */
@media (max-width: 768px) {
  .p-recommend__header {
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 22px;
  }
  .p-recommend__section-number {
    padding-bottom: 6px;
    font-size: 2.8rem;
  }
  .p-recommend__title {
    padding-top: 1px;
    font-size: 2.1rem;
    line-height: 1.55;
    letter-spacing: 0.05em;
  }
  .p-recommend__introduction {
    font-size: 1.35rem;
    line-height: 1.9;
  }
  .p-recommend__introduction br {
    display: none;
  }
  .p-recommend__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 50px;
    margin-top: 32px;
  }
  .p-recommend__icon {
    height: 76px;
    margin-bottom: 8px;
  }
  .p-recommend__icon img {
    max-width: 92px;
  }
  .p-recommend__item-text {
    font-size: 1.05rem;
    line-height: 1.55;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-support-overview__inner {
    width: calc(100% - 16px);
    padding-inline: 16px;
  }
  .p-recommend__header {
    gap: 10px;
  }
  .p-recommend__section-number {
    font-size: 2.5rem;
  }
  .p-recommend__title {
    font-size: 1.9rem;
  }
  .p-recommend__list {
    gap: 26px 10px;
  }
  .p-recommend__icon {
    height: 68px;
  }
  .p-recommend__icon img {
    max-width: 82px;
  }
  .p-recommend__item-text {
    font-size: 0.95rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-recommend__icon img {
    transition: none;
  }
}
/* ==================================================
Plan
06 選べるサポートプラン
================================================== */
.p-plan {
  position: relative;
  padding-block: clamp(80px, 8vw, 130px);
  overflow: hidden;
  background-color: #fff;
}
.p-plan__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}
.p-plan__header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 34px;
}
.p-plan__section-number {
  position: relative;
  flex-shrink: 0;
  margin: 0;
  padding-bottom: 7px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(3rem, 3.2vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}
.p-plan__section-number::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #7f9661;
  content: "";
}
.p-plan__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.2rem, 2.3vw, 3.2rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
}
.p-plan {
  /* ========================================
  Plan cards
  ======================================== */
}
.p-plan__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(14px, 1.6vw, 24px);
}
.p-plan {
  /* ========================================
  Bottom button
  ======================================== */
}
.p-plan__button {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.p-plan__button .c-button {
  width: min(100%, 390px);
  min-height: 48px;
  padding: 12px 40px 12px 24px;
  border-radius: 8px;
  font-size: 1.2rem;
  text-align: center;
}

/* ==================================================
Plan Card
================================================== */
.p-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 18px 26px;
  overflow: hidden;
  border: 1px solid rgba(51, 51, 51, 0.08);
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(51, 51, 51, 0.055);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.p-plan-card:hover {
  border-color: rgba(127, 150, 97, 0.3);
  box-shadow: 0 14px 32px rgba(51, 51, 51, 0.09);
  transform: translateY(-5px);
}
.p-plan-card:hover .p-plan-card__visual img {
  transform: scale(1.04);
}
.p-plan-card {
  /* ========================================
  Card title
  ======================================== */
}
.p-plan-card__title {
  margin: 0 0 18px;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.5rem, 1.35vw, 1.9rem);
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-plan-card {
  /* ========================================
  Card illustration
  ======================================== */
}
.p-plan-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(110px, 10vw, 145px);
  margin: 0 0 18px;
  overflow: hidden;
}
.p-plan-card__visual img {
  display: block;
  width: 100%;
  max-width: 180px;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.5s ease;
}
.p-plan-card {
  /* ========================================
  Description
  ======================================== */
}
.p-plan-card__description {
  margin: 0;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.85;
  text-align: center;
  letter-spacing: 0.035em;
}
.p-plan-card {
  /* ========================================
  Features
  ======================================== */
}
.p-plan-card__features {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(51, 51, 51, 0.08);
  list-style: none;
}
.p-plan-card__features li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: #333;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.025em;
}
.p-plan-card__features li::before {
  position: absolute;
  top: 0.47em;
  left: 1px;
  width: 9px;
  height: 5px;
  border-bottom: 1.5px solid #7f9661;
  border-left: 1.5px solid #7f9661;
  content: "";
  transform: rotate(-45deg);
}
.p-plan-card {
  /* ========================================
  Plan variations
  ======================================== */
}
.p-plan-card--spot .p-plan-card__visual img {
  max-width: 160px;
}
.p-plan-card--process {
  border-color: rgba(127, 150, 97, 0.2);
}
.p-plan-card--total {
  border-color: rgba(127, 150, 97, 0.28);
}
.p-plan-card--total::before {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background-color: rgba(127, 150, 97, 0.1);
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  content: "Recommended";
}

/* ==================================================
Large desktop
================================================== */
@media screen and (min-width: 1280px) {
  .p-plan__cards {
    gap: 20px;
  }
  .p-plan-card {
    min-height: 340px;
    padding: 26px 20px 28px;
  }
  .p-plan-card__visual {
    height: 150px;
  }
  .p-plan-card__visual img {
    max-width: 190px;
  }
}
/* ==================================================
Tablet
1024px以下
================================================== */
@media (max-width: 1024px) {
  .p-plan__header {
    margin-bottom: 32px;
  }
  .p-plan__cards {
    width: 100%;
    max-width: 760px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .p-plan__button {
    justify-content: flex-start;
  }
  .p-plan__button .c-button {
    width: min(100%, 420px);
  }
  .p-plan-card {
    padding: 26px 20px 28px;
  }
  .p-plan-card__visual {
    height: 145px;
  }
  .p-plan-card__description {
    font-size: 1.2rem;
  }
  .p-plan-card__features li {
    font-size: 1.1rem;
  }
}
/* ==================================================
Smartphone
767px以下
================================================== */
@media (max-width: 768px) {
  .p-plan {
    padding-block: 64px 80px;
  }
  .p-plan__inner {
    width: calc(100% - 32px);
  }
  .p-plan__header {
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 28px;
  }
  .p-plan__section-number {
    padding-bottom: 6px;
    font-size: 2.8rem;
  }
  .p-plan__title {
    padding-top: 1px;
    font-size: 2.1rem;
    line-height: 1.55;
    letter-spacing: 0.05em;
  }
  .p-plan__cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .p-plan__button {
    margin-top: 28px;
  }
  .p-plan__button .c-button {
    width: 100%;
    min-width: 100%;
    font-size: 1.2rem;
  }
  .p-plan-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    grid-template-areas: "visual title" "visual description" "features features";
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    padding: 22px 18px;
    border-radius: 12px;
  }
  .p-plan-card__title {
    grid-area: title;
    margin: 0 0 8px;
    font-size: 1.7rem;
    text-align: left;
  }
  .p-plan-card__visual {
    grid-area: visual;
    width: 120px;
    height: 110px;
    margin: 0;
  }
  .p-plan-card__visual img {
    max-width: 115px;
  }
  .p-plan-card__description {
    grid-area: description;
    font-size: 1.2rem;
    line-height: 1.75;
    text-align: left;
  }
  .p-plan-card__features {
    grid-area: features;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 14px;
    margin-top: 18px;
    padding-top: 16px;
  }
  .p-plan-card__features li {
    font-size: 1.05rem;
  }
  .p-plan-card--total::before {
    top: 9px;
    right: 9px;
    font-size: 0.75rem;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 480px) {
  .p-plan-card {
    grid-template-columns: 92px minmax(0, 1fr);
    -moz-column-gap: 14px;
         column-gap: 14px;
  }
  .p-plan-card__visual {
    width: 92px;
    height: 92px;
  }
  .p-plan-card__visual img {
    max-width: 88px;
  }
  .p-plan-card__features {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 374px) {
  .p-plan__header {
    gap: 10px;
  }
  .p-plan__section-number {
    font-size: 2.5rem;
  }
  .p-plan__title {
    font-size: 1.9rem;
  }
  .p-plan-card {
    padding-inline: 14px;
  }
  .p-plan-card__title {
    font-size: 1.55rem;
  }
  .p-plan-card__description {
    font-size: 1.1rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-plan-card,
  .p-plan-card__visual img {
    transition: none;
  }
}
/* ==================================================
News
最新のおしらせ + Instagram
================================================== */
.p-news {
  position: relative;
  padding-block: clamp(88px, 9vw, 150px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Inner
  ======================================== */
}
.p-news__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}
.p-news {
  /* ========================================
  Section header
  ======================================== */
}
.p-news__header {
  margin-bottom: clamp(38px, 5vw, 56px);
  text-align: center;
}
.p-news__english {
  margin: 0 0 10px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.18em;
}
.p-news__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.4rem, 2.8vw, 3.6rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.p-news {
  /* ========================================
  Main layout
  ======================================== */
}
.p-news__body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: stretch;
  gap: clamp(28px, 4vw, 56px);
  width: min(100%, 980px);
  margin-inline: auto;
}
.p-news {
  /* ========================================
  News list
  ======================================== */
}
.p-news__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.p-news__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-news__item {
  min-width: 0;
}
.p-news__empty {
  display: grid;
  place-items: center;
  min-height: 180px;
  margin: 0;
  padding: 32px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 6px;
  background-color: rgba(127, 150, 97, 0.035);
  color: #666;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
}
.p-news {
  /* ========================================
  News archive button
  ======================================== */
}
.p-news__button {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.p-news__button .c-button {
  width: 100%;
  min-height: 46px;
  padding-inline: 24px 42px;
  border-color: rgba(51, 51, 51, 0.16);
  border-radius: 5px;
  font-size: 1.15rem;
}
.p-news {
  /* ========================================
  Instagram square
  ======================================== */
}
.p-news__instagram {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 7px;
  background-color: rgba(51, 51, 51, 0.06);
  box-shadow: 0 8px 24px rgba(51, 51, 51, 0.055);
  /*
   * Smash Balloon Instagram Feed
   */
}
.p-news__instagram #sb_instagram {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.p-news__instagram #sbi_images {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.p-news__instagram .sbi_item {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.p-news__instagram .sbi_photo_wrap {
  width: 100% !important;
  height: 100% !important;
}
.p-news__instagram .sbi_photo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  background-position: center !important;
  background-size: cover !important;
  transition: transform 0.55s ease;
}
.p-news__instagram {
  /*
   * imgタグとして出力される場合にも対応
   */
}
.p-news__instagram .sbi_photo img,
.p-news__instagram .sbi_item img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-news__instagram {
  /*
   * 不要なプラグイン要素を非表示
   */
}
.p-news__instagram .sb_instagram_header,
.p-news__instagram .sbi_header_link,
.p-news__instagram .sbi_load_btn,
.p-news__instagram .sbi_follow_btn,
.p-news__instagram #sbi_load,
.p-news__instagram .sbi_info,
.p-news__instagram .sbi_caption {
  display: none !important;
}
.p-news__instagram:hover .sbi_photo {
  transform: scale(1.04);
}
.p-news {
  /* ========================================
  Instagram fallback
  ======================================== */
}
.p-news__instagram-fallback {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
.p-news__instagram-fallback img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.55s ease;
}
.p-news__instagram-fallback::after {
  position: absolute;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.12);
  content: "";
  pointer-events: none;
}
.p-news__instagram-fallback:hover img, .p-news__instagram-fallback:focus-visible img {
  transform: scale(1.04);
}
.p-news__instagram-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.92);
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
}

/* ==================================================
News card
================================================== */
.p-news-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(51, 51, 51, 0.09);
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 5px 16px rgba(51, 51, 51, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.p-news-card:hover {
  border-color: rgba(127, 150, 97, 0.3);
  box-shadow: 0 10px 24px rgba(51, 51, 51, 0.075);
  transform: translateY(-2px);
}
.p-news-card:hover .p-news-card__image {
  transform: scale(1.05);
}
.p-news-card:hover .p-news-card__title {
  color: #7f9661;
}
.p-news-card__link {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  min-height: 78px;
  color: inherit;
  text-decoration: none;
}
.p-news-card {
  /* ========================================
  Thumbnail
  ======================================== */
}
.p-news-card__thumbnail {
  position: relative;
  width: 78px;
  height: 78px;
  overflow: hidden;
  background-color: rgba(127, 150, 97, 0.08);
}
.p-news-card__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease;
}
.p-news-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #7f9661;
  opacity: 0.85;
}
.p-news-card {
  /* ========================================
  Card content
  ======================================== */
}
.p-news-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 12px 18px;
}
.p-news-card__title {
  display: -webkit-box;
  margin: 0 0 5px;
  overflow: hidden;
  color: #333;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.p-news-card__date {
  align-self: flex-end;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.92rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

/* ==================================================
Large desktop
================================================== */
@media screen and (min-width: 1280px) {
  .p-news__body {
    grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.85fr);
  }
  .p-news-card__link {
    grid-template-columns: 84px minmax(0, 1fr);
    min-height: 84px;
  }
  .p-news-card__thumbnail {
    width: 84px;
    height: 84px;
  }
  .p-news-card__content {
    padding-inline: 20px;
  }
}
/* ==================================================
Tablet
1024px以下
================================================== */
@media (max-width: 1024px) {
  .p-news {
    padding-block: 90px;
  }
  .p-news__body {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 28px;
  }
}
/* ==================================================
Smartphone
767px以下
================================================== */
@media (max-width: 768px) {
  .p-news {
    padding-block: 68px 76px;
  }
  .p-news__inner {
    width: calc(100% - 32px);
  }
  .p-news__header {
    margin-bottom: 34px;
  }
  .p-news__english {
    margin-bottom: 8px;
    font-size: 1rem;
  }
  .p-news__title {
    font-size: 2.4rem;
  }
  .p-news__body {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .p-news__instagram {
    order: 1;
    width: min(100%, 480px);
    margin-inline: auto;
  }
  .p-news__content {
    order: 2;
  }
  .p-news__button {
    margin-top: 16px;
  }
  .p-news__button .c-button {
    width: 100%;
  }
  .p-news-card__link {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 72px;
  }
  .p-news-card__thumbnail {
    width: 72px;
    height: 72px;
  }
  .p-news-card__content {
    padding: 10px 14px;
  }
  .p-news-card__title {
    margin-bottom: 4px;
    font-size: 1.15rem;
    line-height: 1.55;
  }
  .p-news-card__date {
    font-size: 0.9rem;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-news__inner {
    width: calc(100% - 24px);
  }
  .p-news__instagram-label {
    right: 10px;
    bottom: 10px;
    min-height: 30px;
    padding: 6px 11px;
    font-size: 0.9rem;
  }
  .p-news-card__link {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 64px;
  }
  .p-news-card__thumbnail {
    width: 64px;
    height: 64px;
  }
  .p-news-card__content {
    padding-inline: 11px;
  }
  .p-news-card__title {
    font-size: 1.05rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-news-card,
  .p-news-card__image,
  .p-news-card__title,
  .p-news__instagram .sbi_photo,
  .p-news__instagram-fallback img {
    transition: none;
  }
}
/* ==================================================
Works
施工事例
================================================== */
.p-works {
  position: relative;
  padding-block: clamp(80px, 8vw, 130px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Inner
  ======================================== */
}
.p-works__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
}
.p-works {
  /* ========================================
  Header
  ======================================== */
}
.p-works__header {
  margin-bottom: clamp(36px, 5vw, 56px);
  text-align: center;
}
.p-works__english {
  margin: 0 0 8px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.18em;
}
.p-works__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.4rem, 2.8vw, 3.6rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.p-works {
  /* ========================================
  Slider
  ======================================== */
}
.p-works__slider-wrap {
  position: relative;
  width: 100%;
}
.p-works__slider {
  width: 100%;
  padding: 6px 4px 18px;
  overflow: hidden;
  /*
   * Swiperが付与するインライン幅より優先
   */
}
.p-works__slider .swiper-slide {
  flex: 0 0 270px !important;
  width: 270px !important;
  max-width: 270px !important;
  height: auto !important;
}
.p-works__slider {
  /*
   * 投稿数が少ないときは中央配置
   */
}
.p-works__slider[data-slide-count="1"] .p-works__list, .p-works__slider[data-slide-count="2"] .p-works__list, .p-works__slider[data-slide-count="3"] .p-works__list {
  justify-content: center;
}
.p-works__list {
  align-items: stretch;
}
.p-works {
  /* ========================================
  Navigation
  ======================================== */
}
.p-works__navigation {
  position: absolute;
  top: 135px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(127, 150, 97, 0.35);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.96);
  color: #7f9661;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.p-works__navigation span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}
.p-works__navigation:hover, .p-works__navigation:focus-visible {
  border-color: #7f9661;
  background-color: #7f9661;
  color: #fff;
}
.p-works__navigation--prev {
  left: -56px;
}
.p-works__navigation--next {
  right: -56px;
}
.p-works__navigation.swiper-button-disabled {
  opacity: 0.25;
  pointer-events: none;
}
.p-works {
  /* ========================================
  Pagination
  ======================================== */
}
.p-works__pagination {
  position: relative !important;
  bottom: auto !important;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.p-works__pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  border-radius: 50%;
  background-color: rgba(127, 150, 97, 0.28);
  opacity: 1;
  transition: width 0.3s ease, border-radius 0.3s ease, background-color 0.3s ease;
}
.p-works__pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  background-color: #7f9661;
}
.p-works .swiper-button-lock,
.p-works .swiper-pagination-lock {
  display: none !important;
}
.p-works {
  /* ========================================
  Archive button
  ======================================== */
}
.p-works__button {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.p-works__button .c-button {
  width: min(100%, 280px);
  min-height: 48px;
  padding-inline: 28px 44px;
}
.p-works {
  /* ========================================
  Empty
  ======================================== */
}
.p-works__empty {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 48px 24px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 8px;
  background-color: rgba(127, 150, 97, 0.04);
  color: #666;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
}

/* ==================================================
Works Card
================================================== */
.p-works-card {
  display: flex;
  flex: 0 0 270px !important;
  width: 270px !important;
  max-width: 270px !important;
  height: auto;
  min-width: 0;
}
.p-works-card__link {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.p-works-card {
  /* ========================================
  Square image area
  ======================================== */
}
.p-works-card__visual {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  /*
   * 横幅と同じ高さを作る
   * 270px幅なら270px高になる
   */
  height: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  padding-top: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 8px;
  background-color: rgba(127, 150, 97, 0.08);
  /*
   * 古いaspect-ratio指定を無効化
   */
  aspect-ratio: auto !important;
}
.p-works-card__visual::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(51, 51, 51, 0.08);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
.p-works-card__image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1;
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: center !important;
     object-position: center !important;
  /*
   * WordPressの自動サイズ指定を無効化
   */
  contain: none !important;
  contain-intrinsic-size: none !important;
  content-visibility: visible !important;
  transition: transform 0.6s ease;
}
.p-works-card__placeholder {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(127, 150, 97, 0.12);
  color: rgba(127, 150, 97, 0.75);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.p-works-card {
  /* ========================================
  Body
  ======================================== */
}
.p-works-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding-top: 14px;
}
.p-works-card {
  /* ========================================
  Category
  ======================================== */
}
.p-works-card__category {
  align-self: flex-start;
  margin: 0 0 8px;
  padding: 5px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
.p-works-card__category--newbuild {
  border-color: rgba(127, 150, 97, 0.25);
  background-color: rgba(127, 150, 97, 0.1);
  color: #7f9661;
}
.p-works-card__category--renovation {
  border-color: rgba(183, 120, 56, 0.25);
  background-color: rgba(183, 120, 56, 0.1);
  color: #925a25;
}
.p-works-card__category--selfbuild {
  border-color: rgba(85, 124, 145, 0.25);
  background-color: rgba(85, 124, 145, 0.11);
  color: #406678;
}
.p-works-card__category--shop {
  border-color: rgba(139, 102, 143, 0.25);
  background-color: rgba(139, 102, 143, 0.1);
  color: #75517a;
}
.p-works-card__category--other {
  border-color: rgba(102, 102, 102, 0.22);
  background-color: rgba(102, 102, 102, 0.09);
  color: #666;
}
.p-works-card {
  /* ========================================
  Title
  ======================================== */
}
.p-works-card__title {
  display: -webkit-box;
  margin: 0 0 7px;
  overflow: hidden;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.045em;
  transition: color 0.3s ease;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.p-works-card {
  /* ========================================
  Location
  ======================================== */
}
.p-works-card__location {
  position: relative;
  margin: 0 0 8px;
  padding-left: 15px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.035em;
}
.p-works-card__location::before {
  position: absolute;
  top: 0.5em;
  left: 1px;
  width: 7px;
  height: 7px;
  border: 1px solid #7f9661;
  border-radius: 50%;
  content: "";
}
.p-works-card {
  /* ========================================
  Description
  ======================================== */
}
.p-works-card__text {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #666;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.03em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.p-works-card {
  /* ========================================
  Hover
  ======================================== */
}
.p-works-card__link:hover .p-works-card__image, .p-works-card__link:focus-visible .p-works-card__image {
  transform: scale(1.05);
}
.p-works-card__link:hover .p-works-card__title, .p-works-card__link:focus-visible .p-works-card__title {
  color: #7f9661;
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-works__navigation--prev {
    left: 6px;
  }
  .p-works__navigation--next {
    right: 6px;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-works {
    padding-block: 86px;
  }
  .p-works__slider .swiper-slide {
    flex: 0 0 250px !important;
    width: 250px !important;
    max-width: 250px !important;
  }
  .p-works__navigation {
    top: 125px;
    width: 38px;
    height: 38px;
  }
  .p-works__navigation--prev {
    left: 4px;
  }
  .p-works__navigation--next {
    right: 4px;
  }
  .p-works-card {
    flex: 0 0 250px !important;
    width: 250px !important;
    max-width: 250px !important;
  }
  .p-works-card__title {
    font-size: 1.25rem;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-works {
    padding-block: 68px 76px;
  }
  .p-works__inner {
    width: calc(100% - 32px);
  }
  .p-works__header {
    margin-bottom: 32px;
  }
  .p-works__english {
    font-size: 1rem;
  }
  .p-works__title {
    font-size: 2.4rem;
  }
  .p-works__slider-wrap {
    width: calc(100% + 16px);
  }
  .p-works__slider {
    padding-bottom: 14px;
    overflow: visible;
  }
  .p-works__slider[data-slide-count="1"] {
    width: 100%;
    overflow: hidden;
  }
  .p-works__slider .swiper-slide {
    flex: 0 0 min(76vw, 280px) !important;
    width: min(76vw, 280px) !important;
    max-width: 280px !important;
  }
  .p-works__navigation {
    display: none;
  }
  .p-works__pagination {
    justify-content: flex-start;
    margin-top: 12px;
  }
  .p-works__button {
    margin-top: 26px;
  }
  .p-works__button .c-button {
    width: 100%;
  }
  .p-works-card {
    flex: 0 0 min(76vw, 280px) !important;
    width: min(76vw, 280px) !important;
    max-width: 280px !important;
  }
  .p-works-card__visual {
    border-radius: 7px;
  }
  .p-works-card__body {
    padding-top: 12px;
  }
  .p-works-card__category {
    margin-bottom: 7px;
    font-size: 0.85rem;
  }
  .p-works-card__title {
    font-size: 1.2rem;
  }
  .p-works-card__location {
    font-size: 0.9rem;
  }
  .p-works-card__text {
    font-size: 0.95rem;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-works__inner {
    width: calc(100% - 24px);
  }
  .p-works__slider .swiper-slide {
    flex: 0 0 min(82vw, 260px) !important;
    width: min(82vw, 260px) !important;
    max-width: 260px !important;
  }
  .p-works-card {
    flex: 0 0 min(82vw, 260px) !important;
    width: min(82vw, 260px) !important;
    max-width: 260px !important;
  }
}
/* ==================================================
Final square override
他のCSSより確実に優先させる
================================================== */
.p-works .p-works-card__visual {
  position: relative !important;
  width: 100% !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  padding-top: 100% !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
}

.p-works .p-works-card__visual > img.p-works-card__image {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: center !important;
     object-position: center !important;
  contain: none !important;
  contain-intrinsic-size: none !important;
  content-visibility: visible !important;
}

/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-works-card__image,
  .p-works-card__title,
  .p-works__navigation,
  .p-works__pagination .swiper-pagination-bullet {
    transition: none;
  }
}
/* ==================================================
Contact
お問い合わせ
================================================== */
.p-contact {
  position: relative;
  display: grid;
  min-height: clamp(720px, 76vw, 980px);
  overflow: hidden;
  background-color: #7f9661;
  isolation: isolate;
  /* ========================================
  Background
  ======================================== */
}
.p-contact__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.p-contact__background-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.02);
}
.p-contact {
  /* ========================================
  Overlay
  ======================================== */
}
.p-contact__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  /*
   * 写真を暗くして文字の視認性を確保
   */
  background: linear-gradient(180deg, rgba(127, 150, 97, 0.32) 0%, rgba(19, 41, 30, 0.6) 28%, rgba(19, 41, 30, 0.72) 68%, rgba(19, 41, 30, 0.5) 100%);
  /*
   * 上下を白くぼかして
   * 前後セクションへ自然につなぐ
   */
}
.p-contact__overlay::before, .p-contact__overlay::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 1;
  height: clamp(90px, 12vw, 180px);
  content: "";
  pointer-events: none;
}
.p-contact__overlay::before {
  top: 0;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.72) 24%, rgba(255, 255, 255, 0) 100%);
}
.p-contact__overlay::after {
  bottom: 0;
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.7) 24%, rgba(255, 255, 255, 0) 100%);
}
.p-contact {
  /* ========================================
  Inner
  ======================================== */
}
.p-contact__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  padding-block: clamp(150px, 15vw, 220px);
}
.p-contact {
  /* ========================================
  Content
  ======================================== */
}
.p-contact__content {
  width: min(100%, 860px);
  margin-inline: auto;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}
.p-contact {
  /* ========================================
  Heading
  ======================================== */
}
.p-contact__header {
  margin-bottom: clamp(28px, 4vw, 42px);
}
.p-contact__english {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.22em;
}
.p-contact__title {
  margin: 0;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.6rem, 3.4vw, 4.6rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.075em;
}
.p-contact {
  /* ========================================
  Description
  ======================================== */
}
.p-contact__description {
  width: min(100%, 760px);
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.2rem, 1.35vw, 1.5rem);
  line-height: 2.15;
  letter-spacing: 0.055em;
}
.p-contact__description p {
  margin: 0;
}
.p-contact__description p + p {
  margin-top: 16px;
}
.p-contact {
  /* ========================================
  Message
  ======================================== */
}
.p-contact__message {
  margin: clamp(30px, 4vw, 46px) 0 0;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.4rem, 1.65vw, 1.8rem);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.07em;
}
.p-contact {
  /* ========================================
  Button
  ======================================== */
}
.p-contact__button {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.p-contact__button .c-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 320px);
  min-height: 58px;
  padding: 14px 54px 14px 34px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-shadow: none;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.p-contact__button .c-button::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.p-contact__button .c-button:hover, .p-contact__button .c-button:focus-visible {
  border-color: #fff;
  background-color: #7f9661;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  color: #fff;
  transform: translateY(-2px);
}
.p-contact__button .c-button:hover::after, .p-contact__button .c-button:focus-visible::after {
  transform: translate(4px, -50%) rotate(45deg);
}
.p-contact {
  /* ========================================
  Points
  ======================================== */
}
.p-contact__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 30px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.p-contact__point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.045em;
}
.p-contact__check {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.13);
  color: #fff;
}
.p-contact__check svg {
  display: block;
  width: 13px;
  height: 13px;
}
.p-contact__point-text {
  display: block;
}

/* ==================================================
Wide desktop
================================================== */
@media screen and (min-width: 1440px) {
  .p-contact {
    min-height: 920px;
  }
  .p-contact__background-image {
    -o-object-position: center 48%;
       object-position: center 48%;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-contact {
    min-height: 760px;
  }
  .p-contact__inner {
    padding-block: 140px;
  }
  .p-contact__content {
    width: min(100%, 760px);
  }
  .p-contact__title {
    font-size: clamp(2.5rem, 4vw, 3.6rem);
  }
  .p-contact__description {
    font-size: 1.2rem;
    line-height: 2;
  }
  .p-contact__points {
    gap: 12px 22px;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-contact {
    min-height: auto;
  }
  .p-contact__background-image {
    -o-object-position: 52% center;
       object-position: 52% center;
    transform: scale(1.04);
  }
  .p-contact__overlay {
    background: linear-gradient(180deg, rgba(127, 150, 97, 0.42) 0%, rgba(19, 41, 30, 0.7) 26%, rgba(19, 41, 30, 0.78) 72%, rgba(19, 41, 30, 0.58) 100%);
  }
  .p-contact__overlay::before, .p-contact__overlay::after {
    height: 100px;
  }
  .p-contact__inner {
    width: calc(100% - 32px);
    padding-block: 120px 130px;
  }
  .p-contact__header {
    margin-bottom: 26px;
  }
  .p-contact__english {
    margin-bottom: 10px;
    font-size: 1rem;
  }
  .p-contact__title {
    font-size: clamp(2rem, 7.1vw, 2.8rem);
    line-height: 1.7;
    letter-spacing: 0.055em;
  }
  .p-contact__title br {
    display: none;
  }
  .p-contact__description {
    font-size: 1.05rem;
    line-height: 1.95;
    letter-spacing: 0.035em;
  }
  .p-contact__description br {
    display: none;
  }
  .p-contact__description p + p {
    margin-top: 14px;
  }
  .p-contact__message {
    margin-top: 28px;
    font-size: 1.25rem;
    line-height: 1.8;
  }
  .p-contact__button {
    margin-top: 20px;
  }
  .p-contact__button .c-button {
    width: 100%;
    min-height: 56px;
    padding-inline: 28px 50px;
    font-size: 1.15rem;
  }
  .p-contact__points {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
  }
  .p-contact__point {
    font-size: 0.95rem;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-contact__inner {
    width: calc(100% - 24px);
    padding-block: 110px 120px;
  }
  .p-contact__title {
    font-size: 1.9rem;
  }
  .p-contact__description {
    font-size: 1rem;
  }
  .p-contact__message {
    font-size: 1.15rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-contact__background-image,
  .p-contact__button .c-button,
  .p-contact__button .c-button::after {
    transition: none;
  }
}
/* page-scss */
/* ==================================================
Self Build Page
================================================== */
.p-selfbuild-page {
  overflow: hidden;
  background-color: #fff;
}

/* ==================================================
Shared section
================================================== */
.p-selfbuild-section {
  position: relative;
  padding-block: clamp(80px, 8vw, 130px);
}
.p-selfbuild-section__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
}
.p-selfbuild-section__header {
  text-align: center;
}
.p-selfbuild-section__english {
  margin: 0 0 10px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.18em;
}
.p-selfbuild-section__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.4rem, 3vw, 4rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.p-selfbuild-section__lead {
  margin: 24px 0 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.3rem, 1.6vw, 1.7rem);
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: center;
}
.p-selfbuild-section__text {
  color: #666;
  font-size: 1.1rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .p-selfbuild-section {
    padding-block: 68px;
  }
  .p-selfbuild-section__inner {
    width: calc(100% - 32px);
  }
  .p-selfbuild-section__title {
    font-size: 2.3rem;
  }
  .p-selfbuild-section__lead {
    margin-top: 20px;
    font-size: 1.2rem;
  }
  .p-selfbuild-section__lead br {
    display: none;
  }
  .p-selfbuild-section__text {
    font-size: 1rem;
    line-height: 1.9;
  }
}
/* ==================================================
Self Build Hero
================================================== */
.p-selfbuild-hero {
  position: relative;
  padding-block: clamp(100px, 10vw, 160px) clamp(80px, 8vw, 120px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Inner
  ======================================== */
}
.p-selfbuild-hero__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}
.p-selfbuild-hero {
  /* ========================================
  Content
  ======================================== */
}
.p-selfbuild-hero__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}
.p-selfbuild-hero__header {
  margin-bottom: clamp(28px, 4vw, 44px);
}
.p-selfbuild-hero__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(3rem, 4vw, 5.2rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.09em;
}
.p-selfbuild-hero__lead {
  margin: clamp(30px, 4vw, 48px) 0 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.1em;
}
.p-selfbuild-hero__description {
  color: #666;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 2.15;
  letter-spacing: 0.045em;
}
.p-selfbuild-hero__description p {
  margin: 0;
}
.p-selfbuild-hero__description p + p {
  margin-top: 18px;
}
.p-selfbuild-hero {
  /* ========================================
  Visual
  ======================================== */
}
.p-selfbuild-hero__visual {
  position: relative;
  z-index: 1;
  width: 125%;
  margin-right: -25%;
}
.p-selfbuild-hero__figure {
  position: relative;
  width: 100%;
  margin: 0;
}
.p-selfbuild-hero__figure::before {
  position: absolute;
  top: 7%;
  right: 8%;
  bottom: 5%;
  left: 4%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 150, 97, 0.11) 0%, rgba(127, 150, 97, 0.055) 48%, rgba(127, 150, 97, 0) 75%);
  content: "";
  filter: blur(10px);
}
.p-selfbuild-hero__house {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.p-selfbuild-hero {
  /* ========================================
  Decoration
  ======================================== */
}
.p-selfbuild-hero__decoration {
  position: absolute;
  right: -60px;
  bottom: -40px;
  z-index: 1;
  width: clamp(220px, 28vw, 460px);
  pointer-events: none;
}
.p-selfbuild-hero__leaf {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.42;
}

/* ==================================================
Large desktop
================================================== */
@media screen and (min-width: 1440px) {
  .p-selfbuild-hero__inner {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  }
  .p-selfbuild-hero__visual {
    width: 132%;
    margin-right: -32%;
  }
}
/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-selfbuild-hero__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
  }
  .p-selfbuild-hero__visual {
    width: 112%;
    margin-right: -12%;
  }
  .p-selfbuild-hero__title {
    font-size: clamp(3rem, 4.5vw, 4.4rem);
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-selfbuild-hero {
    padding-block: 110px 90px;
  }
  .p-selfbuild-hero__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 30px;
  }
  .p-selfbuild-hero__content {
    max-width: 440px;
  }
  .p-selfbuild-hero__title {
    font-size: clamp(2.8rem, 5vw, 4rem);
  }
  .p-selfbuild-hero__lead {
    margin-top: 28px;
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  }
  .p-selfbuild-hero__description {
    font-size: 1rem;
    line-height: 2;
  }
  .p-selfbuild-hero__visual {
    width: 110%;
    margin-right: -10%;
  }
  .p-selfbuild-hero__decoration {
    right: -70px;
    bottom: -20px;
    width: 300px;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-selfbuild-hero {
    padding-block: 92px 68px;
  }
  .p-selfbuild-hero__inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .p-selfbuild-hero__content {
    max-width: none;
  }
  .p-selfbuild-hero__header {
    margin-bottom: 26px;
  }
  .p-selfbuild-hero__title {
    font-size: clamp(2.7rem, 10vw, 3.6rem);
    line-height: 1.45;
    letter-spacing: 0.07em;
  }
  .p-selfbuild-hero__lead {
    margin-top: 24px;
    font-size: clamp(1.4rem, 5.3vw, 1.75rem);
    line-height: 1.85;
    letter-spacing: 0.075em;
  }
  .p-selfbuild-hero__description {
    font-size: 1rem;
    line-height: 1.95;
    letter-spacing: 0.035em;
  }
  .p-selfbuild-hero__description br {
    display: none;
  }
  .p-selfbuild-hero__description p + p {
    margin-top: 16px;
  }
  .p-selfbuild-hero__visual {
    width: calc(100% + 28px);
    margin-right: -14px;
    margin-left: -14px;
  }
  .p-selfbuild-hero__figure::before {
    inset: 8% 4% 4%;
  }
  .p-selfbuild-hero__decoration {
    right: -80px;
    bottom: -20px;
    width: 240px;
    opacity: 0.65;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-selfbuild-hero__inner {
    width: calc(100% - 24px);
  }
  .p-selfbuild-hero__title {
    font-size: 2.6rem;
  }
  .p-selfbuild-hero__lead {
    font-size: 1.35rem;
  }
  .p-selfbuild-hero__description {
    font-size: 0.95rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-selfbuild-hero__house,
  .p-selfbuild-hero__leaf {
    transition: none;
  }
}
/* ==================================================
Self Build Comparison
一般的なハウスメーカーとの違い
================================================== */
.p-selfbuild-comparison {
  position: relative;
  padding-block: clamp(90px, 10vw, 150px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Background
  ======================================== */
}
.p-selfbuild-comparison__background {
  position: absolute;
  inset: clamp(24px, 4vw, 60px) max(20px, (100vw - 1280px) / 2);
  z-index: 0;
  overflow: hidden;
  border-radius: clamp(40px, 7vw, 90px);
  background: linear-gradient(135deg, rgba(247, 242, 229, 0.96), rgba(255, 253, 246, 0.9));
  pointer-events: none;
}
.p-selfbuild-comparison__background-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.72;
}
.p-selfbuild-comparison {
  /* ========================================
  Decoration
  ======================================== */
}
.p-selfbuild-comparison__decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.p-selfbuild-comparison__decoration img {
  display: block;
  width: 100%;
  height: auto;
}
.p-selfbuild-comparison__decoration--left {
  bottom: 20px;
  left: max(-36px, (100vw - 1320px) / 2 - 70px);
  width: clamp(150px, 18vw, 280px);
}
.p-selfbuild-comparison__decoration--right {
  right: max(-45px, (100vw - 1320px) / 2 - 80px);
  bottom: 0;
  width: clamp(180px, 21vw, 340px);
}
.p-selfbuild-comparison {
  /* ========================================
  Inner
  ======================================== */
}
.p-selfbuild-comparison__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
  padding-block: clamp(50px, 7vw, 100px);
}
.p-selfbuild-comparison {
  /* ========================================
  Header
  ======================================== */
}
.p-selfbuild-comparison__header {
  margin-bottom: clamp(42px, 6vw, 76px);
  text-align: center;
}
.p-selfbuild-comparison__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.4rem, 3vw, 4rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.p-selfbuild-comparison {
  /* ========================================
  Body
  ======================================== */
}
.p-selfbuild-comparison__body {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.5fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  width: min(100%, 1080px);
  margin-inline: auto;
}
.p-selfbuild-comparison {
  /* ========================================
  Text content
  ======================================== */
}
.p-selfbuild-comparison__content {
  color: #333;
  text-align: center;
}
.p-selfbuild-comparison__message {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.25rem, 1.55vw, 1.65rem);
  line-height: 2;
  letter-spacing: 0.08em;
}
.p-selfbuild-comparison__message + .p-selfbuild-comparison__message {
  margin-top: 24px;
}
.p-selfbuild-comparison__description {
  margin-top: clamp(28px, 4vw, 46px);
  color: #666;
  font-size: 1.05rem;
  line-height: 2.05;
  letter-spacing: 0.045em;
}
.p-selfbuild-comparison__description p {
  margin: 0;
}
.p-selfbuild-comparison__description p + p {
  margin-top: 20px;
}
.p-selfbuild-comparison {
  /* ========================================
  Table wrapper
  ======================================== */
}
.p-selfbuild-comparison__table-wrap {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(127, 150, 97, 0.35);
  background-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(85, 75, 54, 0.06);
}
.p-selfbuild-comparison {
  /* ========================================
  Table
  ======================================== */
}
.p-selfbuild-comparison__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #333;
  font-size: 0.98rem;
  line-height: 1.6;
}
.p-selfbuild-comparison__table th,
.p-selfbuild-comparison__table td {
  padding: 14px 16px;
  border-right: 1px solid rgba(127, 150, 97, 0.24);
  border-bottom: 1px solid rgba(127, 150, 97, 0.24);
  vertical-align: middle;
}
.p-selfbuild-comparison__table th:last-child,
.p-selfbuild-comparison__table td:last-child {
  border-right: 0;
}
.p-selfbuild-comparison__table tr:last-child th,
.p-selfbuild-comparison__table tr:last-child td {
  border-bottom: 0;
}
.p-selfbuild-comparison__table thead th {
  background-color: rgba(255, 255, 255, 0.72);
  color: #666;
  font-family: "Zen Old Mincho", serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-selfbuild-comparison__table thead th:first-child {
  width: 34%;
}
.p-selfbuild-comparison__table thead th:nth-child(2),
.p-selfbuild-comparison__table thead th:nth-child(3) {
  width: 33%;
}
.p-selfbuild-comparison__table tbody th {
  background-color: rgba(255, 255, 255, 0.56);
  font-weight: 500;
  text-align: left;
}
.p-selfbuild-comparison__table tbody td {
  background-color: rgba(255, 255, 255, 0.48);
  text-align: center;
}
.p-selfbuild-comparison__selfbuild-heading {
  background-color: rgba(255, 255, 255, 0.09) !important;
  color: #7f9661 !important;
}
.p-selfbuild-comparison__selfbuild {
  background-color: rgba(255, 255, 255, 0.07) !important;
  color: #7f9661;
  font-weight: 600;
}
.p-selfbuild-comparison {
  /* ========================================
  Row heading
  ======================================== */
}
.p-selfbuild-comparison__row-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-selfbuild-comparison {
  /* ========================================
  Icons
  ======================================== */
}
.p-selfbuild-comparison__icon {
  display: block;
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-selfbuild-comparison__icon--house {
  background-image: url("../images/selfbuild/comparison-icon-house.svg");
}
.p-selfbuild-comparison__icon--tools {
  background-image: url("../images/selfbuild/comparison-icon-tools.svg");
}
.p-selfbuild-comparison__icon--people {
  background-image: url("../images/selfbuild/comparison-icon-people.svg");
}
.p-selfbuild-comparison__icon--calendar {
  background-image: url("../images/selfbuild/comparison-icon-calendar.svg");
}
.p-selfbuild-comparison__icon--heart {
  background-image: url("../images/selfbuild/comparison-icon-heart.svg");
}
.p-selfbuild-comparison__icon--cost {
  background-image: url("../images/selfbuild/comparison-icon-cost.svg");
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-selfbuild-comparison__background {
    inset-inline: 24px;
  }
  .p-selfbuild-comparison__body {
    grid-template-columns: minmax(190px, 0.62fr) minmax(0, 1.38fr);
    gap: 42px;
  }
  .p-selfbuild-comparison__table {
    font-size: 0.9rem;
  }
  .p-selfbuild-comparison__table th,
  .p-selfbuild-comparison__table td {
    padding: 12px 10px;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-selfbuild-comparison {
    padding-block: 80px;
  }
  .p-selfbuild-comparison__background {
    inset: 24px 20px;
    border-radius: 46px;
  }
  .p-selfbuild-comparison__inner {
    padding-block: 60px;
  }
  .p-selfbuild-comparison__body {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .p-selfbuild-comparison__content {
    width: min(100%, 620px);
    margin-inline: auto;
  }
  .p-selfbuild-comparison__description {
    margin-top: 28px;
  }
  .p-selfbuild-comparison__table-wrap {
    width: min(100%, 760px);
    margin-inline: auto;
  }
  .p-selfbuild-comparison__decoration--left {
    left: -50px;
    width: 190px;
  }
  .p-selfbuild-comparison__decoration--right {
    right: -60px;
    width: 230px;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-selfbuild-comparison {
    padding-block: 58px;
  }
  .p-selfbuild-comparison__background {
    inset: 12px 10px;
    border-radius: 32px;
  }
  .p-selfbuild-comparison__inner {
    width: calc(100% - 32px);
    padding-block: 52px;
  }
  .p-selfbuild-comparison__header {
    margin-bottom: 34px;
  }
  .p-selfbuild-comparison__title {
    font-size: 2.25rem;
    line-height: 1.65;
    letter-spacing: 0.055em;
  }
  .p-selfbuild-comparison__body {
    gap: 36px;
  }
  .p-selfbuild-comparison__message {
    font-size: 1.2rem;
    line-height: 1.9;
  }
  .p-selfbuild-comparison__description {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.9;
  }
  .p-selfbuild-comparison__description br {
    display: none;
  }
  .p-selfbuild-comparison {
    /* ======================================
    Table to cards
    ====================================== */
  }
  .p-selfbuild-comparison__table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .p-selfbuild-comparison__table {
    display: block;
    width: 100%;
  }
  .p-selfbuild-comparison__table thead {
    display: none;
  }
  .p-selfbuild-comparison__table tbody {
    display: grid;
    gap: 14px;
  }
  .p-selfbuild-comparison__table tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(127, 150, 97, 0.26);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(85, 75, 54, 0.05);
  }
  .p-selfbuild-comparison__table th,
  .p-selfbuild-comparison__table td {
    display: block;
    width: auto;
    padding: 13px 12px;
    border: 0;
  }
  .p-selfbuild-comparison__table tbody th {
    grid-column: 1/-1;
    border-bottom: 1px solid rgba(127, 150, 97, 0.2);
    background-color: rgba(127, 150, 97, 0.07);
  }
  .p-selfbuild-comparison__table tbody td {
    position: relative;
    padding-top: 35px;
    background-color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .p-selfbuild-comparison__table tbody td::before {
    position: absolute;
    top: 9px;
    right: 8px;
    left: 8px;
    color: #666;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.03em;
    text-align: center;
  }
  .p-selfbuild-comparison__table tbody td:nth-of-type(1) {
    border-right: 1px solid rgba(127, 150, 97, 0.2);
  }
  .p-selfbuild-comparison__table tbody td:nth-of-type(1)::before {
    content: "一般的な住宅会社";
  }
  .p-selfbuild-comparison__table tbody td:nth-of-type(2) {
    background-color: rgba(127, 150, 97, 0.07);
  }
  .p-selfbuild-comparison__table tbody td:nth-of-type(2)::before {
    color: #7f9661;
    content: "セルフビルド";
  }
  .p-selfbuild-comparison__row-heading {
    justify-content: center;
    gap: 9px;
    text-align: center;
  }
  .p-selfbuild-comparison__icon {
    width: 21px;
    height: 21px;
  }
  .p-selfbuild-comparison__decoration {
    opacity: 0.55;
  }
  .p-selfbuild-comparison__decoration--left {
    bottom: 12px;
    left: -64px;
    width: 150px;
  }
  .p-selfbuild-comparison__decoration--right {
    right: -70px;
    bottom: 8px;
    width: 180px;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-selfbuild-comparison__inner {
    width: calc(100% - 24px);
  }
  .p-selfbuild-comparison__title {
    font-size: 2rem;
  }
  .p-selfbuild-comparison__table tbody td {
    padding-inline: 8px;
    font-size: 0.84rem;
  }
  .p-selfbuild-comparison__table tbody td::before {
    font-size: 0.67rem;
  }
}
/* ==================================================
Self Build Appeal
セルフビルドの魅力
================================================== */
.p-selfbuild-appeal {
  position: relative;
  padding-block: clamp(90px, 9vw, 150px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Inner
  ======================================== */
}
.p-selfbuild-appeal__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
}
.p-selfbuild-appeal {
  /* ========================================
  Header
  ======================================== */
}
.p-selfbuild-appeal__header {
  width: min(100%, 760px);
  margin-inline: auto;
  margin-bottom: clamp(60px, 8vw, 110px);
  text-align: center;
}
.p-selfbuild-appeal__english {
  margin: 0 0 10px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.p-selfbuild-appeal__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.6rem, 3.3vw, 4.2rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
}
.p-selfbuild-appeal__lead {
  margin: 24px 0 0;
  color: #666;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  line-height: 2;
  letter-spacing: 0.055em;
}
.p-selfbuild-appeal {
  /* ========================================
  List
  ======================================== */
}
.p-selfbuild-appeal__list {
  display: grid;
  gap: clamp(80px, 10vw, 150px);
}
.p-selfbuild-appeal {
  /* ========================================
  Item
  ======================================== */
}
.p-selfbuild-appeal__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  /*
   * 偶数番目は左右反転
   */
}
.p-selfbuild-appeal__item:nth-child(even) {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}
.p-selfbuild-appeal__item:nth-child(even) .p-selfbuild-appeal__visual {
  grid-column: 2;
}
.p-selfbuild-appeal__item:nth-child(even) .p-selfbuild-appeal__content {
  grid-column: 1;
  grid-row: 1;
}
.p-selfbuild-appeal {
  /* ========================================
  Visual
  ======================================== */
}
.p-selfbuild-appeal__visual {
  position: relative;
  width: 100%;
  margin: 0;
}
.p-selfbuild-appeal__visual::before {
  position: absolute;
  inset: 10% 5% 3%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 150, 97, 0.11) 0%, rgba(127, 150, 97, 0.05) 48%, rgba(127, 150, 97, 0) 76%);
  content: "";
  filter: blur(12px);
}
.p-selfbuild-appeal__image {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.p-selfbuild-appeal {
  /* ========================================
  Content
  ======================================== */
}
.p-selfbuild-appeal__content {
  position: relative;
  z-index: 1;
  max-width: 500px;
}
.p-selfbuild-appeal__number {
  margin: 0 0 14px;
  color: rgba(127, 150, 97, 0.35);
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(4.5rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
}
.p-selfbuild-appeal__item-title {
  position: relative;
  margin: 0;
  padding-bottom: 20px;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.8rem, 2.25vw, 2.65rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.075em;
}
.p-selfbuild-appeal__item-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54px;
  height: 1px;
  background-color: #7f9661;
  content: "";
}
.p-selfbuild-appeal__description {
  margin-top: 26px;
  color: #666;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-selfbuild-appeal__description p {
  margin: 0;
}
.p-selfbuild-appeal__description p + p {
  margin-top: 16px;
}

/* ==================================================
Wide desktop
================================================== */
@media screen and (min-width: 1440px) {
  .p-selfbuild-appeal__item {
    gap: 110px;
  }
  .p-selfbuild-appeal__visual {
    width: 108%;
  }
  .p-selfbuild-appeal__item:nth-child(even) .p-selfbuild-appeal__visual {
    margin-left: -8%;
  }
}
/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-selfbuild-appeal__item {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }
  .p-selfbuild-appeal__item:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .p-selfbuild-appeal__number {
    font-size: 5.5rem;
  }
  .p-selfbuild-appeal__item-title {
    font-size: 2rem;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-selfbuild-appeal {
    padding-block: 86px;
  }
  .p-selfbuild-appeal__header {
    margin-bottom: 70px;
  }
  .p-selfbuild-appeal__list {
    gap: 90px;
  }
  .p-selfbuild-appeal__item {
    gap: 36px;
  }
  .p-selfbuild-appeal__content {
    max-width: none;
  }
  .p-selfbuild-appeal__number {
    margin-bottom: 10px;
    font-size: 4.8rem;
  }
  .p-selfbuild-appeal__item-title {
    padding-bottom: 16px;
    font-size: 1.8rem;
  }
  .p-selfbuild-appeal__description {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.9;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-selfbuild-appeal {
    padding-block: 68px 82px;
  }
  .p-selfbuild-appeal__inner {
    width: calc(100% - 32px);
  }
  .p-selfbuild-appeal__header {
    margin-bottom: 54px;
  }
  .p-selfbuild-appeal__english {
    margin-bottom: 8px;
    font-size: 0.95rem;
  }
  .p-selfbuild-appeal__title {
    font-size: 2.35rem;
  }
  .p-selfbuild-appeal__lead {
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: 1.9;
  }
  .p-selfbuild-appeal__lead br {
    display: none;
  }
  .p-selfbuild-appeal__list {
    gap: 76px;
  }
  .p-selfbuild-appeal__item, .p-selfbuild-appeal__item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .p-selfbuild-appeal {
    /*
     * 偶数番目も画像→文章の順に戻す
     */
  }
  .p-selfbuild-appeal__item:nth-child(even) .p-selfbuild-appeal__visual {
    grid-column: auto;
    grid-row: auto;
  }
  .p-selfbuild-appeal__item:nth-child(even) .p-selfbuild-appeal__content {
    grid-column: auto;
    grid-row: auto;
  }
  .p-selfbuild-appeal__visual {
    width: calc(100% + 16px);
    margin-inline: -8px;
  }
  .p-selfbuild-appeal__visual::before {
    inset: 10% 3% 2%;
  }
  .p-selfbuild-appeal__content {
    width: 100%;
  }
  .p-selfbuild-appeal__number {
    margin-bottom: 8px;
    font-size: 4.2rem;
  }
  .p-selfbuild-appeal__item-title {
    padding-bottom: 15px;
    font-size: 1.65rem;
    line-height: 1.65;
    letter-spacing: 0.055em;
  }
  .p-selfbuild-appeal__item-title::after {
    width: 44px;
  }
  .p-selfbuild-appeal__description {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.9;
  }
  .p-selfbuild-appeal__description p + p {
    margin-top: 14px;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-selfbuild-appeal__inner {
    width: calc(100% - 24px);
  }
  .p-selfbuild-appeal__title {
    font-size: 2.15rem;
  }
  .p-selfbuild-appeal__number {
    font-size: 3.8rem;
  }
  .p-selfbuild-appeal__item-title {
    font-size: 1.5rem;
  }
  .p-selfbuild-appeal__description {
    font-size: 0.95rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-selfbuild-appeal__image {
    transition: none;
  }
}
/* ==================================================
Self Build Difficulty
セルフビルドの難しさ
================================================== */
.p-selfbuild-difficulty {
  position: relative;
  padding-block: clamp(90px, 9vw, 145px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Inner
  ======================================== */
}
.p-selfbuild-difficulty__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
}
.p-selfbuild-difficulty {
  /* ========================================
  Header
  ======================================== */
}
.p-selfbuild-difficulty__header {
  width: min(100%, 760px);
  margin-inline: auto;
  margin-bottom: clamp(50px, 6vw, 78px);
  text-align: center;
}
.p-selfbuild-difficulty__english {
  margin: 0 0 10px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.p-selfbuild-difficulty__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.6rem, 3.2vw, 4rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.p-selfbuild-difficulty__lead {
  margin: 22px 0 0;
  color: #666;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.15rem, 1.45vw, 1.5rem);
  line-height: 2;
  letter-spacing: 0.055em;
}
.p-selfbuild-difficulty {
  /* ========================================
  Card list
  ======================================== */
}
.p-selfbuild-difficulty__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 32px);
  width: min(100%, 1120px);
  margin-inline: auto;
}
.p-selfbuild-difficulty {
  /* ========================================
  Card
  ======================================== */
}
.p-selfbuild-difficulty__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  grid-template-areas: "content visual";
  align-items: end;
  min-width: 0;
  min-height: 280px;
  padding: 32px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(51, 51, 51, 0.22);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 20px rgba(57, 56, 47, 0.07);
}
.p-selfbuild-difficulty {
  /* ========================================
  Number
  ======================================== */
}
.p-selfbuild-difficulty__number {
  position: absolute;
  top: -40px;
  left: -13px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 50%;
  background-color: rgba(51, 51, 51, 0.78);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
.p-selfbuild-difficulty {
  /* ========================================
  Content
  ======================================== */
}
.p-selfbuild-difficulty__content {
  grid-area: content;
  position: relative;
  z-index: 2;
  align-self: start;
  min-width: 0;
  padding-right: 6px;
}
.p-selfbuild-difficulty__item-title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.3rem, 1.45vw, 1.65rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.06em;
}
.p-selfbuild-difficulty__description {
  margin-top: 16px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.85;
  letter-spacing: 0.035em;
}
.p-selfbuild-difficulty__description p {
  margin: 0;
}
.p-selfbuild-difficulty__description p + p {
  margin-top: 12px;
}
.p-selfbuild-difficulty {
  /* ========================================
  Image
  ======================================== */
}
.p-selfbuild-difficulty__visual {
  grid-area: visual;
  position: relative;
  z-index: 1;
  align-self: end;
  width: 135%;
  margin: 0 -20% -6px -15%;
}
.p-selfbuild-difficulty__image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.p-selfbuild-difficulty {
  /* ========================================
  Bottom message
  ======================================== */
}
.p-selfbuild-difficulty__message {
  width: min(100%, 780px);
  margin: clamp(54px, 7vw, 90px) auto 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.3rem, 1.7vw, 1.8rem);
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: center;
}
.p-selfbuild-difficulty__message p {
  margin: 0;
}
.p-selfbuild-difficulty__message p + p {
  margin-top: 10px;
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-selfbuild-difficulty__list {
    gap: 18px;
  }
  .p-selfbuild-difficulty__item {
    grid-template-columns: minmax(0, 1fr) 96px;
    min-height: 270px;
    padding: 30px 18px 20px;
  }
  .p-selfbuild-difficulty__item-title {
    font-size: 1.3rem;
  }
  .p-selfbuild-difficulty__description {
    font-size: 0.9rem;
  }
  .p-selfbuild-difficulty__visual {
    width: 140%;
    margin-right: -24%;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-selfbuild-difficulty {
    padding-block: 84px;
  }
  .p-selfbuild-difficulty__header {
    margin-bottom: 54px;
  }
  .p-selfbuild-difficulty__list {
    grid-template-columns: 1fr;
    width: min(100%, 700px);
    gap: 22px;
  }
  .p-selfbuild-difficulty__item {
    grid-template-columns: minmax(0, 1fr) 190px;
    min-height: 220px;
    padding: 34px 30px 26px;
  }
  .p-selfbuild-difficulty__content {
    padding-right: 18px;
  }
  .p-selfbuild-difficulty__item-title {
    font-size: 1.55rem;
  }
  .p-selfbuild-difficulty__description {
    font-size: 1rem;
    line-height: 1.9;
  }
  .p-selfbuild-difficulty__visual {
    width: 120%;
    margin: 0 -15% -8px -5%;
  }
  .p-selfbuild-difficulty__message {
    margin-top: 64px;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-selfbuild-difficulty {
    padding-block: 68px 78px;
  }
  .p-selfbuild-difficulty__inner {
    width: calc(100% - 32px);
  }
  .p-selfbuild-difficulty__header {
    margin-bottom: 42px;
  }
  .p-selfbuild-difficulty__english {
    margin-bottom: 8px;
    font-size: 0.95rem;
  }
  .p-selfbuild-difficulty__title {
    font-size: 2.3rem;
    line-height: 1.65;
  }
  .p-selfbuild-difficulty__lead {
    margin-top: 18px;
    font-size: 1.05rem;
    line-height: 1.9;
  }
  .p-selfbuild-difficulty__lead br {
    display: none;
  }
  .p-selfbuild-difficulty__list {
    gap: 18px;
  }
  .p-selfbuild-difficulty__item {
    grid-template-columns: minmax(0, 1fr) 105px;
    min-height: 245px;
    padding: 32px 18px 20px;
    border-radius: 9px;
  }
  .p-selfbuild-difficulty__number {
    top: -40px;
    left: -11px;
    width: 34px;
    height: 34px;
    font-size: 0.76rem;
  }
  .p-selfbuild-difficulty__content {
    padding-right: 4px;
  }
  .p-selfbuild-difficulty__item-title {
    font-size: 1.3rem;
    line-height: 1.65;
  }
  .p-selfbuild-difficulty__description {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .p-selfbuild-difficulty__description p + p {
    margin-top: 10px;
  }
  .p-selfbuild-difficulty__visual {
    width: 145%;
    margin: 0 -35% -4px -10%;
  }
  .p-selfbuild-difficulty__message {
    margin-top: 50px;
    font-size: 1.2rem;
    line-height: 1.9;
    letter-spacing: 0.055em;
  }
  .p-selfbuild-difficulty__message br {
    display: none;
  }
  .p-selfbuild-difficulty__message p + p {
    margin-top: 12px;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-selfbuild-difficulty__inner {
    width: calc(100% - 24px);
  }
  .p-selfbuild-difficulty__title {
    font-size: 2.1rem;
  }
  .p-selfbuild-difficulty__item {
    grid-template-columns: minmax(0, 1fr) 90px;
    min-height: 250px;
    padding-inline: 16px;
  }
  .p-selfbuild-difficulty__item-title {
    font-size: 1.2rem;
  }
  .p-selfbuild-difficulty__description {
    font-size: 0.85rem;
  }
  .p-selfbuild-difficulty__message {
    font-size: 1.1rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-selfbuild-difficulty__image {
    transition: none;
  }
}
/* ==================================================
Self Build Support
プロによるセルフビルドサポート
================================================== */
.p-selfbuild-support {
  position: relative;
  padding-block: clamp(90px, 9vw, 150px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Inner
  ======================================== */
}
.p-selfbuild-support__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
}
.p-selfbuild-support {
  /* ========================================
  Header
  ======================================== */
}
.p-selfbuild-support__header {
  width: min(100%, 820px);
  margin-inline: auto;
  margin-bottom: clamp(52px, 7vw, 82px);
  text-align: center;
}
.p-selfbuild-support__english {
  margin: 0 0 10px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.p-selfbuild-support__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.5rem, 3.2vw, 4rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.08em;
}
.p-selfbuild-support__lead {
  margin: 22px 0 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.25rem, 1.6vw, 1.7rem);
  line-height: 1.95;
  letter-spacing: 0.065em;
}
.p-selfbuild-support {
  /* ========================================
  List
  ======================================== */
}
.p-selfbuild-support__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.8vw, 36px);
  width: min(100%, 1100px);
  margin-inline: auto;
}
.p-selfbuild-support {
  /* ========================================
  Card
  ======================================== */
}
.p-selfbuild-support__item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: clamp(28px, 3vw, 40px) clamp(22px, 2.5vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(127, 150, 97, 0.14);
  border-radius: 10px;
  background-color: rgba(250, 248, 239, 0.92);
  box-shadow: 0 12px 32px rgba(76, 73, 61, 0.06);
}
.p-selfbuild-support__item::before {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 150, 97, 0.08) 0%, rgba(127, 150, 97, 0) 72%);
  content: "";
  pointer-events: none;
}
.p-selfbuild-support {
  /* ========================================
  Visual
  ======================================== */
}
.p-selfbuild-support__visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 190px;
  margin: 0 0 24px;
}
.p-selfbuild-support__image {
  display: block;
  width: min(100%, 210px);
  max-width: none;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.p-selfbuild-support {
  /* ========================================
  Content
  ======================================== */
}
.p-selfbuild-support__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}
.p-selfbuild-support__item-title {
  position: relative;
  margin: 0;
  padding-bottom: 16px;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.55rem, 1.8vw, 2rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.07em;
  text-align: center;
}
.p-selfbuild-support__item-title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  margin-inline: auto;
  background-color: rgba(127, 150, 97, 0.7);
  content: "";
}
.p-selfbuild-support__description {
  margin: 20px 0 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.035em;
}
.p-selfbuild-support {
  /* ========================================
  Points
  ======================================== */
}
.p-selfbuild-support__points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(127, 150, 97, 0.16);
  list-style: none;
}
.p-selfbuild-support__point {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #333;
  font-size: 0.98rem;
  line-height: 1.65;
  letter-spacing: 0.035em;
}
.p-selfbuild-support__check {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-top: 0.2em;
  border: 1px solid rgba(127, 150, 97, 0.55);
  border-radius: 50%;
  color: #7f9661;
}
.p-selfbuild-support__check svg {
  display: block;
  width: 12px;
  height: 12px;
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-selfbuild-support__list {
    gap: 18px;
  }
  .p-selfbuild-support__item {
    padding-inline: 22px;
  }
  .p-selfbuild-support__visual {
    min-height: 170px;
  }
  .p-selfbuild-support__image {
    width: min(100%, 190px);
    height: 165px;
  }
  .p-selfbuild-support__item-title {
    font-size: 1.55rem;
  }
  .p-selfbuild-support__description, .p-selfbuild-support__point {
    font-size: 0.94rem;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-selfbuild-support {
    padding-block: 84px;
  }
  .p-selfbuild-support__header {
    margin-bottom: 54px;
  }
  .p-selfbuild-support__list {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
    gap: 24px;
  }
  .p-selfbuild-support__item {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: center;
    gap: 32px;
    padding: 34px;
  }
  .p-selfbuild-support__visual {
    min-height: 0;
    margin: 0;
  }
  .p-selfbuild-support__image {
    width: 100%;
    height: 190px;
  }
  .p-selfbuild-support__item-title {
    text-align: left;
  }
  .p-selfbuild-support__item-title::after {
    right: auto;
    margin-inline: 0;
  }
  .p-selfbuild-support__description {
    font-size: 1rem;
  }
  .p-selfbuild-support__points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-selfbuild-support {
    padding-block: 68px 78px;
  }
  .p-selfbuild-support__inner {
    width: calc(100% - 32px);
  }
  .p-selfbuild-support__header {
    margin-bottom: 42px;
  }
  .p-selfbuild-support__english {
    margin-bottom: 8px;
    font-size: 0.95rem;
  }
  .p-selfbuild-support__title {
    font-size: 2.25rem;
    line-height: 1.65;
  }
  .p-selfbuild-support__title br {
    display: none;
  }
  .p-selfbuild-support__lead {
    margin-top: 18px;
    font-size: 1.1rem;
    line-height: 1.9;
  }
  .p-selfbuild-support__lead br {
    display: none;
  }
  .p-selfbuild-support__list {
    gap: 18px;
  }
  .p-selfbuild-support__item {
    display: flex;
    gap: 0;
    padding: 28px 22px 26px;
    border-radius: 9px;
  }
  .p-selfbuild-support__visual {
    min-height: 150px;
    margin-bottom: 20px;
  }
  .p-selfbuild-support__image {
    width: min(100%, 180px);
    height: 150px;
  }
  .p-selfbuild-support__item-title {
    font-size: 1.5rem;
    text-align: center;
  }
  .p-selfbuild-support__item-title::after {
    right: 0;
    left: 0;
    margin-inline: auto;
  }
  .p-selfbuild-support__description {
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.85;
  }
  .p-selfbuild-support__points {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 20px;
    padding-top: 18px;
  }
  .p-selfbuild-support__point {
    font-size: 0.93rem;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-selfbuild-support__inner {
    width: calc(100% - 24px);
  }
  .p-selfbuild-support__title {
    font-size: 2.05rem;
  }
  .p-selfbuild-support__item {
    padding-inline: 18px;
  }
  .p-selfbuild-support__image {
    width: 160px;
    height: 140px;
  }
  .p-selfbuild-support__item-title {
    font-size: 1.4rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-selfbuild-support__image {
    transition: none;
  }
}
/* ==================================================
Self Build Recommend
こんな方におすすめ
================================================== */
.p-selfbuild-recommend {
  position: relative;
  padding-block: clamp(90px, 9vw, 145px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Inner
  ======================================== */
}
.p-selfbuild-recommend__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
}
.p-selfbuild-recommend {
  /* ========================================
  Header
  ======================================== */
}
.p-selfbuild-recommend__header {
  width: min(100%, 760px);
  margin-inline: auto;
  margin-bottom: clamp(48px, 6vw, 76px);
  text-align: center;
}
.p-selfbuild-recommend__english {
  margin: 0 0 10px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.p-selfbuild-recommend__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.6rem, 3.2vw, 4rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.p-selfbuild-recommend__lead {
  margin: 22px 0 0;
  color: #666;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.15rem, 1.45vw, 1.5rem);
  line-height: 2;
  letter-spacing: 0.055em;
}
.p-selfbuild-recommend {
  /* ========================================
  List
  ======================================== */
}
.p-selfbuild-recommend__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(34px, 4vw, 58px) clamp(18px, 2.5vw, 34px);
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.p-selfbuild-recommend {
  /* ========================================
  Item
  ======================================== */
}
.p-selfbuild-recommend__item {
  flex: 0 0 135px;
  width: 135px;
  min-width: 120px;
  max-width: 150px;
}
.p-selfbuild-recommend__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  margin: 0;
  text-align: center;
}
.p-selfbuild-recommend {
  /* ========================================
  Visual
  ======================================== */
}
.p-selfbuild-recommend__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 118px;
  margin-bottom: 18px;
}
.p-selfbuild-recommend__visual::before {
  position: absolute;
  inset: 12% 5%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 150, 97, 0.09) 0%, rgba(127, 150, 97, 0.035) 50%, rgba(127, 150, 97, 0) 76%);
  content: "";
}
.p-selfbuild-recommend__image {
  display: block;
  width: min(100%, 118px);
  max-width: none;
  height: 105px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.p-selfbuild-recommend {
  /* ========================================
  Title
  ======================================== */
}
.p-selfbuild-recommend__item-title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.045em;
}
.p-selfbuild-recommend {
  /* ========================================
  Hover
  ======================================== */
}
.p-selfbuild-recommend__item:hover .p-selfbuild-recommend__image {
  opacity: 0.82;
  transform: translateY(-5px);
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-selfbuild-recommend__list {
    gap: 44px 24px;
  }
  .p-selfbuild-recommend__item {
    flex-basis: calc((100% - 120px) / 6);
    width: calc((100% - 120px) / 6);
  }
  .p-selfbuild-recommend__image {
    width: 108px;
    height: 98px;
  }
  .p-selfbuild-recommend__item-title {
    font-size: 0.95rem;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-selfbuild-recommend {
    padding-block: 84px;
  }
  .p-selfbuild-recommend__header {
    margin-bottom: 54px;
  }
  .p-selfbuild-recommend__list {
    width: min(100%, 760px);
    gap: 42px 24px;
  }
  .p-selfbuild-recommend__item {
    flex-basis: calc((100% - 72px) / 4);
    width: calc((100% - 72px) / 4);
    max-width: 150px;
  }
  .p-selfbuild-recommend__visual {
    min-height: 108px;
    margin-bottom: 16px;
  }
  .p-selfbuild-recommend__image {
    width: 100px;
    height: 92px;
  }
  .p-selfbuild-recommend__item-title {
    font-size: 0.95rem;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-selfbuild-recommend {
    padding-block: 68px 78px;
  }
  .p-selfbuild-recommend__inner {
    width: calc(100% - 32px);
  }
  .p-selfbuild-recommend__header {
    margin-bottom: 42px;
  }
  .p-selfbuild-recommend__english {
    margin-bottom: 8px;
    font-size: 0.95rem;
  }
  .p-selfbuild-recommend__title {
    font-size: 2.3rem;
    line-height: 1.65;
  }
  .p-selfbuild-recommend__lead {
    margin-top: 18px;
    font-size: 1.05rem;
    line-height: 1.9;
  }
  .p-selfbuild-recommend__lead br {
    display: none;
  }
  .p-selfbuild-recommend__list {
    gap: 36px 16px;
  }
  .p-selfbuild-recommend__item {
    flex-basis: calc((100% - 16px) / 2);
    width: calc((100% - 16px) / 2);
    max-width: none;
    min-width: 0;
  }
  .p-selfbuild-recommend__visual {
    min-height: 102px;
    margin-bottom: 14px;
  }
  .p-selfbuild-recommend__image {
    width: 96px;
    height: 88px;
  }
  .p-selfbuild-recommend__item-title {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-selfbuild-recommend__inner {
    width: calc(100% - 24px);
  }
  .p-selfbuild-recommend__title {
    font-size: 2.1rem;
  }
  .p-selfbuild-recommend__list {
    gap-inline: 12px;
  }
  .p-selfbuild-recommend__item {
    flex-basis: calc((100% - 12px) / 2);
    width: calc((100% - 12px) / 2);
  }
  .p-selfbuild-recommend__image {
    width: 88px;
    height: 82px;
  }
  .p-selfbuild-recommend__item-title {
    font-size: 0.88rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-selfbuild-recommend__image {
    transition: none;
  }
}
/* ==================================================
Self Build Contact
無料相談CTA
================================================== */
.p-selfbuild-contact {
  position: relative;
  display: grid;
  min-height: clamp(720px, 72vw, 960px);
  overflow: hidden;
  background-color: #7f9661;
  isolation: isolate;
  /* ========================================
  Background
  ======================================== */
}
.p-selfbuild-contact__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.p-selfbuild-contact__background-image {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.02);
}
.p-selfbuild-contact {
  /* ========================================
  Overlay
  ======================================== */
}
.p-selfbuild-contact__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(24, 43, 33, 0.45) 0%, rgba(20, 39, 29, 0.68) 30%, rgba(20, 39, 29, 0.76) 68%, rgba(24, 43, 33, 0.52) 100%);
}
.p-selfbuild-contact__overlay::before, .p-selfbuild-contact__overlay::after {
  position: absolute;
  right: 0;
  left: 0;
  height: clamp(90px, 12vw, 180px);
  content: "";
  pointer-events: none;
}
.p-selfbuild-contact__overlay::before {
  top: 0;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.72) 28%, rgba(255, 255, 255, 0) 100%);
}
.p-selfbuild-contact__overlay::after {
  bottom: 0;
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.7) 28%, rgba(255, 255, 255, 0) 100%);
}
.p-selfbuild-contact {
  /* ========================================
  Inner
  ======================================== */
}
.p-selfbuild-contact__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  padding-block: clamp(150px, 15vw, 220px);
}
.p-selfbuild-contact {
  /* ========================================
  Content
  ======================================== */
}
.p-selfbuild-contact__content {
  width: min(100%, 880px);
  margin-inline: auto;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}
.p-selfbuild-contact {
  /* ========================================
  Header
  ======================================== */
}
.p-selfbuild-contact__header {
  margin-bottom: clamp(28px, 4vw, 42px);
}
.p-selfbuild-contact__english {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.22em;
}
.p-selfbuild-contact__title {
  margin: 0;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.6rem, 3.4vw, 4.5rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.075em;
}
.p-selfbuild-contact {
  /* ========================================
  Description
  ======================================== */
}
.p-selfbuild-contact__description {
  width: min(100%, 760px);
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.15rem, 1.35vw, 1.45rem);
  line-height: 2.1;
  letter-spacing: 0.05em;
}
.p-selfbuild-contact__description p {
  margin: 0;
}
.p-selfbuild-contact__description p + p {
  margin-top: 16px;
}
.p-selfbuild-contact {
  /* ========================================
  Message
  ======================================== */
}
.p-selfbuild-contact__message {
  margin: clamp(30px, 4vw, 44px) 0 0;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.35rem, 1.6vw, 1.75rem);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.07em;
}
.p-selfbuild-contact {
  /* ========================================
  Button
  ======================================== */
}
.p-selfbuild-contact__button {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.p-selfbuild-contact__button .c-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 330px);
  min-height: 60px;
  padding: 14px 56px 14px 34px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-shadow: none;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.p-selfbuild-contact__button .c-button::after {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.p-selfbuild-contact__button .c-button:hover, .p-selfbuild-contact__button .c-button:focus-visible {
  border-color: #fff;
  background-color: #7f9661;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  color: #fff;
  transform: translateY(-2px);
}
.p-selfbuild-contact__button .c-button:hover::after, .p-selfbuild-contact__button .c-button:focus-visible::after {
  transform: translate(4px, -50%) rotate(45deg);
}
.p-selfbuild-contact {
  /* ========================================
  Points
  ======================================== */
}
.p-selfbuild-contact__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.p-selfbuild-contact__point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.p-selfbuild-contact__check {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.p-selfbuild-contact__check svg {
  display: block;
  width: 13px;
  height: 13px;
}
.p-selfbuild-contact__point-text {
  display: block;
}

/* ==================================================
Wide desktop
================================================== */
@media screen and (min-width: 1440px) {
  .p-selfbuild-contact {
    min-height: 900px;
  }
  .p-selfbuild-contact__background-image {
    -o-object-position: center 48%;
       object-position: center 48%;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-selfbuild-contact {
    min-height: 760px;
  }
  .p-selfbuild-contact__inner {
    padding-block: 140px;
  }
  .p-selfbuild-contact__content {
    width: min(100%, 760px);
  }
  .p-selfbuild-contact__title {
    font-size: clamp(2.5rem, 4vw, 3.6rem);
  }
  .p-selfbuild-contact__description {
    font-size: 1.15rem;
    line-height: 2;
  }
  .p-selfbuild-contact__points {
    gap: 12px 22px;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-selfbuild-contact {
    min-height: auto;
  }
  .p-selfbuild-contact__background-image {
    -o-object-position: 52% center;
       object-position: 52% center;
    transform: scale(1.05);
  }
  .p-selfbuild-contact__overlay {
    background: linear-gradient(180deg, rgba(24, 43, 33, 0.54) 0%, rgba(20, 39, 29, 0.58) 28%, rgba(20, 39, 29, 0.82) 72%, rgba(24, 43, 33, 0.62) 100%);
  }
  .p-selfbuild-contact__overlay::before, .p-selfbuild-contact__overlay::after {
    height: 100px;
  }
  .p-selfbuild-contact__inner {
    width: calc(100% - 32px);
    padding-block: 120px 130px;
  }
  .p-selfbuild-contact__header {
    margin-bottom: 26px;
  }
  .p-selfbuild-contact__english {
    margin-bottom: 10px;
    font-size: 0.95rem;
  }
  .p-selfbuild-contact__title {
    font-size: clamp(2rem, 7vw, 2.75rem);
    line-height: 1.7;
    letter-spacing: 0.055em;
  }
  .p-selfbuild-contact__title br {
    display: none;
  }
  .p-selfbuild-contact__description {
    font-size: 1.02rem;
    line-height: 1.95;
    letter-spacing: 0.035em;
  }
  .p-selfbuild-contact__description br {
    display: none;
  }
  .p-selfbuild-contact__description p + p {
    margin-top: 14px;
  }
  .p-selfbuild-contact__message {
    margin-top: 28px;
    font-size: 1.22rem;
    line-height: 1.8;
  }
  .p-selfbuild-contact__button {
    margin-top: 20px;
  }
  .p-selfbuild-contact__button .c-button {
    width: 100%;
    min-height: 56px;
    padding-inline: 28px 50px;
    font-size: 1.1rem;
  }
  .p-selfbuild-contact__points {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
  }
  .p-selfbuild-contact__point {
    font-size: 0.93rem;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-selfbuild-contact__inner {
    width: calc(100% - 24px);
    padding-block: 110px 120px;
  }
  .p-selfbuild-contact__title {
    font-size: 1.9rem;
  }
  .p-selfbuild-contact__description {
    font-size: 0.96rem;
  }
  .p-selfbuild-contact__message {
    font-size: 1.12rem;
  }
  .p-selfbuild-contact__point {
    font-size: 0.88rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-selfbuild-contact__background-image,
  .p-selfbuild-contact__button .c-button,
  .p-selfbuild-contact__button .c-button::after {
    transition: none;
  }
}
/* ==================================================
TAG Commitment Page
================================================== */
.p-commitment-page {
  overflow: hidden;
  background-color: #fff;
}

/* ==================================================
Shared Section
================================================== */
.p-commitment-section {
  position: relative;
  padding-block: clamp(80px, 8vw, 130px);
}
.p-commitment-section__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
}
.p-commitment-section__english {
  margin: 0 0 10px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.p-commitment-section__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.5rem, 3.2vw, 4rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.08em;
}
.p-commitment-section__lead {
  margin: 22px 0 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.2rem, 1.55vw, 1.65rem);
  line-height: 2;
  letter-spacing: 0.06em;
}
.p-commitment-section__text {
  color: #666;
  font-size: 1.05rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .p-commitment-section {
    padding-block: 68px;
  }
  .p-commitment-section__inner {
    width: calc(100% - 32px);
  }
  .p-commitment-section__title {
    font-size: 2.25rem;
  }
  .p-commitment-section__lead {
    margin-top: 18px;
    font-size: 1.2rem;
  }
  .p-commitment-section__lead br {
    display: none;
  }
  .p-commitment-section__text {
    font-size: 1.2rem;
    line-height: 1.9;
  }
}
/* ==================================================
Commitment Hero
TAGのこだわり メインビジュアル
================================================== */
.p-commitment-hero {
  position: relative;
  padding-block: clamp(110px, 11vw, 170px) clamp(90px, 9vw, 140px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Inner
  ======================================== */
}
.p-commitment-hero__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}
.p-commitment-hero {
  /* ========================================
  Content
  ======================================== */
}
.p-commitment-hero__content {
  position: relative;
  z-index: 2;
  width: 140%;
  max-width: 520px;
}
.p-commitment-hero__header {
  margin-bottom: clamp(30px, 4vw, 48px);
}
.p-commitment-hero__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(3.2rem, 4.5vw, 5.8rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.p-commitment-hero {
  /* ========================================
  Description
  ======================================== */
}
.p-commitment-hero__description {
  color: #666;
  font-size: clamp(1.5rem, 1.15vw, 1.18rem);
  line-height: 2.15;
  letter-spacing: 0.045em;
}
.p-commitment-hero__description p {
  margin: 0;
}
.p-commitment-hero__description p + p {
  margin-top: 18px;
}
.p-commitment-hero {
  /* ========================================
  Visual
  ======================================== */
}
.p-commitment-hero__visual {
  position: relative;
  z-index: 1;
  width: 130%;
  margin-right: -30%;
}
.p-commitment-hero__figure {
  position: relative;
  width: 100%;
  margin: 0;
}
.p-commitment-hero__figure::before {
  position: absolute;
  inset: 6% 4% 2%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 150, 97, 0.1) 0%, rgba(127, 150, 97, 0.045) 50%, rgba(127, 150, 97, 0) 76%);
  content: "";
  filter: blur(12px);
}
.p-commitment-hero__image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.p-commitment-hero {
  /* ========================================
  Background decoration
  ======================================== */
}
.p-commitment-hero::before {
  position: absolute;
  top: 18%;
  right: -8%;
  width: clamp(280px, 35vw, 560px);
  aspect-ratio: 1/1;
  border-radius: 48% 52% 58% 42%;
  background-color: rgba(127, 150, 97, 0.045);
  content: "";
  transform: rotate(-10deg);
  pointer-events: none;
}

/* ==================================================
Wide desktop
================================================== */
@media screen and (min-width: 1440px) {
  .p-commitment-hero__inner {
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  }
  .p-commitment-hero__visual {
    width: 138%;
    margin-right: -38%;
  }
}
/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-commitment-hero__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
  }
  .p-commitment-hero__visual {
    width: 115%;
    margin-right: -15%;
  }
  .p-commitment-hero__title {
    font-size: clamp(3rem, 4.8vw, 4.8rem);
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-commitment-hero {
    padding-block: 110px 90px;
  }
  .p-commitment-hero__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 30px;
  }
  .p-commitment-hero__content {
    max-width: 440px;
  }
  .p-commitment-hero__title {
    font-size: clamp(2.8rem, 5vw, 4rem);
  }
  .p-commitment-hero__description {
    font-size: 1rem;
    line-height: 2;
  }
  .p-commitment-hero__visual {
    width: 112%;
    margin-right: -12%;
  }
  .p-commitment-hero::before {
    top: 24%;
    right: -15%;
    width: 420px;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-commitment-hero {
    padding-block: 92px 68px;
  }
  .p-commitment-hero__inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .p-commitment-hero__content {
    max-width: none;
  }
  .p-commitment-hero__header {
    margin-bottom: 26px;
  }
  .p-commitment-hero__title {
    font-size: clamp(2.8rem, 10vw, 3.8rem);
    line-height: 1.5;
    letter-spacing: 0.075em;
  }
  .p-commitment-hero__description {
    font-size: 1rem;
    line-height: 1.95;
    letter-spacing: 0.035em;
  }
  .p-commitment-hero__description br {
    display: none;
  }
  .p-commitment-hero__description p + p {
    margin-top: 16px;
  }
  .p-commitment-hero__visual {
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
  }
  .p-commitment-hero__figure::before {
    inset: 8% 2% 2%;
  }
  .p-commitment-hero::before {
    top: auto;
    right: -35%;
    bottom: 2%;
    width: 320px;
    opacity: 0.8;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-commitment-hero__inner {
    width: calc(100% - 24px);
  }
  .p-commitment-hero__title {
    font-size: 2.6rem;
  }
  .p-commitment-hero__description {
    font-size: 0.95rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-commitment-hero__image {
    transition: none;
  }
}
/* ==================================================
Commitment Support
セルフビルドサポート
================================================== */
.p-commitment-support {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Heading area
  ======================================== */
}
.p-commitment-support__heading-area {
  position: relative;
  z-index: 3;
  padding-block: clamp(18px, 2.4vw, 30px);
  background: linear-gradient(90deg, rgba(127, 150, 97, 0.96) 0%, rgba(127, 150, 97, 0.86) 60%, rgba(127, 150, 97, 0.72) 100%);
}
.p-commitment-support__heading-area::before {
  position: absolute;
  top: 50%;
  left: max(20px, (100vw - 1280px) / 2 - 50px);
  width: clamp(80px, 10vw, 150px);
  height: clamp(100px, 13vw, 190px);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 70%);
  content: "";
  transform: translateY(-50%);
  pointer-events: none;
}
.p-commitment-support__heading-inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
}
.p-commitment-support__heading-content {
  padding-left: clamp(20px, 5vw, 74px);
  color: #fff;
}
.p-commitment-support__eyebrow {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.p-commitment-support__heading {
  margin: 0;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.1em;
}
.p-commitment-support {
  /* ========================================
  Body
  ======================================== */
}
.p-commitment-support__body {
  position: relative;
  z-index: 1;
  padding-block: clamp(90px, 10vw, 155px);
  overflow: hidden;
}
.p-commitment-support {
  /* ========================================
  Background decoration
  ======================================== */
}
.p-commitment-support__background {
  position: absolute;
  top: 9%;
  right: -12%;
  bottom: 3%;
  left: -10%;
  z-index: -2;
  border-radius: 48% 52% 42% 58%/30% 35% 65% 70%;
  background-color: rgba(242, 241, 231, 0.82);
  transform: rotate(-1.5deg);
  pointer-events: none;
}
.p-commitment-support__background::before {
  position: absolute;
  top: -25%;
  right: -2%;
  width: clamp(240px, 32vw, 520px);
  aspect-ratio: 1/1;
  border-radius: 42% 58% 65% 35%;
  background-color: rgba(127, 150, 97, 0.08);
  content: "";
  transform: rotate(18deg);
}
.p-commitment-support {
  /* ========================================
  Leaf decoration
  ======================================== */
}
.p-commitment-support__decoration {
  position: absolute;
  right: clamp(-110px, -5vw, -40px);
  top: clamp(30px, 6vw, 90px);
  z-index: -1;
  width: clamp(190px, 25vw, 390px);
  pointer-events: none;
}
.p-commitment-support__leaf {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  opacity: 0.58;
}
.p-commitment-support {
  /* ========================================
  Inner
  ======================================== */
}
.p-commitment-support__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  width: min(100%, 1080px);
}
.p-commitment-support {
  /* ========================================
  Content
  ======================================== */
}
.p-commitment-support__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
}
.p-commitment-support__title {
  margin: 0;
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2rem, 2.7vw, 3.3rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.075em;
}
.p-commitment-support__description {
  margin-top: clamp(28px, 4vw, 44px);
  color: #666;
  font-size: clamp(1.5rem, 1.08vw, 1.1rem);
  line-height: 2.05;
  letter-spacing: 0.04em;
}
.p-commitment-support__description p {
  margin: 0;
}
.p-commitment-support__description p + p {
  margin-top: 18px;
}
.p-commitment-support {
  /* ========================================
  Visual
  ======================================== */
}
.p-commitment-support__visual {
  position: relative;
  z-index: 2;
  width: min(100%, 340px);
  margin: 0 auto;
}
.p-commitment-support__visual::before {
  position: absolute;
  inset: 5% -12% -7%;
  z-index: -1;
  border-radius: 48% 52% 44% 56%;
  background: radial-gradient(ellipse at center, rgba(127, 150, 97, 0.14) 0%, rgba(127, 150, 97, 0.055) 48%, rgba(127, 150, 97, 0) 76%);
  content: "";
  filter: blur(10px);
}
.p-commitment-support__image {
  display: block;
  width: 100%;
  max-width: none;
  aspect-ratio: 4/5;
  height: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(63, 68, 55, 0.12);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* ==================================================
Wide desktop
================================================== */
@media screen and (min-width: 1440px) {
  .p-commitment-support__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  }
  .p-commitment-support__visual {
    width: 360px;
  }
}
/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-commitment-support__inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 64px;
  }
  .p-commitment-support__visual {
    width: min(100%, 310px);
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-commitment-support__heading-content {
    padding-left: 28px;
  }
  .p-commitment-support__body {
    padding-block: 90px;
  }
  .p-commitment-support__inner {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
    gap: 44px;
  }
  .p-commitment-support__title {
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  }
  .p-commitment-support__description {
    font-size: 1.2rem;
    line-height: 1.95;
  }
  .p-commitment-support__visual {
    width: min(100%, 280px);
  }
  .p-commitment-support__decoration {
    right: -100px;
    width: 290px;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-commitment-support__heading-area {
    padding-block: 16px;
  }
  .p-commitment-support__heading-inner {
    width: calc(100% - 32px);
  }
  .p-commitment-support__heading-content {
    padding-left: 12px;
  }
  .p-commitment-support__eyebrow {
    font-size: 0.85rem;
  }
  .p-commitment-support__heading {
    font-size: 1.6rem;
  }
  .p-commitment-support__body {
    padding-block: 70px 82px;
  }
  .p-commitment-support__background {
    top: 4%;
    right: -45%;
    bottom: 2%;
    left: -35%;
    border-radius: 46% 54% 38% 62%/22% 28% 72% 78%;
  }
  .p-commitment-support__inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .p-commitment-support__content {
    max-width: none;
  }
  .p-commitment-support__title {
    font-size: clamp(1.75rem, 6.3vw, 2.3rem);
    line-height: 1.75;
    letter-spacing: 0.055em;
  }
  .p-commitment-support__title br {
    display: none;
  }
  .p-commitment-support__description {
    margin-top: 24px;
    font-size: 1.2rem;
    line-height: 1.9;
  }
  .p-commitment-support__description p + p {
    margin-top: 15px;
  }
  .p-commitment-support__visual {
    width: min(76vw, 300px);
  }
  .p-commitment-support__image {
    border-radius: 10px;
  }
  .p-commitment-support__decoration {
    top: auto;
    right: -90px;
    bottom: 10px;
    width: 220px;
    opacity: 0.65;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-commitment-support__heading-inner, .p-commitment-support__inner {
    width: calc(100% - 24px);
  }
  .p-commitment-support__title {
    font-size: 1.7rem;
  }
  .p-commitment-support__description {
    font-size: 0.95rem;
  }
  .p-commitment-support__visual {
    width: min(82vw, 270px);
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-commitment-support__image,
  .p-commitment-support__leaf {
    transition: none;
  }
}
/* ==================================================
Commitment Concept
TAGが大切にする3つの視点
================================================== */
.p-commitment-concept {
  position: relative;
  padding-block: clamp(90px, 9vw, 150px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Inner
  ======================================== */
}
.p-commitment-concept__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.p-commitment-concept {
  /* ========================================
  Header
  ======================================== */
}
.p-commitment-concept__header {
  width: min(100%, 820px);
  margin-inline: auto;
  margin-bottom: clamp(52px, 7vw, 84px);
  text-align: center;
}
.p-commitment-concept__english {
  margin: 0 0 10px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.p-commitment-concept__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.5rem, 3.2vw, 4rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.08em;
}
.p-commitment-concept__lead {
  margin: 22px 0 0;
  color: #666;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.15rem, 1.45vw, 1.5rem);
  line-height: 2;
  letter-spacing: 0.055em;
}
.p-commitment-concept {
  /* ========================================
  List
  ======================================== */
}
.p-commitment-concept__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.8vw, 36px);
  width: min(100%, 1120px);
  margin-inline: auto;
}
.p-commitment-concept {
  /* ========================================
  Card
  ======================================== */
}
.p-commitment-concept__item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: clamp(34px, 3.5vw, 48px) clamp(24px, 2.6vw, 34px) clamp(28px, 3vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(127, 150, 97, 0.16);
  border-radius: 12px;
  background-color: rgba(248, 247, 239, 0.92);
  box-shadow: 0 14px 36px rgba(69, 72, 62, 0.06);
}
.p-commitment-concept__item::before {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 150, 97, 0.1) 0%, rgba(127, 150, 97, 0) 72%);
  content: "";
  pointer-events: none;
}
.p-commitment-concept {
  /* ========================================
  Number
  ======================================== */
}
.p-commitment-concept__number {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border: 1px solid rgba(127, 150, 97, 0.42);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.15rem;
  line-height: 1;
}
.p-commitment-concept {
  /* ========================================
  Content
  ======================================== */
}
.p-commitment-concept__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding-top: 54px;
}
.p-commitment-concept__item-title {
  position: relative;
  margin: 0;
  padding-bottom: 18px;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.55rem, 1.85vw, 2rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.07em;
}
.p-commitment-concept__item-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 1px;
  background-color: rgba(127, 150, 97, 0.72);
  content: "";
}
.p-commitment-concept__description {
  margin: 20px 0 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.035em;
}
.p-commitment-concept {
  /* ========================================
  Points
  ======================================== */
}
.p-commitment-concept__points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(127, 150, 97, 0.16);
  list-style: none;
}
.p-commitment-concept__point {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #333;
  font-size: 0.96rem;
  line-height: 1.65;
  letter-spacing: 0.035em;
}
.p-commitment-concept__check {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-top: 0.2em;
  border: 1px solid rgba(127, 150, 97, 0.58);
  border-radius: 50%;
  color: #7f9661;
}
.p-commitment-concept__check svg {
  display: block;
  width: 12px;
  height: 12px;
}
.p-commitment-concept {
  /* ========================================
  Visual
  ======================================== */
}
.p-commitment-concept__visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 180px;
  margin: 28px 0 0;
}
.p-commitment-concept__visual::before {
  position: absolute;
  inset: 12% 8% 4%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 150, 97, 0.1) 0%, rgba(127, 150, 97, 0.035) 52%, rgba(127, 150, 97, 0) 76%);
  content: "";
}
.p-commitment-concept__image {
  display: block;
  width: min(100%, 220px);
  max-width: none;
  height: 175px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.p-commitment-concept__item:hover .p-commitment-concept__image {
  opacity: 0.88;
  transform: translateY(-5px);
}
.p-commitment-concept {
  /* ========================================
  Background decoration
  ======================================== */
}
.p-commitment-concept::before {
  position: absolute;
  top: 12%;
  left: -10%;
  width: clamp(260px, 30vw, 470px);
  aspect-ratio: 1/1;
  border-radius: 44% 56% 61% 39%;
  background-color: rgba(127, 150, 97, 0.035);
  content: "";
  transform: rotate(12deg);
  pointer-events: none;
}

/* ==================================================
Narrow Desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-commitment-concept__list {
    gap: 18px;
  }
  .p-commitment-concept__item {
    padding-inline: 22px;
  }
  .p-commitment-concept__item-title {
    font-size: 1.5rem;
  }
  .p-commitment-concept__description, .p-commitment-concept__point {
    font-size: 0.92rem;
  }
  .p-commitment-concept__visual {
    min-height: 160px;
  }
  .p-commitment-concept__image {
    width: 190px;
    height: 155px;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-commitment-concept {
    padding-block: 84px;
  }
  .p-commitment-concept__header {
    margin-bottom: 56px;
  }
  .p-commitment-concept__list {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
    gap: 24px;
  }
  .p-commitment-concept__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    grid-template-areas: "content visual";
    align-items: center;
    gap: 34px;
    min-height: 270px;
    padding: 38px 36px;
  }
  .p-commitment-concept__number {
    top: 24px;
    left: 24px;
  }
  .p-commitment-concept__content {
    grid-area: content;
    padding-top: 48px;
  }
  .p-commitment-concept__visual {
    grid-area: visual;
    min-height: 0;
    margin: 0;
  }
  .p-commitment-concept__image {
    width: 100%;
    height: 190px;
  }
  .p-commitment-concept__item-title {
    font-size: 1.65rem;
  }
  .p-commitment-concept__description {
    font-size: 1rem;
  }
  .p-commitment-concept__points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-commitment-concept {
    padding-block: 68px 78px;
  }
  .p-commitment-concept__inner {
    width: calc(100% - 32px);
  }
  .p-commitment-concept__header {
    margin-bottom: 42px;
  }
  .p-commitment-concept__english {
    margin-bottom: 8px;
    font-size: 0.95rem;
  }
  .p-commitment-concept__title {
    font-size: 2.25rem;
    line-height: 1.65;
  }
  .p-commitment-concept__lead {
    margin-top: 18px;
    font-size: 1.05rem;
    line-height: 1.9;
  }
  .p-commitment-concept__lead br {
    display: none;
  }
  .p-commitment-concept__list {
    gap: 18px;
  }
  .p-commitment-concept__item {
    display: flex;
    gap: 0;
    min-height: 0;
    padding: 30px 22px 26px;
    border-radius: 10px;
  }
  .p-commitment-concept__number {
    top: 18px;
    left: 18px;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .p-commitment-concept__content {
    padding-top: 46px;
  }
  .p-commitment-concept__item-title {
    padding-bottom: 15px;
    font-size: 1.5rem;
  }
  .p-commitment-concept__description {
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.85;
  }
  .p-commitment-concept__points {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 20px;
    padding-top: 18px;
  }
  .p-commitment-concept__point {
    font-size: 0.92rem;
  }
  .p-commitment-concept__visual {
    min-height: 145px;
    margin-top: 22px;
  }
  .p-commitment-concept__image {
    width: min(100%, 180px);
    height: 145px;
  }
  .p-commitment-concept::before {
    top: 25%;
    left: -45%;
    width: 300px;
  }
}
/* ==================================================
Small Smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-commitment-concept__inner {
    width: calc(100% - 24px);
  }
  .p-commitment-concept__title {
    font-size: 2.05rem;
  }
  .p-commitment-concept__item {
    padding-inline: 18px;
  }
  .p-commitment-concept__item-title {
    font-size: 1.4rem;
  }
  .p-commitment-concept__description, .p-commitment-concept__point {
    font-size: 0.88rem;
  }
  .p-commitment-concept__image {
    width: 160px;
    height: 135px;
  }
}
/* ==================================================
Reduced Motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-commitment-concept__image {
    transition: none;
  }
}
/* ==================================================
Commitment Concept
カード内文字サイズ調整
================================================== */
.p-commitment-concept__item-title {
  font-size: clamp(1.9rem, 2vw, 2.3rem);
  line-height: 1.6;
}
.p-commitment-concept__description {
  margin-top: 22px;
  font-size: 1.35rem;
  line-height: 1.9;
}
.p-commitment-concept__point {
  font-size: 1.25rem;
  line-height: 1.7;
}
.p-commitment-concept__check {
  width: 21px;
  height: 21px;
}
.p-commitment-concept__check svg {
  width: 13px;
  height: 13px;
}

@media (max-width: 1024px) {
  .p-commitment-concept__item-title {
    font-size: 2rem;
  }
  .p-commitment-concept__description {
    font-size: 1.3rem;
  }
  .p-commitment-concept__point {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .p-commitment-concept__item-title {
    font-size: 1.8rem;
  }
  .p-commitment-concept__description {
    font-size: 1.2rem;
    line-height: 1.9;
  }
  .p-commitment-concept__point {
    font-size: 1.15rem;
  }
}
/* ==================================================
Commitment Introduction
私がセルフビルドを選んだ理由
================================================== */
.p-commitment-introduction {
  position: relative;
  padding-block: clamp(90px, 10vw, 160px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Background decoration
  ======================================== */
}
.p-commitment-introduction::before {
  position: absolute;
  top: 8%;
  right: -12%;
  width: clamp(320px, 38vw, 620px);
  aspect-ratio: 1/1;
  border-radius: 46% 54% 64% 36%;
  background-color: rgba(127, 150, 97, 0.045);
  content: "";
  transform: rotate(-12deg);
  pointer-events: none;
}
.p-commitment-introduction::after {
  position: absolute;
  bottom: 4%;
  left: -14%;
  width: clamp(260px, 30vw, 480px);
  aspect-ratio: 1/1;
  border-radius: 58% 42% 46% 54%;
  background-color: rgba(238, 233, 218, 0.56);
  content: "";
  transform: rotate(18deg);
  pointer-events: none;
}
.p-commitment-introduction {
  /* ========================================
  Inner
  ======================================== */
}
.p-commitment-introduction__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  width: min(100%, 1100px);
}
.p-commitment-introduction {
  /* ========================================
  Visual
  ======================================== */
}
.p-commitment-introduction__visual {
  position: relative;
  width: min(100%, 420px);
  margin: 0;
}
.p-commitment-introduction__visual::before {
  position: absolute;
  top: 7%;
  right: -8%;
  bottom: -6%;
  left: 10%;
  z-index: -1;
  border-radius: 46% 54% 40% 60%;
  background-color: rgba(127, 150, 97, 0.1);
  content: "";
  transform: rotate(4deg);
}
.p-commitment-introduction__visual::after {
  position: absolute;
  top: -28px;
  left: -34px;
  z-index: -1;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 150, 97, 0.16) 0%, rgba(127, 150, 97, 0) 72%);
  content: "";
}
.p-commitment-introduction__image {
  display: block;
  width: 100%;
  max-width: none;
  aspect-ratio: 4/5;
  height: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(50, 56, 47, 0.13);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-commitment-introduction {
  /* ========================================
  Content
  ======================================== */
}
.p-commitment-introduction__content {
  position: relative;
  width: 100%;
  max-width: 610px;
}
.p-commitment-introduction {
  /* ========================================
  Header
  ======================================== */
}
.p-commitment-introduction__header {
  margin-bottom: clamp(26px, 4vw, 42px);
}
.p-commitment-introduction__english {
  margin: 0 0 10px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.p-commitment-introduction__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.5rem, 3.3vw, 4.2rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.p-commitment-introduction {
  /* ========================================
  Lead
  ======================================== */
}
.p-commitment-introduction__lead {
  position: relative;
  margin: 0;
  padding-bottom: 24px;
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.45rem, 1.85vw, 2rem);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.075em;
}
.p-commitment-introduction__lead::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 1px;
  background-color: rgba(127, 150, 97, 0.72);
  content: "";
}
.p-commitment-introduction {
  /* ========================================
  Description
  ======================================== */
}
.p-commitment-introduction__description {
  margin-top: clamp(28px, 4vw, 42px);
  color: #666;
  font-size: clamp(1.05rem, 1.15vw, 1.2rem);
  line-height: 2.05;
  letter-spacing: 0.04em;
}
.p-commitment-introduction__description p {
  margin: 0;
}
.p-commitment-introduction__description p + p {
  margin-top: 18px;
}
.p-commitment-introduction {
  /* ========================================
  Signature
  ======================================== */
}
.p-commitment-introduction__signature {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
  margin-top: clamp(30px, 4vw, 48px);
  padding-top: 22px;
  border-top: 1px solid rgba(127, 150, 97, 0.2);
}
.p-commitment-introduction__role {
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
.p-commitment-introduction__qualification {
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.055em;
}

/* ==================================================
Wide desktop
================================================== */
@media screen and (min-width: 1440px) {
  .p-commitment-introduction__inner {
    grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  }
  .p-commitment-introduction__visual {
    width: 440px;
  }
}
/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-commitment-introduction__inner {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    gap: 64px;
  }
  .p-commitment-introduction__visual {
    width: min(100%, 380px);
  }
  .p-commitment-introduction__title {
    font-size: clamp(2.4rem, 3.7vw, 3.5rem);
  }
  .p-commitment-introduction__description {
    font-size: 1.05rem;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-commitment-introduction {
    padding-block: 86px;
  }
  .p-commitment-introduction__inner {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 44px;
  }
  .p-commitment-introduction__visual {
    width: min(100%, 340px);
  }
  .p-commitment-introduction__title {
    font-size: clamp(2.3rem, 4vw, 3.2rem);
  }
  .p-commitment-introduction__lead {
    font-size: 1.45rem;
  }
  .p-commitment-introduction__description {
    font-size: 1rem;
    line-height: 1.95;
  }
  .p-commitment-introduction__signature {
    margin-top: 34px;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-commitment-introduction {
    padding-block: 68px 80px;
  }
  .p-commitment-introduction::before {
    top: 30%;
    right: -55%;
    width: 340px;
  }
  .p-commitment-introduction::after {
    bottom: 2%;
    left: -55%;
    width: 300px;
  }
  .p-commitment-introduction__inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .p-commitment-introduction__visual {
    width: min(82vw, 340px);
    margin-inline: auto;
  }
  .p-commitment-introduction__visual::before {
    top: 6%;
    right: -6%;
    bottom: -5%;
    left: 8%;
  }
  .p-commitment-introduction__image {
    border-radius: 10px;
  }
  .p-commitment-introduction__content {
    max-width: none;
  }
  .p-commitment-introduction__header {
    margin-bottom: 24px;
  }
  .p-commitment-introduction__english {
    margin-bottom: 8px;
    font-size: 0.95rem;
  }
  .p-commitment-introduction__title {
    font-size: 2.3rem;
    line-height: 1.65;
    letter-spacing: 0.06em;
  }
  .p-commitment-introduction__title br {
    display: none;
  }
  .p-commitment-introduction__lead {
    padding-bottom: 20px;
    font-size: 1.35rem;
    line-height: 1.85;
    letter-spacing: 0.055em;
  }
  .p-commitment-introduction__lead br {
    display: none;
  }
  .p-commitment-introduction__lead::after {
    width: 46px;
  }
  .p-commitment-introduction__description {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0.03em;
  }
  .p-commitment-introduction__description p + p {
    margin-top: 15px;
  }
  .p-commitment-introduction__signature {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    margin-top: 30px;
    padding-top: 18px;
  }
  .p-commitment-introduction__role {
    font-size: 1.45rem;
  }
  .p-commitment-introduction__qualification {
    font-size: 0.95rem;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-commitment-introduction__inner {
    width: calc(100% - 24px);
  }
  .p-commitment-introduction__visual {
    width: min(84vw, 300px);
  }
  .p-commitment-introduction__title {
    font-size: 2.05rem;
  }
  .p-commitment-introduction__lead {
    font-size: 1.22rem;
  }
  .p-commitment-introduction__description {
    font-size: 0.95rem;
  }
  .p-commitment-introduction__role {
    font-size: 1.35rem;
  }
  .p-commitment-introduction__qualification {
    font-size: 0.88rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-commitment-introduction__image {
    transition: none;
  }
}
/* ==================================================
Commitment Rule
TAGが守る安全基準
================================================== */
.p-commitment-rule {
  position: relative;
  padding-block: clamp(90px, 9vw, 150px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Inner
  ======================================== */
}
.p-commitment-rule__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.p-commitment-rule {
  /* ========================================
  Header
  ======================================== */
}
.p-commitment-rule__header {
  position: relative;
  width: min(100%, 900px);
  margin-inline: auto;
  margin-bottom: clamp(50px, 6vw, 76px);
  text-align: center;
}
.p-commitment-rule__english {
  position: absolute;
  top: clamp(-100px, -3.5vw, -20px);
  left: 30%;
  z-index: -1;
  margin: 0;
  color: rgba(127, 150, 97, 0.07);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(5rem, 9vw, 10rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  transform: translateX(-90%);
  pointer-events: none;
}
.p-commitment-rule__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.6rem, 3.3vw, 4.2rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.07em;
}
.p-commitment-rule__lead {
  margin: clamp(28px, 4vw, 42px) 0 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.35rem, 1.65vw, 1.75rem);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
}
.p-commitment-rule__introduction {
  margin: 22px 0 0;
  color: #666;
  font-size: clamp(1.05rem, 1.15vw, 1.2rem);
  line-height: 2;
  letter-spacing: 0.045em;
}
.p-commitment-rule {
  /* ========================================
  Standards panel
  構造・防水・法規
  ======================================== */
}
.p-commitment-rule__standards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 1180px);
  margin-inline: auto;
  padding: clamp(28px, 3.5vw, 48px) clamp(24px, 3.5vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(127, 150, 97, 0.09);
  border-radius: 18px;
  background-color: rgba(250, 248, 239, 0.96);
  box-shadow: 0 10px 26px rgba(52, 58, 50, 0.07), 0 2px 5px rgba(52, 58, 50, 0.04);
}
.p-commitment-rule__standard {
  position: relative;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  min-width: 0;
  padding-inline: clamp(14px, 2.2vw, 34px);
}
.p-commitment-rule__standard + .p-commitment-rule__standard {
  border-left: 1px solid rgba(127, 150, 97, 0.13);
}
.p-commitment-rule__standard-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 140px;
  aspect-ratio: 1/1;
  margin: 0;
}
.p-commitment-rule__standard-visual::before {
  position: absolute;
  inset: 5%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 150, 97, 0.11) 0%, rgba(127, 150, 97, 0.035) 58%, rgba(127, 150, 97, 0) 78%);
  content: "";
}
.p-commitment-rule__standard-image {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.p-commitment-rule__standard-content {
  min-width: 0;
}
.p-commitment-rule__standard-title {
  margin: 0;
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.8rem, 2vw, 2.25rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.p-commitment-rule__standard-description {
  margin: 18px 0 0;
  color: #333;
  font-size: clamp(1.05rem, 1.1vw, 1.18rem);
  line-height: 1.85;
  letter-spacing: 0.04em;
}
.p-commitment-rule {
  /* ========================================
  Body
  住宅イラスト＋施工領域
  ======================================== */
}
.p-commitment-rule__body {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  width: min(100%, 1240px);
  margin: clamp(70px, 9vw, 120px) auto 0;
}
.p-commitment-rule {
  /* ========================================
  House
  ======================================== */
}
.p-commitment-rule__house {
  position: relative;
  width: 115%;
  margin: 0 0 0 -15%;
}
.p-commitment-rule__house::before {
  position: absolute;
  inset: 16% 3% 2%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(127, 150, 97, 0.12) 0%, rgba(127, 150, 97, 0.04) 48%, rgba(127, 150, 97, 0) 76%);
  content: "";
  filter: blur(12px);
}
.p-commitment-rule__house-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.p-commitment-rule {
  /* ========================================
  Areas
  ======================================== */
}
.p-commitment-rule__areas {
  display: grid;
  gap: clamp(40px, 5vw, 64px);
  min-width: 0;
}
.p-commitment-rule__area {
  position: relative;
  min-width: 0;
}
.p-commitment-rule__area-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.p-commitment-rule__area-number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 50%;
  background-color: rgba(127, 150, 97, 0.65);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
}
.p-commitment-rule__area-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 8px;
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.055em;
}
.p-commitment-rule__area-main {
  color: #aa8b26;
  font-size: clamp(1.75rem, 2vw, 2.2rem);
}
.p-commitment-rule__area-sub {
  color: #7f9661;
  font-size: clamp(1.25rem, 1.4vw, 1.55rem);
}
.p-commitment-rule__area-description {
  margin: 18px 0 0 56px;
  color: #333;
  font-size: clamp(1.05rem, 1.12vw, 1.2rem);
  line-height: 1.95;
  letter-spacing: 0.04em;
}
.p-commitment-rule {
  /* ========================================
  Task labels
  ======================================== */
}
.p-commitment-rule__tasks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 18px 0 0 56px;
  padding: 0;
  list-style: none;
}
.p-commitment-rule__task {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 5px 20px;
  border: 1px solid rgba(127, 150, 97, 0.6);
  border-radius: 7px;
  background-color: #7f9661;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: 0.045em;
}
.p-commitment-rule {
  /* ========================================
  Area color variations
  ======================================== */
}
.p-commitment-rule__area--professional .p-commitment-rule__area-main {
  color: #b49327;
}
.p-commitment-rule__area--together .p-commitment-rule__area-main {
  color: #b49327;
}
.p-commitment-rule__area--together .p-commitment-rule__area-number {
  background-color: rgba(127, 150, 97, 0.58);
}
.p-commitment-rule__area--self .p-commitment-rule__area-main {
  color: #b49327;
}
.p-commitment-rule__area--self .p-commitment-rule__area-number {
  background-color: rgba(127, 150, 97, 0.5);
}

/* ==================================================
Wide desktop
================================================== */
@media screen and (min-width: 1440px) {
  .p-commitment-rule__standard {
    grid-template-columns: 150px minmax(0, 1fr);
  }
  .p-commitment-rule__standard-visual {
    width: 150px;
  }
  .p-commitment-rule__body {
    grid-template-columns: minmax(470px, 0.92fr) minmax(0, 1.08fr);
  }
  .p-commitment-rule__house {
    width: 120%;
    margin-left: -20%;
  }
}
/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-commitment-rule__standards {
    padding-inline: 24px;
  }
  .p-commitment-rule__standard {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 16px;
    padding-inline: 18px;
  }
  .p-commitment-rule__standard-visual {
    width: 105px;
  }
  .p-commitment-rule__standard-title {
    font-size: 1.7rem;
  }
  .p-commitment-rule__standard-description {
    margin-top: 12px;
    font-size: 1rem;
  }
  .p-commitment-rule__body {
    grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
    gap: 46px;
  }
  .p-commitment-rule__house {
    width: 108%;
    margin-left: -8%;
  }
  .p-commitment-rule__area-description, .p-commitment-rule__tasks {
    margin-left: 52px;
  }
  .p-commitment-rule__task {
    padding-inline: 15px;
    font-size: 0.9rem;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-commitment-rule {
    padding-block: 84px;
  }
  .p-commitment-rule__header {
    margin-bottom: 52px;
  }
  .p-commitment-rule__english {
    transform: translateX(-75%);
  }
  .p-commitment-rule__standards {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
    padding: 16px 28px;
  }
  .p-commitment-rule__standard {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 26px;
    padding: 24px 10px;
  }
  .p-commitment-rule__standard + .p-commitment-rule__standard {
    border-top: 1px solid rgba(127, 150, 97, 0.13);
    border-left: 0;
  }
  .p-commitment-rule__standard-visual {
    width: 130px;
  }
  .p-commitment-rule__standard-title {
    font-size: 1.9rem;
  }
  .p-commitment-rule__standard-description {
    font-size: 1.05rem;
  }
  .p-commitment-rule__body {
    grid-template-columns: 1fr;
    gap: 58px;
    width: min(100%, 760px);
    margin-top: 80px;
  }
  .p-commitment-rule__house {
    width: min(100%, 600px);
    margin-inline: auto;
  }
  .p-commitment-rule__areas {
    width: 100%;
  }
  .p-commitment-rule__area-main {
    font-size: 1.9rem;
  }
  .p-commitment-rule__area-sub {
    font-size: 1.35rem;
  }
  .p-commitment-rule__area-description {
    font-size: 1.08rem;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-commitment-rule {
    padding-block: 68px 80px;
  }
  .p-commitment-rule__inner {
    width: calc(100% - 32px);
  }
  .p-commitment-rule__header {
    margin-bottom: 38px;
  }
  .p-commitment-rule__english {
    top: -30px;
    font-size: 5.5rem;
    transform: translateX(-70%);
  }
  .p-commitment-rule__title {
    font-size: 2.3rem;
    line-height: 1.6;
  }
  .p-commitment-rule__lead {
    margin-top: 22px;
    font-size: 1.18rem;
    line-height: 1.85;
  }
  .p-commitment-rule__introduction {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.9;
  }
  .p-commitment-rule__introduction br {
    display: none;
  }
  .p-commitment-rule {
    /* ======================================
    Standards
    ====================================== */
  }
  .p-commitment-rule__standards {
    padding: 12px 20px;
    border-radius: 12px;
  }
  .p-commitment-rule__standard {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 17px;
    padding-block: 22px;
  }
  .p-commitment-rule__standard-visual {
    width: 96px;
  }
  .p-commitment-rule__standard-title {
    font-size: 1.55rem;
  }
  .p-commitment-rule__standard-description {
    margin-top: 10px;
    font-size: 0.98rem;
    line-height: 1.8;
  }
  .p-commitment-rule {
    /* ======================================
    Body
    ====================================== */
  }
  .p-commitment-rule__body {
    gap: 46px;
    margin-top: 58px;
  }
  .p-commitment-rule__house {
    width: calc(100% + 24px);
    margin-left: -12px;
  }
  .p-commitment-rule__areas {
    gap: 42px;
  }
  .p-commitment-rule__area-header {
    align-items: flex-start;
    gap: 11px;
  }
  .p-commitment-rule__area-number {
    width: 36px;
    height: 36px;
    font-size: 1.12rem;
  }
  .p-commitment-rule__area-title {
    display: block;
    padding-top: 2px;
  }
  .p-commitment-rule__area-main, .p-commitment-rule__area-sub {
    display: block;
  }
  .p-commitment-rule__area-main {
    font-size: 1.55rem;
  }
  .p-commitment-rule__area-sub {
    margin-top: 2px;
    font-size: 1.08rem;
  }
  .p-commitment-rule__area-description {
    margin: 15px 0 0 47px;
    font-size: 1rem;
    line-height: 1.85;
  }
  .p-commitment-rule__tasks {
    gap: 8px;
    margin: 16px 0 0 47px;
  }
  .p-commitment-rule__task {
    min-height: 29px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.84rem;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-commitment-rule__inner {
    width: calc(100% - 24px);
  }
  .p-commitment-rule__title {
    font-size: 2.08rem;
  }
  .p-commitment-rule__lead {
    font-size: 1.08rem;
  }
  .p-commitment-rule__standards {
    padding-inline: 14px;
  }
  .p-commitment-rule__standard {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
  }
  .p-commitment-rule__standard-visual {
    width: 82px;
  }
  .p-commitment-rule__standard-title {
    font-size: 1.4rem;
  }
  .p-commitment-rule__standard-description {
    font-size: 0.9rem;
  }
  .p-commitment-rule__area-main {
    font-size: 1.42rem;
  }
  .p-commitment-rule__area-sub {
    font-size: 1rem;
  }
  .p-commitment-rule__area-description {
    font-size: 0.94rem;
  }
  .p-commitment-rule__task {
    font-size: 0.78rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-commitment-rule__standard-image,
  .p-commitment-rule__house-image {
    transition: none;
  }
}
/* ==================================================
Commitment Vision
暮らしまで設計する
================================================== */
.p-commitment-vision {
  position: relative;
  padding-block: clamp(90px, 9vw, 150px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Background decoration
  ======================================== */
}
.p-commitment-vision::before {
  position: absolute;
  top: 12%;
  left: max(24px, (100vw - 1180px) / 2);
  z-index: 0;
  color: rgba(127, 150, 97, 0.065);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(5rem, 10vw, 11rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  content: "Vision";
  pointer-events: none;
}
.p-commitment-vision::after {
  position: absolute;
  right: -12%;
  bottom: 0;
  width: clamp(300px, 38vw, 620px);
  aspect-ratio: 1/1;
  border-radius: 48% 52% 62% 38%;
  background-color: rgba(127, 150, 97, 0.035);
  content: "";
  transform: rotate(-10deg);
  pointer-events: none;
}
.p-commitment-vision {
  /* ========================================
  Inner
  ======================================== */
}
.p-commitment-vision__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  width: min(100%, 1180px);
}
.p-commitment-vision {
  /* ========================================
  Content
  ======================================== */
}
.p-commitment-vision__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  padding-top: clamp(44px, 6vw, 80px);
}
.p-commitment-vision {
  /* ========================================
  Header
  ======================================== */
}
.p-commitment-vision__header {
  margin-bottom: clamp(24px, 3vw, 36px);
}
.p-commitment-vision__english {
  margin: 0 0 8px;
  color: rgba(127, 150, 97, 0.75);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.p-commitment-vision__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.5rem, 3.2vw, 4rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.p-commitment-vision {
  /* ========================================
  Lead
  ======================================== */
}
.p-commitment-vision__lead {
  position: relative;
  margin: 0;
  padding-bottom: 22px;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.45rem, 1.9vw, 2.1rem);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.075em;
}
.p-commitment-vision__lead::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 1px;
  background-color: rgba(127, 150, 97, 0.7);
  content: "";
}
.p-commitment-vision {
  /* ========================================
  Description
  ======================================== */
}
.p-commitment-vision__description {
  margin-top: clamp(24px, 3vw, 34px);
  color: #666;
  font-size: clamp(1.05rem, 1.1vw, 1.16rem);
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-commitment-vision__description p {
  margin: 0;
}
.p-commitment-vision__description p + p {
  margin-top: 15px;
}
.p-commitment-vision {
  /* ========================================
  Keywords
  ======================================== */
}
.p-commitment-vision__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: clamp(28px, 4vw, 42px) 0 0;
  padding: 0;
  list-style: none;
}
.p-commitment-vision__keyword {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 18px;
  border: 1px solid rgba(127, 150, 97, 0.55);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.82);
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: 0.045em;
}
.p-commitment-vision {
  /* ========================================
  Visual
  ======================================== */
}
.p-commitment-vision__visual {
  position: relative;
  z-index: 1;
  width: 120%;
  margin: 0 -20% 0 0;
}
.p-commitment-vision__visual::before {
  position: absolute;
  inset: 14% 4% 0;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(127, 150, 97, 0.12) 0%, rgba(127, 150, 97, 0.04) 50%, rgba(127, 150, 97, 0) 78%);
  content: "";
  filter: blur(12px);
}
.p-commitment-vision__image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

/* ==================================================
Wide desktop
================================================== */
@media screen and (min-width: 1440px) {
  .p-commitment-vision__inner {
    grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1.34fr);
  }
  .p-commitment-vision__visual {
    width: 128%;
    margin-right: -28%;
  }
}
/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-commitment-vision__inner {
    grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr);
    gap: 46px;
  }
  .p-commitment-vision__visual {
    width: 110%;
    margin-right: -10%;
  }
  .p-commitment-vision__title {
    font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-commitment-vision {
    padding-block: 84px;
  }
  .p-commitment-vision::before {
    top: 9%;
    left: 24px;
    font-size: 7rem;
  }
  .p-commitment-vision__inner {
    grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.18fr);
    gap: 36px;
  }
  .p-commitment-vision__content {
    padding-top: 48px;
  }
  .p-commitment-vision__title {
    font-size: clamp(2.3rem, 4vw, 3.2rem);
  }
  .p-commitment-vision__lead {
    font-size: 1.45rem;
  }
  .p-commitment-vision__description {
    font-size: 1rem;
    line-height: 1.95;
  }
  .p-commitment-vision__visual {
    width: 108%;
    margin-right: -8%;
  }
  .p-commitment-vision__keyword {
    padding-inline: 14px;
    font-size: 0.9rem;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-commitment-vision {
    padding-block: 68px 80px;
  }
  .p-commitment-vision::before {
    top: 44px;
    left: 16px;
    font-size: 5.5rem;
  }
  .p-commitment-vision::after {
    right: -55%;
    bottom: 2%;
    width: 340px;
  }
  .p-commitment-vision__inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .p-commitment-vision__content {
    max-width: none;
    padding-top: 52px;
  }
  .p-commitment-vision__header {
    margin-bottom: 22px;
  }
  .p-commitment-vision__english {
    margin-bottom: 7px;
    font-size: 0.92rem;
  }
  .p-commitment-vision__title {
    font-size: 2.3rem;
    line-height: 1.65;
    letter-spacing: 0.06em;
  }
  .p-commitment-vision__lead {
    padding-bottom: 18px;
    font-size: 1.35rem;
    line-height: 1.85;
    letter-spacing: 0.055em;
  }
  .p-commitment-vision__lead br {
    display: none;
  }
  .p-commitment-vision__lead::after {
    width: 44px;
  }
  .p-commitment-vision__description {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0.03em;
  }
  .p-commitment-vision__description p + p {
    margin-top: 14px;
  }
  .p-commitment-vision__keywords {
    gap: 8px;
    margin-top: 26px;
  }
  .p-commitment-vision__keyword {
    min-height: 32px;
    padding: 5px 13px;
    font-size: 0.86rem;
  }
  .p-commitment-vision__visual {
    width: calc(100% + 32px);
    margin-right: -16px;
    margin-left: -16px;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-commitment-vision__inner {
    width: calc(100% - 24px);
  }
  .p-commitment-vision__title {
    font-size: 2.08rem;
  }
  .p-commitment-vision__lead {
    font-size: 1.22rem;
  }
  .p-commitment-vision__description {
    font-size: 0.95rem;
  }
  .p-commitment-vision__keyword {
    padding-inline: 11px;
    font-size: 0.8rem;
  }
  .p-commitment-vision__visual {
    width: calc(100% + 24px);
    margin-right: -12px;
    margin-left: -12px;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-commitment-vision__image {
    transition: none;
  }
}
/* ==================================================
Commitment Contact
無料相談CTA
================================================== */
.p-commitment-contact {
  position: relative;
  display: grid;
  min-height: clamp(720px, 72vw, 940px);
  overflow: hidden;
  background-color: #7f9661;
  isolation: isolate;
  /* ========================================
  Background
  ======================================== */
}
.p-commitment-contact__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.p-commitment-contact__background-image {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.03);
}
.p-commitment-contact {
  /* ========================================
  Overlay
  ======================================== */
}
.p-commitment-contact__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(19, 39, 28, 0.44) 0%, rgba(19, 39, 28, 0.68) 28%, rgba(19, 39, 28, 0.76) 70%, rgba(19, 39, 28, 0.52) 100%);
  pointer-events: none;
  /*
   * 前後の白背景と自然につなぐ
   */
}
.p-commitment-contact__overlay::before, .p-commitment-contact__overlay::after {
  position: absolute;
  right: 0;
  left: 0;
  height: clamp(100px, 13vw, 190px);
  content: "";
  pointer-events: none;
}
.p-commitment-contact__overlay::before {
  top: 0;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.7) 28%, rgba(255, 255, 255, 0) 100%);
}
.p-commitment-contact__overlay::after {
  bottom: 0;
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.68) 28%, rgba(255, 255, 255, 0) 100%);
}
.p-commitment-contact {
  /* ========================================
  Inner
  ======================================== */
}
.p-commitment-contact__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  padding-block: clamp(150px, 15vw, 220px);
}
.p-commitment-contact {
  /* ========================================
  Content
  ======================================== */
}
.p-commitment-contact__content {
  width: min(100%, 900px);
  margin-inline: auto;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}
.p-commitment-contact {
  /* ========================================
  Header
  ======================================== */
}
.p-commitment-contact__header {
  margin-bottom: clamp(28px, 4vw, 44px);
}
.p-commitment-contact__english {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.22em;
}
.p-commitment-contact__title {
  margin: 0;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.6rem, 3.4vw, 4.5rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.075em;
}
.p-commitment-contact {
  /* ========================================
  Description
  ======================================== */
}
.p-commitment-contact__description {
  width: min(100%, 760px);
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.15rem, 1.35vw, 1.45rem);
  line-height: 2.1;
  letter-spacing: 0.05em;
}
.p-commitment-contact__description p {
  margin: 0;
}
.p-commitment-contact__description p + p {
  margin-top: 16px;
}
.p-commitment-contact {
  /* ========================================
  Message
  ======================================== */
}
.p-commitment-contact__message {
  margin: clamp(30px, 4vw, 46px) 0 0;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.35rem, 1.7vw, 1.8rem);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.07em;
}
.p-commitment-contact {
  /* ========================================
  Button
  ======================================== */
}
.p-commitment-contact__button {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}
.p-commitment-contact__button .c-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 330px);
  min-height: 60px;
  padding: 14px 56px 14px 34px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-shadow: none;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.p-commitment-contact__button .c-button::after {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.p-commitment-contact__button .c-button:hover, .p-commitment-contact__button .c-button:focus-visible {
  border-color: #fff;
  background-color: #7f9661;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  color: #fff;
  transform: translateY(-2px);
}
.p-commitment-contact__button .c-button:hover::after, .p-commitment-contact__button .c-button:focus-visible::after {
  transform: translate(4px, -50%) rotate(45deg);
}
.p-commitment-contact {
  /* ========================================
  Points
  ======================================== */
}
.p-commitment-contact__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 30px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.p-commitment-contact__point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.p-commitment-contact__check {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.p-commitment-contact__check svg {
  display: block;
  width: 13px;
  height: 13px;
}
.p-commitment-contact__point-text {
  display: block;
}

/* ==================================================
Wide desktop
================================================== */
@media screen and (min-width: 1440px) {
  .p-commitment-contact {
    min-height: 900px;
  }
  .p-commitment-contact__background-image {
    -o-object-position: center 48%;
       object-position: center 48%;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-commitment-contact {
    min-height: 760px;
  }
  .p-commitment-contact__inner {
    padding-block: 140px;
  }
  .p-commitment-contact__content {
    width: min(100%, 780px);
  }
  .p-commitment-contact__title {
    font-size: clamp(2.5rem, 4vw, 3.6rem);
  }
  .p-commitment-contact__description {
    font-size: 1.15rem;
    line-height: 2;
  }
  .p-commitment-contact__points {
    gap: 12px 22px;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-commitment-contact {
    min-height: auto;
  }
  .p-commitment-contact__background-image {
    -o-object-position: 52% center;
       object-position: 52% center;
    transform: scale(1.06);
  }
  .p-commitment-contact__overlay {
    background: linear-gradient(180deg, rgba(19, 39, 28, 0.54) 0%, rgba(19, 39, 28, 0.76) 28%, rgba(19, 39, 28, 0.82) 72%, rgba(19, 39, 28, 0.62) 100%);
  }
  .p-commitment-contact__overlay::before, .p-commitment-contact__overlay::after {
    height: 105px;
  }
  .p-commitment-contact__inner {
    width: calc(100% - 32px);
    padding-block: 120px 130px;
  }
  .p-commitment-contact__header {
    margin-bottom: 26px;
  }
  .p-commitment-contact__english {
    margin-bottom: 10px;
    font-size: 0.95rem;
  }
  .p-commitment-contact__title {
    font-size: clamp(2rem, 7vw, 2.75rem);
    line-height: 1.7;
    letter-spacing: 0.055em;
  }
  .p-commitment-contact__title br {
    display: none;
  }
  .p-commitment-contact__description {
    font-size: 1.02rem;
    line-height: 1.95;
    letter-spacing: 0.035em;
  }
  .p-commitment-contact__description br {
    display: none;
  }
  .p-commitment-contact__description p + p {
    margin-top: 14px;
  }
  .p-commitment-contact__message {
    margin-top: 28px;
    font-size: 1.22rem;
    line-height: 1.85;
  }
  .p-commitment-contact__message br {
    display: none;
  }
  .p-commitment-contact__button {
    margin-top: 20px;
  }
  .p-commitment-contact__button .c-button {
    width: 100%;
    min-height: 56px;
    padding-inline: 28px 50px;
    font-size: 1.1rem;
  }
  .p-commitment-contact__points {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
  }
  .p-commitment-contact__point {
    font-size: 0.93rem;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-commitment-contact__inner {
    width: calc(100% - 24px);
    padding-block: 110px 120px;
  }
  .p-commitment-contact__title {
    font-size: 1.9rem;
  }
  .p-commitment-contact__description {
    font-size: 0.96rem;
  }
  .p-commitment-contact__message {
    font-size: 1.12rem;
  }
  .p-commitment-contact__point {
    font-size: 0.88rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-commitment-contact__background-image,
  .p-commitment-contact__button .c-button,
  .p-commitment-contact__button .c-button::after {
    transition: none;
  }
}
/* ==================================================
Support page
================================================== */
.p-support {
  overflow: hidden;
}

/* ==================================================
Support Hero
選べるサポート体制
================================================== */
.p-support-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(500px, 48vw, 720px);
  overflow: hidden;
  background-color: #f8f8f4;
  isolation: isolate;
  /* ========================================
  Background
  ======================================== */
}
.p-support-hero__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.p-support-hero__image {
  display: block;
  width: 100%;
  max-width: none;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-support-hero {
  /* ========================================
  Overlay
  左側を白くフェード
  ======================================== */
}
.p-support-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0.98) 18%, rgba(255, 255, 255, 0.86) 34%, rgba(255, 255, 255, 0.44) 50%, rgba(255, 255, 255, 0.08) 67%, rgba(255, 255, 255, 0) 82%);
  pointer-events: none;
}
.p-support-hero__overlay::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.52) 100%);
  content: "";
}
.p-support-hero {
  /* ========================================
  Inner
  ======================================== */
}
.p-support-hero__inner {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  padding-block: clamp(110px, 11vw, 165px) clamp(90px, 9vw, 135px);
}
.p-support-hero {
  /* ========================================
  Content
  ======================================== */
}
.p-support-hero__content {
  width: min(100%, 570px);
  padding-left: clamp(12px, 10vw, 5vw);
}
.p-support-hero {
  /* ========================================
  English title
  ======================================== */
}
.p-support-hero__english {
  margin: 0 0 14px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.p-support-hero {
  /* ========================================
  Main title
  ======================================== */
}
.p-support-hero__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(3.6rem, 4.6vw, 6rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.72);
}
.p-support-hero {
  /* ========================================
  Description
  ======================================== */
}
.p-support-hero__description {
  margin-top: clamp(34px, 4vw, 52px);
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.25rem, 1.45vw, 1.55rem);
  line-height: 2.15;
  letter-spacing: 0.065em;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.95), 0 1px 18px rgba(255, 255, 255, 0.84);
}
.p-support-hero__description p {
  margin: 0;
}
.p-support-hero__description p + p {
  margin-top: 22px;
}

/* ==================================================
Large desktop
================================================== */
@media screen and (min-width: 1440px) {
  .p-support-hero {
    min-height: 690px;
  }
  .p-support-hero__image {
    -o-object-position: center 46%;
       object-position: center 46%;
  }
  .p-support-hero__content {
    width: 60%;
  }
}
/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-support-hero {
    min-height: 570px;
  }
  .p-support-hero__content {
    width: min(52%, 520px);
  }
  .p-support-hero__title {
    font-size: clamp(3.3rem, 4.8vw, 5rem);
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-support-hero {
    min-height: 520px;
  }
  .p-support-hero__image {
    -o-object-position: 62% center;
       object-position: 62% center;
  }
  .p-support-hero__inner {
    padding-block: 100px 88px;
  }
  .p-support-hero__content {
    width: min(58%, 470px);
    padding-left: 2rem;
  }
  .p-support-hero__title {
    font-size: clamp(3rem, 5.2vw, 4.3rem);
  }
  .p-support-hero__description {
    margin-top: 30px;
    font-size: 1.25rem;
    line-height: 2;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-support-hero {
    align-items: flex-end;
    min-height: 610px;
  }
  .p-support-hero__background {
    inset: 0;
  }
  .p-support-hero__image {
    -o-object-position: 67% center;
       object-position: 67% center;
  }
  .p-support-hero__inner {
    width: calc(100% - 32px);
    padding-block: 260px 62px;
  }
  .p-support-hero__content {
    width: 100%;
    padding-left: 0;
  }
  .p-support-hero__english {
    margin-bottom: 9px;
    font-size: 1rem;
  }
  .p-support-hero__title {
    font-size: clamp(2.8rem, 9vw, 3.8rem);
    line-height: 1.5;
    letter-spacing: 0.075em;
  }
  .p-support-hero__description {
    margin-top: 24px;
    font-size: 1.2rem;
    line-height: 1.95;
    letter-spacing: 0.04em;
  }
  .p-support-hero__description p + p {
    margin-top: 16px;
  }
  .p-support-hero__description br {
    display: none;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-support-hero {
    min-height: 570px;
  }
  .p-support-hero__inner {
    width: calc(100% - 24px);
    padding-top: 240px;
  }
  .p-support-hero__title {
    font-size: 2.7rem;
  }
  .p-support-hero__description {
    font-size: 1.12rem;
  }
}
/* ==================================================
Support Plans
サポートプラン一覧
================================================== */
.p-support-plans {
  position: relative;
  padding-block: clamp(90px, 9vw, 150px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Inner
  ======================================== */
}
.p-support-plans__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
}
.p-support-plans {
  /* ========================================
  Section header
  ======================================== */
}
.p-support-plans__header {
  width: min(100%, 820px);
  margin-inline: auto;
  margin-bottom: clamp(52px, 6vw, 80px);
  text-align: center;
}
.p-support-plans__english {
  margin: 0 0 10px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.p-support-plans__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.8rem, 3.2vw, 4rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.09em;
}
.p-support-plans__introduction {
  margin: 24px 0 0;
  color: #666;
  font-size: clamp(1.2rem, 1.25vw, 1.4rem);
  line-height: 2;
  letter-spacing: 0.045em;
}
.p-support-plans {
  /* ========================================
  Upper layout
  スポット相談・工程別サポート
  ======================================== */
}
.p-support-plans__upper {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.65fr);
  align-items: stretch;
  gap: clamp(22px, 2.5vw, 34px);
}
.p-support-plans {
  /* ========================================
  Group common
  ======================================== */
}
.p-support-plans__group {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(138, 119, 81, 0.72);
  border-radius: 18px;
  background-color: #fff;
  box-shadow: 0 6px 16px rgba(57, 55, 47, 0.05), 0 1px 3px rgba(57, 55, 47, 0.05);
}
.p-support-plans__group-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(138, 119, 81, 0.28);
}
.p-support-plans__number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  border-radius: 50%;
  background-color: rgba(127, 150, 97, 0.78);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}
.p-support-plans__group-heading {
  min-width: 0;
  padding-top: 3px;
}
.p-support-plans__group-title {
  margin: 0;
  color: #86754c;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.8rem, 2vw, 2.25rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.065em;
}
.p-support-plans__group-description {
  margin: 12px 0 0;
  color: #666;
  font-size: 1.2rem;
  line-height: 1.85;
  letter-spacing: 0.035em;
}
.p-support-plans {
  /* ========================================
  Spot group
  ======================================== */
}
.p-support-plans__group--spot {
  padding: clamp(28px, 3vw, 40px) clamp(22px, 2.5vw, 34px) clamp(30px, 3vw, 42px);
}
.p-support-plans__spot-list {
  display: grid;
  margin-top: 8px;
}
.p-support-plans__group--spot .p-support-plans__service {
  padding-block: 28px;
}
.p-support-plans__group--spot .p-support-plans__service + .p-support-plans__service {
  border-top: 1px dashed rgba(138, 119, 81, 0.45);
}
.p-support-plans__group--spot .p-support-plans__service:last-child {
  padding-bottom: 0;
}
.p-support-plans {
  /* ========================================
  Process group
  ======================================== */
}
.p-support-plans__group--process {
  padding: clamp(28px, 3vw, 40px) clamp(24px, 3vw, 42px) clamp(30px, 3vw, 42px);
}
.p-support-plans__process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 8px;
}
.p-support-plans__group--process .p-support-plans__service {
  min-width: 0;
  padding: 28px clamp(18px, 2.4vw, 34px);
}
.p-support-plans__group--process .p-support-plans__service:nth-child(odd) {
  padding-left: 0;
  border-right: 1px solid rgba(138, 119, 81, 0.22);
}
.p-support-plans__group--process .p-support-plans__service:nth-child(even) {
  padding-right: 0;
}
.p-support-plans__group--process .p-support-plans__service:nth-child(n+3) {
  border-top: 1px dashed rgba(138, 119, 81, 0.45);
}
.p-support-plans {
  /* ========================================
  Service common
  ======================================== */
}
.p-support-plans__service {
  position: relative;
}
.p-support-plans__service-heading {
  display: flex;
  align-items: center;
  gap: 13px;
}
.p-support-plans__service-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
}
.p-support-plans__service-icon img {
  display: block;
  width: 52px;
  max-width: none;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-support-plans__service-title {
  margin: 0;
  color: #86754c;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.4rem, 1.55vw, 1.7rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.p-support-plans__service-description {
  margin: 17px 0 0;
  color: #666;
  font-size: 1.15rem;
  line-height: 1.9;
  letter-spacing: 0.035em;
}
.p-support-plans {
  /* ========================================
  Price
  ======================================== */
}
.p-support-plans__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px 7px;
  margin: 20px 0 0;
  color: #86754c;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.5;
}
.p-support-plans__price-amount {
  font-size: clamp(2rem, 2.2vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.p-support-plans__price-suffix {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.p-support-plans__price-detail {
  font-size: 1rem;
  color: #666;
}
.p-support-plans__price-note {
  margin: 6px 0 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
  text-align: right;
}
.p-support-plans {
  /* ========================================
  Total support group
  ======================================== */
}
.p-support-plans__group--total {
  margin-top: clamp(22px, 2.5vw, 34px);
  padding: clamp(30px, 3.5vw, 46px) clamp(28px, 4vw, 58px) clamp(38px, 4vw, 56px);
  background-color: rgba(244, 242, 236, 0.9);
}
.p-support-plans__group--total .p-support-plans__group-header {
  align-items: center;
  padding-bottom: 0;
  border-bottom: 0;
}
.p-support-plans__group--total .p-support-plans__group-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  width: 100%;
}
.p-support-plans__group--total .p-support-plans__group-description {
  margin: 0;
}
.p-support-plans {
  /* ========================================
  Total plan cards
  ======================================== */
}
.p-support-plans__total-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 70px);
  width: min(100%, 900px);
  margin: clamp(42px, 5vw, 64px) auto 0;
}
.p-support-plans__total-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(28px, 3vw, 40px) clamp(26px, 3vw, 40px) clamp(30px, 3vw, 42px);
  border: 2px solid rgba(127, 150, 97, 0.64);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(54, 57, 49, 0.07);
}
.p-support-plans__total-card--full {
  border-color: rgba(102, 143, 146, 0.78);
}
.p-support-plans__total-header {
  min-height: 106px;
}
.p-support-plans__total-title {
  margin: 0;
  color: #86754c;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.65rem, 1.9vw, 2.1rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.055em;
  text-align: center;
}
.p-support-plans__total-description {
  margin: 14px 0 0;
  color: #666;
  font-size: 1.15rem;
  line-height: 1.85;
  letter-spacing: 0.035em;
}
.p-support-plans {
  /* ========================================
  Total visual
  ======================================== */
}
.p-support-plans__total-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 210px;
  margin: 22px 0 20px;
}
.p-support-plans__total-visual::before {
  position: absolute;
  inset: 8% 5% 0;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(127, 150, 97, 0.11) 0%, rgba(127, 150, 97, 0.03) 56%, rgba(127, 150, 97, 0) 78%);
  content: "";
}
.p-support-plans__total-image {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 310px);
  max-width: none;
  height: 210px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.p-support-plans {
  /* ========================================
  Total features
  ======================================== */
}
.p-support-plans__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-support-plans__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  color: #333;
  font-size: 1.08rem;
  line-height: 1.7;
  letter-spacing: 0.025em;
}
.p-support-plans__check {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-top: 0.15em;
  border-radius: 50%;
  background-color: rgba(127, 150, 97, 0.85);
  color: #fff;
}
.p-support-plans__check svg {
  display: block;
  width: 12px;
  height: 12px;
}
.p-support-plans__total-card--full .p-support-plans__check {
  background-color: rgba(102, 143, 146, 0.9);
}
.p-support-plans {
  /* ========================================
  Total price
  ======================================== */
}
.p-support-plans__total-price {
  margin-top: auto;
  padding-top: 26px;
}
.p-support-plans__total-price-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 4px 8px;
  margin: 0;
  color: #86754c;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.5;
}
.p-support-plans__total-price-label {
  font-size: 1.15rem;
}
.p-support-plans__total-price-amount {
  font-size: clamp(2rem, 2.3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.p-support-plans__total-price-suffix {
  font-size: 1.05rem;
}
.p-support-plans__total-price-note {
  margin: 5px 0 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.025em;
  text-align: center;
}
.p-support-plans {
  /* ========================================
  Notice
  ======================================== */
}
.p-support-plans__notice {
  margin: 20px 0 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: right;
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-support-plans__upper {
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.55fr);
    gap: 22px;
  }
  .p-support-plans__group--spot, .p-support-plans__group--process {
    padding-inline: 24px;
  }
  .p-support-plans__group--process .p-support-plans__service {
    padding-inline: 22px;
  }
  .p-support-plans__service-icon {
    width: 52px;
    height: 52px;
  }
  .p-support-plans__service-icon img {
    width: 46px;
    height: 46px;
  }
  .p-support-plans__service-title {
    font-size: 1.35rem;
  }
  .p-support-plans__service-description {
    font-size: 1.08rem;
  }
  .p-support-plans__total-list {
    gap: 34px;
  }
  .p-support-plans__total-card {
    padding-inline: 30px;
  }
  .p-support-plans__feature {
    font-size: 1rem;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-support-plans {
    padding-block: 84px;
  }
  .p-support-plans__header {
    margin-bottom: 54px;
  }
  .p-support-plans__upper {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
    margin-inline: auto;
    gap: 24px;
  }
  .p-support-plans__group--spot, .p-support-plans__group--process {
    padding: 34px;
  }
  .p-support-plans__spot-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p-support-plans__group--spot .p-support-plans__service {
    padding: 28px;
  }
  .p-support-plans__group--spot .p-support-plans__service:first-child {
    padding-left: 0;
    border-right: 1px solid rgba(138, 119, 81, 0.22);
  }
  .p-support-plans__group--spot .p-support-plans__service:last-child {
    padding-right: 0;
    padding-bottom: 28px;
    border-top: 0;
  }
  .p-support-plans__group--total {
    width: min(100%, 760px);
    margin-inline: auto;
    margin-top: 24px;
    padding: 36px;
  }
  .p-support-plans__group--total .p-support-plans__group-heading {
    display: block;
  }
  .p-support-plans__group--total .p-support-plans__group-description {
    margin-top: 12px;
  }
  .p-support-plans__total-list {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
    gap: 28px;
  }
  .p-support-plans__total-header {
    min-height: 0;
  }
  .p-support-plans__total-visual {
    min-height: 230px;
  }
  .p-support-plans__total-image {
    height: 230px;
  }
  .p-support-plans__notice {
    width: min(100%, 760px);
    margin-inline: auto;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-support-plans {
    padding-block: 68px 80px;
  }
  .p-support-plans__inner {
    width: calc(100% - 32px);
  }
  .p-support-plans__header {
    margin-bottom: 40px;
  }
  .p-support-plans__english {
    margin-bottom: 8px;
    font-size: 1rem;
  }
  .p-support-plans__title {
    font-size: 2.35rem;
    line-height: 1.65;
  }
  .p-support-plans__introduction {
    margin-top: 18px;
    font-size: 1.1rem;
    line-height: 1.9;
  }
  .p-support-plans__introduction br {
    display: none;
  }
  .p-support-plans {
    /* ======================================
    Groups
    ====================================== */
  }
  .p-support-plans__group {
    border-radius: 14px;
  }
  .p-support-plans__group--spot, .p-support-plans__group--process, .p-support-plans__group--total {
    padding: 26px 20px 30px;
  }
  .p-support-plans__group-header {
    gap: 11px;
    padding-bottom: 18px;
  }
  .p-support-plans__number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  .p-support-plans__group-title {
    font-size: 1.65rem;
  }
  .p-support-plans__group-description {
    margin-top: 9px;
    font-size: 1.05rem;
    line-height: 1.8;
  }
  .p-support-plans {
    /* ======================================
    Spot
    ====================================== */
  }
  .p-support-plans__spot-list {
    grid-template-columns: 1fr;
  }
  .p-support-plans__group--spot .p-support-plans__service {
    padding: 24px 0;
  }
  .p-support-plans__group--spot .p-support-plans__service:first-child {
    border-right: 0;
  }
  .p-support-plans__group--spot .p-support-plans__service:last-child {
    padding-bottom: 0;
    border-top: 1px dashed rgba(138, 119, 81, 0.45);
  }
  .p-support-plans {
    /* ======================================
    Process
    ====================================== */
  }
  .p-support-plans__process-list {
    grid-template-columns: 1fr;
  }
  .p-support-plans__group--process .p-support-plans__service {
    padding: 24px 0;
  }
  .p-support-plans__group--process .p-support-plans__service:nth-child(odd) {
    border-right: 0;
  }
  .p-support-plans__group--process .p-support-plans__service + .p-support-plans__service {
    border-top: 1px dashed rgba(138, 119, 81, 0.45);
  }
  .p-support-plans__group--process .p-support-plans__service:last-child {
    padding-bottom: 0;
  }
  .p-support-plans {
    /* ======================================
    Service
    ====================================== */
  }
  .p-support-plans__service-heading {
    gap: 11px;
  }
  .p-support-plans__service-icon {
    width: 54px;
    height: 54px;
  }
  .p-support-plans__service-icon img {
    width: 48px;
    height: 48px;
  }
  .p-support-plans__service-title {
    font-size: 1.4rem;
  }
  .p-support-plans__service-description {
    margin-top: 14px;
    font-size: 1.05rem;
    line-height: 1.85;
  }
  .p-support-plans__price {
    margin-top: 17px;
  }
  .p-support-plans__price-amount {
    font-size: 2rem;
  }
  .p-support-plans__price-suffix {
    font-size: 1rem;
  }
  .p-support-plans__price-detail, .p-support-plans__price-note {
    font-size: 0.95rem;
  }
  .p-support-plans {
    /* ======================================
    Total
    ====================================== */
  }
  .p-support-plans__group--total {
    margin-top: 20px;
  }
  .p-support-plans__group--total .p-support-plans__group-header {
    align-items: flex-start;
  }
  .p-support-plans__group--total .p-support-plans__group-heading {
    display: block;
  }
  .p-support-plans__total-list {
    margin-top: 30px;
    gap: 22px;
  }
  .p-support-plans__total-card {
    padding: 26px 20px 30px;
    border-radius: 16px;
  }
  .p-support-plans__total-title {
    font-size: 1.55rem;
  }
  .p-support-plans__total-description {
    margin-top: 11px;
    font-size: 1.05rem;
    line-height: 1.8;
  }
  .p-support-plans__total-visual {
    min-height: 170px;
    margin-block: 18px;
  }
  .p-support-plans__total-image {
    width: min(100%, 250px);
    height: 170px;
  }
  .p-support-plans__features {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .p-support-plans__feature {
    font-size: 1rem;
  }
  .p-support-plans__total-price {
    padding-top: 22px;
  }
  .p-support-plans__total-price-main {
    display: block;
    text-align: center;
  }
  .p-support-plans__total-price-label, .p-support-plans__total-price-amount, .p-support-plans__total-price-suffix {
    display: inline;
  }
  .p-support-plans__total-price-label {
    font-size: 1.05rem;
  }
  .p-support-plans__total-price-amount {
    font-size: 2.1rem;
  }
  .p-support-plans__notice {
    margin-top: 16px;
    font-size: 0.9rem;
    text-align: left;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-support-plans__inner {
    width: calc(100% - 24px);
  }
  .p-support-plans__title {
    font-size: 2.1rem;
  }
  .p-support-plans__group--spot, .p-support-plans__group--process, .p-support-plans__group--total {
    padding-inline: 17px;
  }
  .p-support-plans__group-title {
    font-size: 1.5rem;
  }
  .p-support-plans__service-title {
    font-size: 1.3rem;
  }
  .p-support-plans__service-description, .p-support-plans__total-description {
    font-size: 1rem;
  }
  .p-support-plans__total-card {
    padding-inline: 17px;
  }
  .p-support-plans__total-title {
    font-size: 1.45rem;
  }
}
/* ==================================================
Support Flow
サポートの流れ
================================================== */
.p-support-flow {
  position: relative;
  padding-block: clamp(40px, 5vw, 80px) clamp(80px, 9vw, 140px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Inner
  ======================================== */
}
.p-support-flow__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  width: min(100%, 1180px);
  padding: clamp(38px, 4vw, 58px) clamp(28px, 4vw, 60px) clamp(42px, 5vw, 66px);
  border-radius: 18px;
  background-color: rgba(241, 239, 228, 0.92);
}
.p-support-flow {
  /* ========================================
  Header
  ======================================== */
}
.p-support-flow__header {
  margin-bottom: clamp(38px, 5vw, 58px);
  text-align: center;
}
.p-support-flow__english {
  margin: 0 0 8px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.p-support-flow__title {
  margin: 0;
  color: #80734f;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.5rem, 3vw, 3.6rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.09em;
}
.p-support-flow {
  /* ========================================
  Flow list
  ======================================== */
}
.p-support-flow__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-support-flow {
  /* ========================================
  Flow item
  ======================================== */
}
.p-support-flow__item {
  position: relative;
  min-width: 0;
  text-align: center;
}
.p-support-flow {
  /* ========================================
  Visual
  ======================================== */
}
.p-support-flow__visual {
  position: relative;
  width: min(100%, 150px);
  margin-inline: auto;
}
.p-support-flow__number {
  position: absolute;
  top: 3px;
  left: -4px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 50%;
  background-color: rgba(127, 150, 97, 0.8);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 8px rgba(52, 65, 54, 0.12);
}
.p-support-flow__image-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1/1;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.82);
}
.p-support-flow__image-wrap::before {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 150, 97, 0.08) 0%, rgba(127, 150, 97, 0.025) 58%, rgba(127, 150, 97, 0) 78%);
  content: "";
}
.p-support-flow__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 84%;
  max-width: none;
  height: 84%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.p-support-flow {
  /* ========================================
  Content
  ======================================== */
}
.p-support-flow__content {
  margin-top: 20px;
}
.p-support-flow__item-title {
  margin: 0;
  color: #80734f;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.4rem, 1.5vw, 1.65rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.045em;
}
.p-support-flow__description {
  margin: 11px 0 0;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
.p-support-flow {
  /* ========================================
  Arrow
  ======================================== */
}
.p-support-flow__arrow {
  position: absolute;
  top: 70px;
  right: calc(clamp(18px, 2.5vw, 34px) / -2 - 10px);
  width: 20px;
  height: 1px;
  background-color: rgba(127, 150, 97, 0.42);
}
.p-support-flow__arrow::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(127, 150, 97, 0.55);
  border-right: 1px solid rgba(127, 150, 97, 0.55);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
.p-support-flow {
  /* ========================================
  Hover
  ======================================== */
}
.p-support-flow__item:hover .p-support-flow__image {
  opacity: 0.88;
  transform: translateY(-4px);
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-support-flow__inner {
    padding-inline: 34px;
  }
  .p-support-flow__list {
    gap: 20px;
  }
  .p-support-flow__visual {
    width: 128px;
  }
  .p-support-flow__number {
    width: 31px;
    height: 31px;
    font-size: 0.88rem;
  }
  .p-support-flow__item-title {
    font-size: 1.35rem;
  }
  .p-support-flow__description {
    font-size: 1rem;
  }
  .p-support-flow__arrow {
    top: 62px;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-support-flow {
    padding-block: 40px 90px;
  }
  .p-support-flow__inner {
    width: min(100% - 48px, 760px);
    padding: 46px 38px 52px;
  }
  .p-support-flow__header {
    margin-bottom: 44px;
  }
  .p-support-flow__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px 30px;
  }
  .p-support-flow__item:nth-child(3) .p-support-flow__arrow {
    display: none;
  }
  .p-support-flow__visual {
    width: 140px;
  }
  .p-support-flow__arrow {
    top: 68px;
    right: -25px;
  }
  .p-support-flow__item-title {
    font-size: 1.45rem;
  }
  .p-support-flow__description {
    font-size: 1.05rem;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-support-flow {
    padding-block: 28px 80px;
  }
  .p-support-flow__inner {
    width: calc(100% - 32px);
    padding: 38px 22px 44px;
    border-radius: 14px;
  }
  .p-support-flow__header {
    margin-bottom: 34px;
  }
  .p-support-flow__english {
    margin-bottom: 6px;
    font-size: 1rem;
  }
  .p-support-flow__title {
    font-size: 2.35rem;
  }
  .p-support-flow {
    /* ======================================
    Vertical flow
    ====================================== */
  }
  .p-support-flow__list {
    grid-template-columns: 1fr;
    gap: 0;
    width: min(100%, 430px);
    margin-inline: auto;
  }
  .p-support-flow__item {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    padding-block: 20px;
    text-align: left;
  }
  .p-support-flow__item + .p-support-flow__item {
    border-top: 1px dashed rgba(138, 119, 81, 0.3);
  }
  .p-support-flow__item:nth-child(3) .p-support-flow__arrow {
    display: block;
  }
  .p-support-flow__item:last-child .p-support-flow__arrow {
    display: none;
  }
  .p-support-flow__visual {
    width: 105px;
    margin: 0;
  }
  .p-support-flow__number {
    top: 0;
    left: -2px;
    width: 29px;
    height: 29px;
    font-size: 0.82rem;
  }
  .p-support-flow__content {
    margin-top: 0;
  }
  .p-support-flow__item-title {
    font-size: 1.4rem;
    line-height: 1.55;
  }
  .p-support-flow__description {
    margin-top: 8px;
    font-size: 1.05rem;
    line-height: 1.75;
  }
  .p-support-flow {
    /* ======================================
    Down arrow
    ====================================== */
  }
  .p-support-flow__arrow {
    top: auto;
    right: auto;
    bottom: -8px;
    left: 50px;
    width: 1px;
    height: 16px;
    background-color: rgba(127, 150, 97, 0.42);
  }
  .p-support-flow__arrow::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 7px;
    height: 7px;
    border-top: 0;
    border-right: 1px solid rgba(127, 150, 97, 0.55);
    border-bottom: 1px solid rgba(127, 150, 97, 0.55);
    transform: translateX(-50%) rotate(45deg);
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-support-flow__inner {
    width: calc(100% - 24px);
    padding-inline: 17px;
  }
  .p-support-flow__title {
    font-size: 2.1rem;
  }
  .p-support-flow__item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 17px;
  }
  .p-support-flow__visual {
    width: 88px;
  }
  .p-support-flow__item-title {
    font-size: 1.3rem;
  }
  .p-support-flow__description {
    font-size: 1rem;
  }
  .p-support-flow__arrow {
    left: 42px;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-support-flow__image {
    transition: none;
  }
}
/* ==================================================
Support Features
安心してご相談いただくために
================================================== */
.p-support-features {
  position: relative;
  padding-block: clamp(80px, 8vw, 130px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Inner
  ======================================== */
}
.p-support-features__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
}
.p-support-features {
  /* ========================================
  Header
  ======================================== */
}
.p-support-features__header {
  margin-bottom: clamp(42px, 5vw, 64px);
  text-align: center;
}
.p-support-features__title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 18px;
  color: #80734f;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.5rem, 3vw, 3.7rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.p-support-features__title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 54px;
  height: 1px;
  margin-inline: auto;
  background-color: rgba(127, 150, 97, 0.65);
  content: "";
}
.p-support-features {
  /* ========================================
  List
  ======================================== */
}
.p-support-features__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}
.p-support-features {
  /* ========================================
  Item
  ======================================== */
}
.p-support-features__item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: clamp(30px, 3vw, 42px) clamp(24px, 3vw, 36px) clamp(32px, 3.5vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(138, 119, 81, 0.22);
  border-radius: 16px;
  background-color: rgba(244, 242, 233, 0.84);
  box-shadow: 0 8px 22px rgba(54, 55, 47, 0.05), 0 1px 3px rgba(54, 55, 47, 0.04);
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.p-support-features__item::before {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 150, 97, 0.09) 0%, rgba(127, 150, 97, 0) 72%);
  content: "";
  pointer-events: none;
}
.p-support-features__item:hover {
  border-color: rgba(127, 150, 97, 0.35);
  box-shadow: 0 14px 32px rgba(54, 55, 47, 0.08);
  transform: translateY(-4px);
}
.p-support-features {
  /* ========================================
  Visual
  ======================================== */
}
.p-support-features__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 150px;
  aspect-ratio: 1/1;
  margin: 0 auto 26px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.82);
}
.p-support-features__visual::before {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 150, 97, 0.1) 0%, rgba(127, 150, 97, 0.025) 60%, rgba(127, 150, 97, 0) 78%);
  content: "";
}
.p-support-features__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 82%;
  max-width: none;
  height: 82%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.p-support-features__item:hover .p-support-features__image {
  opacity: 0.9;
  transform: translateY(-3px);
}
.p-support-features {
  /* ========================================
  Content
  ======================================== */
}
.p-support-features__content {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.p-support-features__item-title {
  position: relative;
  margin: 0;
  padding-bottom: 17px;
  color: #80734f;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.p-support-features__item-title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 1px;
  margin-inline: auto;
  background-color: rgba(127, 150, 97, 0.5);
  content: "";
}
.p-support-features__description {
  margin: 22px 0 0;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.95;
  letter-spacing: 0.035em;
  text-align: left;
}
.p-support-features {
  /* ========================================
  Note / Link
  ======================================== */
}
.p-support-features__note {
  margin: auto 0 0;
  padding-top: 22px;
  color: #7f9661;
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0.035em;
}
.p-support-features__link {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  color: #7f9661;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-support-features__link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: currentColor;
  content: "";
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.p-support-features__link:hover, .p-support-features__link:focus-visible {
  opacity: 0.72;
}
.p-support-features__link:hover::after, .p-support-features__link:focus-visible::after {
  transform: scaleX(0);
  transform-origin: right;
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-support-features__list {
    gap: 22px;
  }
  .p-support-features__item {
    padding-inline: 25px;
  }
  .p-support-features__visual {
    width: 132px;
  }
  .p-support-features__item-title {
    font-size: 1.8rem;
  }
  .p-support-features__description {
    font-size: 1.18rem;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-support-features {
    padding-block: 80px 94px;
  }
  .p-support-features__inner {
    width: min(100% - 48px, 760px);
  }
  .p-support-features__header {
    margin-bottom: 46px;
  }
  .p-support-features__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .p-support-features__item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    gap: 34px;
    padding: 32px 38px;
    text-align: left;
  }
  .p-support-features__visual {
    width: 150px;
    margin: 0;
  }
  .p-support-features__item-title {
    text-align: left;
  }
  .p-support-features__item-title::after {
    right: auto;
    margin-inline: 0;
  }
  .p-support-features__description {
    font-size: 1.2rem;
  }
  .p-support-features__note {
    margin-top: 18px;
    padding-top: 0;
    text-align: left;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-support-features {
    padding-block: 68px 80px;
  }
  .p-support-features__inner {
    width: calc(100% - 32px);
  }
  .p-support-features__header {
    margin-bottom: 36px;
  }
  .p-support-features__title {
    padding-bottom: 15px;
    font-size: 2.25rem;
    line-height: 1.65;
  }
  .p-support-features__list {
    gap: 16px;
  }
  .p-support-features__item {
    display: flex;
    gap: 0;
    padding: 28px 22px 30px;
    border-radius: 13px;
    text-align: center;
  }
  .p-support-features__visual {
    width: 118px;
    margin: 0 auto 22px;
  }
  .p-support-features__item-title {
    padding-bottom: 14px;
    font-size: 1.65rem;
    text-align: center;
  }
  .p-support-features__item-title::after {
    right: 0;
    margin-inline: auto;
  }
  .p-support-features__description {
    margin-top: 18px;
    font-size: 1.15rem;
    line-height: 1.9;
    text-align: left;
  }
  .p-support-features__note {
    margin-top: 18px;
    padding-top: 0;
    font-size: 1.05rem;
    text-align: center;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-support-features__inner {
    width: calc(100% - 24px);
  }
  .p-support-features__title {
    font-size: 2.05rem;
  }
  .p-support-features__item {
    padding-inline: 18px;
  }
  .p-support-features__visual {
    width: 108px;
  }
  .p-support-features__item-title {
    font-size: 1.5rem;
  }
  .p-support-features__description {
    font-size: 1.08rem;
  }
  .p-support-features__note {
    font-size: 1rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-support-features__item,
  .p-support-features__image,
  .p-support-features__link,
  .p-support-features__link::after {
    transition: none;
  }
}
/* ==================================================
Support Contact
無料相談CTA
================================================== */
.p-support-contact {
  position: relative;
  display: grid;
  min-height: clamp(760px, 78vw, 1040px);
  overflow: hidden;
  background-color: #f7f8f3;
  isolation: isolate;
  /* ========================================
  Background
  ======================================== */
}
.p-support-contact__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.p-support-contact__background-image {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  opacity: 0.72;
  transform: scale(1.03);
}
.p-support-contact {
  /* ========================================
  White overlay
  ======================================== */
}
.p-support-contact__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.96) 10%, rgba(255, 255, 255, 0.74) 27%, rgba(255, 255, 255, 0.46) 54%, rgba(255, 255, 255, 0.58) 75%, rgba(255, 255, 255, 0.94) 93%, white 100%);
  pointer-events: none;
}
.p-support-contact__overlay::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center 42%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 28%, rgba(255, 255, 255, 0.2) 66%, rgba(255, 255, 255, 0) 100%);
  content: "";
}
.p-support-contact__overlay::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.12) 24%, rgba(255, 255, 255, 0.06) 76%, rgba(255, 255, 255, 0.52) 100%);
  content: "";
}
.p-support-contact {
  /* ========================================
  Inner
  ======================================== */
}
.p-support-contact__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: start center;
  width: 100%;
  padding-block: clamp(120px, 13vw, 190px) clamp(220px, 24vw, 340px);
}
.p-support-contact {
  /* ========================================
  Content
  ======================================== */
}
.p-support-contact__content {
  width: min(100%, 860px);
  margin-inline: auto;
  color: #333;
  text-align: center;
}
.p-support-contact {
  /* ========================================
  Header
  ======================================== */
}
.p-support-contact__header {
  margin-bottom: clamp(26px, 3.5vw, 40px);
}
.p-support-contact__title {
  margin: 0;
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.4rem, 3vw, 3.8rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.95), 0 2px 24px rgba(255, 255, 255, 0.88);
}
.p-support-contact {
  /* ========================================
  Description
  ======================================== */
}
.p-support-contact__description {
  width: min(100%, 730px);
  margin-inline: auto;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.15rem, 1.3vw, 1.4rem);
  line-height: 2.1;
  letter-spacing: 0.055em;
  text-shadow: 0 1px 8px white, 0 2px 18px rgba(255, 255, 255, 0.96);
}
.p-support-contact__description p {
  margin: 0;
}
.p-support-contact__description p + p {
  margin-top: 14px;
}
.p-support-contact__lead {
  color: #7f9661;
  font-size: clamp(1.25rem, 1.5vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.p-support-contact {
  /* ========================================
  Message
  ======================================== */
}
.p-support-contact__message {
  margin: clamp(28px, 4vw, 44px) 0 0;
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.35rem, 1.7vw, 1.85rem);
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: 0.075em;
  text-shadow: 0 1px 8px white, 0 2px 16px rgba(255, 255, 255, 0.9);
}
.p-support-contact {
  /* ========================================
  Button
  ======================================== */
}
.p-support-contact__button {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 3vw, 34px);
}
.p-support-contact__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 340px);
  min-height: 58px;
  padding: 13px 58px 13px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  background-color: rgba(127, 150, 97, 0.78);
  box-shadow: 0 8px 20px rgba(38, 59, 46, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.p-support-contact__link::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.18) 48%, rgba(255, 255, 255, 0) 75%);
  content: "";
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.p-support-contact__link:hover, .p-support-contact__link:focus-visible {
  background-color: #7f9661;
  box-shadow: 0 13px 28px rgba(38, 59, 46, 0.21), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-2px);
}
.p-support-contact__link:hover::before, .p-support-contact__link:focus-visible::before {
  transform: translateX(120%);
}
.p-support-contact__link:hover .p-support-contact__link-arrow, .p-support-contact__link:focus-visible .p-support-contact__link-arrow {
  transform: translate(4px, -50%) rotate(45deg);
}
.p-support-contact__link-text {
  position: relative;
  z-index: 1;
}
.p-support-contact__link-arrow {
  position: absolute;
  top: 50%;
  right: 25px;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.p-support-contact {
  /* ========================================
  Points
  ======================================== */
}
.p-support-contact__points {
  display: grid;
  justify-content: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.p-support-contact__point {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.045em;
  text-shadow: 0 1px 8px white;
}
.p-support-contact__check {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 23px;
  height: 23px;
  border: 2px solid currentColor;
  color: #7f9661;
}
.p-support-contact__check svg {
  display: block;
  width: 16px;
  height: 16px;
}
.p-support-contact__point-text {
  display: block;
}

/* ==================================================
Wide desktop
================================================== */
@media screen and (min-width: 1440px) {
  .p-support-contact {
    min-height: 960px;
  }
  .p-support-contact__background-image {
    -o-object-position: center 62%;
       object-position: center 62%;
  }
  .p-support-contact__inner {
    padding-top: 160px;
    padding-bottom: 330px;
  }
}
/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-support-contact {
    min-height: 840px;
  }
  .p-support-contact__inner {
    padding-block: 120px 260px;
  }
  .p-support-contact__title {
    font-size: clamp(2.3rem, 3.5vw, 3.3rem);
  }
  .p-support-contact__background-image {
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-support-contact {
    min-height: 800px;
  }
  .p-support-contact__inner {
    width: min(100% - 48px, 760px);
    padding-block: 105px 240px;
  }
  .p-support-contact__title {
    font-size: clamp(2.2rem, 4.3vw, 3.1rem);
  }
  .p-support-contact__description {
    font-size: 1.2rem;
    line-height: 2;
  }
  .p-support-contact__message {
    font-size: 1.45rem;
  }
  .p-support-contact__background-image {
    -o-object-position: 55% bottom;
       object-position: 55% bottom;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-support-contact {
    min-height: 760px;
  }
  .p-support-contact__background-image {
    -o-object-position: 62% bottom;
       object-position: 62% bottom;
    opacity: 0.68;
    transform: scale(1.06);
  }
  .p-support-contact__inner {
    width: calc(100% - 32px);
    padding-block: 82px 250px;
  }
  .p-support-contact__header {
    margin-bottom: 24px;
  }
  .p-support-contact__title {
    font-size: clamp(2rem, 6.8vw, 2.65rem);
    line-height: 1.75;
    letter-spacing: 0.055em;
  }
  .p-support-contact__title br {
    display: none;
  }
  .p-support-contact__description {
    font-size: 1.1rem;
    line-height: 1.95;
    letter-spacing: 0.035em;
  }
  .p-support-contact__description br {
    display: none;
  }
  .p-support-contact__description p + p {
    margin-top: 12px;
  }
  .p-support-contact__lead {
    font-size: 1.25rem;
  }
  .p-support-contact__message {
    margin-top: 25px;
    font-size: 1.3rem;
    line-height: 1.85;
  }
  .p-support-contact__message br {
    display: none;
  }
  .p-support-contact__button {
    margin-top: 22px;
  }
  .p-support-contact__link {
    width: min(100%, 320px);
    min-height: 55px;
    padding: 12px 52px 12px 26px;
    font-size: 1.15rem;
  }
  .p-support-contact__link-arrow {
    right: 22px;
  }
  .p-support-contact__points {
    gap: 9px;
    margin-top: 25px;
  }
  .p-support-contact__point {
    font-size: 1.05rem;
  }
  .p-support-contact__check {
    width: 21px;
    height: 21px;
  }
  .p-support-contact__check svg {
    width: 14px;
    height: 14px;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-support-contact {
    min-height: 720px;
  }
  .p-support-contact__inner {
    width: calc(100% - 24px);
    padding-block: 72px 220px;
  }
  .p-support-contact__title {
    font-size: 1.9rem;
  }
  .p-support-contact__description {
    font-size: 1.02rem;
  }
  .p-support-contact__lead {
    font-size: 1.15rem;
  }
  .p-support-contact__message {
    font-size: 1.2rem;
  }
  .p-support-contact__link {
    font-size: 1.08rem;
  }
  .p-support-contact__point {
    font-size: 1rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-support-contact__background-image,
  .p-support-contact__link,
  .p-support-contact__link::before,
  .p-support-contact__link-arrow {
    transition: none;
  }
}
/* ==================================================
Confirmation page
================================================== */
.p-confirmation {
  overflow: hidden;
}

/* ==================================================
Confirmation Hero
建築確認申請代行
================================================== */
.p-confirmation-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(540px, 47vw, 720px);
  overflow: hidden;
  background-color: #f7f8f3;
  isolation: isolate;
  /* ========================================
  Background
  ======================================== */
}
.p-confirmation-hero__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.p-confirmation-hero__background-image {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
  transform: scale(1.01);
}
.p-confirmation-hero {
  /* ========================================
  Overlay
  左側と上下を白くフェード
  ======================================== */
}
.p-confirmation-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0.99) 19%, rgba(255, 255, 255, 0.9) 33%, rgba(255, 255, 255, 0.56) 47%, rgba(255, 255, 255, 0.15) 64%, rgba(255, 255, 255, 0) 80%);
  pointer-events: none;
}
.p-confirmation-hero__overlay::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.3) 84%, rgba(255, 255, 255, 0.72) 100%);
  content: "";
}
.p-confirmation-hero__overlay::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 18%;
  background: radial-gradient(ellipse at left center, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.68) 48%, rgba(255, 255, 255, 0) 100%);
  content: "";
}
.p-confirmation-hero {
  /* ========================================
  Inner
  ======================================== */
}
.p-confirmation-hero__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  padding-block: clamp(105px, 10vw, 150px) clamp(90px, 9vw, 130px);
}
.p-confirmation-hero {
  /* ========================================
  Content
  ======================================== */
}
.p-confirmation-hero__content {
  width: min(46%, 560px);
  padding-left: clamp(10px, 2vw, 28px);
}
.p-confirmation-hero {
  /* ベースデザインには表示しない */
}
.p-confirmation-hero__english {
  display: none;
}
.p-confirmation-hero {
  /* ========================================
  Title
  ======================================== */
}
.p-confirmation-hero__title {
  margin: 0;
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(4rem, 4.6vw, 6rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.95), 0 2px 24px rgba(255, 255, 255, 0.8);
}
.p-confirmation-hero {
  /* ========================================
  Description
  ======================================== */
}
.p-confirmation-hero__description {
  margin: clamp(28px, 3.5vw, 46px) 0 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.35rem, 1.4vw, 1.6rem);
  line-height: 2;
  letter-spacing: 0.065em;
  text-shadow: 0 1px 8px white, 0 2px 18px rgba(255, 255, 255, 0.96);
}
.p-confirmation-hero {
  /* ========================================
  Buttons
  ======================================== */
}
.p-confirmation-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(38px, 4.5vw, 58px);
}
.p-confirmation-hero__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(220px, 50% - 8px);
  min-height: 54px;
  padding: 12px 48px 12px 28px;
  overflow: hidden;
  border: 1px solid #7f9661;
  border-radius: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.p-confirmation-hero__button--primary {
  background-color: #7f9661;
  box-shadow: 0 8px 20px rgba(38, 57, 43, 0.13);
  color: #fff;
}
.p-confirmation-hero__button--secondary {
  border-color: rgba(139, 123, 84, 0.5);
  background-color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 6px 16px rgba(64, 62, 55, 0.06);
  color: #756847;
  backdrop-filter: blur(4px);
}
.p-confirmation-hero__button:hover, .p-confirmation-hero__button:focus-visible {
  border-color: #7f9661;
  background-color: #fff;
  box-shadow: 0 11px 24px rgba(38, 57, 43, 0.16);
  color: #7f9661;
  transform: translateY(-2px);
}
.p-confirmation-hero__button-arrow {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.p-confirmation-hero__button:hover .p-confirmation-hero__button-arrow, .p-confirmation-hero__button:focus-visible .p-confirmation-hero__button-arrow {
  transform: translate(4px, -50%) rotate(45deg);
}

/* ==================================================
Wide desktop
================================================== */
@media screen and (min-width: 1440px) {
  .p-confirmation-hero {
    min-height: 700px;
  }
  .p-confirmation-hero__background-image {
    -o-object-position: center 48%;
       object-position: center 48%;
  }
  .p-confirmation-hero__content {
    width: min(44%, 590px);
  }
}
/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-confirmation-hero {
    min-height: 590px;
  }
  .p-confirmation-hero__overlay {
    background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0.98) 23%, rgba(255, 255, 255, 0.85) 39%, rgba(255, 255, 255, 0.42) 57%, rgba(255, 255, 255, 0.06) 78%, rgba(255, 255, 255, 0) 100%);
  }
  .p-confirmation-hero__content {
    width: min(50%, 520px);
  }
  .p-confirmation-hero__title {
    font-size: clamp(3.6rem, 5vw, 5.2rem);
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-confirmation-hero {
    min-height: 550px;
  }
  .p-confirmation-hero__background-image {
    -o-object-position: 62% center;
       object-position: 62% center;
  }
  .p-confirmation-hero__overlay {
    background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0.97) 28%, rgba(255, 255, 255, 0.76) 48%, rgba(255, 255, 255, 0.24) 72%, rgba(255, 255, 255, 0) 100%);
  }
  .p-confirmation-hero__inner {
    padding-block: 100px 82px;
  }
  .p-confirmation-hero__content {
    width: min(57%, 470px);
    padding-left: 0;
  }
  .p-confirmation-hero__title {
    font-size: clamp(3.4rem, 5.7vw, 4.6rem);
  }
  .p-confirmation-hero__description {
    margin-top: 26px;
    font-size: 1.3rem;
  }
  .p-confirmation-hero__buttons {
    gap: 12px;
    margin-top: 38px;
  }
  .p-confirmation-hero__button {
    width: min(195px, 50% - 6px);
    min-height: 51px;
    font-size: 1.1rem;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-confirmation-hero {
    align-items: flex-end;
    min-height: 650px;
  }
  .p-confirmation-hero__background-image {
    -o-object-position: 66% center;
       object-position: 66% center;
    transform: scale(1.04);
  }
  .p-confirmation-hero__overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.08) 32%, rgba(255, 255, 255, 0.66) 59%, rgba(255, 255, 255, 0.94) 79%, white 100%);
  }
  .p-confirmation-hero__overlay::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.13) 62%, rgba(255, 255, 255, 0) 100%);
  }
  .p-confirmation-hero__overlay::after {
    display: none;
  }
  .p-confirmation-hero__inner {
    width: calc(100% - 32px);
    padding-block: 270px 58px;
  }
  .p-confirmation-hero__content {
    width: 100%;
    padding-left: 0;
  }
  .p-confirmation-hero__title {
    font-size: clamp(3rem, 9.5vw, 4rem);
    line-height: 1.55;
    letter-spacing: 0.09em;
  }
  .p-confirmation-hero__description {
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: 1.9;
  }
  .p-confirmation-hero__description br {
    display: none;
  }
  .p-confirmation-hero__buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }
  .p-confirmation-hero__button {
    width: 100%;
    min-height: 50px;
    padding: 11px 38px 11px 16px;
    font-size: 1.05rem;
  }
  .p-confirmation-hero__button-arrow {
    right: 17px;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-confirmation-hero {
    min-height: 620px;
  }
  .p-confirmation-hero__inner {
    width: calc(100% - 24px);
    padding-top: 250px;
  }
  .p-confirmation-hero__title {
    font-size: 2.8rem;
  }
  .p-confirmation-hero__description {
    font-size: 1.1rem;
  }
  .p-confirmation-hero__button {
    padding-left: 12px;
    font-size: 0.95rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-confirmation-hero__background-image,
  .p-confirmation-hero__button,
  .p-confirmation-hero__button-arrow {
    transition: none;
  }
}
/* ==================================================
Confirmation Overview
建築確認申請を、もっとスムーズに。
================================================== */
.p-confirmation-overview {
  position: relative;
  padding-block: clamp(90px, 9vw, 150px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Background decoration
  ======================================== */
}
.p-confirmation-overview::before {
  position: absolute;
  top: 15%;
  right: -10%;
  width: clamp(260px, 30vw, 480px);
  aspect-ratio: 1/0.75;
  border-radius: 52% 48% 38% 62%;
  background-color: rgba(127, 150, 97, 0.055);
  content: "";
  transform: rotate(-12deg);
  pointer-events: none;
}
.p-confirmation-overview::after {
  position: absolute;
  bottom: 7%;
  left: -9%;
  width: clamp(180px, 22vw, 340px);
  aspect-ratio: 1/1;
  border-radius: 42% 58% 66% 34%;
  background-color: rgba(238, 233, 217, 0.55);
  content: "";
  transform: rotate(18deg);
  pointer-events: none;
}
.p-confirmation-overview {
  /* ========================================
  Inner
  ======================================== */
}
.p-confirmation-overview__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(55px, 7vw, 105px);
  width: min(100%, 1180px);
}
.p-confirmation-overview {
  /* ========================================
  Header
  ======================================== */
}
.p-confirmation-overview__header {
  position: relative;
  width: 130%;
  max-width: 500px;
}
.p-confirmation-overview__english {
  margin: 0 0 12px;
  color: rgba(127, 150, 97, 0.72);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.22em;
}
.p-confirmation-overview__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.8rem, 3.3vw, 4.2rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.075em;
}
.p-confirmation-overview__description {
  position: relative;
  margin: clamp(26px, 3vw, 38px) 0 0;
  padding-top: 25px;
  color: #666;
  font-size: clamp(1.2rem, 1.25vw, 1.4rem);
  line-height: 2;
  letter-spacing: 0.045em;
}
.p-confirmation-overview__description::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 1px;
  background-color: rgba(127, 150, 97, 0.65);
  content: "";
}
.p-confirmation-overview {
  /* ========================================
  Service list
  ======================================== */
}
.p-confirmation-overview__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(24px, 3vw, 42px);
  min-width: 0;
}
.p-confirmation-overview {
  /* ========================================
  Service item
  ======================================== */
}
.p-confirmation-overview__item {
  position: relative;
  min-width: 0;
  text-align: center;
}
.p-confirmation-overview__item + .p-confirmation-overview__item::before {
  position: absolute;
  top: 22%;
  bottom: 10%;
  left: calc(clamp(24px, 3vw, 42px) / -2);
  width: 1px;
  background: linear-gradient(180deg, rgba(127, 150, 97, 0) 0%, rgba(127, 150, 97, 0.18) 18%, rgba(127, 150, 97, 0.18) 82%, rgba(127, 150, 97, 0) 100%);
  content: "";
}
.p-confirmation-overview {
  /* ========================================
  Visual
  ======================================== */
}
.p-confirmation-overview__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 190px);
  aspect-ratio: 1/0.82;
  margin: 0 auto clamp(22px, 2.5vw, 32px);
}
.p-confirmation-overview__visual::before {
  position: absolute;
  inset: 4% 1% 0;
  z-index: -1;
  border-radius: 48% 52% 58% 42%;
  background: radial-gradient(ellipse at center, rgba(127, 150, 97, 0.11) 0%, rgba(127, 150, 97, 0.035) 58%, rgba(127, 150, 97, 0) 80%);
  content: "";
  transform: rotate(-4deg);
}
.p-confirmation-overview__image {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.p-confirmation-overview {
  /* ========================================
  Content
  ======================================== */
}
.p-confirmation-overview__content {
  min-width: 0;
}
.p-confirmation-overview__item-title {
  position: relative;
  margin: 0;
  padding-bottom: 16px;
  color: #7d704c;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.65rem, 1.85vw, 2rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.055em;
}
.p-confirmation-overview__item-title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 1px;
  margin-inline: auto;
  background-color: rgba(127, 150, 97, 0.55);
  content: "";
}
.p-confirmation-overview__item-description {
  margin: 18px 0 0;
  color: #666;
  font-size: clamp(1.1rem, 1.12vw, 1.25rem);
  line-height: 1.9;
  letter-spacing: 0.035em;
  text-align: left;
}
.p-confirmation-overview {
  /* ========================================
  Hover
  ======================================== */
}
.p-confirmation-overview__item:hover .p-confirmation-overview__image {
  opacity: 0.88;
  transform: translateY(-5px);
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-confirmation-overview__inner {
    grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
    gap: 48px;
  }
  .p-confirmation-overview__list {
    gap: 24px;
  }
  .p-confirmation-overview__item + .p-confirmation-overview__item::before {
    left: -12px;
  }
  .p-confirmation-overview__visual {
    width: min(100%, 160px);
  }
  .p-confirmation-overview__item-title {
    font-size: 1.6rem;
  }
  .p-confirmation-overview__item-description {
    font-size: 1.1rem;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-confirmation-overview {
    padding-block: 84px;
  }
  .p-confirmation-overview__inner {
    grid-template-columns: 1fr;
    gap: 54px;
    width: min(100% - 48px, 760px);
  }
  .p-confirmation-overview__header {
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
  }
  .p-confirmation-overview__description::before {
    right: 0;
    margin-inline: auto;
  }
  .p-confirmation-overview__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }
  .p-confirmation-overview__item + .p-confirmation-overview__item::before {
    left: -13px;
  }
  .p-confirmation-overview__visual {
    width: min(100%, 150px);
  }
  .p-confirmation-overview__item-title {
    font-size: 1.55rem;
  }
  .p-confirmation-overview__item-description {
    font-size: 1.08rem;
    line-height: 1.85;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-confirmation-overview {
    padding-block: 68px 80px;
  }
  .p-confirmation-overview::before {
    top: 35%;
    right: -55%;
    width: 330px;
  }
  .p-confirmation-overview::after {
    bottom: 1%;
    left: -50%;
    width: 280px;
  }
  .p-confirmation-overview__inner {
    width: calc(100% - 32px);
    gap: 40px;
  }
  .p-confirmation-overview__header {
    position: relative;
    width: 100%;
    max-width: 500px;
  }
  .p-confirmation-overview__english {
    margin-bottom: 8px;
    font-size: 0.95rem;
  }
  .p-confirmation-overview__title {
    font-size: 2.35rem;
    line-height: 1.65;
    letter-spacing: 0.06em;
  }
  .p-confirmation-overview__title br {
    display: none;
  }
  .p-confirmation-overview__description {
    margin-top: 22px;
    padding-top: 20px;
    font-size: 1.15rem;
    line-height: 1.9;
  }
  .p-confirmation-overview__description br {
    display: none;
  }
  .p-confirmation-overview__description::before {
    right: auto;
    width: 45px;
    margin-inline: 0;
  }
  .p-confirmation-overview {
    /* ======================================
    Vertical service list
    ====================================== */
  }
  .p-confirmation-overview__list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .p-confirmation-overview__item {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    padding-block: 26px;
    text-align: left;
  }
  .p-confirmation-overview__item + .p-confirmation-overview__item {
    border-top: 1px dashed rgba(127, 150, 97, 0.2);
  }
  .p-confirmation-overview__item + .p-confirmation-overview__item::before {
    display: none;
  }
  .p-confirmation-overview__visual {
    width: 118px;
    margin: 0;
  }
  .p-confirmation-overview__item-title {
    padding-bottom: 13px;
    font-size: 1.55rem;
    text-align: left;
  }
  .p-confirmation-overview__item-title::after {
    right: auto;
    width: 32px;
    margin-inline: 0;
  }
  .p-confirmation-overview__item-description {
    margin-top: 14px;
    font-size: 1.08rem;
    line-height: 1.85;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-confirmation-overview__inner {
    width: calc(100% - 24px);
  }
  .p-confirmation-overview__title {
    font-size: 2.1rem;
  }
  .p-confirmation-overview__description {
    font-size: 1.08rem;
  }
  .p-confirmation-overview__item {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
  }
  .p-confirmation-overview__visual {
    width: 96px;
  }
  .p-confirmation-overview__item-title {
    font-size: 1.42rem;
  }
  .p-confirmation-overview__item-description {
    font-size: 1rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-confirmation-overview__image {
    transition: none;
  }
}
/* ==================================================
Confirmation Strengths
現場を知るから、話が早い
================================================== */
.p-confirmation-strengths {
  position: relative;
  padding-block: clamp(90px, 9vw, 150px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Background decoration
  ======================================== */
}
.p-confirmation-strengths::before {
  position: absolute;
  top: 18%;
  right: -9%;
  width: clamp(260px, 31vw, 500px);
  aspect-ratio: 1/0.72;
  border-radius: 48% 52% 62% 38%;
  background-color: rgba(127, 150, 97, 0.055);
  content: "";
  transform: rotate(-10deg);
  pointer-events: none;
}
.p-confirmation-strengths::after {
  position: absolute;
  bottom: 4%;
  left: -11%;
  width: clamp(220px, 27vw, 430px);
  aspect-ratio: 1/1;
  border-radius: 58% 42% 35% 65%;
  background-color: rgba(238, 233, 217, 0.5);
  content: "";
  transform: rotate(14deg);
  pointer-events: none;
}
.p-confirmation-strengths {
  /* ========================================
  Inner
  ======================================== */
}
.p-confirmation-strengths__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  width: min(100%, 1160px);
}
.p-confirmation-strengths {
  /* ========================================
  Header
  ======================================== */
}
.p-confirmation-strengths__header {
  width: min(100%, 760px);
  margin-inline: auto;
  margin-bottom: clamp(50px, 6vw, 78px);
  text-align: center;
}
.p-confirmation-strengths__english {
  margin: 0 0 10px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.22em;
}
.p-confirmation-strengths__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.8rem, 3.3vw, 4.2rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.p-confirmation-strengths__introduction {
  margin: clamp(24px, 3vw, 34px) 0 0;
  color: #666;
  font-size: clamp(1.2rem, 1.25vw, 1.4rem);
  line-height: 2;
  letter-spacing: 0.045em;
}
.p-confirmation-strengths {
  /* ========================================
  Strength list
  ======================================== */
}
.p-confirmation-strengths__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
  width: min(100%, 1020px);
  margin-inline: auto;
}
.p-confirmation-strengths {
  /* ========================================
  Strength item
  ======================================== */
}
.p-confirmation-strengths__item {
  position: relative;
  min-width: 0;
  text-align: center;
}
.p-confirmation-strengths__item + .p-confirmation-strengths__item::before {
  position: absolute;
  top: 18%;
  bottom: 8%;
  left: calc(clamp(28px, 4vw, 54px) / -2);
  width: 1px;
  background: linear-gradient(180deg, rgba(127, 150, 97, 0) 0%, rgba(127, 150, 97, 0.18) 18%, rgba(127, 150, 97, 0.18) 82%, rgba(127, 150, 97, 0) 100%);
  content: "";
}
.p-confirmation-strengths {
  /* ========================================
  Visual
  ======================================== */
}
.p-confirmation-strengths__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 250px);
  aspect-ratio: 1/0.82;
  margin: 0 auto clamp(24px, 3vw, 36px);
}
.p-confirmation-strengths__visual::before {
  position: absolute;
  inset: 4% 2% 0;
  z-index: -1;
  border-radius: 46% 54% 62% 38%;
  background: radial-gradient(ellipse at center, rgba(127, 150, 97, 0.12) 0%, rgba(127, 150, 97, 0.035) 57%, rgba(127, 150, 97, 0) 78%);
  content: "";
  transform: rotate(-3deg);
}
.p-confirmation-strengths__image {
  display: block;
  width: 100%;
  max-height: 170px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.p-confirmation-strengths {
  /* ========================================
  Strength content
  ======================================== */
}
.p-confirmation-strengths__content {
  min-width: 0;
}
.p-confirmation-strengths__item-title {
  position: relative;
  margin: 0;
  padding-bottom: 16px;
  color: #7d704c;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.75rem, 2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.p-confirmation-strengths__item-title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 1px;
  margin-inline: auto;
  background-color: rgba(127, 150, 97, 0.58);
  content: "";
}
.p-confirmation-strengths__item-description {
  margin: 20px 0 0;
  color: #666;
  font-size: clamp(1.15rem, 1.17vw, 1.3rem);
  line-height: 1.95;
  letter-spacing: 0.035em;
  text-align: left;
}
.p-confirmation-strengths__item:hover .p-confirmation-strengths__image {
  opacity: 0.88;
  transform: translateY(-5px);
}
.p-confirmation-strengths {
  /* ========================================
  Support area
  ======================================== */
}
.p-confirmation-strengths__support {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: clamp(34px, 5vw, 70px);
  width: min(100%, 1080px);
  margin: clamp(74px, 9vw, 120px) auto 0;
}
.p-confirmation-strengths {
  /* ========================================
  Concerns
  ======================================== */
}
.p-confirmation-strengths__concerns {
  position: relative;
  padding: clamp(34px, 4vw, 48px) clamp(28px, 3.5vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(138, 119, 81, 0.12);
  border-radius: 16px;
  background-color: rgba(245, 242, 232, 0.94);
}
.p-confirmation-strengths__concerns::before {
  position: absolute;
  top: -65px;
  right: -65px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 150, 97, 0.09) 0%, rgba(127, 150, 97, 0) 72%);
  content: "";
  pointer-events: none;
}
.p-confirmation-strengths__concerns-title {
  position: relative;
  margin: 0;
  padding-bottom: 19px;
  color: #7d704c;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.8rem, 2vw, 2.25rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.065em;
}
.p-confirmation-strengths__concerns-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 1px;
  background-color: rgba(127, 150, 97, 0.62);
  content: "";
}
.p-confirmation-strengths__concerns-list {
  display: grid;
  gap: 13px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}
.p-confirmation-strengths__concern {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #333;
  font-size: 1.2rem;
  line-height: 1.75;
  letter-spacing: 0.035em;
}
.p-confirmation-strengths__check {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 21px;
  height: 21px;
  margin-top: 0.2em;
  border: 1px solid rgba(127, 150, 97, 0.7);
  color: #7f9661;
}
.p-confirmation-strengths__check svg {
  display: block;
  width: 14px;
  height: 14px;
}
.p-confirmation-strengths {
  /* ========================================
  Partner support
  ======================================== */
}
.p-confirmation-strengths__partner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(230px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 4vw, 54px);
  min-width: 0;
}
.p-confirmation-strengths__partner-content {
  min-width: 0;
}
.p-confirmation-strengths__partner-label {
  margin: 0 0 12px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.p-confirmation-strengths__partner-title {
  position: relative;
  margin: 0;
  padding-bottom: 22px;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2rem, 2.45vw, 3rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
.p-confirmation-strengths__partner-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 1px;
  background-color: rgba(127, 150, 97, 0.62);
  content: "";
}
.p-confirmation-strengths__partner-description {
  margin: 23px 0 0;
  color: #666;
  font-size: 1.2rem;
  line-height: 1.95;
  letter-spacing: 0.035em;
}
.p-confirmation-strengths__partner-description + .p-confirmation-strengths__partner-description {
  margin-top: 15px;
}
.p-confirmation-strengths {
  /* ========================================
  Partner visual
  ======================================== */
}
.p-confirmation-strengths__partner-visual {
  position: relative;
  width: 115%;
  margin: 0 -15% 0 0;
}
.p-confirmation-strengths__partner-visual::before {
  position: absolute;
  inset: 12% 2% 0;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(127, 150, 97, 0.12) 0%, rgba(127, 150, 97, 0.035) 52%, rgba(127, 150, 97, 0) 77%);
  content: "";
}
.p-confirmation-strengths__partner-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.p-confirmation-strengths__partner:hover .p-confirmation-strengths__partner-image {
  opacity: 0.9;
  transform: translateY(-4px);
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-confirmation-strengths__list {
    gap: 30px;
  }
  .p-confirmation-strengths__item + .p-confirmation-strengths__item::before {
    left: -15px;
  }
  .p-confirmation-strengths__visual {
    width: min(100%, 210px);
  }
  .p-confirmation-strengths__item-title {
    font-size: 1.8rem;
  }
  .p-confirmation-strengths__item-description {
    font-size: 1.15rem;
  }
  .p-confirmation-strengths__support {
    grid-template-columns: minmax(290px, 0.76fr) minmax(0, 1.24fr);
    gap: 42px;
  }
  .p-confirmation-strengths__partner {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.95fr);
    gap: 30px;
  }
  .p-confirmation-strengths__partner-description {
    font-size: 1.15rem;
  }
  .p-confirmation-strengths__partner-visual {
    width: 108%;
    margin-right: -8%;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-confirmation-strengths {
    padding-block: 84px;
  }
  .p-confirmation-strengths__inner {
    width: min(100% - 48px, 760px);
  }
  .p-confirmation-strengths__header {
    margin-bottom: 54px;
  }
  .p-confirmation-strengths__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .p-confirmation-strengths__item + .p-confirmation-strengths__item::before {
    left: -12px;
  }
  .p-confirmation-strengths__visual {
    width: min(100%, 170px);
  }
  .p-confirmation-strengths__item-title {
    font-size: 1.6rem;
  }
  .p-confirmation-strengths__item-description {
    font-size: 1.08rem;
    line-height: 1.85;
  }
  .p-confirmation-strengths__support {
    grid-template-columns: 1fr;
    gap: 48px;
    width: min(100%, 700px);
    margin-top: 78px;
  }
  .p-confirmation-strengths__concerns {
    padding: 38px;
  }
  .p-confirmation-strengths__partner {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 1fr);
  }
  .p-confirmation-strengths__partner-visual {
    width: 100%;
    margin: 0;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-confirmation-strengths {
    padding-block: 68px 80px;
  }
  .p-confirmation-strengths::before {
    top: 25%;
    right: -55%;
    width: 340px;
  }
  .p-confirmation-strengths::after {
    bottom: 2%;
    left: -55%;
    width: 310px;
  }
  .p-confirmation-strengths__inner {
    width: calc(100% - 32px);
  }
  .p-confirmation-strengths__header {
    margin-bottom: 38px;
    text-align: left;
  }
  .p-confirmation-strengths__english {
    margin-bottom: 8px;
    font-size: 1rem;
  }
  .p-confirmation-strengths__title {
    font-size: 2.35rem;
    line-height: 1.65;
  }
  .p-confirmation-strengths__introduction {
    margin-top: 18px;
    font-size: 1.15rem;
    line-height: 1.9;
  }
  .p-confirmation-strengths__introduction br {
    display: none;
  }
  .p-confirmation-strengths {
    /* ======================================
    Strength items
    ====================================== */
  }
  .p-confirmation-strengths__list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .p-confirmation-strengths__item {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    padding-block: 26px;
    text-align: left;
  }
  .p-confirmation-strengths__item + .p-confirmation-strengths__item {
    border-top: 1px dashed rgba(127, 150, 97, 0.2);
  }
  .p-confirmation-strengths__item + .p-confirmation-strengths__item::before {
    display: none;
  }
  .p-confirmation-strengths__visual {
    width: 118px;
    margin: 0;
  }
  .p-confirmation-strengths__item-title {
    padding-bottom: 13px;
    font-size: 1.55rem;
    text-align: left;
  }
  .p-confirmation-strengths__item-title::after {
    right: auto;
    width: 33px;
    margin-inline: 0;
  }
  .p-confirmation-strengths__item-description {
    margin-top: 14px;
    font-size: 1.08rem;
    line-height: 1.85;
  }
  .p-confirmation-strengths {
    /* ======================================
    Support
    ====================================== */
  }
  .p-confirmation-strengths__support {
    gap: 42px;
    margin-top: 56px;
  }
  .p-confirmation-strengths__concerns {
    padding: 30px 24px;
    border-radius: 13px;
  }
  .p-confirmation-strengths__concerns-title {
    padding-bottom: 16px;
    font-size: 1.7rem;
  }
  .p-confirmation-strengths__concerns-title br {
    display: none;
  }
  .p-confirmation-strengths__concerns-list {
    gap: 11px;
    margin-top: 22px;
  }
  .p-confirmation-strengths__concern {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  .p-confirmation-strengths__check {
    width: 20px;
    height: 20px;
  }
  .p-confirmation-strengths__partner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .p-confirmation-strengths__partner-label {
    font-size: 1rem;
  }
  .p-confirmation-strengths__partner-title {
    padding-bottom: 18px;
    font-size: 2rem;
  }
  .p-confirmation-strengths__partner-title br {
    display: none;
  }
  .p-confirmation-strengths__partner-description {
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: 1.9;
  }
  .p-confirmation-strengths__partner-visual {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-confirmation-strengths__inner {
    width: calc(100% - 24px);
  }
  .p-confirmation-strengths__title {
    font-size: 2.1rem;
  }
  .p-confirmation-strengths__introduction {
    font-size: 1.08rem;
  }
  .p-confirmation-strengths__item {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
  }
  .p-confirmation-strengths__visual {
    width: 96px;
  }
  .p-confirmation-strengths__item-title {
    font-size: 1.42rem;
  }
  .p-confirmation-strengths__item-description {
    font-size: 1rem;
  }
  .p-confirmation-strengths__concerns {
    padding-inline: 20px;
  }
  .p-confirmation-strengths__concerns-title {
    font-size: 1.55rem;
  }
  .p-confirmation-strengths__concern {
    font-size: 1.02rem;
  }
  .p-confirmation-strengths__partner-title {
    font-size: 1.82rem;
  }
  .p-confirmation-strengths__partner-description {
    font-size: 1.02rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-confirmation-strengths__image,
  .p-confirmation-strengths__partner-image {
    transition: none;
  }
}
/* ==================================================
Confirmation Flow
ご利用の流れ
================================================== */
.p-confirmation-flow {
  position: relative;
  padding-block: clamp(90px, 9vw, 145px);
  overflow: hidden;
  background-color: rgba(244, 242, 232, 0.82);
  /* ========================================
  Background decoration
  ======================================== */
}
.p-confirmation-flow::before {
  position: absolute;
  top: -10%;
  right: -12%;
  width: clamp(280px, 34vw, 540px);
  aspect-ratio: 1/1;
  border-radius: 46% 54% 62% 38%;
  background-color: rgba(127, 150, 97, 0.045);
  content: "";
  transform: rotate(-14deg);
  pointer-events: none;
}
.p-confirmation-flow::after {
  position: absolute;
  bottom: -14%;
  left: -10%;
  width: clamp(240px, 30vw, 470px);
  aspect-ratio: 1/1;
  border-radius: 58% 42% 36% 64%;
  background-color: rgba(255, 255, 255, 0.72);
  content: "";
  transform: rotate(18deg);
  pointer-events: none;
}
.p-confirmation-flow {
  /* ========================================
  Inner
  ======================================== */
}
.p-confirmation-flow__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
}
.p-confirmation-flow {
  /* ========================================
  Header
  ======================================== */
}
.p-confirmation-flow__header {
  width: min(100%, 760px);
  margin-inline: auto;
  margin-bottom: clamp(48px, 6vw, 74px);
  text-align: center;
}
.p-confirmation-flow__english {
  margin: 0 0 9px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.22em;
}
.p-confirmation-flow__title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.8rem, 3.2vw, 4rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.p-confirmation-flow__introduction {
  margin: 22px 0 0;
  color: #666;
  font-size: clamp(1.2rem, 1.25vw, 1.4rem);
  line-height: 2;
  letter-spacing: 0.045em;
}
.p-confirmation-flow {
  /* ========================================
  Flow list
  ======================================== */
}
.p-confirmation-flow__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-confirmation-flow {
  /* ========================================
  Flow item
  ======================================== */
}
.p-confirmation-flow__item {
  position: relative;
  min-width: 0;
  text-align: center;
}
.p-confirmation-flow {
  /* ========================================
  Visual
  ======================================== */
}
.p-confirmation-flow__visual {
  position: relative;
  width: min(100%, 160px);
  margin-inline: auto;
}
.p-confirmation-flow__number {
  position: absolute;
  top: 2px;
  left: -4px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 50%;
  background-color: #7f9661;
  box-shadow: 0 5px 12px rgba(48, 64, 52, 0.14);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.025em;
}
.p-confirmation-flow__image-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1/1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(127, 150, 97, 0.1);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 9px 24px rgba(54, 60, 52, 0.06), inset 0 0 0 8px rgba(127, 150, 97, 0.025);
}
.p-confirmation-flow__image-wrap::before {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 150, 97, 0.1) 0%, rgba(127, 150, 97, 0.03) 56%, rgba(127, 150, 97, 0) 78%);
  content: "";
}
.p-confirmation-flow__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 82%;
  max-width: none;
  height: 82%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.p-confirmation-flow {
  /* ========================================
  Content
  ======================================== */
}
.p-confirmation-flow__content {
  margin-top: 22px;
}
.p-confirmation-flow__item-title {
  position: relative;
  margin: 0;
  padding-bottom: 14px;
  color: #7d704c;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.45rem, 1.55vw, 1.7rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.045em;
}
.p-confirmation-flow__item-title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  margin-inline: auto;
  background-color: rgba(127, 150, 97, 0.55);
  content: "";
}
.p-confirmation-flow__description {
  margin: 14px 0 0;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.85;
  letter-spacing: 0.03em;
}
.p-confirmation-flow {
  /* ========================================
  Arrow
  ======================================== */
}
.p-confirmation-flow__arrow {
  position: absolute;
  top: 78px;
  right: calc(clamp(20px, 2.6vw, 38px) / -2 - 11px);
  width: 23px;
  height: 1px;
  background-color: rgba(127, 150, 97, 0.38);
}
.p-confirmation-flow__arrow::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(127, 150, 97, 0.62);
  border-right: 1px solid rgba(127, 150, 97, 0.62);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
.p-confirmation-flow {
  /* ========================================
  Note
  ======================================== */
}
.p-confirmation-flow__note {
  width: min(100%, 860px);
  margin: clamp(52px, 7vw, 82px) auto 0;
  padding: clamp(28px, 3.5vw, 42px) clamp(26px, 4vw, 54px);
  border-top: 1px solid rgba(127, 150, 97, 0.24);
  border-bottom: 1px solid rgba(127, 150, 97, 0.24);
  text-align: center;
}
.p-confirmation-flow__note-title {
  margin: 0;
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.55rem, 1.9vw, 2.1rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.065em;
}
.p-confirmation-flow__note-text {
  margin: 14px 0 0;
  color: #666;
  font-size: clamp(1.1rem, 1.18vw, 1.3rem);
  line-height: 1.95;
  letter-spacing: 0.035em;
}
.p-confirmation-flow {
  /* ========================================
  Hover
  ======================================== */
}
.p-confirmation-flow__item:hover .p-confirmation-flow__image {
  opacity: 0.88;
  transform: translateY(-5px);
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-confirmation-flow__list {
    gap: 22px;
  }
  .p-confirmation-flow__visual {
    width: 138px;
  }
  .p-confirmation-flow__number {
    width: 34px;
    height: 34px;
    font-size: 0.92rem;
  }
  .p-confirmation-flow__content {
    margin-top: 19px;
  }
  .p-confirmation-flow__item-title {
    font-size: 1.4rem;
  }
  .p-confirmation-flow__description {
    font-size: 1.05rem;
  }
  .p-confirmation-flow__arrow {
    top: 68px;
    right: -22px;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-confirmation-flow {
    padding-block: 84px 94px;
  }
  .p-confirmation-flow__inner {
    width: min(100% - 48px, 760px);
  }
  .p-confirmation-flow__header {
    margin-bottom: 50px;
  }
  .p-confirmation-flow__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 52px 32px;
  }
  .p-confirmation-flow__item:nth-child(3) .p-confirmation-flow__arrow {
    display: none;
  }
  .p-confirmation-flow__visual {
    width: 145px;
  }
  .p-confirmation-flow__number {
    width: 35px;
    height: 35px;
  }
  .p-confirmation-flow__item-title {
    font-size: 1.5rem;
  }
  .p-confirmation-flow__description {
    font-size: 1.08rem;
  }
  .p-confirmation-flow__arrow {
    top: 72px;
    right: -27px;
  }
  .p-confirmation-flow__note {
    margin-top: 64px;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-confirmation-flow {
    padding-block: 68px 80px;
  }
  .p-confirmation-flow::before {
    top: 20%;
    right: -60%;
    width: 340px;
  }
  .p-confirmation-flow::after {
    bottom: -5%;
    left: -60%;
    width: 320px;
  }
  .p-confirmation-flow__inner {
    width: calc(100% - 32px);
  }
  .p-confirmation-flow__header {
    margin-bottom: 36px;
    text-align: left;
  }
  .p-confirmation-flow__english {
    margin-bottom: 7px;
    font-size: 1rem;
  }
  .p-confirmation-flow__title {
    font-size: 2.35rem;
    line-height: 1.65;
  }
  .p-confirmation-flow__introduction {
    margin-top: 17px;
    font-size: 1.15rem;
    line-height: 1.9;
  }
  .p-confirmation-flow__introduction br {
    display: none;
  }
  .p-confirmation-flow {
    /* ======================================
    Vertical timeline
    ====================================== */
  }
  .p-confirmation-flow__list {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
    width: min(100%, 460px);
    margin-inline: auto;
  }
  .p-confirmation-flow__list::before {
    position: absolute;
    top: 58px;
    bottom: 58px;
    left: 53px;
    width: 1px;
    background: linear-gradient(180deg, rgba(127, 150, 97, 0) 0%, rgba(127, 150, 97, 0.3) 8%, rgba(127, 150, 97, 0.3) 92%, rgba(127, 150, 97, 0) 100%);
    content: "";
  }
  .p-confirmation-flow__item {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    padding-block: 22px;
    text-align: left;
  }
  .p-confirmation-flow__item:nth-child(3) .p-confirmation-flow__arrow {
    display: none;
  }
  .p-confirmation-flow__visual {
    width: 108px;
    margin: 0;
  }
  .p-confirmation-flow__number {
    top: -1px;
    left: -2px;
    width: 31px;
    height: 31px;
    font-size: 0.84rem;
  }
  .p-confirmation-flow__image-wrap {
    box-shadow: 0 7px 18px rgba(54, 60, 52, 0.06), inset 0 0 0 6px rgba(127, 150, 97, 0.025);
  }
  .p-confirmation-flow__content {
    margin-top: 0;
  }
  .p-confirmation-flow__item-title {
    padding-bottom: 11px;
    font-size: 1.45rem;
    text-align: left;
  }
  .p-confirmation-flow__item-title::after {
    right: auto;
    width: 29px;
    margin-inline: 0;
  }
  .p-confirmation-flow__description {
    margin-top: 11px;
    font-size: 1.08rem;
    line-height: 1.8;
  }
  .p-confirmation-flow__arrow {
    display: none;
  }
  .p-confirmation-flow {
    /* ======================================
    Note
    ====================================== */
  }
  .p-confirmation-flow__note {
    margin-top: 42px;
    padding: 26px 8px;
    text-align: left;
  }
  .p-confirmation-flow__note-title {
    font-size: 1.5rem;
    line-height: 1.7;
  }
  .p-confirmation-flow__note-text {
    margin-top: 12px;
    font-size: 1.08rem;
    line-height: 1.85;
  }
  .p-confirmation-flow__note-text br {
    display: none;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-confirmation-flow__inner {
    width: calc(100% - 24px);
  }
  .p-confirmation-flow__title {
    font-size: 2.1rem;
  }
  .p-confirmation-flow__introduction {
    font-size: 1.08rem;
  }
  .p-confirmation-flow__list::before {
    left: 45px;
  }
  .p-confirmation-flow__item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
  }
  .p-confirmation-flow__visual {
    width: 92px;
  }
  .p-confirmation-flow__item-title {
    font-size: 1.35rem;
  }
  .p-confirmation-flow__description {
    font-size: 1rem;
  }
  .p-confirmation-flow__note-title {
    font-size: 1.38rem;
  }
  .p-confirmation-flow__note-text {
    font-size: 1rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-confirmation-flow__image {
    transition: none;
  }
}
/* ==================================================
Confirmation Plans
建築確認申請基本プラン
================================================== */
.p-confirmation-plans {
  position: relative;
  padding-block: clamp(90px, 9vw, 150px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Background decoration
  ======================================== */
}
.p-confirmation-plans::before {
  position: absolute;
  top: 18%;
  right: -12%;
  width: clamp(280px, 34vw, 540px);
  aspect-ratio: 1/0.8;
  border-radius: 48% 52% 62% 38%;
  background-color: rgba(127, 150, 97, 0.04);
  content: "";
  transform: rotate(-12deg);
  pointer-events: none;
}
.p-confirmation-plans::after {
  position: absolute;
  bottom: 6%;
  left: -14%;
  width: clamp(240px, 30vw, 470px);
  aspect-ratio: 1/1;
  border-radius: 58% 42% 36% 64%;
  background-color: rgba(239, 234, 221, 0.42);
  content: "";
  transform: rotate(16deg);
  pointer-events: none;
}
.p-confirmation-plans {
  /* ========================================
  Inner
  ======================================== */
}
.p-confirmation-plans__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
}
.p-confirmation-plans {
  /* ========================================
  Header
  ======================================== */
}
.p-confirmation-plans__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  margin-bottom: clamp(48px, 6vw, 74px);
  text-align: center;
}
.p-confirmation-plans__heading {
  flex: 0 1 auto;
}
.p-confirmation-plans__english {
  margin: 0 0 8px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.22em;
}
.p-confirmation-plans__title {
  margin: 0;
  color: #766b4d;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.8rem, 3.3vw, 4.1rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.p-confirmation-plans__leaf {
  display: block;
  flex: 0 0 auto;
  width: clamp(58px, 7vw, 90px);
  color: rgba(127, 150, 97, 0.55);
}
.p-confirmation-plans__leaf svg {
  display: block;
  width: 100%;
  height: auto;
}
.p-confirmation-plans__leaf--right {
  transform: scaleX(-1);
}
.p-confirmation-plans {
  /* ========================================
  Plan list
  ======================================== */
}
.p-confirmation-plans__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(24px, 3.5vw, 42px);
  width: min(100%, 900px);
  margin-inline: auto;
}
.p-confirmation-plans {
  /* ========================================
  Plan card
  ======================================== */
}
.p-confirmation-plans__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: clamp(28px, 3vw, 40px) clamp(22px, 2.8vw, 34px) clamp(30px, 3.5vw, 44px);
  overflow: hidden;
  border: 2px solid rgba(139, 119, 85, 0.68);
  border-radius: 17px;
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(59, 58, 52, 0.06), 0 2px 5px rgba(59, 58, 52, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.p-confirmation-plans__card::before {
  position: absolute;
  top: -72px;
  right: -72px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 150, 97, 0.08) 0%, rgba(127, 150, 97, 0) 72%);
  content: "";
  pointer-events: none;
}
.p-confirmation-plans__card--light {
  border-color: rgba(141, 120, 84, 0.66);
}
.p-confirmation-plans__card--standard {
  border-color: rgba(127, 150, 97, 0.72);
  background-color: rgba(251, 252, 248, 0.98);
}
.p-confirmation-plans__card--full {
  border-color: rgba(104, 143, 146, 0.76);
  background-color: rgba(251, 253, 253, 0.98);
}
.p-confirmation-plans__card--full::before {
  background: radial-gradient(circle, rgba(104, 143, 146, 0.09) 0%, rgba(104, 143, 146, 0) 72%);
}
.p-confirmation-plans__card--recommended {
  box-shadow: 0 16px 34px rgba(127, 150, 97, 0.11), 0 2px 5px rgba(59, 58, 52, 0.04);
  transform: translateY(-10px);
}
.p-confirmation-plans__card:hover {
  box-shadow: 0 18px 38px rgba(59, 58, 52, 0.11), 0 3px 7px rgba(59, 58, 52, 0.05);
  transform: translateY(-5px);
}
.p-confirmation-plans__card--recommended:hover {
  transform: translateY(-14px);
}
.p-confirmation-plans {
  /* ========================================
  Recommended badge
  ======================================== */
}
.p-confirmation-plans__badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  min-width: 112px;
  margin: 0;
  padding: 7px 18px;
  border-radius: 0 0 12px 12px;
  background-color: #7f9661;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.09em;
  text-align: center;
  transform: translateX(-50%);
}
.p-confirmation-plans {
  /* ========================================
  Card header
  ======================================== */
}
.p-confirmation-plans__card-header {
  position: relative;
  z-index: 1;
  min-height: 58px;
  text-align: center;
}
.p-confirmation-plans__card--recommended .p-confirmation-plans__card-header {
  padding-top: 18px;
}
.p-confirmation-plans__card-title {
  margin: 0;
  color: #766b4d;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.65rem, 1.85vw, 2rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.055em;
}
.p-confirmation-plans__card--standard .p-confirmation-plans__card-title {
  color: #7f9661;
}
.p-confirmation-plans__card--full .p-confirmation-plans__card-title {
  color: #587f82;
}
.p-confirmation-plans {
  /* ========================================
  Visual
  ======================================== */
}
.p-confirmation-plans__visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 150px;
  margin: 18px 0 12px;
}
.p-confirmation-plans__visual::before {
  position: absolute;
  inset: 15% 8% 0;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(127, 150, 97, 0.1) 0%, rgba(127, 150, 97, 0.025) 57%, rgba(127, 150, 97, 0) 78%);
  content: "";
}
.p-confirmation-plans__card--full .p-confirmation-plans__visual::before {
  background: radial-gradient(ellipse at center, rgba(104, 143, 146, 0.1) 0%, rgba(104, 143, 146, 0.025) 57%, rgba(104, 143, 146, 0) 78%);
}
.p-confirmation-plans__image {
  display: block;
  width: min(100%, 210px);
  max-width: none;
  height: 145px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.p-confirmation-plans__card:hover .p-confirmation-plans__image {
  opacity: 0.9;
  transform: translateY(-4px);
}
.p-confirmation-plans {
  /* ========================================
  Price
  ======================================== */
}
.p-confirmation-plans__price {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 3px 7px;
  margin: 8px 0 0;
  color: #766b4d;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.5;
}
.p-confirmation-plans__card--standard .p-confirmation-plans__price {
  color: #7f9661;
}
.p-confirmation-plans__card--full .p-confirmation-plans__price {
  color: #587f82;
}
.p-confirmation-plans__price-amount {
  font-size: clamp(2.5rem, 3vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.035em;
}
.p-confirmation-plans__price-unit {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.p-confirmation-plans {
  /* ========================================
  Features
  ======================================== */
}
.p-confirmation-plans__features {
  display: grid;
  gap: 10px;
  margin: 25px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(139, 119, 85, 0.18);
  list-style: none;
}
.p-confirmation-plans__feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
  color: #333;
  font-size: 1.15rem;
  line-height: 1.75;
  letter-spacing: 0.03em;
}
.p-confirmation-plans__check {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 0.18em;
  border-radius: 50%;
  background-color: rgba(127, 150, 97, 0.86);
  color: #fff;
}
.p-confirmation-plans__check svg {
  display: block;
  width: 12px;
  height: 12px;
}
.p-confirmation-plans__card--light .p-confirmation-plans__check {
  background-color: rgba(141, 120, 84, 0.84);
}
.p-confirmation-plans__card--full .p-confirmation-plans__check {
  background-color: rgba(104, 143, 146, 0.9);
}
.p-confirmation-plans {
  /* ========================================
  Card note
  ======================================== */
}
.p-confirmation-plans__card-note {
  margin: auto 0 0;
  padding-top: 22px;
  color: #666;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.025em;
}
.p-confirmation-plans {
  /* ========================================
  Extension plan
  ======================================== */
}
.p-confirmation-plans__extension {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1.35fr) minmax(220px, 0.8fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  width: min(100%, 900px);
  margin: clamp(28px, 4vw, 46px) auto 0;
  padding: clamp(24px, 3vw, 34px) clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(139, 119, 85, 0.48);
  border-radius: 14px;
  background-color: rgba(250, 248, 242, 0.96);
  box-shadow: 0 8px 20px rgba(59, 58, 52, 0.05), 0 1px 4px rgba(59, 58, 52, 0.04);
}
.p-confirmation-plans__extension-heading {
  min-width: 0;
  text-align: center;
}
.p-confirmation-plans__extension-title {
  margin: 0;
  color: #766b4d;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.75rem, 2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.p-confirmation-plans__extension-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 3px 6px;
  margin: 14px 0 0;
  color: #766b4d;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.5;
}
.p-confirmation-plans__extension-price-amount {
  font-size: clamp(2.2rem, 2.7vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.035em;
}
.p-confirmation-plans__extension-price-unit {
  font-size: 1.05rem;
}
.p-confirmation-plans__extension-content {
  min-width: 0;
}
.p-confirmation-plans__extension-description {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.35rem;
  line-height: 1.85;
  letter-spacing: 0.045em;
}
.p-confirmation-plans__extension-note {
  margin: 13px 0 0;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.p-confirmation-plans__extension-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  margin: 0;
}
.p-confirmation-plans__extension-visual::before {
  position: absolute;
  inset: 18% 3% 0;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(127, 150, 97, 0.09) 0%, rgba(127, 150, 97, 0.02) 58%, rgba(127, 150, 97, 0) 78%);
  content: "";
}
.p-confirmation-plans__extension-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 250px;
  height: 125px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.p-confirmation-plans {
  /* ========================================
  Notice
  ======================================== */
}
.p-confirmation-plans__notice {
  width: min(100%, 900px);
  margin: 18px auto 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.025em;
  text-align: center;
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-confirmation-plans__list {
    gap: 24px;
  }
  .p-confirmation-plans__card {
    padding-inline: 24px;
  }
  .p-confirmation-plans__card-title {
    font-size: 1.65rem;
  }
  .p-confirmation-plans__image {
    width: min(100%, 190px);
    height: 135px;
  }
  .p-confirmation-plans__feature {
    font-size: 1.08rem;
  }
  .p-confirmation-plans__extension {
    grid-template-columns: minmax(170px, 0.65fr) minmax(0, 1.25fr) minmax(190px, 0.75fr);
    gap: 30px;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-confirmation-plans {
    padding-block: 84px 96px;
  }
  .p-confirmation-plans__inner {
    width: min(100% - 48px, 760px);
  }
  .p-confirmation-plans__header {
    margin-bottom: 52px;
  }
  .p-confirmation-plans__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .p-confirmation-plans__card {
    padding: 28px 18px 32px;
  }
  .p-confirmation-plans__card--recommended {
    transform: translateY(-7px);
  }
  .p-confirmation-plans__card--recommended:hover {
    transform: translateY(-10px);
  }
  .p-confirmation-plans__card-title {
    font-size: 1.45rem;
  }
  .p-confirmation-plans__visual {
    min-height: 125px;
    margin-top: 14px;
  }
  .p-confirmation-plans__image {
    width: min(100%, 160px);
    height: 120px;
  }
  .p-confirmation-plans__price-amount {
    font-size: 2.35rem;
  }
  .p-confirmation-plans__features {
    margin-top: 20px;
    padding-top: 18px;
  }
  .p-confirmation-plans__feature {
    gap: 7px;
    font-size: 1rem;
  }
  .p-confirmation-plans__check {
    width: 18px;
    height: 18px;
  }
  .p-confirmation-plans__check svg {
    width: 11px;
    height: 11px;
  }
  .p-confirmation-plans__extension {
    grid-template-columns: minmax(160px, 0.7fr) minmax(0, 1.3fr);
  }
  .p-confirmation-plans__extension-visual {
    display: none;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-confirmation-plans {
    padding-block: 68px 80px;
  }
  .p-confirmation-plans::before {
    top: 30%;
    right: -60%;
    width: 340px;
  }
  .p-confirmation-plans::after {
    bottom: 2%;
    left: -65%;
    width: 320px;
  }
  .p-confirmation-plans__inner {
    width: calc(100% - 32px);
  }
  .p-confirmation-plans {
    /* ======================================
    Header
    ====================================== */
  }
  .p-confirmation-plans__header {
    gap: 10px;
    margin-bottom: 38px;
  }
  .p-confirmation-plans__leaf {
    width: 45px;
  }
  .p-confirmation-plans__english {
    margin-bottom: 6px;
    font-size: 0.95rem;
  }
  .p-confirmation-plans__title {
    font-size: 2rem;
    line-height: 1.65;
    letter-spacing: 0.055em;
  }
  .p-confirmation-plans {
    /* ======================================
    Plan cards
    ====================================== */
  }
  .p-confirmation-plans__list {
    grid-template-columns: 1fr;
    width: min(100%, 430px);
    gap: 18px;
  }
  .p-confirmation-plans__card {
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr);
    grid-template-areas: "visual header" "visual price" "features features" "note note";
    gap: 0 22px;
    padding: 27px 22px 28px;
    border-radius: 14px;
  }
  .p-confirmation-plans__card--recommended {
    margin-top: 8px;
    transform: none;
  }
  .p-confirmation-plans__card--recommended:hover {
    transform: translateY(-4px);
  }
  .p-confirmation-plans__badge {
    right: 20px;
    left: auto;
    min-width: 90px;
    padding: 5px 13px;
    border-radius: 0 0 9px 9px;
    font-size: 0.85rem;
    transform: none;
  }
  .p-confirmation-plans__card-header {
    grid-area: header;
    align-self: end;
    min-height: 0;
    text-align: left;
  }
  .p-confirmation-plans__card--recommended .p-confirmation-plans__card-header {
    padding-top: 16px;
  }
  .p-confirmation-plans__card-title {
    font-size: 1.55rem;
    text-align: left;
  }
  .p-confirmation-plans__visual {
    grid-area: visual;
    align-self: center;
    min-height: 0;
    margin: 0;
  }
  .p-confirmation-plans__image {
    width: 115px;
    height: 105px;
  }
  .p-confirmation-plans__price {
    grid-area: price;
    align-self: start;
    justify-content: flex-start;
    margin-top: 8px;
  }
  .p-confirmation-plans__price-amount {
    font-size: 2.25rem;
  }
  .p-confirmation-plans__price-unit {
    font-size: 1rem;
  }
  .p-confirmation-plans__features {
    grid-area: features;
    gap: 8px;
    margin-top: 22px;
    padding-top: 18px;
  }
  .p-confirmation-plans__feature {
    font-size: 1.08rem;
  }
  .p-confirmation-plans__card-note {
    grid-area: note;
    padding-top: 18px;
    font-size: 0.95rem;
  }
  .p-confirmation-plans {
    /* ======================================
    Extension
    ====================================== */
  }
  .p-confirmation-plans__extension {
    grid-template-columns: 1fr;
    gap: 17px;
    width: min(100%, 430px);
    margin-top: 20px;
    padding: 25px 22px 27px;
    border-radius: 13px;
  }
  .p-confirmation-plans__extension-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px 18px;
    text-align: left;
  }
  .p-confirmation-plans__extension-title {
    font-size: 1.55rem;
  }
  .p-confirmation-plans__extension-price {
    justify-content: flex-start;
    margin: 0;
  }
  .p-confirmation-plans__extension-price-amount {
    font-size: 2.15rem;
  }
  .p-confirmation-plans__extension-description {
    font-size: 1.18rem;
  }
  .p-confirmation-plans__extension-note {
    margin-top: 10px;
    font-size: 1rem;
  }
  .p-confirmation-plans__notice {
    width: min(100%, 430px);
    margin-top: 15px;
    font-size: 0.9rem;
    text-align: left;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-confirmation-plans__inner {
    width: calc(100% - 24px);
  }
  .p-confirmation-plans__leaf {
    width: 36px;
  }
  .p-confirmation-plans__title {
    font-size: 2rem;
  }
  .p-confirmation-plans__card {
    grid-template-columns: 95px minmax(0, 1fr);
    gap: 0 17px;
    padding-inline: 18px;
  }
  .p-confirmation-plans__image {
    width: 95px;
    height: 92px;
  }
  .p-confirmation-plans__card-title {
    font-size: 1.4rem;
  }
  .p-confirmation-plans__price-amount {
    font-size: 2rem;
  }
  .p-confirmation-plans__feature {
    font-size: 1rem;
  }
  .p-confirmation-plans__extension {
    padding-inline: 18px;
  }
  .p-confirmation-plans__extension-title {
    font-size: 1.42rem;
  }
  .p-confirmation-plans__extension-description {
    font-size: 1.08rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-confirmation-plans__card,
  .p-confirmation-plans__image {
    transition: none;
  }
}
/* ==================================================
Confirmation Options
オプション料金
================================================== */
.p-confirmation-options {
  position: relative;
  padding-block: clamp(90px, 9vw, 150px);
  overflow: hidden;
  background-color: rgba(247, 245, 237, 0.72);
  /* ========================================
  Background decoration
  ======================================== */
}
.p-confirmation-options::before {
  position: absolute;
  top: -10%;
  right: -12%;
  width: clamp(280px, 34vw, 540px);
  aspect-ratio: 1/1;
  border-radius: 46% 54% 62% 38%;
  background-color: rgba(127, 150, 97, 0.045);
  content: "";
  transform: rotate(-12deg);
  pointer-events: none;
}
.p-confirmation-options::after {
  position: absolute;
  bottom: -12%;
  left: -13%;
  width: clamp(240px, 30vw, 470px);
  aspect-ratio: 1/1;
  border-radius: 58% 42% 36% 64%;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  transform: rotate(16deg);
  pointer-events: none;
}
.p-confirmation-options {
  /* ========================================
  Inner
  ======================================== */
}
.p-confirmation-options__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
}
.p-confirmation-options {
  /* ========================================
  Header
  ======================================== */
}
.p-confirmation-options__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  text-align: center;
}
.p-confirmation-options__heading {
  flex: 0 1 auto;
}
.p-confirmation-options__english {
  margin: 0 0 8px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.22em;
}
.p-confirmation-options__title {
  margin: 0;
  color: #766b4d;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.8rem, 3.3vw, 4.1rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.p-confirmation-options__leaf {
  display: block;
  flex: 0 0 auto;
  width: clamp(58px, 7vw, 90px);
  color: rgba(127, 150, 97, 0.55);
}
.p-confirmation-options__leaf svg {
  display: block;
  width: 100%;
  height: auto;
}
.p-confirmation-options__leaf--right {
  transform: scaleX(-1);
}
.p-confirmation-options {
  /* ========================================
  Introduction
  ======================================== */
}
.p-confirmation-options__introduction {
  width: min(100%, 720px);
  margin: clamp(22px, 3vw, 32px) auto 0;
  color: #666;
  font-size: clamp(1.2rem, 1.25vw, 1.4rem);
  line-height: 2;
  letter-spacing: 0.045em;
  text-align: center;
}
.p-confirmation-options {
  /* ========================================
  Groups
  ======================================== */
}
.p-confirmation-options__groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(22px, 3vw, 36px);
  margin-top: clamp(48px, 6vw, 76px);
}
.p-confirmation-options__group {
  --option-accent: #687f58;
  --option-accent-rgb: 104, 127, 88;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(139, 119, 85, 0.34);
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 9px 24px rgba(61, 59, 53, 0.055), 0 2px 5px rgba(61, 59, 53, 0.035);
}
.p-confirmation-options__group--structure {
  --option-accent: #6d815c;
  --option-accent-rgb: 109, 129, 92;
}
.p-confirmation-options__group--energy {
  --option-accent: #8b7c4f;
  --option-accent-rgb: 139, 124, 79;
}
.p-confirmation-options__group--application {
  --option-accent: #66878a;
  --option-accent-rgb: 102, 135, 138;
}
.p-confirmation-options__group-title {
  margin: 0;
  padding: 19px 24px;
  border-bottom: 1px solid rgba(var(--option-accent-rgb), 0.26);
  background-color: rgba(var(--option-accent-rgb), 0.08);
  color: var(--option-accent);
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.65rem, 1.85vw, 2rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.07em;
  text-align: center;
}
.p-confirmation-options {
  /* ========================================
  Drawer list
  ======================================== */
}
.p-confirmation-options__list {
  display: grid;
}
.p-confirmation-options__drawer {
  position: relative;
  border-bottom: 1px solid rgba(139, 119, 85, 0.2);
  background-color: rgba(255, 255, 255, 0.88);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.p-confirmation-options__drawer:last-child {
  border-bottom: 0;
}
.p-confirmation-options__drawer[open] {
  background-color: rgba(var(--option-accent-rgb), 0.045);
  box-shadow: inset 3px 0 0 var(--option-accent);
}
.p-confirmation-options {
  /* ========================================
  Summary
  ======================================== */
}
.p-confirmation-options__summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 16px 20px 16px 22px;
  color: #333;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.p-confirmation-options__summary::-webkit-details-marker {
  display: none;
}
.p-confirmation-options__summary::marker {
  display: none;
  content: "";
}
.p-confirmation-options__summary:hover {
  background-color: rgba(var(--option-accent-rgb), 0.055);
  color: var(--option-accent);
}
.p-confirmation-options__summary:focus-visible {
  outline: 2px solid rgba(var(--option-accent-rgb), 0.58);
  outline-offset: -3px;
}
.p-confirmation-options__drawer[open] .p-confirmation-options__summary {
  color: var(--option-accent);
}
.p-confirmation-options__item-title {
  min-width: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.045em;
}
.p-confirmation-options {
  /* ========================================
  Plus / Minus icon
  ======================================== */
}
.p-confirmation-options__toggle {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(var(--option-accent-rgb), 0.48);
  border-radius: 50%;
  color: var(--option-accent);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.p-confirmation-options__toggle::before, .p-confirmation-options__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background-color: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.p-confirmation-options__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-confirmation-options__drawer[open] .p-confirmation-options__toggle {
  border-color: var(--option-accent);
  background-color: var(--option-accent);
  color: #fff;
  transform: rotate(180deg);
}
.p-confirmation-options__drawer[open] .p-confirmation-options__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.p-confirmation-options {
  /* ========================================
  Drawer body
  ======================================== */
}
.p-confirmation-options__drawer-body {
  padding: 0 22px 22px;
  animation: confirmation-option-open 0.35s ease both;
}
.p-confirmation-options__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 16px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px dashed rgba(var(--option-accent-rgb), 0.3);
}
.p-confirmation-options__price-label {
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  letter-spacing: 0.045em;
}
.p-confirmation-options__price-value {
  color: var(--option-accent);
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.7rem, 2vw, 2.15rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.045em;
}
.p-confirmation-options__description {
  margin: 14px 0 0;
  color: #666;
  font-size: 1.15rem;
  line-height: 1.9;
  letter-spacing: 0.035em;
}
.p-confirmation-options {
  /* ========================================
  Notice
  ======================================== */
}
.p-confirmation-options__notice {
  width: min(100%, 860px);
  margin: clamp(38px, 5vw, 58px) auto 0;
  padding: 23px 28px;
  border-top: 1px solid rgba(127, 150, 97, 0.2);
  border-bottom: 1px solid rgba(127, 150, 97, 0.2);
  color: #666;
  font-size: 1.05rem;
  line-height: 1.85;
  letter-spacing: 0.03em;
  text-align: center;
}
.p-confirmation-options__notice p {
  margin: 0;
}
.p-confirmation-options__notice p + p {
  margin-top: 7px;
}

/* ==================================================
Drawer animation
================================================== */
@keyframes confirmation-option-open {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-confirmation-options__groups {
    gap: 22px;
  }
  .p-confirmation-options__group-title {
    padding-inline: 18px;
    font-size: 1.65rem;
  }
  .p-confirmation-options__summary {
    padding-inline: 18px;
  }
  .p-confirmation-options__item-title {
    font-size: 1.2rem;
  }
  .p-confirmation-options__drawer-body {
    padding-inline: 18px;
  }
  .p-confirmation-options__description {
    font-size: 1.08rem;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-confirmation-options {
    padding-block: 84px 96px;
  }
  .p-confirmation-options__inner {
    width: min(100% - 48px, 760px);
  }
  .p-confirmation-options__groups {
    grid-template-columns: 1fr;
    width: min(100%, 680px);
    margin-inline: auto;
    gap: 20px;
  }
  .p-confirmation-options__group-title {
    padding-block: 17px;
    font-size: 1.75rem;
    text-align: left;
  }
  .p-confirmation-options__summary {
    min-height: 61px;
  }
  .p-confirmation-options__item-title {
    font-size: 1.25rem;
  }
  .p-confirmation-options__price {
    justify-content: flex-start;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-confirmation-options {
    padding-block: 68px 80px;
  }
  .p-confirmation-options::before {
    top: 22%;
    right: -62%;
    width: 340px;
  }
  .p-confirmation-options::after {
    bottom: -3%;
    left: -68%;
    width: 320px;
  }
  .p-confirmation-options__inner {
    width: calc(100% - 32px);
  }
  .p-confirmation-options {
    /* ======================================
    Header
    ====================================== */
  }
  .p-confirmation-options__header {
    gap: 9px;
  }
  .p-confirmation-options__leaf {
    width: 44px;
  }
  .p-confirmation-options__english {
    margin-bottom: 5px;
    font-size: 0.95rem;
  }
  .p-confirmation-options__title {
    font-size: 2.3rem;
    line-height: 1.65;
  }
  .p-confirmation-options__introduction {
    margin-top: 17px;
    font-size: 1.1rem;
    line-height: 1.9;
  }
  .p-confirmation-options__introduction br {
    display: none;
  }
  .p-confirmation-options {
    /* ======================================
    Groups
    ====================================== */
  }
  .p-confirmation-options__groups {
    margin-top: 38px;
    gap: 16px;
  }
  .p-confirmation-options__group {
    border-radius: 12px;
  }
  .p-confirmation-options__group-title {
    padding: 15px 18px;
    font-size: 1.55rem;
  }
  .p-confirmation-options {
    /* ======================================
    Drawer
    ====================================== */
  }
  .p-confirmation-options__summary {
    min-height: 58px;
    gap: 12px;
    padding: 14px 16px 14px 18px;
  }
  .p-confirmation-options__item-title {
    font-size: 1.15rem;
    line-height: 1.65;
  }
  .p-confirmation-options__toggle {
    width: 23px;
    height: 23px;
  }
  .p-confirmation-options__drawer-body {
    padding: 0 18px 20px;
  }
  .p-confirmation-options__price {
    display: block;
    padding-top: 16px;
  }
  .p-confirmation-options__price-label, .p-confirmation-options__price-value {
    display: block;
  }
  .p-confirmation-options__price-label {
    font-size: 1rem;
  }
  .p-confirmation-options__price-value {
    margin-top: 3px;
    font-size: 1.8rem;
  }
  .p-confirmation-options__description {
    margin-top: 12px;
    font-size: 1.08rem;
    line-height: 1.85;
  }
  .p-confirmation-options__notice {
    margin-top: 32px;
    padding: 20px 4px;
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: left;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-confirmation-options__inner {
    width: calc(100% - 24px);
  }
  .p-confirmation-options__leaf {
    width: 35px;
  }
  .p-confirmation-options__title {
    font-size: 2.05rem;
  }
  .p-confirmation-options__group-title {
    font-size: 1.42rem;
  }
  .p-confirmation-options__summary {
    padding-inline: 15px;
  }
  .p-confirmation-options__item-title {
    font-size: 1.08rem;
  }
  .p-confirmation-options__drawer-body {
    padding-inline: 15px;
  }
  .p-confirmation-options__description {
    font-size: 1rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-confirmation-options__drawer, .p-confirmation-options__summary, .p-confirmation-options__toggle, .p-confirmation-options__toggle::before, .p-confirmation-options__toggle::after {
    transition: none;
  }
  .p-confirmation-options__drawer-body {
    animation: none;
  }
}
/* ==================================================
Confirmation Drawing Fees
図面作成料金
================================================== */
.p-confirmation-drawing-fees {
  position: relative;
  padding-block: clamp(90px, 9vw, 150px);
  overflow: hidden;
  background-color: #fff;
  /* ========================================
  Background decoration
  ======================================== */
}
.p-confirmation-drawing-fees::before {
  position: absolute;
  top: 10%;
  right: -12%;
  width: clamp(280px, 34vw, 540px);
  aspect-ratio: 1/0.82;
  border-radius: 48% 52% 62% 38%;
  background-color: rgba(127, 150, 97, 0.04);
  content: "";
  transform: rotate(-12deg);
  pointer-events: none;
}
.p-confirmation-drawing-fees::after {
  position: absolute;
  bottom: 3%;
  left: -14%;
  width: clamp(240px, 30vw, 470px);
  aspect-ratio: 1/1;
  border-radius: 58% 42% 36% 64%;
  background-color: rgba(239, 234, 221, 0.42);
  content: "";
  transform: rotate(16deg);
  pointer-events: none;
}
.p-confirmation-drawing-fees {
  /* ========================================
  Inner
  ======================================== */
}
.p-confirmation-drawing-fees__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
}
.p-confirmation-drawing-fees {
  /* ========================================
  Header
  ======================================== */
}
.p-confirmation-drawing-fees__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  text-align: center;
}
.p-confirmation-drawing-fees__heading {
  flex: 0 1 auto;
}
.p-confirmation-drawing-fees__english {
  margin: 0 0 8px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.22em;
}
.p-confirmation-drawing-fees__title {
  margin: 0;
  color: #766b4d;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.8rem, 3.3vw, 4.1rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.p-confirmation-drawing-fees__leaf {
  display: block;
  flex: 0 0 auto;
  width: clamp(58px, 7vw, 90px);
  color: rgba(127, 150, 97, 0.55);
}
.p-confirmation-drawing-fees__leaf svg {
  display: block;
  width: 100%;
  height: auto;
}
.p-confirmation-drawing-fees__leaf--right {
  transform: scaleX(-1);
}
.p-confirmation-drawing-fees {
  /* ========================================
  Introduction
  ======================================== */
}
.p-confirmation-drawing-fees__introduction {
  width: min(100%, 720px);
  margin: clamp(22px, 3vw, 32px) auto 0;
  color: #666;
  font-size: clamp(1.2rem, 1.25vw, 1.4rem);
  line-height: 2;
  letter-spacing: 0.045em;
  text-align: center;
}
.p-confirmation-drawing-fees {
  /* ========================================
  Desktop table wrapper
  ======================================== */
}
.p-confirmation-drawing-fees__table-wrap {
  width: 100%;
  margin-top: clamp(48px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(139, 119, 85, 0.34);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(61, 59, 53, 0.055), 0 2px 5px rgba(61, 59, 53, 0.035);
}
.p-confirmation-drawing-fees {
  /* ========================================
  Table
  ======================================== */
}
.p-confirmation-drawing-fees__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.p-confirmation-drawing-fees__table th,
.p-confirmation-drawing-fees__table td {
  padding: clamp(18px, 2vw, 25px) clamp(16px, 2.3vw, 28px);
  border-right: 1px solid rgba(139, 119, 85, 0.16);
  border-bottom: 1px solid rgba(139, 119, 85, 0.18);
  vertical-align: middle;
}
.p-confirmation-drawing-fees__table th:last-child,
.p-confirmation-drawing-fees__table td:last-child {
  border-right: 0;
}
.p-confirmation-drawing-fees__table thead {
  background-color: rgba(127, 150, 97, 0.09);
}
.p-confirmation-drawing-fees__table thead th {
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.075em;
  text-align: center;
}
.p-confirmation-drawing-fees__table thead th:nth-child(1) {
  width: 16%;
}
.p-confirmation-drawing-fees__table thead th:nth-child(2) {
  width: 22%;
}
.p-confirmation-drawing-fees__table thead th:nth-child(3) {
  width: 17%;
}
.p-confirmation-drawing-fees__table thead th:nth-child(4) {
  width: 45%;
}
.p-confirmation-drawing-fees__table tbody tr {
  transition: background-color 0.25s ease;
}
.p-confirmation-drawing-fees__table tbody tr:hover {
  background-color: rgba(127, 150, 97, 0.035);
}
.p-confirmation-drawing-fees__table tbody tr:last-child th,
.p-confirmation-drawing-fees__table tbody tr:last-child td {
  border-bottom: 0;
}
.p-confirmation-drawing-fees {
  /* ========================================
  Table category
  ======================================== */
}
.p-confirmation-drawing-fees__category {
  background-color: rgba(243, 240, 229, 0.86);
  color: #766b4d;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.35rem, 1.5vw, 1.65rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.055em;
  text-align: center;
}
.p-confirmation-drawing-fees {
  /* ========================================
  Table drawing name
  ======================================== */
}
.p-confirmation-drawing-fees__name {
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.25rem, 1.3vw, 1.45rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: left;
}
.p-confirmation-drawing-fees {
  /* ========================================
  Table price
  ======================================== */
}
.p-confirmation-drawing-fees__price {
  white-space: nowrap;
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.45rem, 1.65vw, 1.8rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.035em;
  text-align: center;
}
.p-confirmation-drawing-fees {
  /* ========================================
  Table description
  ======================================== */
}
.p-confirmation-drawing-fees__description {
  color: #666;
  font-size: 1.18rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
  text-align: left;
}
.p-confirmation-drawing-fees {
  /* ========================================
  Smartphone cards
  ======================================== */
}
.p-confirmation-drawing-fees__cards {
  display: none;
}
.p-confirmation-drawing-fees {
  /* ========================================
  Notice
  ======================================== */
}
.p-confirmation-drawing-fees__notice {
  width: min(100%, 920px);
  margin: clamp(30px, 4vw, 48px) auto 0;
  padding: 24px 30px;
  border-top: 1px solid rgba(127, 150, 97, 0.2);
  border-bottom: 1px solid rgba(127, 150, 97, 0.2);
  color: #666;
  font-size: 1.08rem;
  line-height: 1.85;
  letter-spacing: 0.03em;
  text-align: center;
}
.p-confirmation-drawing-fees__notice p {
  margin: 0;
}
.p-confirmation-drawing-fees__notice p + p {
  margin-top: 7px;
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-confirmation-drawing-fees__table th,
  .p-confirmation-drawing-fees__table td {
    padding-inline: 18px;
  }
  .p-confirmation-drawing-fees__table thead th:nth-child(1) {
    width: 17%;
  }
  .p-confirmation-drawing-fees__table thead th:nth-child(2) {
    width: 22%;
  }
  .p-confirmation-drawing-fees__table thead th:nth-child(3) {
    width: 18%;
  }
  .p-confirmation-drawing-fees__table thead th:nth-child(4) {
    width: 43%;
  }
  .p-confirmation-drawing-fees__category {
    font-size: 1.35rem;
  }
  .p-confirmation-drawing-fees__name {
    font-size: 1.2rem;
  }
  .p-confirmation-drawing-fees__price {
    font-size: 1.45rem;
  }
  .p-confirmation-drawing-fees__description {
    font-size: 1.1rem;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-confirmation-drawing-fees {
    padding-block: 84px 96px;
  }
  .p-confirmation-drawing-fees__inner {
    width: min(100% - 48px, 860px);
  }
  .p-confirmation-drawing-fees__table-wrap {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(127, 150, 97, 0.35) rgba(127, 150, 97, 0.06);
  }
  .p-confirmation-drawing-fees__table {
    min-width: 760px;
  }
  .p-confirmation-drawing-fees__table th,
  .p-confirmation-drawing-fees__table td {
    padding: 18px 16px;
  }
  .p-confirmation-drawing-fees__table thead th {
    font-size: 1.15rem;
  }
  .p-confirmation-drawing-fees__category {
    font-size: 1.25rem;
  }
  .p-confirmation-drawing-fees__name {
    font-size: 1.15rem;
  }
  .p-confirmation-drawing-fees__price {
    font-size: 1.4rem;
  }
  .p-confirmation-drawing-fees__description {
    font-size: 1.08rem;
    line-height: 1.85;
  }
  .p-confirmation-drawing-fees__notice {
    font-size: 1rem;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-confirmation-drawing-fees {
    padding-block: 68px 80px;
  }
  .p-confirmation-drawing-fees::before {
    top: 25%;
    right: -62%;
    width: 340px;
  }
  .p-confirmation-drawing-fees::after {
    bottom: -2%;
    left: -68%;
    width: 320px;
  }
  .p-confirmation-drawing-fees__inner {
    width: calc(100% - 32px);
  }
  .p-confirmation-drawing-fees {
    /* ======================================
    Header
    ====================================== */
  }
  .p-confirmation-drawing-fees__header {
    gap: 9px;
  }
  .p-confirmation-drawing-fees__leaf {
    width: 44px;
  }
  .p-confirmation-drawing-fees__english {
    margin-bottom: 5px;
    font-size: 0.95rem;
  }
  .p-confirmation-drawing-fees__title {
    font-size: 2.3rem;
    line-height: 1.65;
  }
  .p-confirmation-drawing-fees__introduction {
    margin-top: 17px;
    font-size: 1.1rem;
    line-height: 1.9;
  }
  .p-confirmation-drawing-fees__introduction br {
    display: none;
  }
  .p-confirmation-drawing-fees {
    /* ======================================
    Hide table
    ====================================== */
  }
  .p-confirmation-drawing-fees__table-wrap {
    display: none;
  }
  .p-confirmation-drawing-fees {
    /* ======================================
    Card groups
    ====================================== */
  }
  .p-confirmation-drawing-fees__cards {
    display: grid;
    gap: 22px;
    width: min(100%, 460px);
    margin: 38px auto 0;
  }
  .p-confirmation-drawing-fees__group {
    overflow: hidden;
    border: 1px solid rgba(139, 119, 85, 0.3);
    border-radius: 13px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 22px rgba(61, 59, 53, 0.05), 0 2px 4px rgba(61, 59, 53, 0.03);
  }
  .p-confirmation-drawing-fees__group-title {
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(127, 150, 97, 0.18);
    background-color: rgba(127, 150, 97, 0.08);
    color: #7f9661;
    font-family: "Zen Old Mincho", serif;
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.065em;
  }
  .p-confirmation-drawing-fees__list {
    display: grid;
  }
  .p-confirmation-drawing-fees {
    /* ======================================
    Drawing card
    ====================================== */
  }
  .p-confirmation-drawing-fees__item {
    padding: 20px;
  }
  .p-confirmation-drawing-fees__item + .p-confirmation-drawing-fees__item {
    border-top: 1px dashed rgba(139, 119, 85, 0.3);
  }
  .p-confirmation-drawing-fees__item-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px 18px;
  }
  .p-confirmation-drawing-fees__item-title {
    min-width: 0;
    margin: 0;
    color: #333;
    font-family: "Zen Old Mincho", serif;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.04em;
  }
  .p-confirmation-drawing-fees__item-price {
    flex: 0 0 auto;
    margin: 0;
    color: #7f9661;
    font-family: "Zen Old Mincho", serif;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.035em;
    white-space: nowrap;
  }
  .p-confirmation-drawing-fees__item-description {
    margin: 12px 0 0;
    color: #666;
    font-size: 1.08rem;
    line-height: 1.85;
    letter-spacing: 0.03em;
  }
  .p-confirmation-drawing-fees {
    /* ======================================
    Notice
    ====================================== */
  }
  .p-confirmation-drawing-fees__notice {
    width: min(100%, 460px);
    margin-top: 30px;
    padding: 20px 4px;
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: left;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-confirmation-drawing-fees__inner {
    width: calc(100% - 24px);
  }
  .p-confirmation-drawing-fees__leaf {
    width: 35px;
  }
  .p-confirmation-drawing-fees__title {
    font-size: 2.05rem;
  }
  .p-confirmation-drawing-fees__group-title {
    padding-inline: 17px;
    font-size: 1.42rem;
  }
  .p-confirmation-drawing-fees__item {
    padding-inline: 17px;
  }
  .p-confirmation-drawing-fees__item-header {
    display: block;
  }
  .p-confirmation-drawing-fees__item-title {
    font-size: 1.2rem;
  }
  .p-confirmation-drawing-fees__item-price {
    margin-top: 5px;
    font-size: 1.35rem;
  }
  .p-confirmation-drawing-fees__item-description {
    font-size: 1rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-confirmation-drawing-fees__table tbody tr {
    transition: none;
  }
}
/* ==================================================
Confirmation Pricing Concept
価格設定のコンセプト
================================================== */
.p-confirmation-pricing-concept {
  position: relative;
  padding-block: clamp(90px, 9vw, 150px);
  overflow: hidden;
  background-color: rgba(246, 244, 235, 0.76);
  /* ========================================
  Background decoration
  ======================================== */
}
.p-confirmation-pricing-concept::before {
  position: absolute;
  top: -9%;
  right: -13%;
  width: clamp(300px, 36vw, 580px);
  aspect-ratio: 1/1;
  border-radius: 44% 56% 64% 36%;
  background-color: rgba(127, 150, 97, 0.045);
  content: "";
  transform: rotate(-13deg);
  pointer-events: none;
}
.p-confirmation-pricing-concept::after {
  position: absolute;
  bottom: -11%;
  left: -12%;
  width: clamp(250px, 31vw, 500px);
  aspect-ratio: 1/1;
  border-radius: 58% 42% 38% 62%;
  background-color: rgba(255, 255, 255, 0.72);
  content: "";
  transform: rotate(17deg);
  pointer-events: none;
}
.p-confirmation-pricing-concept {
  /* ========================================
  Inner
  ======================================== */
}
.p-confirmation-pricing-concept__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
}
.p-confirmation-pricing-concept {
  /* ========================================
  Header
  ======================================== */
}
.p-confirmation-pricing-concept__header {
  width: min(100%, 820px);
  margin-inline: auto;
  margin-bottom: clamp(52px, 7vw, 86px);
  text-align: center;
}
.p-confirmation-pricing-concept__english {
  margin: 0 0 9px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.22em;
}
.p-confirmation-pricing-concept__title {
  margin: 0;
  color: #766b4d;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.8rem, 3.3vw, 4.1rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.p-confirmation-pricing-concept__lead {
  margin: clamp(22px, 3vw, 32px) 0 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.45rem, 1.6vw, 1.8rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
}
.p-confirmation-pricing-concept {
  /* ========================================
  Overview
  ======================================== */
}
.p-confirmation-pricing-concept__overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  width: min(100%, 1030px);
  margin-inline: auto;
  padding: clamp(44px, 5vw, 68px) clamp(40px, 5vw, 70px);
  overflow: hidden;
  border: 1px solid rgba(139, 119, 85, 0.2);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(59, 58, 52, 0.055), 0 2px 6px rgba(59, 58, 52, 0.035);
}
.p-confirmation-pricing-concept__overview-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.p-confirmation-pricing-concept__overview-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 16px;
  padding: 4px 16px;
  border: 1px solid rgba(127, 150, 97, 0.48);
  border-radius: 999px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.09em;
}
.p-confirmation-pricing-concept__overview-title {
  position: relative;
  margin: 0;
  padding-bottom: 23px;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.1rem, 2.6vw, 3.1rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.065em;
}
.p-confirmation-pricing-concept__overview-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 1px;
  background-color: rgba(127, 150, 97, 0.65);
  content: "";
}
.p-confirmation-pricing-concept__overview-text {
  margin-top: 26px;
  color: #666;
  font-size: clamp(1.3rem, 1.35vw, 1.45rem);
  line-height: 2;
  letter-spacing: 0.035em;
}
.p-confirmation-pricing-concept__overview-text p {
  margin: 0;
}
.p-confirmation-pricing-concept__overview-text p + p {
  margin-top: 16px;
}
.p-confirmation-pricing-concept {
  /* ========================================
  Overview visual
  ======================================== */
}
.p-confirmation-pricing-concept__overview-visual {
  position: relative;
  width: 118%;
  margin: 0 -18% 0 0;
}
.p-confirmation-pricing-concept__overview-visual::before {
  position: absolute;
  inset: 15% 2% 0;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(127, 150, 97, 0.13) 0%, rgba(127, 150, 97, 0.04) 52%, rgba(127, 150, 97, 0) 78%);
  content: "";
  filter: blur(8px);
}
.p-confirmation-pricing-concept__overview-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.p-confirmation-pricing-concept__overview:hover .p-confirmation-pricing-concept__overview-image {
  opacity: 0.9;
  transform: translateY(-4px);
}
.p-confirmation-pricing-concept {
  /* ========================================
  Concept list
  ======================================== */
}
.p-confirmation-pricing-concept__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 38px);
  width: min(100%, 1030px);
  margin: clamp(60px, 8vw, 100px) auto 0;
}
.p-confirmation-pricing-concept {
  /* ========================================
  Concept card
  ======================================== */
}
.p-confirmation-pricing-concept__item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: clamp(32px, 3.5vw, 44px) clamp(24px, 3vw, 36px) clamp(32px, 3.5vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(139, 119, 85, 0.25);
  border-radius: 17px;
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(59, 58, 52, 0.05), 0 2px 5px rgba(59, 58, 52, 0.03);
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.p-confirmation-pricing-concept__item::before {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 150, 97, 0.09) 0%, rgba(127, 150, 97, 0) 72%);
  content: "";
  pointer-events: none;
}
.p-confirmation-pricing-concept__item:hover {
  border-color: rgba(127, 150, 97, 0.4);
  box-shadow: 0 17px 38px rgba(59, 58, 52, 0.085), 0 3px 7px rgba(59, 58, 52, 0.04);
  transform: translateY(-5px);
}
.p-confirmation-pricing-concept {
  /* ========================================
  Number
  ======================================== */
}
.p-confirmation-pricing-concept__number {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border: 1px solid rgba(127, 150, 97, 0.52);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}
.p-confirmation-pricing-concept {
  /* ========================================
  Card visual
  ======================================== */
}
.p-confirmation-pricing-concept__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 190px);
  min-height: 165px;
  margin: 25px auto 22px;
}
.p-confirmation-pricing-concept__visual::before {
  position: absolute;
  inset: 10% 3% 0;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(127, 150, 97, 0.11) 0%, rgba(127, 150, 97, 0.03) 56%, rgba(127, 150, 97, 0) 78%);
  content: "";
}
.p-confirmation-pricing-concept__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.p-confirmation-pricing-concept__item:hover .p-confirmation-pricing-concept__image {
  opacity: 0.88;
  transform: translateY(-4px);
}
.p-confirmation-pricing-concept {
  /* ========================================
  Card content
  ======================================== */
}
.p-confirmation-pricing-concept__content {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.p-confirmation-pricing-concept__item-title {
  position: relative;
  margin: 0;
  padding-bottom: 17px;
  color: #766b4d;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.75rem, 1.95vw, 2.15rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.055em;
}
.p-confirmation-pricing-concept__item-title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 1px;
  margin-inline: auto;
  background-color: rgba(127, 150, 97, 0.58);
  content: "";
}
.p-confirmation-pricing-concept__description {
  margin: 20px 0 0;
  color: #666;
  font-size: clamp(1.25rem, 1.3vw, 1.4rem);
  line-height: 1.95;
  letter-spacing: 0.035em;
  text-align: left;
}
.p-confirmation-pricing-concept {
  /* ========================================
  Estimate
  ======================================== */
}
.p-confirmation-pricing-concept__estimate {
  width: min(100%, 850px);
  margin: clamp(52px, 7vw, 82px) auto 0;
  padding: clamp(30px, 4vw, 44px) clamp(28px, 5vw, 60px);
  border-top: 1px solid rgba(127, 150, 97, 0.28);
  border-bottom: 1px solid rgba(127, 150, 97, 0.28);
  text-align: center;
}
.p-confirmation-pricing-concept__estimate-title {
  margin: 0;
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.7rem, 2.1vw, 2.4rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
.p-confirmation-pricing-concept__estimate-text {
  margin: 16px 0 0;
  color: #666;
  font-size: clamp(1.25rem, 1.3vw, 1.4rem);
  line-height: 1.95;
  letter-spacing: 0.035em;
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-confirmation-pricing-concept__overview {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
    gap: 48px;
    padding-inline: 46px;
  }
  .p-confirmation-pricing-concept__overview-visual {
    width: 108%;
    margin-right: -8%;
  }
  .p-confirmation-pricing-concept__list {
    gap: 24px;
  }
  .p-confirmation-pricing-concept__item {
    padding-inline: 25px;
  }
  .p-confirmation-pricing-concept__visual {
    width: 170px;
  }
  .p-confirmation-pricing-concept__image {
    height: 145px;
  }
  .p-confirmation-pricing-concept__item-title {
    font-size: 1.75rem;
  }
  .p-confirmation-pricing-concept__description {
    font-size: 1.25rem;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-confirmation-pricing-concept {
    padding-block: 84px 96px;
  }
  .p-confirmation-pricing-concept__inner {
    width: min(100% - 48px, 760px);
  }
  .p-confirmation-pricing-concept__header {
    margin-bottom: 52px;
  }
  .p-confirmation-pricing-concept__overview {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
    gap: 36px;
    padding: 42px;
  }
  .p-confirmation-pricing-concept__overview-title {
    font-size: 2.2rem;
  }
  .p-confirmation-pricing-concept__overview-text {
    font-size: 1.25rem;
  }
  .p-confirmation-pricing-concept__overview-visual {
    width: 100%;
    margin: 0;
  }
  .p-confirmation-pricing-concept__list {
    gap: 18px;
    margin-top: 64px;
  }
  .p-confirmation-pricing-concept__item {
    padding: 30px 20px 32px;
  }
  .p-confirmation-pricing-concept__number {
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
  }
  .p-confirmation-pricing-concept__visual {
    width: 145px;
    min-height: 140px;
  }
  .p-confirmation-pricing-concept__image {
    height: 135px;
  }
  .p-confirmation-pricing-concept__item-title {
    font-size: 1.55rem;
  }
  .p-confirmation-pricing-concept__description {
    font-size: 1.15rem;
    line-height: 1.9;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-confirmation-pricing-concept {
    padding-block: 68px 80px;
  }
  .p-confirmation-pricing-concept::before {
    top: 20%;
    right: -65%;
    width: 350px;
  }
  .p-confirmation-pricing-concept::after {
    bottom: -2%;
    left: -70%;
    width: 330px;
  }
  .p-confirmation-pricing-concept__inner {
    width: calc(100% - 32px);
  }
  .p-confirmation-pricing-concept {
    /* ======================================
    Header
    ====================================== */
  }
  .p-confirmation-pricing-concept__header {
    margin-bottom: 38px;
    text-align: left;
  }
  .p-confirmation-pricing-concept__english {
    margin-bottom: 6px;
    font-size: 0.95rem;
  }
  .p-confirmation-pricing-concept__title {
    font-size: 2.3rem;
    line-height: 1.65;
  }
  .p-confirmation-pricing-concept__lead {
    margin-top: 17px;
    font-size: 1.3rem;
    line-height: 1.9;
  }
  .p-confirmation-pricing-concept__lead br {
    display: none;
  }
  .p-confirmation-pricing-concept {
    /* ======================================
    Overview
    ====================================== */
  }
  .p-confirmation-pricing-concept__overview {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 30px 23px 26px;
    border-radius: 15px;
  }
  .p-confirmation-pricing-concept__overview-label {
    min-height: 28px;
    margin-bottom: 13px;
    padding-inline: 13px;
    font-size: 0.95rem;
  }
  .p-confirmation-pricing-concept__overview-title {
    padding-bottom: 18px;
    font-size: 2rem;
  }
  .p-confirmation-pricing-concept__overview-title br {
    display: none;
  }
  .p-confirmation-pricing-concept__overview-text {
    margin-top: 21px;
    font-size: 1.15rem;
    line-height: 1.9;
  }
  .p-confirmation-pricing-concept__overview-text p + p {
    margin-top: 13px;
  }
  .p-confirmation-pricing-concept__overview-visual {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .p-confirmation-pricing-concept {
    /* ======================================
    Cards
    ====================================== */
  }
  .p-confirmation-pricing-concept__list {
    grid-template-columns: 1fr;
    gap: 16px;
    width: min(100%, 460px);
    margin-top: 45px;
  }
  .p-confirmation-pricing-concept__item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 23px;
    padding: 25px 22px;
    border-radius: 14px;
    text-align: left;
  }
  .p-confirmation-pricing-concept__number {
    top: 13px;
    left: 13px;
    width: 33px;
    height: 33px;
    font-size: 0.85rem;
  }
  .p-confirmation-pricing-concept__visual {
    width: 112px;
    min-height: 0;
    margin: 0;
  }
  .p-confirmation-pricing-concept__image {
    width: 112px;
    height: 105px;
  }
  .p-confirmation-pricing-concept__item-title {
    padding-bottom: 13px;
    font-size: 1.55rem;
    text-align: left;
  }
  .p-confirmation-pricing-concept__item-title::after {
    right: auto;
    width: 32px;
    margin-inline: 0;
  }
  .p-confirmation-pricing-concept__description {
    margin-top: 14px;
    font-size: 1.12rem;
    line-height: 1.85;
  }
  .p-confirmation-pricing-concept {
    /* ======================================
    Estimate
    ====================================== */
  }
  .p-confirmation-pricing-concept__estimate {
    margin-top: 42px;
    padding: 26px 5px;
    text-align: left;
  }
  .p-confirmation-pricing-concept__estimate-title {
    font-size: 1.55rem;
  }
  .p-confirmation-pricing-concept__estimate-text {
    margin-top: 12px;
    font-size: 1.1rem;
    line-height: 1.85;
  }
  .p-confirmation-pricing-concept__estimate-text br {
    display: none;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-confirmation-pricing-concept__inner {
    width: calc(100% - 24px);
  }
  .p-confirmation-pricing-concept__title {
    font-size: 2.05rem;
  }
  .p-confirmation-pricing-concept__lead {
    font-size: 1.2rem;
  }
  .p-confirmation-pricing-concept__overview {
    padding-inline: 19px;
  }
  .p-confirmation-pricing-concept__overview-title {
    font-size: 1.8rem;
  }
  .p-confirmation-pricing-concept__overview-text {
    font-size: 1.08rem;
  }
  .p-confirmation-pricing-concept__item {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 18px;
    padding-inline: 18px;
  }
  .p-confirmation-pricing-concept__visual, .p-confirmation-pricing-concept__image {
    width: 94px;
  }
  .p-confirmation-pricing-concept__image {
    height: 92px;
  }
  .p-confirmation-pricing-concept__item-title {
    font-size: 1.42rem;
  }
  .p-confirmation-pricing-concept__description {
    font-size: 1.05rem;
  }
  .p-confirmation-pricing-concept__estimate-title {
    font-size: 1.42rem;
  }
  .p-confirmation-pricing-concept__estimate-text {
    font-size: 1.03rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-confirmation-pricing-concept__overview-image, .p-confirmation-pricing-concept__item, .p-confirmation-pricing-concept__image {
    transition: none;
  }
}
/* ==================================================
Confirmation Contact
建築確認申請 お問い合わせ
================================================== */
.p-confirmation-contact {
  position: relative;
  display: grid;
  min-height: clamp(680px, 54vw, 900px);
  overflow: hidden;
  isolation: isolate;
  background-color: #263128;
  color: #fff;
  /* ========================================
  Background
  ======================================== */
}
.p-confirmation-contact__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.p-confirmation-contact__background-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.02);
  transition: transform 1.2s ease;
}
.p-confirmation-contact:hover .p-confirmation-contact__background-image {
  transform: scale(1.055);
}
.p-confirmation-contact {
  /* ========================================
  Overlay
  ======================================== */
}
.p-confirmation-contact__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(23, 32, 25, 0.92) 0%, rgba(29, 40, 31, 0.82) 42%, rgba(29, 40, 31, 0.48) 72%, rgba(29, 40, 31, 0.2) 100%);
}
.p-confirmation-contact__overlay::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 17, 0.14) 0%, rgba(17, 24, 17, 0.02) 45%, rgba(17, 24, 17, 0.46) 100%);
  content: "";
}
.p-confirmation-contact__overlay::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 74% 46%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 44%);
  content: "";
}
.p-confirmation-contact {
  /* ========================================
  Inner
  ======================================== */
}
.p-confirmation-contact__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  width: min(100%, 1180px);
  min-height: inherit;
  padding-block: clamp(90px, 9vw, 145px);
}
.p-confirmation-contact {
  /* ========================================
  Content
  ======================================== */
}
.p-confirmation-contact__content {
  width: min(100%, 670px);
  padding: clamp(40px, 5vw, 68px) clamp(34px, 5vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-color: rgba(29, 40, 31, 0.52);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.p-confirmation-contact {
  /* ========================================
  Header
  ======================================== */
}
.p-confirmation-contact__header {
  margin: 0;
}
.p-confirmation-contact__english {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.24em;
}
.p-confirmation-contact__title {
  position: relative;
  margin: 0;
  padding-bottom: clamp(22px, 3vw, 30px);
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(3rem, 4vw, 5rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.07em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.22);
}
.p-confirmation-contact__title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.72);
  content: "";
}
.p-confirmation-contact {
  /* ========================================
  Text
  ======================================== */
}
.p-confirmation-contact__text {
  margin-top: clamp(25px, 3.5vw, 38px);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.25rem, 1.35vw, 1.45rem);
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-confirmation-contact__text p {
  margin: 0;
}
.p-confirmation-contact__text p + p {
  margin-top: 17px;
}
.p-confirmation-contact {
  /* ========================================
  Actions
  ======================================== */
}
.p-confirmation-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(30px, 4vw, 46px);
}
.p-confirmation-contact__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 245px;
  min-height: 58px;
  padding: 15px 22px 15px 25px;
  overflow: hidden;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.p-confirmation-contact__button::before {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.12);
  content: "";
  transform: translateX(-102%);
  transition: transform 0.35s ease;
}
.p-confirmation-contact__button:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}
.p-confirmation-contact__button:hover::before {
  transform: translateX(0);
}
.p-confirmation-contact__button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.p-confirmation-contact__button--primary {
  border-color: #fff;
  background-color: #fff;
  color: #7f9661;
}
.p-confirmation-contact__button--primary::before {
  background-color: rgba(127, 150, 97, 0.08);
}
.p-confirmation-contact__button--secondary {
  border-color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.p-confirmation-contact__button-label {
  position: relative;
  z-index: 1;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-confirmation-contact__button-arrow {
  position: relative;
  z-index: 1;
  display: block;
  flex: 0 0 auto;
  width: 26px;
  height: 1px;
  background-color: currentColor;
  transition: transform 0.3s ease;
}
.p-confirmation-contact__button-arrow::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
.p-confirmation-contact__button:hover .p-confirmation-contact__button-arrow {
  transform: translateX(4px);
}
.p-confirmation-contact {
  /* ========================================
  Information
  ======================================== */
}
.p-confirmation-contact__information {
  margin-top: clamp(32px, 4vw, 46px);
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.p-confirmation-contact__information-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Zen Old Mincho", serif;
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-confirmation-contact__information-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.p-confirmation-contact__information-item {
  position: relative;
  padding-left: 19px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.75;
  letter-spacing: 0.035em;
}
.p-confirmation-contact__information-item::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}
.p-confirmation-contact {
  /* ========================================
  Note
  ======================================== */
}
.p-confirmation-contact__note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.035em;
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1180px) {
  .p-confirmation-contact__inner {
    width: min(100% - 64px, 1080px);
  }
  .p-confirmation-contact__content {
    width: min(100%, 620px);
  }
  .p-confirmation-contact__title {
    font-size: 4rem;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-confirmation-contact {
    min-height: 760px;
  }
  .p-confirmation-contact__overlay {
    background: linear-gradient(90deg, rgba(23, 32, 25, 0.9) 0%, rgba(29, 40, 31, 0.78) 58%, rgba(29, 40, 31, 0.44) 100%);
  }
  .p-confirmation-contact__inner {
    width: min(100% - 48px, 760px);
    padding-block: 84px;
  }
  .p-confirmation-contact__content {
    width: min(100%, 610px);
    padding: 45px 42px;
  }
  .p-confirmation-contact__title {
    font-size: 3.5rem;
  }
  .p-confirmation-contact__button {
    min-width: 225px;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-confirmation-contact {
    min-height: auto;
  }
  .p-confirmation-contact__background-image {
    -o-object-position: 66% center;
       object-position: 66% center;
  }
  .p-confirmation-contact__overlay {
    background: linear-gradient(180deg, rgba(23, 32, 25, 0.76) 0%, rgba(23, 32, 25, 0.87) 48%, rgba(23, 32, 25, 0.95) 100%);
  }
  .p-confirmation-contact__inner {
    width: calc(100% - 32px);
    min-height: auto;
    padding-block: 68px 74px;
  }
  .p-confirmation-contact__content {
    width: 100%;
    padding: 32px 23px;
    background-color: rgba(23, 32, 25, 0.58);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
  }
  .p-confirmation-contact__english {
    margin-bottom: 8px;
    font-size: 0.92rem;
  }
  .p-confirmation-contact__title {
    padding-bottom: 20px;
    font-size: 2.65rem;
    line-height: 1.6;
    letter-spacing: 0.055em;
  }
  .p-confirmation-contact__text {
    margin-top: 22px;
    font-size: 1.12rem;
    line-height: 1.9;
  }
  .p-confirmation-contact__text br {
    display: none;
  }
  .p-confirmation-contact__text p + p {
    margin-top: 13px;
  }
  .p-confirmation-contact__actions {
    display: grid;
    gap: 11px;
    margin-top: 28px;
  }
  .p-confirmation-contact__button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding-inline: 20px;
  }
  .p-confirmation-contact__button-label {
    font-size: 1.08rem;
  }
  .p-confirmation-contact__information {
    margin-top: 29px;
    padding-top: 22px;
  }
  .p-confirmation-contact__information-title {
    font-size: 1.18rem;
  }
  .p-confirmation-contact__information-list {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 15px;
  }
  .p-confirmation-contact__information-item {
    font-size: 1.05rem;
  }
  .p-confirmation-contact__note {
    margin-top: 18px;
    font-size: 0.95rem;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-confirmation-contact__inner {
    width: calc(100% - 24px);
  }
  .p-confirmation-contact__content {
    padding-inline: 19px;
  }
  .p-confirmation-contact__title {
    font-size: 2.35rem;
  }
  .p-confirmation-contact__text {
    font-size: 1.05rem;
  }
  .p-confirmation-contact__button {
    padding-inline: 17px;
  }
  .p-confirmation-contact__button-label {
    font-size: 1rem;
  }
  .p-confirmation-contact__information-title {
    font-size: 1.1rem;
  }
  .p-confirmation-contact__information-item {
    font-size: 1rem;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-confirmation-contact__background-image, .p-confirmation-contact__button, .p-confirmation-contact__button::before, .p-confirmation-contact__button-arrow {
    transition: none;
  }
}
/* ==================================================
Contact page
================================================== */
.p-contact {
  overflow: hidden;
}

/* ==================================================
General contact
================================================== */
.p-contact-general {
  position: relative;
  background-color: #f8f7f1;
  /* ========================================
  Hero
  ======================================== */
}
.p-contact-general__hero {
  position: relative;
  display: grid;
  min-height: clamp(330px, 34vw, 500px);
  overflow: hidden;
  background: linear-gradient(120deg, rgba(233, 238, 229, 0.96) 0%, rgba(246, 243, 232, 0.94) 54%, rgba(230, 237, 229, 0.9) 100%);
}
.p-contact-general__hero::before {
  position: absolute;
  top: -45%;
  right: -8%;
  width: clamp(360px, 42vw, 720px);
  aspect-ratio: 1/1;
  border-radius: 44% 56% 61% 39%;
  background-color: rgba(127, 150, 97, 0.07);
  content: "";
  transform: rotate(-18deg);
  pointer-events: none;
}
.p-contact-general__hero::after {
  position: absolute;
  bottom: -70%;
  left: -9%;
  width: clamp(300px, 35vw, 600px);
  aspect-ratio: 1/1;
  border-radius: 58% 42% 36% 64%;
  background-color: rgba(255, 255, 255, 0.68);
  content: "";
  transform: rotate(13deg);
  pointer-events: none;
}
.p-contact-general__hero-inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 1120px);
  padding-block: clamp(80px, 9vw, 130px);
}
.p-contact-general__english {
  margin: 0 0 10px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.24em;
}
.p-contact-general__title {
  margin: 0;
  color: #71684e;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(3.6rem, 5vw, 6.4rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.09em;
}
.p-contact-general__lead {
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.35rem, 1.55vw, 1.65rem);
  line-height: 2;
  letter-spacing: 0.055em;
}
.p-contact-general {
  /* ========================================
  Inner
  ======================================== */
}
.p-contact-general__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  padding-block: clamp(70px, 8vw, 120px);
}
.p-contact-general {
  /* ========================================
  Audience navigation
  ======================================== */
}
.p-contact-general__audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 820px);
  margin: 0 auto clamp(54px, 7vw, 90px);
  overflow: hidden;
  border: 1px solid rgba(127, 150, 97, 0.24);
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(48, 55, 46, 0.055);
}
.p-contact-general__audience-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 20px 52px;
  color: #333;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.p-contact-general__audience-item + .p-contact-general__audience-item {
  border-left: 1px solid rgba(127, 150, 97, 0.2);
}
.p-contact-general__audience-item:is(a):hover {
  background-color: rgba(127, 150, 97, 0.055);
  color: #7f9661;
}
.p-contact-general__audience-item:focus-visible {
  z-index: 1;
  outline: 2px solid #7f9661;
  outline-offset: -3px;
}
.p-contact-general__audience-item--active {
  background-color: #7f9661;
  color: #fff;
}
.p-contact-general__audience-english {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
}
.p-contact-general__audience-label {
  margin-top: 5px;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.35rem, 1.6vw, 1.65rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.055em;
}
.p-contact-general__audience-arrow {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 23px;
  height: 1px;
  background-color: currentColor;
  transform: translateY(-50%);
}
.p-contact-general__audience-arrow::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
.p-contact-general {
  /* ========================================
  Main body
  ======================================== */
}
.p-contact-general__body {
  display: grid;
  grid-template-columns: minmax(270px, 330px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(38px, 5vw, 72px);
}
.p-contact-general {
  /* ========================================
  Guide
  ======================================== */
}
.p-contact-general__guide {
  position: sticky;
  top: 112px;
  min-width: 0;
  padding: clamp(30px, 3.5vw, 42px) clamp(24px, 3vw, 34px);
  border: 1px solid rgba(127, 150, 97, 0.17);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 233, 0.9));
  box-shadow: 0 14px 34px rgba(48, 55, 46, 0.055), 0 2px 6px rgba(48, 55, 46, 0.03);
}
.p-contact-general__guide-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 13px;
  padding: 4px 13px;
  border: 1px solid rgba(127, 150, 97, 0.45);
  border-radius: 999px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.07em;
}
.p-contact-general__guide-title {
  position: relative;
  margin: 0;
  padding-bottom: 21px;
  color: #71684e;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2rem, 2.45vw, 2.7rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.065em;
}
.p-contact-general__guide-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background-color: rgba(127, 150, 97, 0.58);
  content: "";
}
.p-contact-general__guide-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.p-contact-general__guide-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #333;
  font-size: 1.18rem;
  line-height: 1.75;
  letter-spacing: 0.03em;
}
.p-contact-general__guide-check {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 0.15em;
  border-radius: 50%;
  background-color: rgba(127, 150, 97, 0.88);
}
.p-contact-general__guide-check::before {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 8px;
  height: 4px;
  border-bottom: 1.5px solid #fff;
  border-left: 1.5px solid #fff;
  content: "";
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-contact-general__guide-note {
  margin-top: 28px;
  padding: 19px 20px;
  border-left: 3px solid rgba(127, 150, 97, 0.62);
  background-color: rgba(255, 255, 255, 0.72);
}
.p-contact-general__guide-note-title {
  margin: 0;
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.p-contact-general__guide-note-text {
  margin: 8px 0 0;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
.p-contact-general {
  /* ========================================
  Flow
  ======================================== */
}
.p-contact-general__flow {
  margin-top: 32px;
  padding-top: 27px;
  border-top: 1px solid rgba(127, 150, 97, 0.18);
}
.p-contact-general__flow-title {
  margin: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.055em;
}
.p-contact-general__flow-list {
  display: grid;
  gap: 0;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}
.p-contact-general__flow-item {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 48px;
}
.p-contact-general__flow-item:not(:last-child)::after {
  position: absolute;
  top: 35px;
  bottom: -13px;
  left: 17px;
  width: 1px;
  background-color: rgba(127, 150, 97, 0.28);
  content: "";
}
.p-contact-general__flow-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(127, 150, 97, 0.42);
  border-radius: 50%;
  background-color: #fff;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}
.p-contact-general__flow-text {
  color: #666;
  font-size: 1.08rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.p-contact-general {
  /* ========================================
  Form panel
  ======================================== */
}
.p-contact-general__form-panel {
  min-width: 0;
  padding: clamp(34px, 4.5vw, 62px) clamp(28px, 4.5vw, 64px);
  border: 1px solid rgba(140, 123, 89, 0.2);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(48, 55, 46, 0.06), 0 3px 8px rgba(48, 55, 46, 0.035);
}
.p-contact-general__form-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: clamp(38px, 5vw, 56px);
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(127, 150, 97, 0.16);
}
.p-contact-general__form-english {
  margin: 0 0 7px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.19em;
}
.p-contact-general__form-title {
  margin: 0;
  color: #71684e;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2rem, 2.6vw, 3rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.055em;
}
.p-contact-general__required-note {
  flex: 0 0 auto;
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.025em;
}
.p-contact-general__required-note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 21px;
  margin-right: 5px;
  padding-inline: 8px;
  border-radius: 3px;
  background-color: #866653;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
}
.p-contact-general {
  /* ========================================
  Empty state
  ======================================== */
}
.p-contact-general__form-empty {
  padding: 38px 30px;
  border: 1px dashed rgba(127, 150, 97, 0.38);
  border-radius: 12px;
  background-color: rgba(127, 150, 97, 0.035);
  text-align: center;
}
.p-contact-general__form-empty-title {
  margin: 0;
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.7;
}
.p-contact-general__form-empty-text {
  margin: 13px 0 0;
  color: #666;
  font-size: 1.15rem;
  line-height: 1.9;
}
.p-contact-general {
  /* ========================================
  Bottom note
  ======================================== */
}
.p-contact-general__bottom-note {
  width: min(100%, 840px);
  margin: clamp(46px, 6vw, 72px) auto 0;
  padding: 25px 30px;
  border-top: 1px solid rgba(127, 150, 97, 0.22);
  border-bottom: 1px solid rgba(127, 150, 97, 0.22);
  color: #666;
  font-size: 1.08rem;
  line-height: 1.85;
  letter-spacing: 0.03em;
  text-align: center;
}
.p-contact-general__bottom-note p {
  margin: 0;
}
.p-contact-general__bottom-note p + p {
  margin-top: 7px;
}

/* ==================================================
Contact Form 7
================================================== */
.c-contact-form {
  display: grid;
  gap: 0;
  /* ========================================
  Fieldset
  ======================================== */
}
.c-contact-form__fieldset {
  min-width: 0;
  margin: 0 0 38px;
  padding: 0 0 38px;
  border: 0;
  border-bottom: 1px solid rgba(127, 150, 97, 0.14);
}
.c-contact-form__legend {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.045em;
}
.c-contact-form {
  /* ========================================
  Required
  ======================================== */
}
.c-contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 3px;
  background-color: #866653;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  vertical-align: middle;
}
.c-contact-form {
  /* ========================================
  Rows and fields
  ======================================== */
}
.c-contact-form__row {
  padding-block: 31px;
  border-bottom: 1px solid rgba(127, 150, 97, 0.14);
}
.c-contact-form__row:first-of-type {
  padding-top: 0;
}
.c-contact-form__row--columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.c-contact-form__field {
  min-width: 0;
}
.c-contact-form__label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.c-contact-form__help {
  margin: -3px 0 13px;
  color: #666;
  font-size: 1.02rem;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
.c-contact-form {
  /* ========================================
  Controls
  ======================================== */
}
.c-contact-form__control {
  position: relative;
}
.c-contact-form__control .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.c-contact-form__control input[type=text],
.c-contact-form__control input[type=email],
.c-contact-form__control input[type=tel],
.c-contact-form__control input[type=url],
.c-contact-form__control input[type=number],
.c-contact-form__control input[type=date],
.c-contact-form__control select,
.c-contact-form__control textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(119, 111, 93, 0.32);
  border-radius: 7px;
  background-color: #fbfbf8;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.18rem;
  line-height: 1.7;
  letter-spacing: 0.025em;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.c-contact-form__control input[type=text]::-moz-placeholder, .c-contact-form__control input[type=email]::-moz-placeholder, .c-contact-form__control input[type=tel]::-moz-placeholder, .c-contact-form__control input[type=url]::-moz-placeholder, .c-contact-form__control input[type=number]::-moz-placeholder, .c-contact-form__control input[type=date]::-moz-placeholder, .c-contact-form__control select::-moz-placeholder, .c-contact-form__control textarea::-moz-placeholder {
  color: rgba(102, 102, 102, 0.6);
}
.c-contact-form__control input[type=text]::placeholder,
.c-contact-form__control input[type=email]::placeholder,
.c-contact-form__control input[type=tel]::placeholder,
.c-contact-form__control input[type=url]::placeholder,
.c-contact-form__control input[type=number]::placeholder,
.c-contact-form__control input[type=date]::placeholder,
.c-contact-form__control select::placeholder,
.c-contact-form__control textarea::placeholder {
  color: rgba(102, 102, 102, 0.6);
}
.c-contact-form__control input[type=text]:hover,
.c-contact-form__control input[type=email]:hover,
.c-contact-form__control input[type=tel]:hover,
.c-contact-form__control input[type=url]:hover,
.c-contact-form__control input[type=number]:hover,
.c-contact-form__control input[type=date]:hover,
.c-contact-form__control select:hover,
.c-contact-form__control textarea:hover {
  border-color: rgba(127, 150, 97, 0.5);
}
.c-contact-form__control input[type=text]:focus,
.c-contact-form__control input[type=email]:focus,
.c-contact-form__control input[type=tel]:focus,
.c-contact-form__control input[type=url]:focus,
.c-contact-form__control input[type=number]:focus,
.c-contact-form__control input[type=date]:focus,
.c-contact-form__control select:focus,
.c-contact-form__control textarea:focus {
  border-color: #7f9661;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(127, 150, 97, 0.1);
  outline: 0;
}
.c-contact-form__control input[type=text].wpcf7-not-valid,
.c-contact-form__control input[type=email].wpcf7-not-valid,
.c-contact-form__control input[type=tel].wpcf7-not-valid,
.c-contact-form__control input[type=url].wpcf7-not-valid,
.c-contact-form__control input[type=number].wpcf7-not-valid,
.c-contact-form__control input[type=date].wpcf7-not-valid,
.c-contact-form__control select.wpcf7-not-valid,
.c-contact-form__control textarea.wpcf7-not-valid {
  border-color: #a65751;
  background-color: rgba(166, 87, 81, 0.035);
}
.c-contact-form__control input[type=text],
.c-contact-form__control input[type=email],
.c-contact-form__control input[type=tel],
.c-contact-form__control input[type=url],
.c-contact-form__control input[type=number],
.c-contact-form__control input[type=date],
.c-contact-form__control select {
  min-height: 54px;
  padding: 12px 15px;
}
.c-contact-form__control textarea {
  min-height: 210px;
  padding: 15px;
  resize: vertical;
}
.c-contact-form__control select {
  padding-right: 46px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-contact-form__control--select::before {
  position: absolute;
  top: 50%;
  right: 18px;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-right: 1px solid #7f9661;
  border-bottom: 1px solid #7f9661;
  content: "";
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.c-contact-form {
  /* ========================================
  Checkboxes
  ======================================== */
}
.c-contact-form__choices {
  margin-top: 18px;
}
.c-contact-form__choices .wpcf7-form-control {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 14px;
}
.c-contact-form__choices .wpcf7-list-item {
  margin: 0;
}
.c-contact-form__choices .wpcf7-list-item-label {
  line-height: 1.6;
}
.c-contact-form__choices label {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px 12px 45px;
  border: 1px solid rgba(119, 111, 93, 0.25);
  border-radius: 7px;
  background-color: #fbfbf8;
  color: #333;
  font-size: 1.08rem;
  line-height: 1.65;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.c-contact-form__choices label:hover {
  border-color: rgba(127, 150, 97, 0.55);
  background-color: rgba(127, 150, 97, 0.035);
}
.c-contact-form__choices input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.c-contact-form__choices input[type=checkbox] + .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(119, 111, 93, 0.48);
  border-radius: 4px;
  background-color: #fff;
  content: "";
  transform: translateY(-50%);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.c-contact-form__choices input[type=checkbox] + .wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  left: 21px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  opacity: 0;
  transform: translateY(-70%) rotate(-45deg);
  transition: opacity 0.2s ease;
}
.c-contact-form__choices input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  border-color: #7f9661;
  background-color: #7f9661;
}
.c-contact-form__choices input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.c-contact-form__choices input[type=checkbox]:focus-visible + .wpcf7-list-item-label::before {
  outline: 2px solid #7f9661;
  outline-offset: 3px;
}
.c-contact-form {
  /* ========================================
  File
  ======================================== */
}
.c-contact-form__control--file {
  padding: 18px;
  border: 1px dashed rgba(127, 150, 97, 0.45);
  border-radius: 8px;
  background-color: rgba(127, 150, 97, 0.025);
}
.c-contact-form__control--file input[type=file] {
  display: block;
  width: 100%;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  cursor: pointer;
}
.c-contact-form__control--file input[type=file]::file-selector-button {
  min-height: 38px;
  margin-right: 14px;
  padding: 8px 16px;
  border: 1px solid #7f9661;
  border-radius: 5px;
  background-color: #fff;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.c-contact-form__control--file input[type=file]::file-selector-button:hover {
  background-color: #7f9661;
  color: #fff;
}
.c-contact-form__file-note {
  margin: 9px 0 0;
  color: #666;
  font-size: 0.92rem;
  line-height: 1.7;
}
.c-contact-form {
  /* ========================================
  Privacy
  ======================================== */
}
.c-contact-form__privacy {
  margin-top: 38px;
  padding: 26px 28px;
  border: 1px solid rgba(127, 150, 97, 0.2);
  border-radius: 9px;
  background-color: rgba(127, 150, 97, 0.035);
}
.c-contact-form__privacy-text {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
.c-contact-form__privacy-text p {
  margin: 0;
}
.c-contact-form__privacy-text p + p {
  margin-top: 6px;
}
.c-contact-form__acceptance {
  margin-top: 17px;
}
.c-contact-form__acceptance .wpcf7-list-item {
  margin: 0;
}
.c-contact-form__acceptance label {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding-left: 36px;
  color: #333;
  font-size: 1.08rem;
  line-height: 1.7;
  cursor: pointer;
}
.c-contact-form__acceptance input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}
.c-contact-form__acceptance input[type=checkbox] + .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(119, 111, 93, 0.48);
  border-radius: 4px;
  background-color: #fff;
  content: "";
  transform: translateY(-50%);
}
.c-contact-form__acceptance input[type=checkbox] + .wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  opacity: 0;
  transform: translateY(-70%) rotate(-45deg);
}
.c-contact-form__acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  border-color: #7f9661;
  background-color: #7f9661;
}
.c-contact-form__acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.c-contact-form__acceptance input[type=checkbox]:focus-visible + .wpcf7-list-item-label::before {
  outline: 2px solid #7f9661;
  outline-offset: 3px;
}
.c-contact-form {
  /* ========================================
  Submit
  ======================================== */
}
.c-contact-form__submit {
  position: relative;
  width: min(100%, 360px);
  margin: 42px auto 0;
}
.c-contact-form__submit .wpcf7-form-control-wrap {
  display: block;
}
.c-contact-form__submit-button {
  display: block;
  width: 100%;
  min-height: 64px;
  padding: 16px 62px 16px 28px;
  border: 1px solid #7f9661;
  border-radius: 999px;
  background-color: #7f9661;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.065em;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.c-contact-form__submit-button:hover {
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(127, 150, 97, 0.15);
  color: #7f9661;
  transform: translateY(-3px);
}
.c-contact-form__submit-button:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 4px;
}
.c-contact-form__submit-button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}
.c-contact-form__submit-arrow {
  position: absolute;
  top: 50%;
  right: 29px;
  z-index: 2;
  width: 28px;
  height: 1px;
  background-color: #fff;
  transform: translateY(-50%);
  pointer-events: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.c-contact-form__submit-arrow::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  color: #fff;
  content: "";
  transform: translateY(-50%) rotate(45deg);
  transition: color 0.3s ease;
}
.c-contact-form__submit:hover .c-contact-form__submit-arrow {
  background-color: #7f9661;
  transform: translate(4px, -50%);
}
.c-contact-form__submit:hover .c-contact-form__submit-arrow::after {
  color: #7f9661;
}

/* ==================================================
Contact Form 7 system messages
================================================== */
.p-contact-general__form .wpcf7 {
  width: 100%;
}
.p-contact-general__form .wpcf7-form {
  margin: 0;
}
.p-contact-general__form .wpcf7-form.submitting .c-contact-form__submit-arrow {
  opacity: 0;
}
.p-contact-general__form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 7px;
  color: #9b4945;
  font-size: 0.95rem;
  line-height: 1.65;
}
.p-contact-general__form .wpcf7-response-output {
  margin: 30px 0 0;
  padding: 18px 21px;
  border: 1px solid rgba(127, 150, 97, 0.5);
  border-radius: 7px;
  background-color: rgba(127, 150, 97, 0.055);
  color: #333;
  font-size: 1.08rem;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
.p-contact-general__form form.invalid .wpcf7-response-output,
.p-contact-general__form form.unaccepted .wpcf7-response-output,
.p-contact-general__form form.payment-required .wpcf7-response-output {
  border-color: rgba(163, 109, 58, 0.6);
  background-color: rgba(163, 109, 58, 0.055);
}
.p-contact-general__form form.failed .wpcf7-response-output,
.p-contact-general__form form.aborted .wpcf7-response-output,
.p-contact-general__form form.spam .wpcf7-response-output {
  border-color: rgba(155, 73, 69, 0.62);
  background-color: rgba(155, 73, 69, 0.055);
}
.p-contact-general__form form.sent .wpcf7-response-output {
  border-color: rgba(127, 150, 97, 0.62);
  background-color: rgba(127, 150, 97, 0.07);
  color: #7f9661;
}
.p-contact-general__form .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: -35px;
  margin: 0;
  transform: translateY(-50%);
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1100px) {
  .p-contact-general__body {
    grid-template-columns: minmax(245px, 290px) minmax(0, 1fr);
    gap: 35px;
  }
  .p-contact-general__guide {
    padding-inline: 25px;
  }
  .p-contact-general__form-panel {
    padding-inline: 40px;
  }
  .c-contact-form__row--columns {
    gap: 20px;
  }
  .c-contact-form__choices .wpcf7-form-control {
    grid-template-columns: 1fr;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-contact-general__hero-inner {
    width: min(100% - 48px, 760px);
  }
  .p-contact-general__inner {
    width: min(100% - 48px, 760px);
    padding-block: 82px 96px;
  }
  .p-contact-general__audience {
    margin-bottom: 55px;
  }
  .p-contact-general__body {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .p-contact-general__guide {
    position: static;
  }
  .p-contact-general__guide-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p-contact-general__flow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .p-contact-general__flow-item {
    grid-template-columns: 36px minmax(0, 1fr);
  }
  .p-contact-general__flow-item:not(:last-child)::after {
    top: 17px;
    right: -16px;
    bottom: auto;
    left: 36px;
    width: 16px;
    height: 1px;
  }
  .p-contact-general__form-panel {
    padding: 44px 40px;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-contact-general__hero {
    min-height: 300px;
  }
  .p-contact-general__hero::before {
    top: -20%;
    right: -55%;
    width: 390px;
  }
  .p-contact-general__hero::after {
    bottom: -50%;
    left: -60%;
    width: 350px;
  }
  .p-contact-general__hero-inner {
    width: calc(100% - 32px);
    padding-block: 68px;
  }
  .p-contact-general__english {
    margin-bottom: 7px;
    font-size: 0.95rem;
  }
  .p-contact-general__title {
    font-size: 3.4rem;
  }
  .p-contact-general__lead {
    margin-top: 18px;
    font-size: 1.18rem;
    line-height: 1.9;
  }
  .p-contact-general__lead br {
    display: none;
  }
  .p-contact-general__inner {
    width: calc(100% - 32px);
    padding-block: 60px 78px;
  }
  .p-contact-general {
    /* ======================================
    Audience
    ====================================== */
  }
  .p-contact-general__audience {
    margin-bottom: 38px;
    border-radius: 11px;
  }
  .p-contact-general__audience-item {
    min-height: 78px;
    padding: 15px 32px 15px 14px;
  }
  .p-contact-general__audience-english {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
  .p-contact-general__audience-label {
    margin-top: 4px;
    font-size: 1.15rem;
  }
  .p-contact-general__audience-arrow {
    right: 13px;
    width: 16px;
  }
  .p-contact-general {
    /* ======================================
    Guide
    ====================================== */
  }
  .p-contact-general__body {
    gap: 25px;
  }
  .p-contact-general__guide {
    padding: 28px 22px;
    border-radius: 14px;
  }
  .p-contact-general__guide-title {
    font-size: 2rem;
  }
  .p-contact-general__guide-title br {
    display: none;
  }
  .p-contact-general__guide-list {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 24px;
  }
  .p-contact-general__guide-item {
    font-size: 1.08rem;
  }
  .p-contact-general__flow-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .p-contact-general__flow-item:not(:last-child)::after {
    top: 35px;
    right: auto;
    bottom: -13px;
    left: 17px;
    width: 1px;
    height: auto;
  }
  .p-contact-general {
    /* ======================================
    Form panel
    ====================================== */
  }
  .p-contact-general__form-panel {
    padding: 31px 21px 36px;
    border-radius: 15px;
  }
  .p-contact-general__form-header {
    display: block;
    margin-bottom: 32px;
    padding-bottom: 20px;
  }
  .p-contact-general__form-title {
    font-size: 2rem;
  }
  .p-contact-general__required-note {
    margin-top: 13px;
    font-size: 0.9rem;
  }
  .p-contact-general__bottom-note {
    margin-top: 40px;
    padding: 20px 4px;
    font-size: 0.98rem;
    text-align: left;
  }
  .c-contact-form__fieldset {
    margin-bottom: 28px;
    padding-bottom: 28px;
  }
  .c-contact-form__legend {
    font-size: 1.2rem;
  }
  .c-contact-form__row {
    padding-block: 25px;
  }
  .c-contact-form__row--columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .c-contact-form__label {
    font-size: 1.15rem;
  }
  .c-contact-form__help {
    font-size: 0.98rem;
  }
  .c-contact-form__control input[type=text],
  .c-contact-form__control input[type=email],
  .c-contact-form__control input[type=tel],
  .c-contact-form__control input[type=url],
  .c-contact-form__control input[type=number],
  .c-contact-form__control input[type=date],
  .c-contact-form__control select,
  .c-contact-form__control textarea {
    font-size: 1.1rem;
  }
  .c-contact-form__control input[type=text],
  .c-contact-form__control input[type=email],
  .c-contact-form__control input[type=tel],
  .c-contact-form__control input[type=url],
  .c-contact-form__control input[type=number],
  .c-contact-form__control input[type=date],
  .c-contact-form__control select {
    min-height: 52px;
  }
  .c-contact-form__control textarea {
    min-height: 190px;
  }
  .c-contact-form__choices .wpcf7-form-control {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .c-contact-form__choices label {
    min-height: 49px;
    padding-block: 10px;
    font-size: 1.03rem;
  }
  .c-contact-form__control--file {
    padding: 15px;
  }
  .c-contact-form__control--file input[type=file] {
    font-size: 0.95rem;
  }
  .c-contact-form__control--file input[type=file]::file-selector-button {
    display: block;
    margin: 0 0 10px;
  }
  .c-contact-form__privacy {
    margin-top: 30px;
    padding: 21px 18px;
  }
  .c-contact-form__privacy-text, .c-contact-form__acceptance label {
    font-size: 1rem;
  }
  .c-contact-form__submit {
    width: 100%;
    margin-top: 34px;
  }
  .c-contact-form__submit-button {
    min-height: 59px;
    font-size: 1.12rem;
  }
  .p-contact-general__form .wpcf7-spinner {
    top: calc(100% + 16px);
    right: 50%;
    transform: translateX(50%);
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-contact-general__hero-inner, .p-contact-general__inner {
    width: calc(100% - 24px);
  }
  .p-contact-general__title {
    font-size: 3rem;
  }
  .p-contact-general__audience-item {
    padding-inline: 9px 26px;
  }
  .p-contact-general__audience-label {
    font-size: 1.02rem;
  }
  .p-contact-general__form-panel {
    padding-inline: 17px;
  }
  .c-contact-form__control--file input[type=file] {
    font-size: 0.88rem;
  }
  .c-contact-form__submit-button {
    padding-inline: 20px 54px;
    font-size: 1.04rem;
  }
  .c-contact-form__submit-arrow {
    right: 22px;
    width: 23px;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-contact-general__audience-item {
    transition: none;
  }
  .c-contact-form input,
  .c-contact-form select,
  .c-contact-form textarea,
  .c-contact-form label, .c-contact-form__submit-button, .c-contact-form__submit-arrow {
    transition: none;
  }
}
/* ==================================================
Single Post
投稿詳細ページ
================================================== */
.p-post-single {
  min-height: 70vh;
  overflow: hidden;
  background-color: #f8f7f2;
  color: #333;
  /* ========================================
  Header
  ======================================== */
}
.p-post-single__header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, rgba(233, 239, 231, 0.98) 0%, rgba(245, 242, 231, 0.98) 55%, rgba(232, 238, 232, 0.96) 100%);
}
.p-post-single__header::before {
  position: absolute;
  top: -70%;
  right: -12%;
  width: clamp(420px, 48vw, 780px);
  aspect-ratio: 1;
  border-radius: 43% 57% 61% 39%;
  background-color: rgba(127, 150, 97, 0.06);
  content: "";
  transform: rotate(-17deg);
  pointer-events: none;
}
.p-post-single__header::after {
  position: absolute;
  bottom: -110%;
  left: -14%;
  width: clamp(350px, 40vw, 660px);
  aspect-ratio: 1;
  border-radius: 58% 42% 37% 63%;
  background-color: rgba(255, 255, 255, 0.65);
  content: "";
  transform: rotate(14deg);
  pointer-events: none;
}
.p-post-single__header-inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding-block: clamp(90px, 10vw, 150px);
}
.p-post-single__english {
  margin: 0 0 18px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.24em;
}
.p-post-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px 18px;
  margin-bottom: 20px;
}
.p-post-single__date {
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.p-post-single__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 13px;
  border: 1px solid rgba(127, 150, 97, 0.4);
  border-radius: 999px;
  color: #7f9661;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.p-post-single__title {
  max-width: 900px;
  margin: 0;
  color: #655f4c;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.8rem, 4.4vw, 5.4rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.055em;
  overflow-wrap: anywhere;
}
.p-post-single {
  /* ========================================
  Thumbnail
  ======================================== */
}
.p-post-single__thumbnail {
  position: relative;
  z-index: 2;
  margin: clamp(-52px, -4vw, -34px) 0 0;
}
.p-post-single__thumbnail-inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  width: min(100%, 1120px);
}
.p-post-single__thumbnail-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 700px;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(48, 55, 46, 0.12), 0 4px 12px rgba(48, 55, 46, 0.055);
  -o-object-fit: cover;
     object-fit: cover;
}
.p-post-single {
  /* ========================================
  Body
  ======================================== */
}
.p-post-single__body {
  padding-block: clamp(72px, 8vw, 120px);
}
.p-post-single__body-inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  width: min(100%, 900px);
}
.p-post-single {
  /* ========================================
  Entry Content
  ======================================== */
}
.p-post-single__content {
  color: #333;
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.035em;
  overflow-wrap: anywhere;
}
.p-post-single__content > *:first-child {
  margin-top: 0;
}
.p-post-single__content > *:last-child {
  margin-bottom: 0;
}
.p-post-single__content {
  /* ======================================
  Paragraph
  ====================================== */
}
.p-post-single__content p {
  margin: 0 0 1.75em;
}
.p-post-single__content strong,
.p-post-single__content b {
  font-weight: 600;
}
.p-post-single__content em,
.p-post-single__content i {
  font-style: italic;
}
.p-post-single__content mark {
  padding-inline: 0.18em;
  background-color: rgba(231, 217, 141, 0.48);
  color: inherit;
}
.p-post-single__content small {
  font-size: 0.85em;
}
.p-post-single__content sub,
.p-post-single__content sup {
  position: relative;
  font-size: 0.72em;
  line-height: 0;
  vertical-align: baseline;
}
.p-post-single__content sup {
  top: -0.5em;
}
.p-post-single__content sub {
  bottom: -0.25em;
}
.p-post-single__content {
  /* ======================================
  Text alignment
  ====================================== */
}
.p-post-single__content .has-text-align-left {
  text-align: left;
}
.p-post-single__content .has-text-align-center {
  text-align: center;
}
.p-post-single__content .has-text-align-right {
  text-align: right;
}
.p-post-single__content {
  /* ======================================
  Headings
  ====================================== */
}
.p-post-single__content h2,
.p-post-single__content h3,
.p-post-single__content h4,
.p-post-single__content h5,
.p-post-single__content h6 {
  color: #625d4c;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
}
.p-post-single__content h2 {
  position: relative;
  margin: 3.2em 0 1.25em;
  padding: 0 0 0.7em 24px;
  border-bottom: 1px solid rgba(127, 150, 97, 0.25);
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  line-height: 1.6;
}
.p-post-single__content h2::before {
  position: absolute;
  top: 0.18em;
  bottom: 0.82em;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background-color: #7f9661;
  content: "";
}
.p-post-single__content h3 {
  margin: 2.8em 0 1em;
  padding-left: 16px;
  border-left: 3px solid rgba(127, 150, 97, 0.68);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1.65;
}
.p-post-single__content h4 {
  margin: 2.4em 0 0.9em;
  color: #7f9661;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.7;
}
.p-post-single__content h5 {
  margin: 2em 0 0.8em;
  font-size: 1.4rem;
  line-height: 1.7;
}
.p-post-single__content h6 {
  margin: 2em 0 0.8em;
  font-size: 1.25rem;
  line-height: 1.7;
}
.p-post-single__content {
  /* ======================================
  Links
  ====================================== */
}
.p-post-single__content a {
  color: #7f9661;
  text-decoration: underline;
  text-decoration-color: rgba(127, 150, 97, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}
.p-post-single__content a:hover {
  color: rgb(106.0218623482, 125.2226720648, 80.9773279352);
  text-decoration-color: currentColor;
}
.p-post-single__content a:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 3px;
}
.p-post-single__content {
  /* ======================================
  Lists
  ====================================== */
}
.p-post-single__content ul,
.p-post-single__content ol {
  margin: 1.6em 0 1.9em;
  padding-left: 1.7em;
}
.p-post-single__content ul li,
.p-post-single__content ol li {
  padding-left: 0.3em;
}
.p-post-single__content ul li + li,
.p-post-single__content ol li + li {
  margin-top: 0.55em;
}
.p-post-single__content ul li::marker,
.p-post-single__content ol li::marker {
  color: #7f9661;
}
.p-post-single__content ul ul,
.p-post-single__content ul ol,
.p-post-single__content ol ul,
.p-post-single__content ol ol {
  margin-block: 0.6em;
}
.p-post-single__content {
  /* ======================================
  Quote
  ====================================== */
}
.p-post-single__content blockquote,
.p-post-single__content .wp-block-quote {
  position: relative;
  margin: 2.4em 0;
  padding: 28px 32px 28px 36px;
  border-left: 4px solid rgba(127, 150, 97, 0.65);
  background-color: rgba(127, 150, 97, 0.055);
  color: #666;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.3rem;
  line-height: 1.9;
}
.p-post-single__content blockquote p:last-child,
.p-post-single__content .wp-block-quote p:last-child {
  margin-bottom: 0;
}
.p-post-single__content blockquote cite,
.p-post-single__content .wp-block-quote cite {
  display: block;
  margin-top: 15px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.95rem;
  font-style: normal;
}
.p-post-single__content {
  /* ======================================
  Images and figures
  ====================================== */
}
.p-post-single__content figure,
.p-post-single__content .wp-block-image {
  margin: 2.7em 0;
}
.p-post-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.p-post-single__content .wp-block-image img {
  display: block;
}
.p-post-single__content .wp-block-image.is-style-rounded img {
  border-radius: 50%;
}
.p-post-single__content .wp-block-image a {
  display: block;
}
.p-post-single__content figcaption,
.p-post-single__content .wp-element-caption,
.p-post-single__content .wp-caption-text {
  margin-top: 9px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
}
.p-post-single__content {
  /* ======================================
  Alignment
  ====================================== */
}
.p-post-single__content .alignwide {
  width: min(1100px, 100vw - 48px);
  max-width: none;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}
.p-post-single__content .alignfull {
  width: 100vw;
  max-width: none;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}
.p-post-single__content .alignleft {
  float: left;
  max-width: 48%;
  margin: 0.4em 2em 1.2em 0;
}
.p-post-single__content .alignright {
  float: right;
  max-width: 48%;
  margin: 0.4em 0 1.2em 2em;
}
.p-post-single__content .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.p-post-single__content {
  /* ======================================
  Gallery
  ====================================== */
}
.p-post-single__content .wp-block-gallery {
  display: grid;
  gap: 14px;
  margin-block: 2.8em;
}
.p-post-single__content .wp-block-gallery.columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.p-post-single__content .wp-block-gallery.columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.p-post-single__content .wp-block-gallery.columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.p-post-single__content .wp-block-gallery.columns-5, .p-post-single__content .wp-block-gallery.columns-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.p-post-single__content .wp-block-gallery .wp-block-image {
  width: 100%;
  margin: 0;
}
.p-post-single__content .wp-block-gallery .wp-block-image img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-post-single__content {
  /* ======================================
  Table
  ====================================== */
}
.p-post-single__content .wp-block-table {
  margin-block: 2.3em;
  overflow-x: auto;
}
.p-post-single__content .wp-block-table table {
  margin: 0;
}
.p-post-single__content .wp-block-table figcaption {
  margin-top: 10px;
}
.p-post-single__content .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: rgba(127, 150, 97, 0.04);
}
.p-post-single__content table {
  width: 100%;
  margin: 2.3em 0;
  border-collapse: collapse;
  background-color: #fff;
  font-size: 1.08rem;
  line-height: 1.75;
}
.p-post-single__content table th,
.p-post-single__content table td {
  padding: 15px 17px;
  border: 1px solid rgba(119, 111, 93, 0.2);
  text-align: left;
  vertical-align: top;
}
.p-post-single__content table th {
  background-color: rgba(127, 150, 97, 0.075);
  color: #625d4c;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}
.p-post-single__content table caption {
  margin-bottom: 10px;
  color: #666;
  font-size: 0.95rem;
  text-align: left;
}
.p-post-single__content {
  /* ======================================
  Code
  ====================================== */
}
.p-post-single__content pre,
.p-post-single__content .wp-block-code {
  margin: 2em 0;
  padding: 22px;
  overflow-x: auto;
  border-radius: 8px;
  background-color: #263027;
  color: #fff;
  font-family: monospace;
  font-size: 1rem;
  line-height: 1.7;
  white-space: pre;
}
.p-post-single__content code,
.p-post-single__content kbd {
  padding: 0.15em 0.4em;
  border-radius: 4px;
  background-color: rgba(127, 150, 97, 0.08);
  font-family: monospace;
  font-size: 0.92em;
}
.p-post-single__content pre code,
.p-post-single__content .wp-block-code code {
  padding: 0;
  background: none;
  color: inherit;
}
.p-post-single__content kbd {
  border: 1px solid rgba(119, 111, 93, 0.25);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
}
.p-post-single__content {
  /* ======================================
  Separator
  ====================================== */
}
.p-post-single__content hr,
.p-post-single__content .wp-block-separator {
  width: 100%;
  height: 1px;
  margin: 3.5em 0;
  border: 0;
  background-color: rgba(127, 150, 97, 0.2);
}
.p-post-single__content hr.is-style-wide,
.p-post-single__content .wp-block-separator.is-style-wide {
  height: 1px;
}
.p-post-single__content hr.is-style-dots,
.p-post-single__content .wp-block-separator.is-style-dots {
  height: auto;
  background: none;
  color: rgba(127, 150, 97, 0.5);
  line-height: 1;
  letter-spacing: 1em;
  text-align: center;
}
.p-post-single__content hr.is-style-dots::before,
.p-post-single__content .wp-block-separator.is-style-dots::before {
  content: "···";
}
.p-post-single__content {
  /* ======================================
  Buttons
  ====================================== */
}
.p-post-single__content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-block: 2em;
}
.p-post-single__content .wp-block-button {
  margin: 0;
}
.p-post-single__content .wp-block-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 13px 28px;
  border: 1px solid #7f9661;
  border-radius: 999px;
  background-color: #7f9661;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.12rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.p-post-single__content .wp-block-button .wp-block-button__link:hover {
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(127, 150, 97, 0.12);
  color: #7f9661;
  transform: translateY(-2px);
}
.p-post-single__content .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  color: #7f9661;
}
.p-post-single__content .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: #7f9661;
  color: #fff;
}
.p-post-single__content .wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 5px;
}
.p-post-single__content {
  /* ======================================
  Columns
  ====================================== */
}
.p-post-single__content .wp-block-columns {
  display: flex;
  gap: clamp(24px, 4vw, 44px);
  margin-block: 2.8em;
}
.p-post-single__content .wp-block-columns.are-vertically-aligned-top {
  align-items: flex-start;
}
.p-post-single__content .wp-block-columns.are-vertically-aligned-center {
  align-items: center;
}
.p-post-single__content .wp-block-columns.are-vertically-aligned-bottom {
  align-items: flex-end;
}
.p-post-single__content .wp-block-column {
  flex: 1 1 0;
  min-width: 0;
}
.p-post-single__content .wp-block-column > *:first-child {
  margin-top: 0;
}
.p-post-single__content .wp-block-column > *:last-child {
  margin-bottom: 0;
}
.p-post-single__content {
  /* ======================================
  Media and text
  ====================================== */
}
.p-post-single__content .wp-block-media-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  margin-block: 3em;
}
.p-post-single__content .wp-block-media-text.is-vertically-aligned-top {
  align-items: start;
}
.p-post-single__content .wp-block-media-text.is-vertically-aligned-bottom {
  align-items: end;
}
.p-post-single__content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
  grid-column: 2;
  grid-row: 1;
}
.p-post-single__content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  grid-column: 1;
  grid-row: 1;
}
.p-post-single__content .wp-block-media-text__media {
  margin: 0;
}
.p-post-single__content .wp-block-media-text__media img,
.p-post-single__content .wp-block-media-text__media video {
  display: block;
  width: 100%;
  border-radius: 10px;
}
.p-post-single__content .wp-block-media-text__content {
  padding: 0;
}
.p-post-single__content .wp-block-media-text__content > *:first-child {
  margin-top: 0;
}
.p-post-single__content .wp-block-media-text__content > *:last-child {
  margin-bottom: 0;
}
.p-post-single__content {
  /* ======================================
  Cover
  ====================================== */
}
.p-post-single__content .wp-block-cover {
  position: relative;
  display: grid;
  min-height: clamp(360px, 50vw, 600px);
  margin-block: 3em;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  place-items: center;
  isolation: isolate;
}
.p-post-single__content .wp-block-cover.alignfull {
  border-radius: 0;
}
.p-post-single__content .wp-block-cover__image-background,
.p-post-single__content .wp-block-cover__video-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-post-single__content .wp-block-cover__background {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.p-post-single__content .wp-block-cover__background:not([class*=has-background-dim-]) {
  opacity: 0.45;
}
.p-post-single__content .wp-block-cover__inner-container {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 700px);
  color: inherit;
  text-align: center;
}
.p-post-single__content .wp-block-cover__inner-container > *:first-child {
  margin-top: 0;
}
.p-post-single__content .wp-block-cover__inner-container > *:last-child {
  margin-bottom: 0;
}
.p-post-single__content .wp-block-cover__inner-container p,
.p-post-single__content .wp-block-cover__inner-container h2,
.p-post-single__content .wp-block-cover__inner-container h3,
.p-post-single__content .wp-block-cover__inner-container h4,
.p-post-single__content .wp-block-cover__inner-container h5,
.p-post-single__content .wp-block-cover__inner-container h6,
.p-post-single__content .wp-block-cover__inner-container a {
  color: inherit;
}
.p-post-single__content .wp-block-cover__inner-container h2,
.p-post-single__content .wp-block-cover__inner-container h3 {
  padding: 0;
  border: 0;
}
.p-post-single__content .wp-block-cover__inner-container h2::before,
.p-post-single__content .wp-block-cover__inner-container h3::before {
  display: none;
}
.p-post-single__content {
  /* ======================================
  Video and audio
  ====================================== */
}
.p-post-single__content .wp-block-video,
.p-post-single__content .wp-block-audio {
  margin-block: 2.8em;
}
.p-post-single__content .wp-block-video video {
  display: block;
  width: 100%;
  border-radius: 10px;
}
.p-post-single__content .wp-block-audio audio {
  display: block;
  width: 100%;
}
.p-post-single__content {
  /* ======================================
  Embed
  ====================================== */
}
.p-post-single__content .wp-block-embed {
  margin-block: 2.8em;
}
.p-post-single__content .wp-block-embed iframe {
  max-width: 100%;
}
.p-post-single__content .wp-block-embed figcaption {
  margin-top: 9px;
}
.p-post-single__content .wp-block-embed__wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.p-post-single__content .wp-block-embed__wrapper iframe {
  display: block;
  width: 100%;
}
.p-post-single__content .wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  aspect-ratio: 16/9;
}
.p-post-single__content .wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
  height: 100%;
}
.p-post-single__content .wp-embed-aspect-4-3 .wp-block-embed__wrapper {
  aspect-ratio: 4/3;
}
.p-post-single__content .wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe {
  height: 100%;
}
.p-post-single__content {
  /* ======================================
  File
  ====================================== */
}
.p-post-single__content .wp-block-file {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-block: 2em;
  padding: 20px;
  border: 1px solid rgba(127, 150, 97, 0.2);
  border-radius: 8px;
  background-color: rgba(127, 150, 97, 0.04);
}
.p-post-single__content .wp-block-file > a:not(.wp-block-file__button) {
  flex: 1 1 240px;
  color: #333;
  font-weight: 500;
}
.p-post-single__content .wp-block-file__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 40px;
  margin: 0;
  padding: 7px 17px;
  border: 1px solid #7f9661;
  border-radius: 999px;
  background-color: #7f9661;
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
}
.p-post-single__content .wp-block-file__button:hover {
  background-color: #fff;
  color: #7f9661;
}
.p-post-single__content {
  /* ======================================
  Pullquote
  ====================================== */
}
.p-post-single__content .wp-block-pullquote {
  margin-block: 3em;
  padding: clamp(32px, 5vw, 54px);
  border-top: 1px solid rgba(127, 150, 97, 0.35);
  border-bottom: 1px solid rgba(127, 150, 97, 0.35);
  color: #625d4c;
  text-align: center;
}
.p-post-single__content .wp-block-pullquote blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
}
.p-post-single__content .wp-block-pullquote cite {
  margin-top: 18px;
}
.p-post-single__content {
  /* ======================================
  Details
  ====================================== */
}
.p-post-single__content .wp-block-details {
  margin-block: 1.8em;
  padding: 20px 22px;
  border: 1px solid rgba(127, 150, 97, 0.22);
  border-radius: 8px;
  background-color: #fff;
}
.p-post-single__content .wp-block-details summary {
  color: #625d4c;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.7;
  cursor: pointer;
}
.p-post-single__content .wp-block-details summary:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 4px;
}
.p-post-single__content .wp-block-details > *:not(summary):first-of-type {
  margin-top: 18px;
}
.p-post-single__content .wp-block-details > *:last-child {
  margin-bottom: 0;
}
.p-post-single__content {
  /* ======================================
  Group
  ====================================== */
}
.p-post-single__content .wp-block-group {
  margin-block: 2.8em;
}
.p-post-single__content .wp-block-group.has-background {
  padding: clamp(25px, 4vw, 42px);
  border-radius: 10px;
}
.p-post-single__content .wp-block-group > *:first-child {
  margin-top: 0;
}
.p-post-single__content .wp-block-group > *:last-child {
  margin-bottom: 0;
}
.p-post-single__content {
  /* ======================================
  Spacer
  ====================================== */
}
.p-post-single__content .wp-block-spacer {
  clear: both;
}
.p-post-single__content {
  /* ======================================
  Latest posts, categories and archives
  ====================================== */
}
.p-post-single__content .wp-block-latest-posts,
.p-post-single__content .wp-block-categories-list,
.p-post-single__content .wp-block-archives-list,
.p-post-single__content .wp-block-page-list {
  margin-block: 2em;
  padding-left: 0;
  list-style: none;
}
.p-post-single__content .wp-block-latest-posts li,
.p-post-single__content .wp-block-categories-list li,
.p-post-single__content .wp-block-archives-list li,
.p-post-single__content .wp-block-page-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(127, 150, 97, 0.15);
}
.p-post-single__content .wp-block-latest-posts li + li,
.p-post-single__content .wp-block-categories-list li + li,
.p-post-single__content .wp-block-archives-list li + li,
.p-post-single__content .wp-block-page-list li + li {
  margin-top: 0;
}
.p-post-single__content .wp-block-latest-posts a,
.p-post-single__content .wp-block-categories-list a,
.p-post-single__content .wp-block-archives-list a,
.p-post-single__content .wp-block-page-list a {
  text-decoration: none;
}
.p-post-single__content .wp-block-latest-posts__post-date {
  display: block;
  margin-top: 4px;
  color: #666;
  font-size: 0.9rem;
}
.p-post-single__content {
  /* ======================================
  Search
  ====================================== */
}
.p-post-single__content .wp-block-search {
  margin-block: 2.5em;
}
.p-post-single__content .wp-block-search__label {
  display: block;
  margin-bottom: 9px;
  color: #625d4c;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.15rem;
  font-weight: 500;
}
.p-post-single__content .wp-block-search__inside-wrapper {
  display: flex;
  gap: 10px;
}
.p-post-single__content .wp-block-search__input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid rgba(119, 111, 93, 0.32);
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.08rem;
}
.p-post-single__content .wp-block-search__input:focus {
  border-color: #7f9661;
  box-shadow: 0 0 0 3px rgba(127, 150, 97, 0.1);
  outline: 0;
}
.p-post-single__content .wp-block-search__button {
  flex: 0 0 auto;
  min-height: 50px;
  margin: 0;
  padding: 10px 22px;
  border: 1px solid #7f9661;
  border-radius: 6px;
  background-color: #7f9661;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.p-post-single__content .wp-block-search__button:hover {
  background-color: #fff;
  color: #7f9661;
}
.p-post-single__content .wp-block-search__button:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 3px;
}
.p-post-single__content {
  /* ======================================
  Generic form elements
  ====================================== */
}
.p-post-single__content form {
  margin-block: 2.5em;
}
.p-post-single__content label {
  display: block;
  margin-bottom: 8px;
  color: #625d4c;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.7;
}
.p-post-single__content input[type=text],
.p-post-single__content input[type=email],
.p-post-single__content input[type=tel],
.p-post-single__content input[type=url],
.p-post-single__content input[type=search],
.p-post-single__content input[type=number],
.p-post-single__content input[type=date],
.p-post-single__content input[type=password],
.p-post-single__content select,
.p-post-single__content textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(119, 111, 93, 0.32);
  border-radius: 7px;
  background-color: #fff;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.08rem;
  line-height: 1.7;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.p-post-single__content input[type=text]::-moz-placeholder, .p-post-single__content input[type=email]::-moz-placeholder, .p-post-single__content input[type=tel]::-moz-placeholder, .p-post-single__content input[type=url]::-moz-placeholder, .p-post-single__content input[type=search]::-moz-placeholder, .p-post-single__content input[type=number]::-moz-placeholder, .p-post-single__content input[type=date]::-moz-placeholder, .p-post-single__content input[type=password]::-moz-placeholder, .p-post-single__content select::-moz-placeholder, .p-post-single__content textarea::-moz-placeholder {
  color: rgba(102, 102, 102, 0.6);
}
.p-post-single__content input[type=text]::placeholder,
.p-post-single__content input[type=email]::placeholder,
.p-post-single__content input[type=tel]::placeholder,
.p-post-single__content input[type=url]::placeholder,
.p-post-single__content input[type=search]::placeholder,
.p-post-single__content input[type=number]::placeholder,
.p-post-single__content input[type=date]::placeholder,
.p-post-single__content input[type=password]::placeholder,
.p-post-single__content select::placeholder,
.p-post-single__content textarea::placeholder {
  color: rgba(102, 102, 102, 0.6);
}
.p-post-single__content input[type=text]:hover,
.p-post-single__content input[type=email]:hover,
.p-post-single__content input[type=tel]:hover,
.p-post-single__content input[type=url]:hover,
.p-post-single__content input[type=search]:hover,
.p-post-single__content input[type=number]:hover,
.p-post-single__content input[type=date]:hover,
.p-post-single__content input[type=password]:hover,
.p-post-single__content select:hover,
.p-post-single__content textarea:hover {
  border-color: rgba(127, 150, 97, 0.5);
}
.p-post-single__content input[type=text]:focus,
.p-post-single__content input[type=email]:focus,
.p-post-single__content input[type=tel]:focus,
.p-post-single__content input[type=url]:focus,
.p-post-single__content input[type=search]:focus,
.p-post-single__content input[type=number]:focus,
.p-post-single__content input[type=date]:focus,
.p-post-single__content input[type=password]:focus,
.p-post-single__content select:focus,
.p-post-single__content textarea:focus {
  border-color: #7f9661;
  box-shadow: 0 0 0 3px rgba(127, 150, 97, 0.1);
  outline: 0;
}
.p-post-single__content input[type=text],
.p-post-single__content input[type=email],
.p-post-single__content input[type=tel],
.p-post-single__content input[type=url],
.p-post-single__content input[type=search],
.p-post-single__content input[type=number],
.p-post-single__content input[type=date],
.p-post-single__content input[type=password],
.p-post-single__content select {
  min-height: 50px;
  padding: 10px 14px;
}
.p-post-single__content textarea {
  min-height: 180px;
  padding: 13px 14px;
  resize: vertical;
}
.p-post-single__content select {
  cursor: pointer;
}
.p-post-single__content input[type=checkbox],
.p-post-single__content input[type=radio] {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  accent-color: #7f9661;
  vertical-align: -0.25em;
}
.p-post-single__content input[type=file] {
  display: block;
  width: 100%;
  padding: 14px;
  border: 1px dashed rgba(127, 150, 97, 0.4);
  border-radius: 7px;
  background-color: rgba(127, 150, 97, 0.035);
  color: #666;
  font-size: 1rem;
}
.p-post-single__content input[type=file]::file-selector-button {
  min-height: 36px;
  margin-right: 12px;
  padding: 7px 14px;
  border: 1px solid #7f9661;
  border-radius: 5px;
  background-color: #fff;
  color: #7f9661;
  cursor: pointer;
}
.p-post-single__content button,
.p-post-single__content input[type=submit],
.p-post-single__content input[type=button] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 11px 24px;
  border: 1px solid #7f9661;
  border-radius: 999px;
  background-color: #7f9661;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.05rem;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.p-post-single__content button:hover,
.p-post-single__content input[type=submit]:hover,
.p-post-single__content input[type=button]:hover {
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(127, 150, 97, 0.12);
  color: #7f9661;
  transform: translateY(-2px);
}
.p-post-single__content button:focus-visible,
.p-post-single__content input[type=submit]:focus-visible,
.p-post-single__content input[type=button]:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 3px;
}
.p-post-single__content button:disabled,
.p-post-single__content input[type=submit]:disabled,
.p-post-single__content input[type=button]:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}
.p-post-single__content {
  /* ======================================
  Contact Form 7
  ====================================== */
}
.p-post-single__content .wpcf7 {
  margin-block: 2.5em;
}
.p-post-single__content .wpcf7 form {
  margin: 0;
}
.p-post-single__content .wpcf7 p {
  margin-bottom: 1.5em;
}
.p-post-single__content .wpcf7 br {
  display: none;
}
.p-post-single__content .wpcf7-form-control-wrap {
  display: block;
  margin-top: 7px;
}
.p-post-single__content .wpcf7-list-item {
  margin: 0 18px 7px 0;
}
.p-post-single__content .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  cursor: pointer;
}
.p-post-single__content .wpcf7-checkbox,
.p-post-single__content .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.p-post-single__content .wpcf7-not-valid {
  border-color: #a65751 !important;
  background-color: rgba(166, 87, 81, 0.035) !important;
}
.p-post-single__content .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  color: #9b4945;
  font-size: 0.95rem;
  line-height: 1.6;
}
.p-post-single__content .wpcf7-response-output {
  margin: 25px 0 0 !important;
  padding: 16px 18px !important;
  border: 1px solid rgba(127, 150, 97, 0.5) !important;
  border-radius: 7px;
  background-color: rgba(127, 150, 97, 0.055);
  color: #333;
  font-size: 1.03rem;
  line-height: 1.75;
}
.p-post-single__content .wpcf7 form.invalid .wpcf7-response-output,
.p-post-single__content .wpcf7 form.unaccepted .wpcf7-response-output,
.p-post-single__content .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: rgba(163, 109, 58, 0.6) !important;
  background-color: rgba(163, 109, 58, 0.055);
}
.p-post-single__content .wpcf7 form.failed .wpcf7-response-output,
.p-post-single__content .wpcf7 form.aborted .wpcf7-response-output,
.p-post-single__content .wpcf7 form.spam .wpcf7-response-output {
  border-color: rgba(155, 73, 69, 0.62) !important;
  background-color: rgba(155, 73, 69, 0.055);
}
.p-post-single__content .wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(127, 150, 97, 0.62) !important;
  background-color: rgba(127, 150, 97, 0.07);
  color: #7f9661;
}
.p-post-single__content .wpcf7-spinner {
  margin: 0 0 0 12px;
  vertical-align: middle;
}
.p-post-single__content {
  /* ======================================
  Clear floats
  ====================================== */
}
.p-post-single__content::after {
  display: table;
  clear: both;
  content: "";
}
.p-post-single {
  /* ========================================
  Page Links
  ======================================== */
}
.p-post-single__page-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid rgba(127, 150, 97, 0.18);
}
.p-post-single__page-links > span,
.p-post-single__page-links > a {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid rgba(127, 150, 97, 0.3);
  border-radius: 50%;
  font-size: 1rem;
  text-decoration: none;
}
.p-post-single {
  /* ========================================
  Taxonomies
  ======================================== */
}
.p-post-single__footer {
  display: grid;
  gap: 22px;
  margin-top: clamp(58px, 7vw, 86px);
  padding-top: 31px;
  border-top: 1px solid rgba(127, 150, 97, 0.2);
}
.p-post-single__taxonomy {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
}
.p-post-single__taxonomy-label {
  margin: 4px 0 0;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.16em;
}
.p-post-single__taxonomy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-post-single__taxonomy-item a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid rgba(127, 150, 97, 0.28);
  border-radius: 999px;
  background-color: #fff;
  color: #666;
  font-size: 0.98rem;
  line-height: 1.5;
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.p-post-single__taxonomy-item a:hover {
  border-color: #7f9661;
  background-color: #7f9661;
  color: #fff;
}
.p-post-single__taxonomy-item a:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 3px;
}
.p-post-single {
  /* ========================================
  Post Navigation
  ======================================== */
}
.p-post-single__navigation {
  border-top: 1px solid rgba(127, 150, 97, 0.15);
  background-color: #eff2eb;
}
.p-post-single__navigation-inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 180px) minmax(0, 1fr);
  align-items: stretch;
  width: min(100%, 1120px);
  min-height: 180px;
}
.p-post-single__navigation-item {
  min-width: 0;
}
.p-post-single__navigation-item--next {
  text-align: right;
}
.p-post-single__navigation-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 34px 28px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.p-post-single__navigation-link:hover {
  background-color: rgba(255, 255, 255, 0.68);
  color: #7f9661;
}
.p-post-single__navigation-link:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: -3px;
}
.p-post-single__navigation-label {
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.16em;
}
.p-post-single__navigation-title {
  display: -webkit-box;
  margin-top: 9px;
  overflow: hidden;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.15rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.p-post-single__archive-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid rgba(127, 150, 97, 0.15);
  border-left: 1px solid rgba(127, 150, 97, 0.15);
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.p-post-single__archive-link:hover {
  background-color: #7f9661;
  color: #fff;
}
.p-post-single__archive-link:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: -3px;
}
.p-post-single__archive-icon {
  display: grid;
  grid-template-columns: repeat(2, 7px);
  gap: 4px;
}
.p-post-single__archive-icon span {
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
}
.p-post-single {
  /* ========================================
  Not Found
  ======================================== */
}
.p-post-single__not-found {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  width: min(100%, 900px);
  padding-block: 160px;
}
.p-post-single__not-found h1 {
  margin: 0;
  color: #655f4c;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
}

/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-post-single__header-inner {
    width: min(100% - 48px, 820px);
  }
  .p-post-single__thumbnail-inner {
    width: min(100% - 48px, 900px);
  }
  .p-post-single__body-inner {
    width: min(100% - 48px, 760px);
  }
  .p-post-single__content {
    font-size: 1.2rem;
  }
  .p-post-single__content .alignwide,
  .p-post-single__content .alignfull {
    width: calc(100vw - 48px);
  }
  .p-post-single__content .wp-block-gallery.columns-4, .p-post-single__content .wp-block-gallery.columns-5, .p-post-single__content .wp-block-gallery.columns-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p-post-single__navigation-inner {
    width: 100%;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-post-single__header-inner {
    width: calc(100% - 32px);
    padding-block: 72px 88px;
  }
  .p-post-single__english {
    margin-bottom: 13px;
    font-size: 0.9rem;
  }
  .p-post-single__meta {
    margin-bottom: 16px;
  }
  .p-post-single__date {
    font-size: 0.95rem;
  }
  .p-post-single__category {
    min-height: 24px;
    padding-inline: 11px;
    font-size: 0.82rem;
  }
  .p-post-single__title {
    font-size: 2.6rem;
    line-height: 1.6;
  }
  .p-post-single__thumbnail {
    margin-top: -35px;
  }
  .p-post-single__thumbnail-inner {
    width: calc(100% - 32px);
  }
  .p-post-single__thumbnail-image {
    min-height: 220px;
    border-radius: 12px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-post-single__body {
    padding-block: 60px 72px;
  }
  .p-post-single__body-inner {
    width: calc(100% - 32px);
  }
  .p-post-single__content {
    font-size: 1.12rem;
    line-height: 1.95;
  }
  .p-post-single__content p {
    margin-bottom: 1.6em;
  }
  .p-post-single__content h2 {
    margin-top: 2.8em;
    padding-left: 18px;
    font-size: 2rem;
  }
  .p-post-single__content h3 {
    margin-top: 2.5em;
    font-size: 1.65rem;
  }
  .p-post-single__content h4 {
    font-size: 1.4rem;
  }
  .p-post-single__content blockquote,
  .p-post-single__content .wp-block-quote {
    padding: 22px 20px 22px 24px;
    font-size: 1.15rem;
  }
  .p-post-single__content figure {
    margin-block: 2.2em;
  }
  .p-post-single__content .alignwide,
  .p-post-single__content .alignfull {
    width: 100vw;
  }
  .p-post-single__content .alignleft,
  .p-post-single__content .alignright {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 2em auto;
  }
  .p-post-single__content {
    /* Gallery */
  }
  .p-post-single__content .wp-block-gallery.columns-2, .p-post-single__content .wp-block-gallery.columns-3, .p-post-single__content .wp-block-gallery.columns-4, .p-post-single__content .wp-block-gallery.columns-5, .p-post-single__content .wp-block-gallery.columns-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p-post-single__content {
    /* Table */
  }
  .p-post-single__content .wp-block-table {
    width: 100%;
    overflow-x: auto;
  }
  .p-post-single__content table {
    font-size: 1rem;
    white-space: nowrap;
  }
  .p-post-single__content table th,
  .p-post-single__content table td {
    padding: 12px 13px;
  }
  .p-post-single__content {
    /* Columns */
  }
  .p-post-single__content .wp-block-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .p-post-single__content {
    /* Media and text */
  }
  .p-post-single__content .wp-block-media-text,
  .p-post-single__content .wp-block-media-text.has-media-on-the-right {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .p-post-single__content .wp-block-media-text .wp-block-media-text__media,
  .p-post-single__content .wp-block-media-text .wp-block-media-text__content,
  .p-post-single__content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media,
  .p-post-single__content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    grid-column: 1;
  }
  .p-post-single__content .wp-block-media-text .wp-block-media-text__media,
  .p-post-single__content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
    grid-row: 1;
  }
  .p-post-single__content .wp-block-media-text .wp-block-media-text__content,
  .p-post-single__content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    grid-row: 2;
  }
  .p-post-single__content {
    /* Cover */
  }
  .p-post-single__content .wp-block-cover {
    min-height: 320px;
  }
  .p-post-single__content .wp-block-cover__inner-container {
    width: calc(100% - 32px);
  }
  .p-post-single__content {
    /* File */
  }
  .p-post-single__content .wp-block-file {
    display: grid;
  }
  .p-post-single__content .wp-block-file__button {
    width: 100%;
  }
  .p-post-single__content {
    /* Search */
  }
  .p-post-single__content .wp-block-search__inside-wrapper {
    display: grid;
  }
  .p-post-single__content .wp-block-search__button {
    width: 100%;
  }
  .p-post-single__content {
    /* Form */
  }
  .p-post-single__content button,
  .p-post-single__content input[type=submit],
  .p-post-single__content input[type=button] {
    width: 100%;
  }
  .p-post-single__content input[type=file] {
    font-size: 0.95rem;
  }
  .p-post-single__content input[type=file]::file-selector-button {
    display: block;
    margin: 0 0 10px;
  }
  .p-post-single__content .wpcf7-list-item {
    display: block;
    margin-right: 0;
  }
  .p-post-single__footer {
    margin-top: 52px;
  }
  .p-post-single__taxonomy {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .p-post-single__taxonomy-label {
    margin: 0;
  }
  .p-post-single__navigation-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }
  .p-post-single__navigation-item {
    min-height: 120px;
  }
  .p-post-single__navigation-item--previous {
    border-right: 1px solid rgba(127, 150, 97, 0.15);
  }
  .p-post-single__navigation-link {
    padding: 25px 18px;
  }
  .p-post-single__navigation-title {
    font-size: 1.02rem;
  }
  .p-post-single__archive-link {
    grid-column: 1/-1;
    grid-row: 2;
    flex-direction: row;
    min-height: 62px;
    border-top: 1px solid rgba(127, 150, 97, 0.15);
    border-right: 0;
    border-left: 0;
  }
  .p-post-single__not-found {
    width: calc(100% - 32px);
    padding-block: 110px;
  }
  .p-post-single__not-found h1 {
    font-size: 2rem;
  }
}
/* ==================================================
Small Smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-post-single__header-inner, .p-post-single__thumbnail-inner, .p-post-single__body-inner, .p-post-single__not-found {
    width: calc(100% - 24px);
  }
  .p-post-single__title {
    font-size: 2.3rem;
  }
  .p-post-single__content {
    font-size: 1.07rem;
  }
  .p-post-single__content .wp-block-gallery.columns-2, .p-post-single__content .wp-block-gallery.columns-3, .p-post-single__content .wp-block-gallery.columns-4, .p-post-single__content .wp-block-gallery.columns-5, .p-post-single__content .wp-block-gallery.columns-6 {
    grid-template-columns: 1fr;
  }
  .p-post-single__content .wp-block-buttons {
    display: grid;
  }
  .p-post-single__content .wp-block-button,
  .p-post-single__content .wp-block-button__link {
    width: 100%;
  }
  .p-post-single__navigation-title {
    font-size: 0.95rem;
  }
}
/* ==================================================
Reduced Motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-post-single a,
  .p-post-single button,
  .p-post-single input,
  .p-post-single select,
  .p-post-single textarea, .p-post-single__navigation-link, .p-post-single__archive-link,
  .p-post-single .wp-block-button__link,
  .p-post-single .wp-block-search__button {
    transition: none;
  }
}
/* ==================================================
Post Archive
================================================== */
.p-post-archive {
  min-height: 70vh;
  overflow: hidden;
  background-color: #f8f7f2;
  color: #333;
  /* ========================================
  Hero
  ======================================== */
}
.p-post-archive__hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, rgba(233, 239, 231, 0.98) 0%, rgba(245, 242, 231, 0.98) 53%, rgba(230, 237, 231, 0.96) 100%);
}
.p-post-archive__hero::before {
  position: absolute;
  top: -64%;
  right: -9%;
  width: clamp(420px, 46vw, 760px);
  aspect-ratio: 1;
  border-radius: 44% 56% 62% 38%;
  background-color: rgba(127, 150, 97, 0.06);
  content: "";
  transform: rotate(-18deg);
  pointer-events: none;
}
.p-post-archive__hero::after {
  position: absolute;
  bottom: -100%;
  left: -12%;
  width: clamp(340px, 38vw, 630px);
  aspect-ratio: 1;
  border-radius: 58% 42% 37% 63%;
  background-color: rgba(255, 255, 255, 0.67);
  content: "";
  transform: rotate(14deg);
  pointer-events: none;
}
.p-post-archive__hero-inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  padding-block: clamp(86px, 9vw, 138px);
}
.p-post-archive__english {
  margin: 0 0 10px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.24em;
}
.p-post-archive__title {
  margin: 0;
  color: #6a634e;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(3.5rem, 5vw, 6rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.075em;
  overflow-wrap: anywhere;
}
.p-post-archive__lead {
  max-width: 720px;
  margin: clamp(20px, 3vw, 30px) 0 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.25rem, 1.5vw, 1.55rem);
  line-height: 2;
  letter-spacing: 0.045em;
}
.p-post-archive__lead p {
  margin: 0;
}
.p-post-archive__lead p + p {
  margin-top: 8px;
}
.p-post-archive {
  /* ========================================
  Inner
  ======================================== */
}
.p-post-archive__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  width: min(100%, 1180px);
  padding-block: clamp(70px, 8vw, 120px);
}
.p-post-archive {
  /* ========================================
  Category Navigation
  ======================================== */
}
.p-post-archive__categories {
  margin-bottom: clamp(45px, 6vw, 76px);
}
.p-post-archive__category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-post-archive__category-item {
  margin: 0;
}
.p-post-archive__category-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid rgba(127, 150, 97, 0.28);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.p-post-archive__category-link:is(a):hover {
  border-color: #7f9661;
  color: #7f9661;
  transform: translateY(-2px);
}
.p-post-archive__category-link:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 3px;
}
.p-post-archive__category-link.is-current {
  border-color: #7f9661;
  background-color: #7f9661;
  color: #fff;
}
.p-post-archive__category-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding-inline: 5px;
  border-radius: 999px;
  background-color: rgba(127, 150, 97, 0.09);
  color: #7f9661;
  font-size: 0.78rem;
  line-height: 1;
}
.p-post-archive__category-link.is-current .p-post-archive__category-count {
  background-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.p-post-archive {
  /* ========================================
  Archive Navigation
  ======================================== */
}
.p-post-archive__archive-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: clamp(40px, 5vw, 62px);
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(127, 150, 97, 0.18);
}
.p-post-archive__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7f9661;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.08rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}
.p-post-archive__back:hover {
  color: rgb(106.0218623482, 125.2226720648, 80.9773279352);
  transform: translateX(-3px);
}
.p-post-archive__back:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 4px;
}
.p-post-archive__result {
  margin: 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.p-post-archive {
  /* ========================================
  Grid
  ======================================== */
}
.p-post-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(38px, 4.5vw, 58px) clamp(22px, 3vw, 36px);
}
.p-post-archive {
  /* ========================================
  Card
  ======================================== */
}
.p-post-archive__card {
  min-width: 0;
}
.p-post-archive__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #333;
  text-decoration: none;
}
.p-post-archive__card-link:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 5px;
}
.p-post-archive__thumbnail {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background-color: #e6ebe3;
  aspect-ratio: 4/3;
}
.p-post-archive__thumbnail::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(127, 150, 97, 0.1);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
.p-post-archive__thumbnail-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.45s ease, transform 0.65s ease;
}
.p-post-archive__card-link:hover .p-post-archive__thumbnail-image {
  filter: brightness(0.94);
  transform: scale(1.055);
}
.p-post-archive__thumbnail-empty {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #dde6d9, #f1eee4);
}
.p-post-archive__thumbnail-empty span {
  color: rgba(127, 150, 97, 0.28);
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: 0.18em;
}
.p-post-archive__card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px 4px 0;
}
.p-post-archive__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 13px;
}
.p-post-archive__date {
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  letter-spacing: 0.09em;
}
.p-post-archive__category {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 10px;
  border: 1px solid rgba(127, 150, 97, 0.35);
  border-radius: 999px;
  color: #7f9661;
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.035em;
}
.p-post-archive__card-title {
  margin: 14px 0 0;
  color: #625d4c;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.55rem, 1.8vw, 1.9rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.045em;
  overflow-wrap: anywhere;
  transition: color 0.25s ease;
}
.p-post-archive__card-link:hover .p-post-archive__card-title {
  color: #7f9661;
}
.p-post-archive__excerpt {
  display: -webkit-box;
  margin-top: 13px;
  overflow: hidden;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.85;
  letter-spacing: 0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.p-post-archive__excerpt p {
  margin: 0;
}
.p-post-archive__more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: auto;
  padding-top: 22px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.15em;
}
.p-post-archive__more-arrow {
  position: relative;
  display: block;
  width: 30px;
  height: 1px;
  background-color: currentColor;
  transition: transform 0.25s ease;
}
.p-post-archive__more-arrow::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
.p-post-archive__card-link:hover .p-post-archive__more-arrow {
  transform: translateX(5px);
}
.p-post-archive {
  /* ========================================
  Pagination
  ======================================== */
}
.p-post-archive__pagination {
  margin-top: clamp(62px, 8vw, 100px);
}
.p-post-archive__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.p-post-archive__pagination .page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding-inline: 10px;
  border: 1px solid rgba(127, 150, 97, 0.28);
  border-radius: 50%;
  background-color: #fff;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.p-post-archive__pagination .page-numbers:is(a):hover {
  border-color: #7f9661;
  color: #7f9661;
  transform: translateY(-2px);
}
.p-post-archive__pagination .page-numbers:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 3px;
}
.p-post-archive__pagination .page-numbers.current {
  border-color: #7f9661;
  background-color: #7f9661;
  color: #fff;
}
.p-post-archive__pagination .page-numbers.dots {
  border-color: transparent;
  background-color: transparent;
}
.p-post-archive__pagination .page-numbers.prev, .p-post-archive__pagination .page-numbers.next {
  border-radius: 999px;
}
.p-post-archive {
  /* ========================================
  Empty State
  ======================================== */
}
.p-post-archive__empty {
  width: min(100%, 680px);
  margin-inline: auto;
  padding: clamp(45px, 6vw, 70px) 30px;
  border: 1px dashed rgba(127, 150, 97, 0.35);
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.72);
  text-align: center;
}
.p-post-archive__empty-title {
  margin: 0;
  color: #625d4c;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.055em;
}
.p-post-archive__empty-text {
  margin: 17px 0 0;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.85;
}
.p-post-archive__empty-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 54px;
  margin-top: 28px;
  padding: 12px 28px;
  border: 1px solid #7f9661;
  border-radius: 999px;
  background-color: #7f9661;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.08rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.p-post-archive__empty-link:hover {
  background-color: #fff;
  color: #7f9661;
  transform: translateY(-2px);
}
.p-post-archive__empty-link:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 4px;
}

/* ==================================================
Narrow Desktop
================================================== */
@media screen and (max-width: 1100px) {
  .p-post-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-post-archive__hero-inner {
    width: min(100% - 48px, 760px);
  }
  .p-post-archive__inner {
    width: min(100% - 48px, 900px);
  }
  .p-post-archive__grid {
    gap: 45px 25px;
  }
  .p-post-archive__card-title {
    font-size: 1.65rem;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-post-archive__hero::before {
    top: -20%;
    right: -65%;
    width: 390px;
  }
  .p-post-archive__hero::after {
    bottom: -55%;
    left: -70%;
    width: 350px;
  }
  .p-post-archive__hero-inner {
    width: calc(100% - 32px);
    padding-block: 70px;
  }
  .p-post-archive__english {
    font-size: 0.92rem;
  }
  .p-post-archive__title {
    font-size: 3rem;
  }
  .p-post-archive__lead {
    margin-top: 17px;
    font-size: 1.14rem;
    line-height: 1.9;
  }
  .p-post-archive__lead br {
    display: none;
  }
  .p-post-archive__inner {
    width: calc(100% - 32px);
    padding-block: 58px 76px;
  }
  .p-post-archive__categories {
    margin-bottom: 42px;
  }
  .p-post-archive__category-list {
    justify-content: flex-start;
    gap: 8px;
  }
  .p-post-archive__category-link {
    min-height: 38px;
    padding: 7px 14px;
    font-size: 0.94rem;
  }
  .p-post-archive__archive-navigation {
    align-items: flex-start;
    margin-bottom: 38px;
  }
  .p-post-archive__back {
    font-size: 1rem;
  }
  .p-post-archive__result {
    font-size: 0.9rem;
    text-align: right;
  }
  .p-post-archive__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .p-post-archive__thumbnail {
    border-radius: 11px;
    aspect-ratio: 16/10;
  }
  .p-post-archive__card-content {
    padding-top: 19px;
  }
  .p-post-archive__card-title {
    margin-top: 12px;
    font-size: 1.65rem;
  }
  .p-post-archive__excerpt {
    font-size: 1.03rem;
    -webkit-line-clamp: 3;
  }
  .p-post-archive__more {
    padding-top: 18px;
  }
  .p-post-archive__pagination {
    margin-top: 62px;
  }
  .p-post-archive__pagination .nav-links {
    gap: 6px;
  }
  .p-post-archive__pagination .page-numbers {
    min-width: 39px;
    height: 39px;
    font-size: 0.92rem;
  }
  .p-post-archive__empty {
    padding: 42px 20px;
  }
  .p-post-archive__empty-title {
    font-size: 2rem;
  }
  .p-post-archive__empty-text {
    font-size: 1.02rem;
  }
}
/* ==================================================
Small Smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-post-archive__hero-inner, .p-post-archive__inner {
    width: calc(100% - 24px);
  }
  .p-post-archive__title {
    font-size: 2.7rem;
  }
  .p-post-archive__archive-navigation {
    display: block;
  }
  .p-post-archive__result {
    margin-top: 10px;
    text-align: left;
  }
  .p-post-archive__pagination .page-numbers {
    min-width: 36px;
    height: 36px;
  }
}
/* ==================================================
Reduced Motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-post-archive a, .p-post-archive__thumbnail-image, .p-post-archive__more-arrow,
  .p-post-archive .page-numbers {
    transition: none;
  }
}
/* ==================================================
Works Archive
施工事例一覧
================================================== */
.p-works-archive {
  min-height: 70vh;
  overflow: hidden;
  background-color: #f7f6f0;
  color: #333;
  /* ========================================
  Hero
  ======================================== */
}
.p-works-archive__hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, rgba(232, 238, 229, 0.98) 0%, rgba(245, 242, 231, 0.98) 52%, rgba(227, 235, 228, 0.96) 100%);
}
.p-works-archive__hero::before {
  position: absolute;
  top: -72%;
  right: -9%;
  width: clamp(440px, 48vw, 800px);
  aspect-ratio: 1;
  border-radius: 44% 56% 62% 38%;
  background-color: rgba(127, 150, 97, 0.065);
  content: "";
  transform: rotate(-18deg);
  pointer-events: none;
}
.p-works-archive__hero::after {
  position: absolute;
  bottom: -105%;
  left: -13%;
  width: clamp(350px, 40vw, 670px);
  aspect-ratio: 1;
  border-radius: 58% 42% 37% 63%;
  background-color: rgba(255, 255, 255, 0.68);
  content: "";
  transform: rotate(15deg);
  pointer-events: none;
}
.p-works-archive__hero-inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  padding-block: clamp(90px, 10vw, 150px);
}
.p-works-archive__english {
  margin: 0 0 10px;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.24em;
}
.p-works-archive__title {
  margin: 0;
  color: #69624d;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(3.6rem, 5vw, 6.2rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}
.p-works-archive__lead {
  max-width: 760px;
  margin: clamp(22px, 3vw, 32px) 0 0;
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.3rem, 1.5vw, 1.6rem);
  line-height: 2;
  letter-spacing: 0.045em;
}
.p-works-archive__lead p {
  margin: 0;
}
.p-works-archive__lead p + p {
  margin-top: 8px;
}
.p-works-archive {
  /* ========================================
  Main
  ======================================== */
}
.p-works-archive__inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  width: min(100%, 1180px);
  padding-block: clamp(70px, 8vw, 125px);
}
.p-works-archive {
  /* ========================================
  Category filter
  ======================================== */
}
.p-works-archive__filter {
  margin-bottom: clamp(50px, 7vw, 88px);
}
.p-works-archive__filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-works-archive__filter-item {
  margin: 0;
}
.p-works-archive__filter-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 19px;
  border: 1px solid rgba(127, 150, 97, 0.3);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.88);
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.p-works-archive__filter-link:is(a):hover {
  border-color: #7f9661;
  box-shadow: 0 7px 18px rgba(127, 150, 97, 0.1);
  color: #7f9661;
  transform: translateY(-2px);
}
.p-works-archive__filter-link:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 3px;
}
.p-works-archive__filter-link.is-current {
  border-color: #7f9661;
  background-color: #7f9661;
  color: #fff;
}
.p-works-archive__filter-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding-inline: 5px;
  border-radius: 999px;
  background-color: rgba(127, 150, 97, 0.1);
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.78rem;
  line-height: 1;
}
.p-works-archive__filter-link.is-current .p-works-archive__filter-count {
  background-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.p-works-archive {
  /* ========================================
  Archive heading
  ======================================== */
}
.p-works-archive__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(35px, 5vw, 54px);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(127, 150, 97, 0.18);
}
.p-works-archive__heading-label {
  margin: 0;
  color: #7f9661;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.p-works-archive__result {
  margin: 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.p-works-archive {
  /* ========================================
  Grid
  ======================================== */
}
.p-works-archive__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(58px, 7vw, 96px) clamp(28px, 4.5vw, 58px);
}
.p-works-archive {
  /* ========================================
  Card
  ======================================== */
}
.p-works-archive__card {
  min-width: 0;
}
.p-works-archive__card:nth-child(even) {
  margin-top: clamp(45px, 6vw, 82px);
}
.p-works-archive__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #333;
  text-decoration: none;
}
.p-works-archive__card-link:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 6px;
}
.p-works-archive {
  /* ========================================
  Thumbnail
  ======================================== */
}
.p-works-archive__thumbnail {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background-color: #e3e9df;
  box-shadow: 0 18px 42px rgba(48, 55, 46, 0.08), 0 3px 9px rgba(48, 55, 46, 0.04);
  aspect-ratio: 4/3;
}
.p-works-archive__thumbnail::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(127, 150, 97, 0.1);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
.p-works-archive__thumbnail-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.45s ease, transform 0.7s ease;
}
.p-works-archive__card-link:hover .p-works-archive__thumbnail-image {
  filter: brightness(0.92);
  transform: scale(1.055);
}
.p-works-archive__thumbnail-empty {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #dce6d8 0%, #f0ede3 100%);
}
.p-works-archive__thumbnail-empty span {
  color: rgba(127, 150, 97, 0.27);
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0.18em;
}
.p-works-archive__category {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  margin: 0;
  padding: 5px 13px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background-color: rgba(29, 40, 31, 0.72);
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.p-works-archive {
  /* ========================================
  Card content
  ======================================== */
}
.p-works-archive__card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 3vw, 32px) 4px 0;
}
.p-works-archive__card-title {
  margin: 0;
  color: #625d4c;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.9rem, 2.4vw, 2.7rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
  transition: color 0.25s ease;
}
.p-works-archive__card-link:hover .p-works-archive__card-title {
  color: #7f9661;
}
.p-works-archive {
  /* ========================================
  Specifications
  ======================================== */
}
.p-works-archive__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.p-works-archive__spec {
  position: relative;
  color: #666;
  font-size: 0.98rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.p-works-archive__spec:not(:last-child) {
  padding-right: 10px;
}
.p-works-archive__spec:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 12px;
  background-color: rgba(127, 150, 97, 0.25);
  content: "";
  transform: translateY(-50%);
}
.p-works-archive {
  /* ========================================
  Excerpt
  ======================================== */
}
.p-works-archive__excerpt {
  display: -webkit-box;
  margin-top: 17px;
  overflow: hidden;
  color: #666;
  font-size: 1.08rem;
  line-height: 1.9;
  letter-spacing: 0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.p-works-archive__excerpt p {
  margin: 0;
}
.p-works-archive {
  /* ========================================
  View project
  ======================================== */
}
.p-works-archive__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
  color: #7f9661;
}
.p-works-archive__more-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.17em;
}
.p-works-archive__more-arrow {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 34px;
  height: 1px;
  background-color: currentColor;
  transition: transform 0.25s ease;
}
.p-works-archive__more-arrow::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
.p-works-archive__card-link:hover .p-works-archive__more-arrow {
  transform: translateX(6px);
}
.p-works-archive {
  /* ========================================
  Pagination
  ======================================== */
}
.p-works-archive__pagination {
  margin-top: clamp(72px, 9vw, 120px);
}
.p-works-archive__pagination .navigation {
  margin: 0;
}
.p-works-archive__pagination .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.p-works-archive__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.p-works-archive__pagination .page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 45px;
  height: 45px;
  padding-inline: 10px;
  border: 1px solid rgba(127, 150, 97, 0.28);
  border-radius: 50%;
  background-color: #fff;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.p-works-archive__pagination .page-numbers:is(a):hover {
  border-color: #7f9661;
  color: #7f9661;
  transform: translateY(-2px);
}
.p-works-archive__pagination .page-numbers:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 3px;
}
.p-works-archive__pagination .page-numbers.current {
  border-color: #7f9661;
  background-color: #7f9661;
  color: #fff;
}
.p-works-archive__pagination .page-numbers.dots {
  border-color: transparent;
  background-color: transparent;
}
.p-works-archive__pagination .page-numbers.prev, .p-works-archive__pagination .page-numbers.next {
  border-radius: 999px;
}
.p-works-archive {
  /* ========================================
  Empty state
  ======================================== */
}
.p-works-archive__empty {
  width: min(100%, 680px);
  margin-inline: auto;
  padding: clamp(48px, 6vw, 72px) 30px;
  border: 1px dashed rgba(127, 150, 97, 0.36);
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.76);
  text-align: center;
}
.p-works-archive__empty-title {
  margin: 0;
  color: #625d4c;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.055em;
}
.p-works-archive__empty-text {
  margin: 17px 0 0;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.85;
}
.p-works-archive__empty-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 245px;
  min-height: 56px;
  margin-top: 28px;
  padding: 12px 28px;
  border: 1px solid #7f9661;
  border-radius: 999px;
  background-color: #7f9661;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.08rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.p-works-archive__empty-link:hover {
  background-color: #fff;
  box-shadow: 0 10px 24px rgba(127, 150, 97, 0.12);
  color: #7f9661;
  transform: translateY(-2px);
}
.p-works-archive__empty-link:focus-visible {
  outline: 2px solid #7f9661;
  outline-offset: 4px;
}

/* ==================================================
Narrow desktop
================================================== */
@media screen and (max-width: 1100px) {
  .p-works-archive__grid {
    gap: 68px 32px;
  }
  .p-works-archive__card:nth-child(even) {
    margin-top: 48px;
  }
  .p-works-archive__card-title {
    font-size: 2.1rem;
  }
}
/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-works-archive__hero-inner {
    width: min(100% - 48px, 760px);
  }
  .p-works-archive__inner {
    width: min(100% - 48px, 900px);
  }
  .p-works-archive__grid {
    gap: 58px 25px;
  }
  .p-works-archive__card:nth-child(even) {
    margin-top: 30px;
  }
  .p-works-archive__card-title {
    font-size: 1.85rem;
  }
  .p-works-archive__excerpt {
    font-size: 1.03rem;
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-works-archive__hero::before {
    top: -18%;
    right: -65%;
    width: 390px;
  }
  .p-works-archive__hero::after {
    bottom: -52%;
    left: -72%;
    width: 350px;
  }
  .p-works-archive__hero-inner {
    width: calc(100% - 32px);
    padding-block: 70px;
  }
  .p-works-archive__english {
    margin-bottom: 7px;
    font-size: 0.92rem;
  }
  .p-works-archive__title {
    font-size: 3rem;
  }
  .p-works-archive__lead {
    margin-top: 18px;
    font-size: 1.14rem;
    line-height: 1.9;
  }
  .p-works-archive__lead br {
    display: none;
  }
  .p-works-archive__inner {
    width: calc(100% - 32px);
    padding-block: 58px 78px;
  }
  .p-works-archive {
    /* Filter */
  }
  .p-works-archive__filter {
    margin-bottom: 42px;
  }
  .p-works-archive__filter-list {
    justify-content: flex-start;
    gap: 8px;
  }
  .p-works-archive__filter-link {
    min-height: 39px;
    padding: 7px 14px;
    font-size: 0.94rem;
  }
  .p-works-archive__filter-count {
    min-width: 20px;
    height: 20px;
    font-size: 0.72rem;
  }
  .p-works-archive {
    /* Heading */
  }
  .p-works-archive__heading {
    margin-bottom: 32px;
    padding-bottom: 17px;
  }
  .p-works-archive__heading-label {
    font-size: 0.8rem;
  }
  .p-works-archive__result {
    font-size: 0.9rem;
    text-align: right;
  }
  .p-works-archive {
    /* Grid */
  }
  .p-works-archive__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .p-works-archive__card:nth-child(even) {
    margin-top: 0;
  }
  .p-works-archive__thumbnail {
    border-radius: 2px;
    aspect-ratio: 16/10;
  }
  .p-works-archive__category {
    right: 12px;
    bottom: 12px;
    min-height: 28px;
    padding: 4px 11px;
    font-size: 0.8rem;
  }
  .p-works-archive__card-content {
    padding: 21px 2px 0;
  }
  .p-works-archive__card-title {
    font-size: 1.8rem;
    line-height: 1.65;
  }
  .p-works-archive__specs {
    margin-top: 13px;
  }
  .p-works-archive__spec {
    font-size: 0.94rem;
  }
  .p-works-archive__excerpt {
    margin-top: 14px;
    font-size: 1.02rem;
    line-height: 1.85;
    -webkit-line-clamp: 3;
  }
  .p-works-archive__more {
    padding-top: 19px;
  }
  .p-works-archive__more-label {
    font-size: 0.8rem;
  }
  .p-works-archive__more-arrow {
    width: 29px;
  }
  .p-works-archive {
    /* Pagination */
  }
  .p-works-archive__pagination {
    margin-top: 64px;
  }
  .p-works-archive__pagination .nav-links {
    gap: 6px;
  }
  .p-works-archive__pagination .page-numbers {
    min-width: 39px;
    height: 39px;
    font-size: 0.92rem;
  }
  .p-works-archive {
    /* Empty */
  }
  .p-works-archive__empty {
    padding: 42px 20px;
  }
  .p-works-archive__empty-title {
    font-size: 2rem;
  }
  .p-works-archive__empty-text {
    font-size: 1.02rem;
  }
  .p-works-archive__empty-link {
    width: 100%;
    min-width: 0;
  }
}
/* ==================================================
Small smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-works-archive__hero-inner, .p-works-archive__inner {
    width: calc(100% - 24px);
  }
  .p-works-archive__title {
    font-size: 2.7rem;
  }
  .p-works-archive__heading {
    display: block;
  }
  .p-works-archive__result {
    margin-top: 8px;
    text-align: left;
  }
  .p-works-archive__card-title {
    font-size: 1.65rem;
  }
  .p-works-archive__pagination .page-numbers {
    min-width: 36px;
    height: 36px;
  }
}
/* ==================================================
Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-works-archive a, .p-works-archive__filter-link, .p-works-archive__thumbnail-image, .p-works-archive__card-title, .p-works-archive__more-arrow,
  .p-works-archive .page-numbers {
    transition: none;
  }
}
/* ==================================================
Maintenance
================================================== */
body.p-maintenance {
  margin: 0;
  overflow-x: hidden;
  background-color: #172019;
  color: #fff;
}

.p-maintenance__page {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}
.p-maintenance {
  /* ========================================
  Background
  ======================================== */
}
.p-maintenance__background {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.p-maintenance__background-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.03);
}
.p-maintenance__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(17, 26, 19, 0.95) 0%, rgba(23, 32, 25, 0.86) 48%, rgba(23, 32, 25, 0.5) 76%, rgba(23, 32, 25, 0.3) 100%);
}
.p-maintenance__overlay::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.04) 55%, rgba(0, 0, 0, 0.44));
  content: "";
}
.p-maintenance {
  /* ========================================
  Main
  ======================================== */
}
.p-maintenance__main {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  width: min(100%, 1240px);
  min-height: 100svh;
  padding-block: clamp(60px, 8vw, 110px);
}
.p-maintenance__content {
  width: min(100%, 650px);
  padding: clamp(38px, 5vw, 68px) clamp(30px, 5vw, 66px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(23, 32, 25, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
.p-maintenance {
  /* ========================================
  Logo
  ======================================== */
}
.p-maintenance__logo {
  margin-bottom: clamp(38px, 5vw, 58px);
}
.p-maintenance__logo-image {
  display: block;
  width: auto;
  max-width: min(190px, 58vw);
  height: auto;
  max-height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
  filter: brightness(0) invert(1);
}
.p-maintenance {
  /* ========================================
  Text
  ======================================== */
}
.p-maintenance__english {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.66);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.25em;
}
.p-maintenance__title {
  position: relative;
  margin: 0;
  padding-bottom: 26px;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(3rem, 4.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.075em;
}
.p-maintenance__title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.68);
  content: "";
}
.p-maintenance__description {
  margin-top: clamp(26px, 3.5vw, 38px);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.2rem, 1.45vw, 1.4rem);
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-maintenance__description p {
  margin: 0;
}
.p-maintenance__description p + p {
  margin-top: 14px;
}
.p-maintenance__site-name {
  margin: clamp(28px, 4vw, 42px) 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Zen Old Mincho", serif;
  font-size: 1.1rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.p-maintenance {
  /* ========================================
  Login
  ======================================== */
}
.p-maintenance__login {
  margin-top: clamp(34px, 4vw, 48px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.p-maintenance__login-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.25s ease;
}
.p-maintenance__login-link:hover {
  color: #fff;
}
.p-maintenance__login-link:hover .p-maintenance__login-arrow {
  transform: translateX(4px);
}
.p-maintenance__login-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 5px;
}
.p-maintenance__login-arrow {
  position: relative;
  display: block;
  width: 27px;
  height: 1px;
  background-color: currentColor;
  transition: transform 0.25s ease;
}
.p-maintenance__login-arrow::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

/* ==================================================
Tablet
================================================== */
@media (max-width: 1024px) {
  .p-maintenance__main {
    width: min(100% - 48px, 760px);
  }
  .p-maintenance__content {
    width: min(100%, 610px);
  }
}
/* ==================================================
Smartphone
================================================== */
@media (max-width: 768px) {
  .p-maintenance__background-image {
    -o-object-position: 64% center;
       object-position: 64% center;
  }
  .p-maintenance__overlay {
    background: linear-gradient(180deg, rgba(17, 26, 19, 0.72) 0%, rgba(17, 26, 19, 0.87) 52%, rgba(17, 26, 19, 0.96) 100%);
  }
  .p-maintenance__main {
    width: calc(100% - 32px);
    min-height: 100svh;
    padding-block: 42px;
  }
  .p-maintenance__content {
    width: 100%;
    padding: 31px 23px 34px;
    background-color: rgba(17, 26, 19, 0.62);
  }
  .p-maintenance__logo {
    margin-bottom: 34px;
  }
  .p-maintenance__logo-image {
    max-width: 150px;
    max-height: 58px;
  }
  .p-maintenance__english {
    margin-bottom: 8px;
    font-size: 0.88rem;
  }
  .p-maintenance__title {
    padding-bottom: 21px;
    font-size: 2.65rem;
  }
  .p-maintenance__description {
    margin-top: 23px;
    font-size: 1.1rem;
    line-height: 1.9;
  }
  .p-maintenance__description br {
    display: none;
  }
  .p-maintenance__site-name {
    margin-top: 26px;
    font-size: 1rem;
  }
  .p-maintenance__login {
    margin-top: 31px;
    padding-top: 20px;
  }
}
/* ==================================================
Small Smartphone
================================================== */
@media screen and (max-width: 374px) {
  .p-maintenance__main {
    width: calc(100% - 24px);
  }
  .p-maintenance__content {
    padding-inline: 19px;
  }
  .p-maintenance__title {
    font-size: 2.35rem;
  }
  .p-maintenance__description {
    font-size: 1.04rem;
  }
}
/* ==================================================
Reduced Motion
================================================== */
@media (prefers-reduced-motion: reduce) {
  .p-maintenance__login-link, .p-maintenance__login-arrow {
    transition: none;
  }
}