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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  background: #ffffff;
  color: #102033;
  line-height: 1.8;
}

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

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

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

/* =========================
    Button
  ========================= */

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.4;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.c-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.c-button--primary {
  background: #0b6b5f;
  color: #ffffff;
}

.c-button--light {
  background: #ffffff;
  color: #0b6b5f;
}

/* =========================
  Header
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 32, 51, 0.06);
  backdrop-filter: blur(12px);
}

/* WordPress管理バー表示中の調整 */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.site-header__inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-logo,
.site-header__logo,
.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-logo__image {
  width: 42px;
  height: auto;
}

.site-logo__text {
  color: #102033;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none !important;
}

.global-nav.site-header__nav {
  flex: 1;
  width: auto;
  margin-left: auto;
}

.site-header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu > .menu-item {
  margin: 0;
  padding: 0;
}

.site-header__menu > .menu-item > a {
  display: inline-flex;
  align-items: center;
  color: #142033;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.site-header__menu > .menu-item > a:hover,
.site-header__menu > .current-menu-item > a,
.site-header__menu > .current_page_item > a {
  color: #0b6b5f;
}

.site-header__menu > .menu-contact > a {
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: #0b6b5f;
  color: #fff;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(11, 107, 95, 0.18);
}

.site-header__menu > .menu-contact > a:hover {
  background: #09584f;
  color: #fff;
  opacity: 1;
}

@media screen and (max-width: 900px) {
  .site-header__inner {
    width: min(100%, calc(100% - 32px));
    min-height: 64px;
    justify-content: flex-end;
    gap: 0;
  }

  .site-logo,
  .site-header__logo,
  .site-header__brand {
    display: none !important;
  }

  .nav-toggle {
    display: inline-grid !important;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(16, 32, 51, 0.16);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    z-index: 1102;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #102033;
  }

  .nav-toggle span + span {
    margin-top: 5px;
  }

  .site-header .global-nav.site-header__nav {
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    z-index: 1101;
    display: none !important;
    width: auto;
    margin-left: 0;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(16, 32, 51, 0.16);
  }

  .site-header .global-nav.site-header__nav.is-open {
    display: block !important;
  }

  .site-header .global-nav.site-header__nav .site-header__menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .site-header .global-nav.site-header__nav .site-header__menu > .menu-item {
    width: 100%;
  }

  .site-header .global-nav.site-header__nav .site-header__menu > .menu-item > a {
    display: flex;
    width: 100%;
    padding: 14px 10px;
    color: #102033;
    font-size: 15px;
    font-weight: 800;
  }

  .site-header .global-nav.site-header__nav .site-header__menu > .menu-contact {
    margin-top: 10px;
  }

  .site-header .global-nav.site-header__nav .site-header__menu > .menu-contact > a {
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: #0b6b5f;
    color: #fff;
  }
}

/* =========================
    Footer
  ========================= */

.site-footer {
  margin-top: 96px;
  padding: 64px 0 24px;
  background: #102033;
  color: #ffffff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 48px;
}

.site-footer__brand p,
.site-footer__cta p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.site-footer__logo {
  display: inline-block;
}

.site-footer__logo-image {
  width: 180px;
  height: auto;
}

.site-footer__heading {
  display: block;
  margin-bottom: 16px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.footer-nav a:hover {
  color: #ffffff;
}

.site-footer__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
}

.page-top-link {
  font-size: 14px;
  font-weight: 800;
}

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

@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .site-footer {
    margin-top: 72px;
    padding-top: 48px;
  }
}

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

.site-main {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 96px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(11, 107, 95, 0.12), transparent 34%),
    linear-gradient(135deg, #f7faf9 0%, #ffffff 58%, #eef7f5 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 56px;
}

.hero__content {
  max-width: 680px;
  min-width: 0;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 0 14px;
  border-radius: 999px;
  background: #e4f3ef;
  color: #0b6b5f;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero__title {
  margin: 24px 0 0;
  color: #102033;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero__lead {
  max-width: 660px;
  margin-top: 24px;
  color: #33485a;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.6;
  font-weight: 600;
}

.hero__text {
  max-width: 620px;
  margin-top: 18px;
  color: #4f6475;
  font-size: 16px;
  line-height: 1.9;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero__points li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 32, 51, 0.08);
  color: #33485a;
  font-size: 13px;
  font-weight: 800;
}

.hero__visual {
  position: relative;
  width: 100%;
  min-width: 0;
  justify-self: end;
}

.hero__imageCard {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  border-radius: 32px;
  background: #dfeeea;
  box-shadow: 0 28px 70px rgba(16, 32, 51, 0.18);
}

.hero__imageCard::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  z-index: 1;
  pointer-events: none;
}

.hero__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.sp-only {
  display: none;
}

.u-nowrap {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero {
    padding: 72px 0 64px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(32px, 8vw, 44px);
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__visual {
    max-width: 360px;
    margin-inline: auto;
    justify-self: center;
  }

  .hero__imageCard {
    max-width: 360px;
    border-radius: 28px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 40px 0 48px;
  }

  .hero__label {
     font-size: 11px;
    padding: 0 12px;
    min-height: 32px;
  }

  .hero__title {
    font-size: 30px;
    line-height: 1.32;
    letter-spacing: 0.02em;
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.7;
  }

  .hero__text {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.9;
  }

  .hero__points {
    gap: 8px;
    margin-top: 22px;
  }

  .hero__points li {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero__visual {
    max-width: 320px;
  }

  .hero__imageCard {
    max-width: 320px;
    border-radius: 22px;
  }

  .hero__image {
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
    object-position: center top;
  }

  .sp-only {
    display: block;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 56px 0 52px;
  }

  .hero__title {
    line-height: 1.28;
    letter-spacing: -0.03em;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero__buttons .c-button {
    width: 100%;
  }

  .hero__points {
    gap: 8px;
  }

  .hero__points li {
    font-size: 12px;
  }
}

/* =========================
  Section Heading
========================= */

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading__label {
  margin: 0 0 10px;
  font-family: "Outfit", system-ui, sans-serif;
  color: #0b6b5f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading__title {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.35;
  letter-spacing: -0.04em;
  color: #102033;
}

.section-heading__text {
  margin: 18px 0 0;
  color: #4f6475;
  font-size: 16px;
  line-height: 2;
}

/* =========================
    Profile
  ========================= */

.profile-section {
  padding: 96px 0;
  background: #ffffff;
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 32px;
  align-items: stretch;
}

.profile-card__body,
.profile-card__scope {
  border-radius: 32px;
  background: #f7faf9;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 20px 50px rgba(16, 32, 51, 0.06);
}

.profile-card__body {
  padding: 42px;
}

.profile-card__label,
.profile-card__scope-kicker {
  margin: 0 0 12px;
  font-family: "Outfit", system-ui, sans-serif;
  color: #0b6b5f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-card__body h3 {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.profile-card__body p {
  margin: 20px 0 0;
  color: #4f6475;
  font-size: 16px;
  line-height: 2;
}

.profile-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
}

.profile-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
}

.profile-list dt {
  color: #102033;
  font-weight: 900;
}

.profile-list dd {
  margin: 0;
  color: #4f6475;
}

.profile-card__scope {
  position: relative;
  overflow: hidden;
  padding: 38px;
  background: radial-gradient(circle at top right, rgba(11, 107, 95, 0.16), transparent 36%), #102033;
  color: #ffffff;
}

.profile-card__scope h3 {
  margin: 0;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.45;
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.profile-card__scope ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.profile-card__scope li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.profile-card__scope li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #7dd3c7;
}

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

.profile-stat {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.05);
}

.profile-stat p {
  margin: 12px 0 0;
  color: #4f6475;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
}

.profile-stat__number {
  display: block;
  color: #0b6b5f;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.profile-stat__label {
  display: block;
  margin-top: 10px;
  color: #4f6475;
  font-size: 14px;
  font-weight: 800;
}

