/* ===== Design Tokens ===== */
:root {
  --color-pink: #dfc0c9;
  --color-pink-vivid: #e0cad2;
  --color-pink-light: #f6dee7;
  --color-teal: #c2dddf;
  --color-cyan-bg: #e9f4f6;
  --color-gray-bg: #eeeeee;
  --color-text: #212529;
  --color-text-muted: #555;
  --color-blue: #2e68ff;
  --color-hot-pink: #cc0066;
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  --font-biz: "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  --max-width: 1140px;
  --container-padding: 15px;
  --space-xs: 0.75rem;
  --space-sm: 1.5rem;
  --space-md: 2.4rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 9rem;
  --line-height-heading: 1.4em;
}

/*
 * ブレークポイント方針
 * - 699px以下: スマホ専用
 * - 700px〜820px: iPad mini / iPad Air をまとめたタブレット版
 * - 820px以下: ハンバーガーメニュー表示切替
 */

/* ===== Base ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-jp);
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.8;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
  flex-shrink: 0;
}
figure {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1em;
  line-height: var(--line-height-heading);
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: var(--space-lg) auto;
  max-width: var(--max-width);
}
.nowrap {
  white-space: nowrap;
}

/* 重要語句のマーカーは、文字全体ではなく下半分だけに敷く */
mark {
  background: transparent;
  color: inherit;
}
.mark-blue {
  background: linear-gradient(to bottom, transparent 65%, rgba(173, 224, 255, 0.7) 65%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 2px;
}
.mark-blue-text {
  background: transparent;
  color: var(--color-blue);
  padding: 0;
}
.mark-pink {
  background: linear-gradient(to bottom, transparent 65%, rgba(246, 222, 231, 0.7) 65%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 2px;
}

/* ===== Header ===== */
.site-header {
  background: var(--color-gray-bg);
  padding: 0;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 130px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 30px;
  text-decoration: none;
  color: var(--color-text);
}
.site-header__logo-mark {
  height: 80px;
  width: auto;
  margin: 10px 0;
}
.site-header__logo-full {
  display: none;
}
.site-header__catchcopy {
  font-size: 20px;
  letter-spacing: 1.8px;
  color: #333;
}
.apply-btn {
  background: var(--color-pink);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
  text-decoration: none;
  padding: 21px 43px;
  border: 1px solid #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  white-space: nowrap;
}
.apply-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
}
.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

/* 820px以下はヘッダーをロゴ + ハンバーガーへ切り替える */
@media (max-width: 820px) {
  :root {
    --container-padding: 15px;
  }
  .site-header__inner {
    justify-content: space-between;
    min-height: 120px;
  }
  .site-header__logo {
    width: auto;
    gap: 0;
  }
  .site-header__logo-mark,
  .site-header__catchcopy,
  .apply-btn {
    display: none;
  }
  .site-header__logo-full {
    display: block;
    width: min(285px, 74vw);
    height: auto;
  }
  .mobile-menu-toggle {
    position: fixed;
    top: 38px;
    right: 10px;
    z-index: 1001;
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-text);
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }
  .mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: block;
    visibility: hidden;
    pointer-events: none;
  }
  .mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .mobile-menu.is-open .mobile-menu__backdrop {
    opacity: 1;
  }
  .mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(86vw, 340px);
    height: 100%;
    overflow-y: auto;
    background: #fff;
    padding: 70px 24px 28px;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  .mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
  }
  .mobile-menu__close {
    display: none;
  }
  .mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .mobile-menu__list a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
  }
  .mobile-menu__contact {
    margin-top: 28px;
    text-align: center;
  }
  .mobile-menu__contact p {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.7;
  }
  .mobile-menu__contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    margin-top: 10px;
    border-radius: 5px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
  }
  .mobile-menu__contact-btn--ig {
    background: var(--color-pink-vivid);
  }
  .mobile-menu__contact-btn--tel {
    background: var(--color-teal);
  }
  body.mobile-menu-open {
    overflow: hidden;
  }

  /* スクロール後は固定ハンバーガーを小さくして本文への被りを減らす */
  body.is-scrolled .mobile-menu-toggle {
    top: 8px;
    right: 14px;
    width: 34px;
    height: 34px;
    gap: 5px;
    border: 1px solid var(--color-text);
    border-radius: 2px;
    background: #fff;
  }
  body.is-scrolled .mobile-menu-toggle span {
    width: 24px;
  }
  body.is-scrolled .mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.is-scrolled .mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ===== Hero ===== */
.hero {
  padding: 30px 0 20px;
}
.hero__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero__image {
  flex: 1;
  display: flex;
  justify-content: center;
  max-height: 450px;
  overflow: hidden;
}
.hero__image img {
  height: 450px;
  width: 400px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__text {
  flex: 1;
  text-align: center;
}
.hero__text h1 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1.2;
  padding-top: 40px;
}
.hero__text p {
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 3.5px;
  margin-top: 50px;
}
@media (max-width: 699px) {
  .hero__inner {
    flex-direction: column;
  }
  .hero__image {
    display: block;
    flex: none;
    width: 100%;
    max-width: 400px;
    height: 350px;
    max-height: none;
    overflow: hidden;
    margin: 0 auto;
  }
  .hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero__text h1 {
    font-size: 21px;
    letter-spacing: 2px;
    line-height: 1.1em;
    padding-top: 10px;
  }
  .hero__text p {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 2.1em;
    padding-top: 20px;
    padding-bottom: 45px;
  }
}

/* ===== Quick Nav Buttons ===== */
.quick-nav {
  background: var(--color-gray-bg);
  padding: var(--space-sm) 0;
}
.quick-nav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.quick-nav a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  column-gap: 0.35em;
  row-gap: 0;
  text-align: center;
  font-family: var(--font-biz);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  height: 80px;
  background: var(--color-pink-vivid);
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: 1px;
  padding: 0 10px;
  transition:
    opacity 0.2s ease,
    box-shadow 0.2s ease;
}
.quick-nav a:hover {
  opacity: 0.8;
  box-shadow: 0 0 0 0.2rem rgba(171, 184, 195, 0.25);
}
.quick-nav a strong {
  font-weight: 400;
}
@media (max-width: 699px) {
  .quick-nav ul {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .quick-nav li {
    min-width: 0;
  }
  .quick-nav a {
    width: 100%;
    min-width: 0;
    height: 100px;
    font-size: 16px;
    padding: 0 8px;
    overflow-wrap: anywhere;
  }
}

/* ===== Intro ===== */
.intro {
  max-width: 900px;
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
  padding-left: var(--space-xs);
  padding-right: var(--space-xs);
}
.intro p {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.04em;
  margin: 0 0 1em;
}
.intro__highlight {
  color: var(--color-blue);
}
.intro__accent {
  color: var(--color-hot-pink);
}
.intro__teal {
  color: var(--color-text-muted);
}
.intro__spacer {
  margin-top: var(--space-lg);
}
@media (max-width: 699px) {
  .intro {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
  .wrap-mobile {
    white-space: normal;
  }
  .intro p {
    font-size: 16px;
    line-height: 1.5;
    padding-left: 10px;
    padding-right: 10px;
    overflow-wrap: break-word;
  }
}

/* ===== Features ===== */
.features {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
}
.features h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.8em;
  letter-spacing: 0;
  margin: 0 var(--space-xl) var(--space-xl);
}
.feature {
  display: flex;
  gap: 0;
  margin-bottom: var(--space-xl);
  align-items: flex-start;
  justify-content: space-between;
}
.feature:last-child {
  margin-bottom: 0;
}
.feature figure {
  flex: 0 0 40%;
  margin: var(--space-xs) 0;
}
.feature__body {
  flex: 0 0 48%;
}
.feature--centered .feature__body {
  flex: 0 0 60%;
}
.feature__body h3 {
  font-weight: 700;
  font-size: 23px;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.feature--centered .feature__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature--centered .feature__body > * {
  max-width: 100%;
}
.feature__body p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 1em;
}
.check-list {
  width: fit-content;
  margin: 1em auto;
}
.check-list li {
  font-size: 15px;
  letter-spacing: 0.05em;
  padding-left: 1.6em;
  position: relative;
  margin-bottom: 0.5em;
}
.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: bold;
}
@media (max-width: 699px) {
  .features {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
  .features h2 {
    font-size: 32px;
    max-width: 300px;
    margin: 0 auto var(--space-xl);
  }
  .feature {
    flex-direction: column;
    gap: 20px;
    margin-bottom: var(--space-lg);
    width: min(100%, 370px);
    margin-right: auto;
    margin-left: auto;
  }
  .feature figure {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
  .feature__body {
    width: 100%;
  }
  .feature__body p,
  .feature__body h3,
  .check-list {
    overflow-wrap: break-word;
  }
}

/* ===== CTA Button ===== */
.cta-wrap {
  text-align: center;
  padding: var(--space-xl) var(--container-padding);
}
.features + .cta-wrap {
  padding-top: var(--space-xs);
}
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: min(100%, 480px);
  background: var(--color-pink-light);
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 5px;
  font-size: 18px;
  letter-spacing: 1px;
  transition: opacity 0.2s ease;
  margin: 0 auto;
}
.cta-btn:hover {
  opacity: 0.8;
}
.cta-btn .icon {
  font-size: 30px;
}
.cta-btn--lg {
  width: min(100%, 680px);
  font-size: 22px;
  padding: 24px 60px;
}
.cta-btn--lg .icon {
  font-size: 42px;
}
@media (max-width: 699px) {
  .cta-btn,
  .cta-btn--lg {
    width: 100%;
    max-width: 100%;
    gap: 10px;
    padding: 15px 18px;
    font-size: 14px;
  }
  .cta-btn .icon,
  .cta-btn--lg .icon {
    font-size: 20px;
  }
  .cta-btn--lg {
    width: 252px;
    max-width: calc(100% - 60px);
    min-height: 76px;
    gap: 16px;
    padding: 12px 22px;
    font-size: 17px;
  }
  .cta-btn--lg .icon {
    font-size: 42px;
  }
  .cta-btn--lg > span {
    line-height: 1.5;
    text-align: center;
  }
  .cta-btn--lg > span strong {
    display: block;
  }
  .cta-btn--lg .cta-btn__separator {
    display: none;
  }
}

/* ===== Interviews ===== */
.interviews {
  padding: var(--space-xl) 0 var(--space-xl);
}
.interviews h2 {
  font-family: var(--font-biz);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.8em;
  text-align: left;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto var(--space-xl);
}
.interview {
  display: flex;
  flex-direction: row-reverse;
  gap: 0;
  width: 80%;
  min-width: 720px;
  margin: 0 auto var(--space-xl);
  align-items: flex-start;
  font-family: var(--font-biz);
}
.interview:last-child {
  margin-bottom: 0;
}
.interview figure {
  flex: 0 0 40%;
  max-width: 350px;
  padding: 0 20px 50px;
}
.interview__body {
  flex: 1;
  padding-right: 20px;
}
.interview__body h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: left;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 15px;
  padding: 0;
}
.interview__body p {
  font-size: 16px;
  line-height: 1.8em;
  letter-spacing: 0.07em;
  padding: 0 40px;
  margin: 0 0 1em;
}
.interview__body p:last-child {
  margin-bottom: 0;
}
.interview--no-image {
  display: block;
  width: 80%;
  min-width: 720px;
  margin: 0 auto var(--space-xl);
}
.interviews .interview--no-image:last-child {
  margin-bottom: 0;
}
.interview + .interview--no-image {
  margin-top: calc(var(--space-sm) * -2);
}
.interview--no-image .interview__body {
  width: 82%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
.interview--no-image .interview__body h3 {
  text-align: center;
  width: auto;
  margin: 0 0 15px;
}
@media (max-width: 699px) {
  .interviews {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    padding-bottom: var(--space-lg);
  }
  .interviews h2 {
    font-size: 20px;
    text-align: center;
  }
  .interview {
    flex-direction: column;
    align-items: center;
    width: 90%;
    min-width: 0;
    max-width: 100%;
    margin: 0 auto var(--space-lg);
  }
  .interview figure {
    flex: none;
    width: 100%;
    padding: 0 20% 10px;
  }
  .interview__body {
    width: 100%;
    padding: 0;
  }
  .interview__body h3 {
    font-size: 18px;
    padding: 0;
  }
  .interview__body p {
    font-size: 15px;
    padding: 0 10px;
    overflow-wrap: break-word;
  }
  .interview--no-image .interview__body {
    width: 100%;
  }
  .interview + .interview--no-image {
    margin-top: 0;
  }
}

/* ===== Income Section ===== */
.income-section {
  padding: var(--space-xl) 0;
  max-width: 800px;
}
.interviews + hr.container {
  margin-top: 0;
  margin-bottom: 0;
}
.interviews + hr.container + .income-section {
  padding-top: var(--space-xl);
  padding-bottom: 0;
}
.income-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.55;
  margin-bottom: var(--space-lg);
}
.income-heading__line {
  display: inline-block;
  white-space: nowrap;
}
.income-box {
  background: var(--color-cyan-bg);
  padding: var(--space-md) var(--space-xl) var(--space-lg);
  border-radius: 4px;
  margin-bottom: var(--space-xl);
}
.income-box h3 {
  font-size: 24px;
  font-weight: 500;
  border-bottom: 2px dotted #333;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.income-box p {
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 1em;
}
.income-box ul {
  margin: 1em 0;
}
.income-box li {
  font-size: 16px;
  line-height: 1.9;
  padding-left: 1.6em;
  position: relative;
  margin-bottom: 0.5em;
}
.income-box li::before {
  content: "•";
  position: absolute;
  left: 0.5em;
}
.income-box hr {
  border-top: 1px dashed #999;
  margin: 30px 0;
}
.income-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) max-content;
  align-items: baseline;
  column-gap: 0.65em;
  row-gap: 0.15em;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 8px;
}
.income-row__label {
  position: relative;
  padding-left: 1.6em;
}
.income-row__label::before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  background: black;
  border-radius: 50%;
  position: absolute;
  left: 0.5em;
  top: 0.5em;
}
.income-row__calc {
  color: var(--color-text-muted);
}
.income-row__amount {
  justify-self: end;
  text-align: right;
  margin-left: 0;
  white-space: nowrap;
}
.income-example {
  margin-top: 30px !important;
}
@media (max-width: 699px) {
  .income-section {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
  .interviews + hr.container + .income-section {
    padding-top: var(--space-lg);
  }
  .income-section h2 {
    max-width: 9em;
    font-size: 32px;
    line-height: 1.45;
    margin-left: auto;
    margin-right: auto;
  }
  .income-box {
    padding: var(--space-md) var(--space-sm) var(--space-md) var(--space-md);
    margin-bottom: var(--space-lg);
  }
  .income-box h3 {
    font-size: 20px;
  }
  .income-box p,
  .income-box li,
  .income-row {
    font-size: 14px;
    overflow-wrap: break-word;
  }
  .income-row {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.65em;
    margin-bottom: 10px;
  }
  .income-row__calc {
    min-width: 0;
  }
  .income-row__amount {
    grid-column: 2;
    justify-self: start;
    text-align: left;
    width: auto;
    padding-left: 0;
    margin-left: 0;
  }
}

/* ===== Want Box ===== */
.want-box {
  border: 3px solid var(--color-teal);
  padding: 40px 30px 30px;
  border-radius: 4px;
  position: relative;
  background: #fff;
}
.want-box__title {
  position: absolute;
  top: -1em;
  left: 30px;
  background: #fff;
  padding: 0 1em;
  font-size: 20px;
  color: var(--color-text-muted);
}
.want-box ul li {
  font-size: 16px;
  line-height: 1.9;
  padding-left: 1.6em;
  position: relative;
  margin-bottom: 0.8em;
}
.want-box ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-size: 0.7em;
  top: 0.4em;
}
@media (max-width: 699px) {
  .want-box ul li {
    font-size: 15px;
  }
}