.u-nowrap {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .profile-section {
    padding: 72px 0;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-stats {
    grid-template-columns: 1fr;
  }

  .profile-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .profile-card__body,
  .profile-card__scope {
    padding: 28px;
    border-radius: 24px;
  }

  .profile-card__scope h3 {
    font-size: 24px;
  }

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

/* =========================
  Service
========================= */

.service-section {
  padding: 96px 0;
  background: radial-gradient(circle at top right, rgba(11, 107, 95, 0.08), transparent 34%), #f7faf9;
}

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

.service-card {
  position: relative;
  min-height: 280px;
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.06);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -54px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(11, 107, 95, 0.08);
  opacity: 0.8;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(16, 32, 51, 0.1);
}

.service-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e4f3ef;
  color: #0b6b5f;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card h3 {
  margin: 26px 0 0;
  color: #102033;
  font-size: 23px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 16px 0 0;
  color: #4f6475;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .service-section {
    padding: 72px 0;
  }

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

  .service-card {
    min-height: auto;
    padding: 26px;
    border-radius: 24px;
  }

  .service-card h3 {
    font-size: 21px;
  }
}

.work-card__noimage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: #edf4f2;
  color: #4f6475;
  font-weight: 800;
}

/* =========================
  Works
========================= */

.works-section {
  padding: 96px 0;
  background: #ffffff;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.work-card {
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 20px 52px rgba(16, 32, 51, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(16, 32, 51, 0.12);
}

.work-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.work-card__image {
  margin: 0;
  overflow: hidden;
  background: #edf4f2;
  aspect-ratio: 16 / 10;
}

.work-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  will-change: transform;
}

.work-card:hover .work-card__image img {
  transform: scale(1.04);
}

.work-card__noimage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: #edf4f2;
  color: #4f6475;
  font-weight: 800;
}

.work-card__point {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
}

.work-card__point h4 {
  margin: 0 0 10px;
  color: #0b6b5f;
  font-size: 14px;
  font-weight: 900;
}

.work-card__point p {
  margin: 0;
  color: #4f6475;
  font-size: 15px;
  line-height: 1.9;
}

.work-card__body {
  padding: 30px;
}

.work-card__category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin: 0 0 14px;
  border-radius: 999px;
  background: #e4f3ef;
  color: #0b6b5f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.work-card h3 {
  margin: 0;
  color: #102033;
  font-size: 22px;
  line-height: 1.55;
}

.work-card__body > p:not(.work-card__category) {
  margin: 16px 0 0;
  color: #4f6475;
  font-size: 15px;
  line-height: 1.9;
}

.work-card__meta {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
}

.work-card__meta dt {
  color: #102033;
  font-size: 13px;
  font-weight: 900;
}

.work-card__meta dd {
  margin: 0;
  color: #4f6475;
  font-size: 13px;
  line-height: 1.8;
}

@media (max-width: 860px) {
  .works-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .works-section {
    padding: 72px 0;
  }

  .work-card {
    border-radius: 24px;
  }

  .work-card__body {
    padding: 24px;
  }

  .work-card h3 {
    font-size: 20px;
  }
}

/* =========================================
  制作実績詳細 前後ナビ
========================================= */

.work-single-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}

.work-single-nav__item {
  min-width: 0;
}

.work-single-nav__item a {
  display: block;
  height: 100%;
  padding: 22px 24px;
  border: 1px solid #dce5ec;
  border-radius: 18px;
  background: #fff;
  color: #142033;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(15, 35, 60, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.work-single-nav__item a:hover {
  transform: translateY(-2px);
  border-color: #15735f;
  box-shadow: 0 14px 34px rgba(15, 35, 60, 0.1);
}

.work-single-nav__label {
  display: block;
  margin-bottom: 8px;
  color: #15735f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.work-single-nav__title {
  display: block;
  color: #142033;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.work-single-nav__item--prev a {
  text-align: left;
}

.work-single-nav__item--next a {
  text-align: right;
}

.work-single-nav__item--prev .work-single-nav__label::before {
  content: "← ";
}

.work-single-nav__item--next .work-single-nav__label::after {
  content: " →";
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .work-single-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .work-single-nav__item {
    width: 100%;
  }

  .work-single-nav__item a {
    display: block;
    width: 100%;
    padding: 20px;
    border-radius: 16px;
  }

  .work-single-nav__item--next a {
    text-align: left;
  }

  .work-single-nav__label {
    font-size: 13px;
  }

  .work-single-nav__title {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* =========================
  Sample Sites
========================= */

.sample-section {
  padding: 96px 0;
  background: radial-gradient(circle at top left, rgba(11, 107, 95, 0.08), transparent 34%), #f7faf9;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sample-grid .work-card {
  border-radius: 26px;
}

.sample-grid .work-card__body {
  padding: 26px;
}

.sample-grid .work-card h3 {
  font-size: 20px;
}

@media (max-width: 980px) {
  .sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sample-section {
    padding: 72px 0;
  }

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

/* =========================
  Price Section
========================= */

.price-section {
  padding: 96px 0;
  background: #ffffff;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: 40px;
  align-items: start;
}

.price-content {
  min-width: 0;
}

/* Notes */
.price-notes {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.price-notes li {
  position: relative;
  padding-left: 22px;
  color: #102033;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.8;
}

.price-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0b6b5f;
}

/* =========================
  Plan Detail
========================= */

.plan-detail {
  margin-top: 34px;
  padding: 30px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.1);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.06);
}

.plan-detail__label {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e4f3ef;
  color: #0b6b5f;
  font-size: 12px;
  font-weight: 900;
}

.plan-detail h3 {
  margin: 18px 0 0;
  color: #102033;
  font-size: 28px;
  line-height: 1.4;
}

.plan-detail__price {
  margin: 8px 0 0;
  color: #102033;
  font-size: 16px;
  font-weight: 900;
}

.plan-detail__box {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
}

.plan-detail__box h4 {
  margin: 0 0 10px;
  color: #0b6b5f;
  font-size: 14px;
  font-weight: 900;
}

.plan-detail__box p {
  margin: 0;
  color: #4f6475;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
}

.plan-detail__box ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
  padding-left: 18px;
  color: #4f6475;
  font-size: 14px;
  line-height: 1.8;
}

/* =========================
  Price Simulator
========================= */

.price-simulator {
  position: sticky;
  top: 96px;
  padding: 32px;
  border-radius: 28px;
  background: #0f2238;
  color: #ffffff;
}

.price-simulator__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  margin-bottom: 28px;
}

.price-simulator__header p,
.price-simulator__header strong,
.price-simulator__header span {
  margin: 0;
}

.price-simulator__header p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.price-simulator__header strong {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
}

.price-simulator__header span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 800;
  align-self: start;
}

/* =========================
  Price Fields
========================= */

.price-field {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.price-field:first-of-type {
  margin-top: 0;
}

.price-field > label,
.price-field__label {
  display: block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.6;
}

.price-field select,
.price-field input[type="number"] {
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: #ffffff;
  color: #102033;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.price-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, #102033 50%), linear-gradient(135deg, #102033 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.price-field small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

/* Pages Input */
.price-field--pages .price-pages-input {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-field--pages input[type="number"] {
  width: 120px;
  min-width: 120px;
  min-height: 60px;
  padding: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  border-radius: 16px;
}

.price-pages-input__unit {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 800;
}

/* Radio / Checkbox */
.price-field .price-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.price-check input[type="radio"],
.price-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}

.price-check span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

/* =========================
  Selected Plan
========================= */

.price-selected-plan {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.price-selected-plan__label {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.price-selected-plan h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
}

.price-selected-plan p:not(.price-selected-plan__label) {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.8;
}

/* =========================
  Price Result
========================= */

.price-result {
  margin-top: 32px;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  color: #102033;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.price-result__label {
  margin: 0;
  color: #0b6b5f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.price-result__amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 12px 0 0;
  color: #102033;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-result__amount .js-price-total {
  font: inherit;
}

.price-result__monthly {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 32, 51, 0.1);
  color: #4f6475;
  font-size: 14px;
  font-weight: 900;
}

/* =========================
  Price Breakdown
========================= */

.price-breakdown {
  margin-top: 22px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-breakdown h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
}

.price-breakdown ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-breakdown li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.price-breakdown li span {
  color: #ffffff;
  font-weight: 900;
  white-space: nowrap;
}

/* =========================
  Price Caution
========================= */

.price-caution {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.8;
  font-weight: 700;
}

/* =========================
  相談する
========================= */

.price-consult {
  margin-top: 24px;
  padding: 24px;
  border-radius: 22px;
  background: #f7faf9;
  border: 1px solid rgba(16, 32, 51, 0.08);
}

.price-consult__text {
  margin: 0 0 16px;
  color: #4f6475;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
}

.price-consult .c-button {
  width: 100%;
  justify-content: center;
}

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

@media (max-width: 980px) {
  .price-layout {
    grid-template-columns: 1fr;
  }

  .price-simulator {
    position: static;
  }
}

@media (max-width: 640px) {
  .price-section {
    padding: 72px 0;
  }

  .price-simulator {
    padding: 24px;
    border-radius: 22px;
  }

  .price-simulator__header strong {
    font-size: 20px;
  }

  .plan-detail {
    padding: 24px;
    border-radius: 22px;
  }

  .plan-detail h3 {
    font-size: 24px;
  }

  .plan-detail__box ul {
    grid-template-columns: 1fr;
  }

  .price-result {
    padding: 24px;
    border-radius: 20px;
  }

  .price-result__amount {
    font-size: 40px;
  }

  .price-breakdown li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* =========================
  Privacy Policy Page
========================= */

.privacy-section {
  padding: 96px 0;
  background: #ffffff;
}

.privacy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.06);
}

.privacy-content h1 {
  margin: 0 0 28px;
  color: #102033;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.privacy-content h2 {
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(16, 32, 51, 0.1);
  color: #102033;
  font-size: 22px;
  line-height: 1.5;
}

.privacy-content p {
  margin: 0;
  color: #4f6475;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}

.privacy-content p + p {
  margin-top: 18px;
}

.privacy-content ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: #4f6475;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
}

.privacy-content li::marker {
  color: #0b6b5f;
}

.privacy-date {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 32, 51, 0.1);
}

.privacy-date p {
  font-size: 14px;
  line-height: 1.8;
  color: #4f6475;
}

.privacy-content a {
  color: #0b6b5f;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-content a:hover {
  text-decoration: none;
}

@media (max-width: 640px) {
  .privacy-section {
    padding: 72px 0;
  }

  .privacy-content {
    padding: 28px;
    border-radius: 22px;
  }

  .privacy-content h1 {
    font-size: 30px;
  }

  .privacy-content h2 {
    margin-top: 40px;
    font-size: 20px;
  }

  .privacy-content p,
  .privacy-content ul {
    font-size: 15px;
  }
}

/* =========================
  404 Page
========================= */

.not-found-section {
  display: grid;
  align-items: center;
  min-height: 70vh;
  padding: 96px 0;
  background: radial-gradient(circle at top left, rgba(11, 107, 95, 0.08), transparent 34%), #f7faf9;
}

.not-found-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.06);
  text-align: center;
}

.not-found-content__label {
  margin: 0 0 14px;
  color: #0b6b5f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.not-found-content h1 {
  margin: 0;
  color: #102033;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.not-found-content > p:not(.not-found-content__label) {
  margin: 22px auto 0;
  max-width: 620px;
  color: #4f6475;
  font-size: 16px;
  line-height: 2;
  font-weight: 600;
}

.not-found-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.not-found-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f7faf9;
  border: 1px solid rgba(16, 32, 51, 0.1);
  color: #102033;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.not-found-link:hover {
  transform: translateY(-2px);
  background: #e4f3ef;
}

.not-found-link--primary {
  background: #0b6b5f;
  color: #ffffff;
  border-color: #0b6b5f;
}

.not-found-link--primary:hover {
  background: #09584f;
}

@media (max-width: 640px) {
  .not-found-section {
    min-height: auto;
    padding: 72px 0;
  }

  .not-found-content {
    padding: 30px;
    border-radius: 24px;
    text-align: left;
  }

  .not-found-links {
    grid-template-columns: 1fr;
  }

  .not-found-link {
    width: 100%;
  }
}

/* =========================
  Flow Section
========================= */

.flow-section {
  padding: 96px 0;
  background: #f7faf9;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 40px;
  margin-top: 42px;
}

.flow-card {
  position: relative;
  min-height: 190px;
  padding: 28px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.05);
}

.flow-card::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  transform: translate(-50%, -50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #0b6b5f;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(11, 107, 95, 0.18);
}

.flow-card:last-child::after {
  display: none;
}

.flow-card__number {
  margin: 0 0 22px;
  color: #0b6b5f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.flow-card h3 {
  margin: 0;
  color: #102033;
  font-size: 20px;
  line-height: 1.5;
}

.flow-card p:not(.flow-card__number) {
  margin: 14px 0 0;
  color: #4f6475;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .flow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-card::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .flow-section {
    padding: 72px 0;
  }

  .flow-list {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .flow-card {
    min-height: auto;
    padding: 24px;
    border-radius: 22px;
  }

  .flow-card__number {
    margin-bottom: 14px;
  }
}

/* =========================
  FAQ Section
========================= */

.faq-section {
  padding: 96px 0;
  background: #ffffff;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.faq-item {
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.1);
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.04);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 20px 64px 20px 24px;
  color: #102033;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  border-radius: 999px;
  background: #e4f3ef;
  color: #0b6b5f;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  color: #0b6b5f;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__answer {
  padding: 0 24px 24px 64px;
}

.faq-item__answer p {
  margin: 0;
  color: #4f6475;
  font-size: 15px;
  line-height: 2;
  font-weight: 600;
}

@media (max-width: 640px) {
  .faq-section {
    padding: 72px 0;
  }

  .faq-list {
    margin-top: 32px;
  }

  .faq-item summary {
    min-height: 64px;
    padding: 18px 52px 18px 18px;
    font-size: 15px;
  }

  .faq-item summary::before {
    width: 26px;
    height: 26px;
    margin-right: 10px;
    font-size: 12px;
  }

  .faq-item summary::after {
    right: 18px;
  }

  .faq-item__answer {
    padding: 0 18px 22px 54px;
  }

  .faq-item__answer p {
    font-size: 14px;
  }
}

/* =========================
  Contact Form Section
========================= */

.contact-form-section {
  padding: 96px 0;
  background: radial-gradient(circle at top left, rgba(11, 107, 95, 0.08), transparent 34%), #f7faf9;
}

.contact-form-box {
  max-width: 720px;
  margin: 42px auto 0;
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.06);
}

/* Contact Form 7 inner */
.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form p {
  margin: 0;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: #102033;
  font-size: 14px;
  font-weight: 900;
}

/* CF7 wrapper */
.form-field .wpcf7-form-control-wrap {
  display: block;
}

/* input / select / textarea */
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 12px;
  background: #ffffff;
  color: #102033;
  font-size: 15px;
  line-height: 1.6;
}

.form-field input,
.form-field select {
  min-height: 48px;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(79, 100, 117, 0.58);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(11, 107, 95, 0.18);
  border-color: #0b6b5f;
}

/* Acceptance */
.form-acceptance {
  color: #4f6475;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

.form-acceptance .wpcf7-form-control-wrap {
  display: block;
}

.form-acceptance .wpcf7-list-item {
  margin: 0;
}

.form-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  flex-shrink: 0;
}

.form-acceptance a {
  color: #0b6b5f;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Submit */
.form-submit-wrap {
  display: flex;
  justify-content: center;
}

.form-submit,
.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 260px;
  min-height: 50px;
  padding: 0 34px;
  border: none;
  border-radius: 999px;
  background: #0b6b5f;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.form-submit:hover,
.wpcf7-submit:hover {
  transform: translateY(-2px);
  background: #09584f;
}

/* CF7 messages */
.wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}

.wpcf7-response-output {
  margin: 18px 0 0 !important;
  padding: 14px 16px !important;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.7;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #d64545;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .contact-form-section {
    padding: 72px 0;
  }

  .contact-form-box {
    max-width: none;
    margin-top: 32px;
    padding: 24px;
    border-radius: 24px;
  }

  .form-field input,
  .form-field select {
    min-height: 48px;
  }

  .form-field textarea {
    min-height: 140px;
  }

  .form-submit,
  .wpcf7-submit {
    width: 100%;
    min-width: 0;
  }
}

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

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.contact-method {
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.1);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.06);
  color: #102033;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 107, 95, 0.28);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.1);
}