/* ===== Closing ===== */
.closing {
  display: flex;
  gap: 30px;
  padding: var(--space-xl) var(--container-padding);
  align-items: stretch;
}
.closing__image {
  flex: 0 0 calc((100% - 30px) * 0.45);
  display: flex;
  justify-content: center;
}
.closing__image img {
  width: 92%;
  height: 100%;
  object-fit: cover;
}
.closing__body {
  flex: 0 0 calc((100% - 30px) * 0.55);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.closing__text {
  width: min(100%, 600px);
  text-align: left;
}
.closing__text p {
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 1em;
}
.closing__text p:last-child {
  margin-bottom: 0;
}
.closing__body .cta-btn {
  margin-top: var(--space-lg);
  width: min(100%, 600px);
}
@media (max-width: 699px) {
  .closing {
    flex-direction: column;
    align-items: center;
    padding-top: var(--space-lg);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
  .closing__image {
    flex: none;
    max-width: 100%;
    display: block;
  }
  .closing__image img {
    width: 100%;
    height: auto;
  }
  .closing__text p {
    font-size: 15px;
  }
  .closing__body {
    flex: none;
    display: block;
    width: 100%;
  }
}

/* ===== Access ===== */
.access {
  display: flex;
  gap: 30px;
  padding: var(--space-md) var(--container-padding);
  align-items: stretch;
}
.access__info {
  flex: 0 0 calc((100% - 30px) * 0.45);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  box-sizing: border-box;
  min-height: 450px;
}
.access__middle {
  align-self: center;
}
.access__logo {
  width: 310px;
  height: auto;
  margin: 0 30px;
}
.access__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 320px;
  font-size: 40px;
  line-height: 1.3;
  margin: 0 30px 10px;
  white-space: nowrap;
}
.access__phone .icon {
  font-size: 0.6em;
  flex: 0 0 auto;
  transform: translateY(0.08em);
}
.access__address {
  font-size: 14px;
  margin: 0 50px 30px;
  line-height: 1.8;
}
.access__cta {
  align-self: end;
  margin: 0 40px;
}
.access__lead {
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
  max-width: 400px;
  margin: 10px 0;
}
.access__buttons {
  display: flex;
  gap: 8px;
}
.access__btn {
  flex: 0 0 calc(50% - 4px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 64px;
  padding: 18px 18px;
  text-decoration: none;
  color: var(--color-text-muted);
  border-radius: 5px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.access__btn:hover {
  opacity: 0.8;
}
.access__btn--ig {
  background: var(--color-pink-vivid);
}
.access__btn--tel {
  background: var(--color-teal);
}
.access__map {
  flex: 0 0 calc((100% - 30px) * 0.55);
  display: flex;
  min-height: 450px;
}
.access__map iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--color-teal);
}
/* 699px以下の基礎: access はまずスマホ基準の1カラムにする */
@media (max-width: 699px) {
  .access {
    flex-direction: column;
    padding-top: var(--space-lg);
  }

  .access__info {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .access__logo,
  .access__phone {
    width: min(300px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .access__phone {
    font-size: 32px;
  }

  .access__address {
    width: min(300px, 100%);
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
    text-align: center;
  }

  .access__cta {
    width: min(330px, 100%);
    margin: 16px auto 0;
    padding-right: 0;
    padding-left: 0;
    text-align: center;
  }

  .access__lead {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
    font-size: 13px;
    text-align: center;
    text-align-last: auto;
    white-space: normal;
  }

  .access__buttons {
    gap: 12px;
    width: min(300px, 100%);
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }

  .access__btn {
    padding: 11px 12px;
    font-size: 14px;
  }

  .access__map {
    min-height: 0;
  }

  .access__map iframe {
    height: 300px;
  }
}

/* タブレット共通: iPad mini / iPad Air を同じ設計で整える */
@media (min-width: 700px) and (max-width: 820px) {
  /* 主要セクションの左右幅をそろえて、ページ全体の軸を作る */
  .hero__inner,
  .quick-nav ul,
  .intro,
  .features,
  hr.container,
  .interviews,
  .income-section,
  .closing,
  .access {
    width: 100%;
    max-width: 710px;
    margin-right: auto;
    margin-left: auto;
  }

  /* タブレットではヒーローを1カラムにして、余白の偏りを避ける */
  .hero__inner {
    flex-direction: column;
    gap: 28px;
  }

  .hero > .container,
  .quick-nav > .container,
  .features {
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
  }

  /* 顔写真は大きすぎない固定寸法にして、FVの高さを安定させる */
  .hero__image {
    width: auto;
    max-height: none;
    justify-content: center;
  }

  .hero__image img {
    width: 400px;
    height: 350px;
  }

  .hero__text h1 {
    padding-top: 10px;
    font-size: 30px;
    letter-spacing: 3px;
    line-height: 1.25;
  }

  .hero__text p {
    margin-top: 32px;
    padding-top: 0;
    padding-bottom: 36px;
    font-size: 22px;
    letter-spacing: 2.4px;
    line-height: 2;
  }

  /* タブレットでは6個の導線を3列に戻して、縦長になりすぎるのを防ぐ */
  .quick-nav ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .quick-nav a {
    height: 84px;
    font-size: 16px;
  }

  .intro {
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
  }

  .intro p {
    font-size: 17px;
    line-height: 1.8;
    padding-right: 10px;
    padding-left: 10px;
  }

  /* feature はPCの左右組みではなく、写真→本文の読み順に統一する */
  .features h2 {
    max-width: none;
    font-size: 34px;
    margin-right: auto;
    margin-left: auto;
  }

  .feature {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
  }

  .feature figure {
    flex: none;
    width: 100%;
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
  }

  .feature figure img {
    width: 100%;
  }

  .feature__body,
  .feature--centered .feature__body {
    flex: none;
    width: 100%;
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
  }

  .cta-btn--lg {
    width: min(100%, 480px);
    max-width: 480px;
    min-height: 76px;
    padding: 18px 40px;
    font-size: 20px;
  }

  .cta-btn--lg > span strong,
  .cta-btn--lg .cta-btn__separator {
    display: inline;
  }

  /* インタビューは本文幅を絞り、長文の行長を読みやすくする */
  .interviews {
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
  }

  .interviews h2 {
    font-size: 24px;
    text-align: center;
  }

  .interview,
  .interview--no-image {
    width: min(100%, 620px);
    min-width: 0;
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .interview {
    flex-direction: column;
    align-items: center;
  }

  .interview figure {
    flex: none;
    width: min(210px, 100%);
    max-width: none;
    padding: 0 0 18px;
  }

  .interview__body,
  .interview--no-image .interview__body {
    width: 100%;
    max-width: 540px;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
  }

  .interview__body p {
    padding-right: 0;
    padding-left: 0;
  }

  .interview + .interview--no-image {
    margin-top: 0;
  }

  /* 収入はタブレットでも金額を右端に置き、表として読みやすくする */
  .income-section {
    max-width: 710px;
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
  }

  .income-section h2 {
    max-width: none;
    font-size: 32px;
    white-space: nowrap;
  }

  .income-box {
    margin-right: 0;
    margin-left: 0;
    padding: var(--space-md) var(--space-xl) var(--space-lg);
  }

  .income-row {
    grid-template-columns: auto minmax(0, 1fr) max-content;
  }

  .income-row__amount {
    grid-column: auto;
    justify-self: end;
    text-align: right;
  }

  .want-box {
    margin-right: 0;
    margin-left: 0;
  }

  /* 締めセクションは写真・本文・ボタンを同じ680px基準にそろえる */
  .closing {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
  }

  .closing__image {
    flex: none;
    display: block;
    width: 100%;
    max-width: 680px;
  }

  .closing__image img {
    width: 100%;
    height: auto;
  }

  .closing__body,
  .closing__text,
  .closing__body .cta-btn {
    width: 100%;
    max-width: 680px;
  }

  .closing__body {
    flex: none;
    display: block;
  }

  /* access はロゴ、電話、住所、ボタン、地図を中央軸でそろえる */
  .access {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 710px;
    padding-top: var(--space-lg);
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
  }

  .access__info {
    display: block;
    width: 100%;
    max-width: 680px;
    min-height: 0;
    padding: 0;
  }

  .access__logo {
    width: 310px;
    margin-right: auto;
    margin-left: auto;
  }

  .access__phone {
    justify-content: center;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    font-size: 34px;
  }

  .access__address {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .access__cta {
    width: 100%;
    max-width: 680px;
    margin: 36px auto 0;
    text-align: center;
  }

  .access__lead {
    display: block;
    max-width: none;
    font-size: 14px;
    text-align: center;
    text-align-last: auto;
    white-space: normal;
  }

  .access__lead-line {
    white-space: nowrap;
  }

  .access__buttons {
    width: 100%;
    gap: 24px;
    margin-right: 0;
    margin-left: 0;
  }

  .access__btn {
    flex-basis: calc(50% - 12px);
    min-height: 64px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 14px;
  }

  .access__map {
    flex: none;
    width: 100%;
    max-width: 680px;
    min-height: 0;
  }

  .access__map iframe {
    height: 450px;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-gray-bg);
  margin-top: var(--space-lg);
}
.site-footer__main {
  text-align: center;
  padding: var(--space-md) var(--container-padding) var(--space-sm);
}
.site-footer__main img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin: 0 auto 15px;
}
.site-footer__main p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}
.site-footer__copy {
  background: var(--color-text-muted);
  text-align: center;
  padding: 2px;
}
.site-footer__copy p {
  font-size: 13px;
  color: #ccc;
  margin: 0;
}