.contact-method span {
  color: #0b6b5f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.contact-method strong {
  color: #102033;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 900;
}

@media (max-width: 900px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-method {
    min-height: auto;
  }
}

/* =========================
  Price Page
========================= */

.price-page-section {
  padding: 96px 0;
  background: #ffffff;
}

.price-page-intro {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.price-page-intro h2 {
  margin: 0;
  color: #102033;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.4;
}

.price-page-intro p {
  margin: 18px 0 0;
  color: #4f6475;
  font-size: 16px;
  line-height: 2;
  font-weight: 600;
}

.price-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.price-plan-card {
  padding: 32px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.06);
}

.price-plan-card--featured {
  border-color: rgba(11, 107, 95, 0.28);
  box-shadow: 0 22px 58px rgba(11, 107, 95, 0.12);
}

.price-plan-card__label {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e4f3ef;
  color: #0b6b5f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.price-plan-card h3 {
  margin: 0;
  color: #102033;
  font-size: 24px;
  line-height: 1.4;
}

.price-plan-card__price {
  margin: 14px 0 0;
  color: #102033;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.3;
}

.price-plan-card__text {
  margin: 18px 0 0;
  color: #4f6475;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 600;
}

.price-plan-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: #4f6475;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.price-plan-card li::marker {
  color: #0b6b5f;
}

/* Options */
.price-option-section {
  padding: 96px 0;
  background: #f7faf9;
}

.price-option-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 42px auto 0;
}

.price-option-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.04);
}

.price-option-item span {
  color: #102033;
  font-size: 15px;
  font-weight: 900;
}

.price-option-item strong {
  color: #0b6b5f;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

/* Notice */
.price-notice-section {
  padding: 96px 0;
  background: #ffffff;
}

.price-notice-box {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 28px;
  background: #102033;
  color: #ffffff;
}

.price-notice-box h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.5;
}

.price-notice-box ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
}

/* CTA */
.price-cta-section {
  padding: 96px 0;
  background: radial-gradient(circle at top left, rgba(11, 107, 95, 0.08), transparent 34%), #f7faf9;
}

.price-cta-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.06);
  text-align: center;
}

.price-cta-box h2 {
  margin: 0;
  color: #102033;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.4;
}

.price-cta-box p:not(.section-heading__label) {
  margin: 18px 0 0;
  color: #4f6475;
  font-size: 16px;
  line-height: 2;
  font-weight: 600;
}

.price-cta-box .c-button {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .price-plan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .price-page-section,
  .price-option-section,
  .price-notice-section,
  .price-cta-section {
    padding: 72px 0;
  }

  .price-plan-card,
  .price-notice-box,
  .price-cta-box {
    padding: 26px;
    border-radius: 24px;
  }

  .price-option-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* =========================
  Samurai Service Page
========================= */

.samurai-page {
  background: #ffffff;
}

.samurai-label {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e4f3ef;
  color: #0b6b5f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.samurai-hero {
  padding: 96px 0;
  background: radial-gradient(circle at top left, rgba(11, 107, 95, 0.1), transparent 34%), #f7faf9;
}

.samurai-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.samurai-hero__content {
  display: grid;
  gap: 22px;
}

.samurai-hero__title {
  margin: 0;
  color: #102033;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.18;
  letter-spacing: 0.02em;
}

.samurai-hero__lead {
  margin: 0;
  color: #102033;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.7;
  font-weight: 900;
}

.samurai-hero__text {
  margin: 0;
  color: #4f6475;
  font-size: 16px;
  line-height: 2;
  font-weight: 600;
}

.samurai-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.samurai-hero__visual {
  min-width: 0;
}

.samurai-mock {
  position: relative;
  padding: 42px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.08);
}

.samurai-mock__label {
  margin: 0 0 14px;
  color: #0b6b5f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.samurai-mock h2 {
  margin: 0;
  color: #102033;
  font-size: 26px;
  line-height: 1.6;
}

.samurai-mock__lines {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.samurai-mock__lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #d9e9e5;
}

.samurai-mock__lines span:nth-child(1) {
  width: 82%;
}

.samurai-mock__lines span:nth-child(2) {
  width: 68%;
}

.samurai-mock__lines span:nth-child(3) {
  width: 54%;
}

.samurai-mock__speech {
  margin-top: 34px;
  padding: 18px 20px;
  border-radius: 20px;
  background: #f7faf9;
  border: 1px solid rgba(11, 107, 95, 0.14);
  color: #0b6b5f;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 900;
}

/* Comic */
.samurai-comic-section {
  padding: 96px 0;
  background: #ffffff;
}

.samurai-comic-image {
  max-width: 1120px;
  margin: 44px auto 0;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.08);
}

.samurai-comic-image img {
  display: block;
  width: 100%;
  height: auto;
}

.samurai-comic-summary {
  max-width: 900px;
  margin: 32px auto 0;
  padding: 24px 28px;
  border-radius: 22px;
  background: #f7faf9;
  border: 1px solid rgba(11, 107, 95, 0.14);
}

.samurai-comic-summary p {
  margin: 0;
  color: #4f6475;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 700;
}

/* Problems */
.samurai-problems-section {
  padding: 96px 0;
  background: #f7faf9;
}

.samurai-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.samurai-problem-card {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.05);
}

.samurai-problem-card__number {
  margin: 0 0 14px;
  color: #0b6b5f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.samurai-problem-card h3 {
  margin: 0;
  color: #102033;
  font-size: 20px;
  line-height: 1.5;
}

.samurai-problem-card p:not(.samurai-problem-card__number) {
  margin: 14px 0 0;
  color: #4f6475;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 600;
}

/* Cause */
.samurai-cause-section {
  padding: 96px 0;
  background: #ffffff;
}

.samurai-cause-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.samurai-cause-content {
  display: grid;
  gap: 20px;
}

.samurai-cause-content h2 {
  margin: 0;
  color: #102033;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.samurai-cause-content p:not(.samurai-label) {
  margin: 0;
  color: #4f6475;
  font-size: 16px;
  line-height: 2;
  font-weight: 600;
}

.samurai-cause-card {
  padding: 36px;
  border-radius: 30px;
  background: #102033;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.14);
}

.samurai-cause-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.5;
}

.samurai-cause-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.samurai-cause-card li {
  position: relative;
  padding: 16px 18px 16px 42px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 800;
}

.samurai-cause-card li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0b6b5f;
  transform: translateY(-50%);
}

/* Analysis */
.samurai-analysis-section {
  padding: 96px 0;
  background: #102033;
}

.samurai-analysis-section .section-heading__label {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.samurai-analysis-section .section-heading__title {
  color: #ffffff;
}

.samurai-analysis-section .section-heading__text {
  color: rgba(255, 255, 255, 0.72);
}

.samurai-analysis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.samurai-analysis-card {
  padding: 32px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.samurai-analysis-card__number {
  margin: 0 0 18px;
  color: #7dd3c7;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.samurai-analysis-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.6;
}

.samurai-analysis-card p:not(.samurai-analysis-card__number) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 600;
}

/* CTA */
.samurai-cta-section {
  padding: 96px 0;
  background: radial-gradient(circle at top left, rgba(11, 107, 95, 0.1), transparent 34%), #f7faf9;
}

.samurai-cta-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 54px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.08);
  text-align: center;
}

.samurai-cta-box .samurai-label {
  margin: 0 auto;
}

.samurai-cta-box h2 {
  margin: 22px 0 0;
  color: #102033;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.5;
}

.samurai-cta-box p:not(.samurai-label) {
  max-width: 720px;
  margin: 22px auto 0;
  color: #4f6475;
  font-size: 16px;
  line-height: 2;
  font-weight: 600;
}

.samurai-cta-box__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* Responsive */
@media (max-width: 1024px) {
  .samurai-hero__inner,
  .samurai-cause-layout {
    grid-template-columns: 1fr;
  }

  .samurai-problems-grid,
  .samurai-analysis-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .samurai-cause-card {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .samurai-hero,
  .samurai-comic-section,
  .samurai-problems-section,
  .samurai-cause-section,
  .samurai-analysis-section,
  .samurai-cta-section {
    padding: 72px 0;
  }

  .samurai-hero__inner {
    gap: 40px;
  }

  .samurai-hero__title {
    font-size: 40px;
  }

  .samurai-hero__lead {
    font-size: 20px;
  }

  .samurai-hero__buttons,
  .samurai-cta-box__buttons {
    flex-direction: column;
  }

  .samurai-hero__buttons .c-button,
  .samurai-cta-box__buttons .c-button {
    width: 100%;
  }

  .samurai-mock {
    padding: 28px;
    border-radius: 24px;
  }

  .samurai-mock h2 {
    font-size: 21px;
  }

  .samurai-comic-image {
    margin-top: 32px;
    border-radius: 18px;
  }

  .samurai-comic-summary {
    margin-top: 24px;
    padding: 20px;
    border-radius: 18px;
  }

  .samurai-problems-grid,
  .samurai-analysis-grid {
    grid-template-columns: 1fr;
  }

  .samurai-cause-layout {
    gap: 36px;
  }

  .samurai-cause-card {
    padding: 28px;
    border-radius: 24px;
  }

  .samurai-cause-card h3 {
    font-size: 22px;
  }

  .samurai-cta-box {
    padding: 36px 24px;
    border-radius: 26px;
  }
}

@media (max-width: 480px) {
  .samurai-hero__title {
    font-size: 34px;
  }

  .samurai-hero__text,
  .samurai-cause-content p:not(.samurai-label),
  .samurai-cta-box p:not(.samurai-label) {
    font-size: 15px;
    line-height: 1.9;
  }

  .samurai-comic-summary p {
    font-size: 14px;
    line-height: 1.9;
  }

  .samurai-problem-card,
  .samurai-analysis-card {
    padding: 24px;
    border-radius: 22px;
  }
}

/* =========================================
  /service/samurai/
  士業向けホームページ制作ページ 調整CSS
  文字サイズ・改行・余白・AI感軽減用
========================================= */

/* ページ全体 */
.page-template-page-service-samurai,
.page-template-page-service-samurai-php {
  color: #142033;
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
}

/* 本文の読みやすさ調整 */
.page-template-page-service-samurai main,
.page-template-page-service-samurai-php main {
  font-size: 16px;
  line-height: 1.85;
}

/* 段落 */
.page-template-page-service-samurai main p,
.page-template-page-service-samurai-php main p {
  font-size: 16px;
  line-height: 1.9;
  margin-top: 0;
  margin-bottom: 1.2em;
}

/* 英字ラベル */
.page-template-page-service-samurai .section-label,
.page-template-page-service-samurai .samurai-section-label,
.page-template-page-service-samurai [class*="label"],
.page-template-page-service-samurai-php .section-label,
.page-template-page-service-samurai-php .samurai-section-label,
.page-template-page-service-samurai-php [class*="label"] {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* 大見出し */
.page-template-page-service-samurai h1,
.page-template-page-service-samurai-php h1 {
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

/* セクション見出し */
.page-template-page-service-samurai h2,
.page-template-page-service-samurai-php h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* 小見出し */
.page-template-page-service-samurai h3,
.page-template-page-service-samurai-php h3 {
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

/* リード文 */
.page-template-page-service-samurai .lead,
.page-template-page-service-samurai .section-lead,
.page-template-page-service-samurai [class*="lead"],
.page-template-page-service-samurai-php .lead,
.page-template-page-service-samurai-php .section-lead,
.page-template-page-service-samurai-php [class*="lead"] {
  font-size: 17px;
  line-height: 1.9;
  max-width: 46em;
}

/* =========================================
  ファーストビュー
========================================= */

.page-template-page-service-samurai .samurai-fv,
.page-template-page-service-samurai .samurai-hero,
.page-template-page-service-samurai-php .samurai-fv,
.page-template-page-service-samurai-php .samurai-hero {
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

/* FV見出し */
.page-template-page-service-samurai .samurai-fv__title,
.page-template-page-service-samurai .samurai-hero__title,
.page-template-page-service-samurai-php .samurai-fv__title,
.page-template-page-service-samurai-php .samurai-hero__title {
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.22;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

/* FVリード */
.page-template-page-service-samurai .samurai-fv__lead,
.page-template-page-service-samurai .samurai-hero__lead,
.page-template-page-service-samurai-php .samurai-fv__lead,
.page-template-page-service-samurai-php .samurai-hero__lead {
  font-size: 18px;
  line-height: 1.85;
  font-weight: 700;
  max-width: 34em;
  margin-bottom: 18px;
}

/* FV本文 */
.page-template-page-service-samurai .samurai-fv__text,
.page-template-page-service-samurai .samurai-hero__text,
.page-template-page-service-samurai-php .samurai-fv__text,
.page-template-page-service-samurai-php .samurai-hero__text {
  font-size: 16px;
  line-height: 1.9;
  max-width: 40em;
}

/* ボタン */
.page-template-page-service-samurai .btn,
.page-template-page-service-samurai .button,
.page-template-page-service-samurai a[class*="btn"],
.page-template-page-service-samurai a[class*="button"],
.page-template-page-service-samurai-php .btn,
.page-template-page-service-samurai-php .button,
.page-template-page-service-samurai-php a[class*="btn"],
.page-template-page-service-samurai-php a[class*="button"] {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 999px;
}

/* =========================================
  漫画セクション
========================================= */

.page-template-page-service-samurai .samurai-comic,
.page-template-page-service-samurai-php .samurai-comic {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

/* 漫画画像 */
.page-template-page-service-samurai .samurai-comic-image,
.page-template-page-service-samurai-php .samurai-comic-image {
  max-width: 920px;
  margin: 40px auto 0;
}

.page-template-page-service-samurai .samurai-comic-image img,
.page-template-page-service-samurai-php .samurai-comic-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

/* 漫画下のまとめ文 */
.page-template-page-service-samurai .samurai-comic-summary,
.page-template-page-service-samurai-php .samurai-comic-summary {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 24px 32px;
  font-size: 16px;
  line-height: 1.9;
  border-radius: 16px;
}

/* =========================================
  課題カード
========================================= */

.page-template-page-service-samurai .problem-card,
.page-template-page-service-samurai .samurai-problem-card,
.page-template-page-service-samurai [class*="problem"] [class*="card"],
.page-template-page-service-samurai-php .problem-card,
.page-template-page-service-samurai-php .samurai-problem-card,
.page-template-page-service-samurai-php [class*="problem"] [class*="card"] {
  padding: 28px;
  border-radius: 18px;
}

/* カード番号 */
.page-template-page-service-samurai .problem-card__number,
.page-template-page-service-samurai .card-number,
.page-template-page-service-samurai-php .problem-card__number,
.page-template-page-service-samurai-php .card-number {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

/* カードタイトル */
.page-template-page-service-samurai .problem-card__title,
.page-template-page-service-samurai .samurai-card__title,
.page-template-page-service-samurai [class*="card"] h3,
.page-template-page-service-samurai-php .problem-card__title,
.page-template-page-service-samurai-php .samurai-card__title,
.page-template-page-service-samurai-php [class*="card"] h3 {
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 12px;
}

/* カード本文 */
.page-template-page-service-samurai .problem-card__text,
.page-template-page-service-samurai .samurai-card__text,
.page-template-page-service-samurai [class*="card"] p,
.page-template-page-service-samurai-php .problem-card__text,
.page-template-page-service-samurai-php .samurai-card__text,
.page-template-page-service-samurai-php [class*="card"] p {
  font-size: 15.5px;
  line-height: 1.85;
}

/* =========================================
  問い合わせが来ない原因
========================================= */

.page-template-page-service-samurai .samurai-root-cause,
.page-template-page-service-samurai .root-cause,
.page-template-page-service-samurai-php .samurai-root-cause,
.page-template-page-service-samurai-php .root-cause {
  padding-top: clamp(80px, 8vw, 120px);
  padding-bottom: clamp(80px, 8vw, 120px);
}

/* 左側見出し */
.page-template-page-service-samurai .samurai-root-cause h2,
.page-template-page-service-samurai .root-cause h2,
.page-template-page-service-samurai-php .samurai-root-cause h2,
.page-template-page-service-samurai-php .root-cause h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.45;
}

/* 右側ボックス */
.page-template-page-service-samurai .samurai-root-cause__box,
.page-template-page-service-samurai .root-cause__box,
.page-template-page-service-samurai-php .samurai-root-cause__box,
.page-template-page-service-samurai-php .root-cause__box {
  padding: 34px;
  border-radius: 22px;
}

/* 右側リスト */
.page-template-page-service-samurai .samurai-root-cause__box li,
.page-template-page-service-samurai .root-cause__box li,
.page-template-page-service-samurai-php .samurai-root-cause__box li,
.page-template-page-service-samurai-php .root-cause__box li {
  font-size: 15.5px;
  line-height: 1.7;
  padding-top: 13px;
  padding-bottom: 13px;
}

/* =========================================
  300件分析セクション
========================================= */

.page-template-page-service-samurai .samurai-analysis,
.page-template-page-service-samurai-php .samurai-analysis {
  padding-top: clamp(80px, 8vw, 120px);
  padding-bottom: clamp(80px, 8vw, 120px);
}

/* 濃色背景内の見出し */
.page-template-page-service-samurai .samurai-analysis h2,
.page-template-page-service-samurai-php .samurai-analysis h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.45;
}

/* 濃色背景内の本文 */
.page-template-page-service-samurai .samurai-analysis p,
.page-template-page-service-samurai-php .samurai-analysis p {
  font-size: 16px;
  line-height: 1.9;
}

/* 分析カード */
.page-template-page-service-samurai .analysis-card,
.page-template-page-service-samurai .samurai-analysis-card,
.page-template-page-service-samurai [class*="analysis"] [class*="card"],
.page-template-page-service-samurai-php .analysis-card,
.page-template-page-service-samurai-php .samurai-analysis-card,
.page-template-page-service-samurai-php [class*="analysis"] [class*="card"] {
  padding: 30px;
  border-radius: 18px;
}

/* 分析カードタイトル */
.page-template-page-service-samurai .analysis-card__title,
.page-template-page-service-samurai-php .analysis-card__title {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* 分析カード本文 */
.page-template-page-service-samurai .analysis-card__text,
.page-template-page-service-samurai-php .analysis-card__text {
  font-size: 15.5px;
  line-height: 1.85;
}

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

.page-template-page-service-samurai .samurai-cta,
.page-template-page-service-samurai-php .samurai-cta {
  padding-top: clamp(80px, 8vw, 120px);
  padding-bottom: clamp(80px, 8vw, 120px);
}

/* CTAカード */
.page-template-page-service-samurai .samurai-cta__inner,
.page-template-page-service-samurai-php .samurai-cta__inner {
  padding: clamp(40px, 5vw, 64px);
  border-radius: 24px;
}

/* CTA見出し */
.page-template-page-service-samurai .samurai-cta__title,
.page-template-page-service-samurai-php .samurai-cta__title {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.45;
  margin-bottom: 18px;
}

/* CTA本文 */
.page-template-page-service-samurai .samurai-cta__text,
.page-template-page-service-samurai-php .samurai-cta__text {
  font-size: 16.5px;
  line-height: 1.85;
  max-width: 44em;
  margin-left: auto;
  margin-right: auto;
}

/* CTAボタンまわり */
.page-template-page-service-samurai .samurai-cta__buttons,
.page-template-page-service-samurai-php .samurai-cta__buttons {
  gap: 16px;
  margin-top: 28px;
}

/* =========================================
  余白の統一
========================================= */

.page-template-page-service-samurai section,
.page-template-page-service-samurai-php section {
  scroll-margin-top: 90px;
}

/* セクション内の最大幅 */
.page-template-page-service-samurai .inner,
.page-template-page-service-samurai .container,
.page-template-page-service-samurai [class*="inner"],
.page-template-page-service-samurai [class*="container"],
.page-template-page-service-samurai-php .inner,
.page-template-page-service-samurai-php .container,
.page-template-page-service-samurai-php [class*="inner"],
.page-template-page-service-samurai-php [class*="container"] {
  max-width: 1080px;
}

/* =========================================
  スマホ調整
========================================= */

@media screen and (max-width: 767px) {
  .page-template-page-service-samurai main,
  .page-template-page-service-samurai-php main {
    font-size: 15px;
    line-height: 1.8;
  }

  .page-template-page-service-samurai main p,
  .page-template-page-service-samurai-php main p {
    font-size: 15px;
    line-height: 1.85;
  }

  .page-template-page-service-samurai h1,
  .page-template-page-service-samurai-php h1 {
    font-size: 34px;
    line-height: 1.35;
  }

  .page-template-page-service-samurai h2,
  .page-template-page-service-samurai-php h2 {
    font-size: 28px;
    line-height: 1.5;
  }

  .page-template-page-service-samurai h3,
  .page-template-page-service-samurai-php h3 {
    font-size: 18px;
    line-height: 1.55;
  }

  .page-template-page-service-samurai .samurai-fv,
  .page-template-page-service-samurai .samurai-hero,
  .page-template-page-service-samurai-php .samurai-fv,
  .page-template-page-service-samurai-php .samurai-hero {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .page-template-page-service-samurai .samurai-fv__title,
  .page-template-page-service-samurai .samurai-hero__title,
  .page-template-page-service-samurai-php .samurai-fv__title,
  .page-template-page-service-samurai-php .samurai-hero__title {
    font-size: 36px;
    line-height: 1.35;
  }

  .page-template-page-service-samurai .samurai-fv__lead,
  .page-template-page-service-samurai .samurai-hero__lead,
  .page-template-page-service-samurai-php .samurai-fv__lead,
  .page-template-page-service-samurai-php .samurai-hero__lead {
    font-size: 16px;
    line-height: 1.85;
  }

  .page-template-page-service-samurai .lead,
  .page-template-page-service-samurai .section-lead,
  .page-template-page-service-samurai [class*="lead"],
  .page-template-page-service-samurai-php .lead,
  .page-template-page-service-samurai-php .section-lead,
  .page-template-page-service-samurai-php [class*="lead"] {
    font-size: 15.5px;
    line-height: 1.85;
  }

  .page-template-page-service-samurai .problem-card,
  .page-template-page-service-samurai .samurai-problem-card,
  .page-template-page-service-samurai [class*="problem"] [class*="card"],
  .page-template-page-service-samurai-php .problem-card,
  .page-template-page-service-samurai-php .samurai-problem-card,
  .page-template-page-service-samurai-php [class*="problem"] [class*="card"] {
    padding: 24px;
  }

  .page-template-page-service-samurai .problem-card__title,
  .page-template-page-service-samurai .samurai-card__title,
  .page-template-page-service-samurai [class*="card"] h3,
  .page-template-page-service-samurai-php .problem-card__title,
  .page-template-page-service-samurai-php .samurai-card__title,
  .page-template-page-service-samurai-php [class*="card"] h3 {
    font-size: 18px;
  }

  .page-template-page-service-samurai .problem-card__text,
  .page-template-page-service-samurai .samurai-card__text,
  .page-template-page-service-samurai [class*="card"] p,
  .page-template-page-service-samurai-php .problem-card__text,
  .page-template-page-service-samurai-php .samurai-card__text,
  .page-template-page-service-samurai-php [class*="card"] p {
    font-size: 15px;
    line-height: 1.8;
  }

  .page-template-page-service-samurai .samurai-comic-summary,
  .page-template-page-service-samurai-php .samurai-comic-summary {
    padding: 22px;
    font-size: 15px;
  }

  .page-template-page-service-samurai .samurai-analysis,
  .page-template-page-service-samurai-php .samurai-analysis {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .page-template-page-service-samurai .analysis-card,
  .page-template-page-service-samurai .samurai-analysis-card,
  .page-template-page-service-samurai [class*="analysis"] [class*="card"],
  .page-template-page-service-samurai-php .analysis-card,
  .page-template-page-service-samurai-php .samurai-analysis-card,
  .page-template-page-service-samurai-php [class*="analysis"] [class*="card"] {
    padding: 24px;
  }

  .page-template-page-service-samurai .samurai-cta__inner,
  .page-template-page-service-samurai-php .samurai-cta__inner {
    padding: 36px 24px;
  }

  .page-template-page-service-samurai .samurai-cta__title,
  .page-template-page-service-samurai-php .samurai-cta__title {
    font-size: 26px;
  }

  .page-template-page-service-samurai .samurai-cta__text,
  .page-template-page-service-samurai-php .samurai-cta__text {
    font-size: 15px;
  }

  .page-template-page-service-samurai .samurai-cta__buttons,
  .page-template-page-service-samurai-php .samurai-cta__buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .page-template-page-service-samurai .btn,
  .page-template-page-service-samurai .button,
  .page-template-page-service-samurai a[class*="btn"],
  .page-template-page-service-samurai a[class*="button"],
  .page-template-page-service-samurai-php .btn,
  .page-template-page-service-samurai-php .button,
  .page-template-page-service-samurai-php a[class*="btn"],
  .page-template-page-service-samurai-php a[class*="button"] {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
  }
}

/* =========================================
  制作実績 詳細ページ single-ito_work.php
========================================= */

.work-single {
  color: #142033;
  background: #f7f9fb;
}

/* FV */
.work-single-hero {
  padding: clamp(72px, 8vw, 120px) 0 clamp(48px, 6vw, 80px);
  background: linear-gradient(135deg, #10243f 0%, #163b5c 55%, #1f7a68 100%);
  color: #fff;
}

.work-single-hero__inner {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.work-single-hero__label {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.work-single-hero__title {
  max-width: 900px;
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.work-single-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.work-single-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

/* コンテンツ */
.work-single-content {
  padding: clamp(64px, 8vw, 112px) 0;
}

.work-single-content__inner {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
}

/* メイン画像 */
.work-single__image {
  overflow: hidden;
  margin-bottom: clamp(40px, 5vw, 64px);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 35, 60, 0.12);
}

.work-single__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* 本文 */
.work-single__body {
  padding: clamp(32px, 5vw, 56px);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 35, 60, 0.08);
}

.work-single__body h2 {
  margin-top: 0;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #dce5ec;
  color: #142033;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.45;
}

.work-single__body h3 {
  margin-top: 40px;
  margin-bottom: 14px;
  color: #142033;
  font-size: 22px;
  line-height: 1.5;
}

.work-single__body p {
  margin-top: 0;
  margin-bottom: 1.3em;
  color: #2d3b4f;
  font-size: 16px;
  line-height: 1.9;
}

.work-single__body ul,
.work-single__body ol {
  margin: 0 0 1.6em;
  padding-left: 1.4em;
}

.work-single__body li {
  margin-bottom: 0.55em;
  color: #2d3b4f;
  font-size: 16px;
  line-height: 1.85;
}

.work-single__body a {
  color: #15735f;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* サイトを見るボタン */
.work-single__link {
  margin-top: 36px;
  text-align: center;
}

.work-single__link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #15735f;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
  box-shadow: 0 12px 24px rgba(21, 115, 95, 0.22);
}

.work-single__link a:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  box-shadow: 0 16px 30px rgba(21, 115, 95, 0.28);
}

/* 戻るリンク */
.work-single__back {
  margin-top: 28px;
  text-align: center;
}

.work-single__back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #405064;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.work-single__back a::before {
  content: "←";
  margin-right: 8px;
}

.work-single__back a:hover {
  color: #15735f;
}

/* スマホ */
@media screen and (max-width: 767px) {
  .work-single-hero {
    padding: 56px 0 48px;
  }

  .work-single-hero__inner,
  .work-single-content__inner {
    width: min(100% - 32px, 960px);
  }

  .work-single-hero__title {
    font-size: 30px;
    line-height: 1.45;
  }

  .work-single-hero__meta {
    margin-top: 22px;
  }

  .work-single-hero__meta span {
    font-size: 13px;
  }

  .work-single-content {
    padding: 56px 0 72px;
  }

  .work-single__image {
    margin-bottom: 32px;
    border-radius: 18px;
  }

  .work-single__body {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .work-single__body h2 {
    font-size: 24px;
  }

  .work-single__body h3 {
    margin-top: 32px;
    font-size: 20px;
  }

  .work-single__body p,
  .work-single__body li {
    font-size: 15px;
    line-height: 1.85;
  }

  .work-single__link a {
    width: 100%;
    max-width: 320px;
  }
}

/* =========================================
  Home polish：トップページのAI感軽減
========================================= */

.home .site-main,
.page-template-front-page .site-main {
  background: #fff;
}

.home .section-heading,
.page-template-front-page .section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.home .section-heading__label,
.page-template-front-page .section-heading__label {
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.home .section-heading__title,
.page-template-front-page .section-heading__title {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.home .section-heading__text,
.page-template-front-page .section-heading__text {
  max-width: 680px;
  color: #405064;
  font-size: 16px;
  line-height: 1.95;
}

/* Hero */
.home .hero,
.page-template-front-page .hero {
  padding: clamp(84px, 8vw, 120px) 0 clamp(80px, 8vw, 112px);
}

.home .hero__inner,
.page-template-front-page .hero__inner {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: clamp(44px, 6vw, 72px);
}

.home .hero__label,
.page-template-front-page .hero__label {
  min-height: 36px;
  padding: 0 15px;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.home .hero__title,
.page-template-front-page .hero__title {
  max-width: 720px;
  margin-top: 26px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.home .hero__lead,
.page-template-front-page .hero__lead {
  max-width: 640px;
  margin-top: 26px;
  color: #405064;
  font-size: 17px;
  line-height: 1.95;
}

.home .hero__buttons,
.page-template-front-page .hero__buttons {
  gap: 16px;
  margin-top: 36px;
}

.home .hero__points,
.page-template-front-page .hero__points {
  gap: 12px;
  margin-top: 30px;
}

.home .hero__points li,
.page-template-front-page .hero__points li {
  min-height: 36px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.88);
  color: #30475c;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(16, 32, 51, 0.05);
}

/* Profile */
.home .profile-section,
.page-template-front-page .profile-section {
  padding: clamp(88px, 8vw, 120px) 0;
}

.home .profile-card,
.page-template-front-page .profile-card {
  gap: 36px;
}

.home .profile-card__body,
.home .profile-card__scope,
.page-template-front-page .profile-card__body,
.page-template-front-page .profile-card__scope {
  border-radius: 30px;
}

.home .profile-card__body,
.page-template-front-page .profile-card__body {
  padding: clamp(34px, 4vw, 50px);
}

.home .profile-card__body p,
.page-template-front-page .profile-card__body p {
  color: #405064;
  line-height: 1.95;
}

.home .profile-stats,
.page-template-front-page .profile-stats {
  gap: 20px;
  margin-top: 28px;
}

/* Service */
.home .service-section,
.page-template-front-page .service-section {
  padding: clamp(88px, 8vw, 120px) 0;
}

.home .service-grid,
.page-template-front-page .service-grid {
  gap: 24px;
}

.home .service-card,
.page-template-front-page .service-card {
  min-height: auto;
  padding: 36px 34px;
  border-radius: 28px;
  box-shadow: 0 16px 42px rgba(16, 32, 51, 0.055);
}

.home .service-card h3,
.page-template-front-page .service-card h3 {
  margin-top: 24px;
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.home .service-card p,
.page-template-front-page .service-card p {
  color: #405064;
  font-size: 15.5px;
  line-height: 1.95;
}

/* Works / Sample */
.home .works-section,
.home .sample-section,
.page-template-front-page .works-section,
.page-template-front-page .sample-section {
  padding: clamp(88px, 8vw, 120px) 0;
}

.home .works-grid,
.page-template-front-page .works-grid {
  gap: 30px;
}

.home .work-card,
.page-template-front-page .work-card {
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(16, 32, 51, 0.075);
}

.home .work-card__body,
.page-template-front-page .work-card__body {
  padding: 32px;
}

.home .work-card__category,
.page-template-front-page .work-card__category {
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.home .work-card h3,
.page-template-front-page .work-card h3 {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: -0.015em;
}

.home .work-card__point,
.page-template-front-page .work-card__point {
  margin-top: 24px;
  padding-top: 20px;
}

.home .work-card__point p,
.page-template-front-page .work-card__point p {
  color: #405064;
  line-height: 1.9;
}

/* Price */
.home .price-section,
.page-template-front-page .price-section {
  padding: clamp(88px, 8vw, 120px) 0;
}

.home .price-layout,
.page-template-front-page .price-layout {
  gap: clamp(40px, 5vw, 60px);
}

.home .plan-detail,
.page-template-front-page .plan-detail {
  padding: 34px;
  border-radius: 28px;
}

.home .price-simulator,
.page-template-front-page .price-simulator {
  border-radius: 30px;
  box-shadow: 0 20px 52px rgba(16, 32, 51, 0.12);
}

/* Flow */
.home .flow-section,
.page-template-front-page .flow-section {
  padding: clamp(88px, 8vw, 120px) 0;
}

.home .flow-list,
.page-template-front-page .flow-list {
  gap: 26px;
}

.home .flow-card,
.page-template-front-page .flow-card {
  min-height: auto;
  padding: 30px 26px;
  border-radius: 24px;
}

.home .flow-card h3,
.page-template-front-page .flow-card h3 {
  font-size: 20px;
  line-height: 1.55;
}

.home .flow-card p:not(.flow-card__number),
.page-template-front-page .flow-card p:not(.flow-card__number) {
  color: #405064;
  line-height: 1.9;
}

/* FAQ */
.home .faq-section,
.page-template-front-page .faq-section {
  padding: clamp(88px, 8vw, 120px) 0;
}

.home .faq-list,
.page-template-front-page .faq-list {
  gap: 16px;
}

.home .faq-item,
.page-template-front-page .faq-item {
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.045);
}

.home .faq-item summary,
.page-template-front-page .faq-item summary {
  font-size: 16px;
  line-height: 1.7;
}

/* Contact */
.home .contact-form-section,
.page-template-front-page .contact-form-section {
  padding: clamp(88px, 8vw, 120px) 0;
}

.home .contact-form-layout,
.page-template-front-page .contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
  margin-top: 44px;
}

.home .contact-form-message,
.page-template-front-page .contact-form-message {
  padding: 36px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.05);
}

.home .contact-form-message h2,
.page-template-front-page .contact-form-message h2 {
  margin: 0;
  color: #102033;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.home .contact-form-message p:not(.section-heading__label),
.page-template-front-page .contact-form-message p:not(.section-heading__label) {
  margin: 18px 0 0;
  color: #405064;
  font-size: 16px;
  line-height: 1.95;
}

.home .contact-form-points,
.page-template-front-page .contact-form-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.home .contact-form-points li,
.page-template-front-page .contact-form-points li {
  position: relative;
  padding-left: 24px;
  color: #102033;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.8;
}

.home .contact-form-points li::before,
.page-template-front-page .contact-form-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #0b6b5f;
}

.home .contact-form-box,
.page-template-front-page .contact-form-box {
  margin-top: 0;
}

/* Mobile top page */
@media screen and (max-width: 900px) {
  .home .hero__inner,
  .page-template-front-page .hero__inner,
  .home .price-layout,
  .page-template-front-page .price-layout,
  .home .contact-form-layout,
  .page-template-front-page .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .home .contact-form-message,
  .page-template-front-page .contact-form-message {
    padding: 28px;
    border-radius: 24px;
  }
}

@media screen and (max-width: 640px) {
  .home .hero,
  .home .profile-section,
  .home .service-section,
  .home .works-section,
  .home .sample-section,
  .home .price-section,
  .home .flow-section,
  .home .faq-section,
  .home .contact-form-section,
  .page-template-front-page .hero,
  .page-template-front-page .profile-section,
  .page-template-front-page .service-section,
  .page-template-front-page .works-section,
  .page-template-front-page .sample-section,
  .page-template-front-page .price-section,
  .page-template-front-page .flow-section,
  .page-template-front-page .faq-section,
  .page-template-front-page .contact-form-section {
    padding: 72px 0;
  }

  .home .hero__title,
  .page-template-front-page .hero__title {
    font-size: 31px;
    line-height: 1.42;
  }

  .home .hero__lead,
  .home .section-heading__text,
  .page-template-front-page .hero__lead,
  .page-template-front-page .section-heading__text {
    font-size: 15.5px;
    line-height: 1.9;
  }

  .home .service-card,
  .home .work-card__body,
  .home .plan-detail,
  .home .flow-card,
  .home .contact-form-message,
  .page-template-front-page .service-card,
  .page-template-front-page .work-card__body,
  .page-template-front-page .plan-detail,
  .page-template-front-page .flow-card,
  .page-template-front-page .contact-form-message {
    padding: 26px;
  }

  .home .section-heading,
  .page-template-front-page .section-heading {
    margin-bottom: 34px;
  }
}

/* =========================================
  お問い合わせページ SP文字はみ出し修正
========================================= */

@media screen and (max-width: 640px) {
  .contact-form-section .section-heading__title,
  .contact-form-section h1,
  .contact-form-section h2,
  .contact-page h1,
  .contact-page h2 {
    font-size: 28px;
    line-height: 1.45;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .contact-form-section .section-heading {
    max-width: 100%;
    margin-bottom: 32px;
  }

  .contact-form-section .section-heading__text {
    font-size: 15px;
    line-height: 1.9;
  }
}

/* =========================================
  iPhone Safari 自動ズーム対策
  お問い合わせページ SP表示崩れ修正
========================================= */

@media screen and (max-width: 640px) {
  input,
  select,
  textarea,
  button {
    font-size: 16px !important;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px !important;
    line-height: 1.6;
  }

  .contact-form-section,
  .contact-form-section * {
    max-width: 100%;
  }

  .contact-form-section {
    overflow-x: hidden;
  }

  .contact-form-section .section-heading__title,
  .contact-form-section h1,
  .contact-form-section h2,
  .contact-page h1,
  .contact-page h2 {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.45;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .contact-form-section .section-heading__text,
  .contact-form-section p {
    font-size: 15.5px;
    line-height: 1.9;
  }
}

/* =========================================
  SPメニュー調整
  ・左上にアイコン
  ・メニュー項目を中央寄せ
========================================= */

@media screen and (max-width: 900px) {
  /* ヘッダー本体 */
  .site-header__inner {
    width: min(100%, calc(100% - 32px));
    min-height: 64px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  /* 左上にアイコンだけ表示 */
  .site-logo,
  .site-header__logo,
  .site-header__brand {
    display: inline-flex !important;
    align-items: center;
    flex-shrink: 0;
  }

  .site-logo__image,
  .site-header__logo img,
  .site-header__brand img {
    display: block !important;
    width: 38px;
    height: auto;
  }

  /* 文字は非表示 */
  .site-logo__text,
  .site-header__logo-text,
  .site-header__brand-text {
    display: none !important;
  }

  /* ハンバーガーは右上 */
  .nav-toggle {
    display: inline-grid !important;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(16, 32, 51, 0.16);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    z-index: 1102;
  }

  /* 開いたメニューの箱 */
  .site-header .global-nav.site-header__nav {
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    z-index: 1101;
    display: none !important;
    width: auto;
    margin-left: 0;
    padding: 24px 20px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(16, 32, 51, 0.16);
  }

  .site-header .global-nav.site-header__nav.is-open {
    display: block !important;
  }

  /* メニュー全体を中央寄せ */
  .site-header .global-nav.site-header__nav .site-header__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .site-header .global-nav.site-header__nav .site-header__menu > .menu-item {
    width: 100%;
    max-width: 320px;
  }

  .site-header .global-nav.site-header__nav .site-header__menu > .menu-item > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 10px;
    color: #102033;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
  }

  /* 相談方法ボタン */
  .site-header .global-nav.site-header__nav .site-header__menu > .menu-contact {
    margin-top: 12px;
    width: 100%;
    max-width: 320px;
  }

  .site-header .global-nav.site-header__nav .site-header__menu > .menu-contact > a {
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: #0b6b5f;
    color: #fff;
  }
}
