/*
Theme Name: koeki_original
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: Kyowa公益法人サイト用オリジナルテーマ
Version: 1.0
Text Domain: koeki-original
*/

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

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
font-family: 'Zen Maru Gothic', 'Roboto', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.7;
}

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

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

/* -------------------------
   Header
------------------------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  padding: 28px 32px 0;
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.site-logo {
  max-width: 290px;
  position: relative;
  z-index: 35;
}

.site-logo img {
  display: block;
  width: 100%;
}

.global-nav {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  padding: 18px 34px;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #4b4b4b;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: opacity 0.25s ease;
}

.global-nav a:hover {
  opacity: 0.7;
}

.global-nav a {
  position: relative;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #F9DC71;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.global-nav a:hover::after,
.global-nav a:focus::after {
  transform: scaleX(1);
}

/* ハンバーガーボタン */
.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  position: relative;
  z-index: 35;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #444;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 17px;
}

.menu-toggle span:nth-child(2) {
  top: 25px;
}

.menu-toggle span:nth-child(3) {
  top: 33px;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 25px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 25px;
  transform: translateX(-50%) rotate(-45deg);
}

/* フワッと表示 */

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.inview-trigger {
  height: 300px;
  margin-bottom: -300px;
  opacity: 0;
}


/* -------------------------
   Main Visual
------------------------- */
.main-visual {
  position: relative;
  min-height: 100vh;
  background: url("images/main.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.mv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.58),
    rgba(255, 255, 255, 0.46)
  );
  z-index: 1;
}

.mv-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  max-width: 1080px;
  margin: 0 auto;
  padding: 180px 20px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mv-logo {
  max-width: 360px;
  /*margin-bottom: 38px;*/
}

.mv-logo img {
  display: block;
  width: 100%;
}

.mv-text p {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.9;
  color: #222;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
}

.mv-text h1 {
  font-size: 2.3em
}




/* ========================================
   5つの理由セクション
======================================== */
.reasons-section {
  background: #FFFADB;
  padding: 80px 20px 90px;
}

.reasons-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 48px;
  padding: 70px 60px 65px;
}

.reasons-heading {
  max-width: 980px;
  margin: 0 auto 52px;
  text-align: center;
}

.reasons-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 800;
  line-height: 1.4;
  color: #222;
  letter-spacing: 0.02em;
}

.heading-line {
  display: block;
  width: 92px;
  height: 3px;
  margin: 14px auto 28px;
  background: #d8b11e;
  border-radius: 999px;
}

.reasons-heading p {
  margin: 0;
  font-size: 17px;
  line-height: 2;
  color: #333;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 34px 26px;
  align-items: start;
}

.reason-card {
  text-align: center;
}

.reason-card:nth-child(1),
.reason-card:nth-child(2),
.reason-card:nth-child(3) {
  grid-column: span 2;
}

.reason-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.reason-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.reason-image {
  width: 100%;
  margin-bottom: 20px;
}

.reason-image img {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.reason-card h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.2vw, 42px);
  font-weight: 900;
  line-height: 1.35;
  color: #222;
  letter-spacing: 0.01em;
}

.reason-subtitle {
  margin: 0 0 14px;
  font-size: clamp(18px, 1.4vw, 26px);
  font-weight: 800;
  line-height: 1.5;
  color: #222;
}

.reason-text {
  max-width: 320px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

/* -------------------------
   Tablet
------------------------- */
@media screen and (max-width: 1024px) {
  .reasons-section {
    padding: 60px 16px 70px;
  }

  .reasons-inner {
    border-radius: 32px;
    padding: 56px 28px 56px;
  }

  .reasons-heading {
    margin-bottom: 40px;
  }

  .reasons-heading p {
    font-size: 16px;
    line-height: 1.9;
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }

  .reason-card:nth-child(1),
  .reason-card:nth-child(2),
  .reason-card:nth-child(3),
  .reason-card:nth-child(4),
  .reason-card:nth-child(5) {
    grid-column: span 1;
  }

  .reason-text {
    max-width: 100%;
  }
}

/* -------------------------
   Mobile
------------------------- */
@media screen and (max-width: 767px) {
  .reasons-section {
    padding: 46px 12px 56px;
  }

  .reasons-inner {
    border-radius: 24px;
    padding: 40px 18px 42px;
  }

  .reasons-heading {
    margin-bottom: 30px;
  }

  .reasons-heading h2 {
    font-size: 28px;
    line-height: 1.5;
  }

  .heading-line {
    width: 72px;
    margin: 12px auto 20px;
  }

  .reasons-heading p {
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reason-image img {
    max-width: 100%;
  }

  .reason-card h3 {
    font-size: 24px;
  }

  .reason-subtitle {
    font-size: 18px;
  }

  .reason-text {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* ========================================
   お問い合わせ導線セクション
======================================== */
.contact-cta-section {
  background: #FFFADB;
  padding: 0 0 90px;
}

.contact-cta-box {
  max-width: 2000px;
  margin: 0 auto;
  background: #fff;
  padding: 110px 20px 90px;
  text-align: center;
}

.contact-cta-title {
  margin: 0 0 34px;
  font-size: clamp(34px, 3.2vw, 72px);
  font-weight: 800;
  line-height: 1.4;
  color: #e7cd63;
  letter-spacing: 0.03em;
}

.contact-cta-text {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 44px);
  line-height: 1.9;
  color: #333;
  letter-spacing: 0.02em;
}

.contact-cta-button-wrap {
  margin-top: 60px;
}

.contact-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 450px;
  min-height: 78px;
  padding: 16px 40px;
  background: #eedb59;
  color: #222;
  font-size: clamp(22px, 1.8vw, 40px);
  font-weight: 800;
  line-height: 1;
  border-radius: 999px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-cta-button:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* -------------------------
   Tablet
------------------------- */
@media screen and (max-width: 1024px) {
  .contact-cta-section {
    padding: 0 16px 70px;
  }

  .contact-cta-box {
    padding: 80px 24px 72px;
  }

  .contact-cta-title {
    margin-bottom: 26px;
    font-size: clamp(28px, 4.4vw, 48px);
  }

  .contact-cta-text {
    font-size: clamp(16px, 2.3vw, 26px);
    line-height: 1.8;
  }

  .contact-cta-button-wrap {
    margin-top: 42px;
  }

  .contact-cta-button {
    min-width: 320px;
    min-height: 64px;
    font-size: 24px;
    padding: 14px 30px;
  }
}

/* -------------------------
   Mobile
------------------------- */
@media screen and (max-width: 767px) {
  .contact-cta-section {
    padding: 0 12px 56px;
  }

  .contact-cta-box {
    padding: 52px 18px 50px;
  }

  .contact-cta-title {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 1.5;
  }

  .contact-cta-text {
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
  }

  .contact-cta-button-wrap {
    margin-top: 30px;
  }

  .contact-cta-button {
    width: 100%;
    min-width: auto;
    min-height: 56px;
    font-size: 20px;
    padding: 14px 20px;
  }
}

/* -------------------------
   Responsive
------------------------- */
@media screen and (max-width: 1200px) {
  .global-nav ul {
    gap: 22px;
  }

  .global-nav {
    padding: 16px 26px;
  }

  .global-nav a {
    font-size: 15px;
  }
}

@media screen and (max-width: 900px) {
  .site-header {
    padding: 20px 20px 0;
  }

  .header-inner {
    align-items: center;
  }

  .site-logo {
    max-width: 220px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .global-nav {
    display: none;
    position: absolute;
    top: 72px;
    right: 0;
    width: min(92vw, 360px);
    border-radius: 24px;
    padding: 18px 18px;
    background: rgba(255, 255, 255, 0.96);
  }

  .global-nav.is-open {
    display: block;
  }

  .global-nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .global-nav li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .global-nav li:last-child {
    border-bottom: none;
  }

  .global-nav a {
    display: block;
    width: 100%;
    padding: 14px 6px;
    font-size: 15px;
  }

  .mv-inner {
    padding: 180px 20px 90px;
  }

  .mv-logo {
    max-width: 280px;
    margin-bottom: 28px;
  }

  .mv-text p {
    font-size: clamp(16px, 4vw, 22px);
    line-height: 1.85;
  }
}

@media screen and (max-width: 600px) {
  .site-logo {
    max-width: 180px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .menu-toggle span:nth-child(1) {
    top: 15px;
  }

  .menu-toggle span:nth-child(2) {
    top: 23px;
  }

  .menu-toggle span:nth-child(3) {
    top: 31px;
  }

  .menu-toggle.is-open span:nth-child(1),
  .menu-toggle.is-open span:nth-child(3) {
    top: 23px;
  }

  .global-nav {
    top: 66px;
    width: calc(100vw - 32px);
    border-radius: 0px;
  }

  .mv-inner {
    padding: 165px 16px 70px;
  }

  .mv-logo {
    max-width: 220px;
  }

  .mv-text p {
    font-size: 15px;
    line-height: 1.9;
  }
}


/* ========================================
   サービスセクション
======================================== */
.service-section {
  background: #FFFADB;
  padding: 80px 20px 100px;
}

.service-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.service-heading {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 54px;
}

.service-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 800;
  line-height: 1.4;
  color: #222;
  letter-spacing: 0.03em;
}

.service-heading-line {
  display: block;
  width: 92px;
  height: 3px;
  margin: 14px auto 28px;
  background: #d8b11e;
  border-radius: 999px;
}

.service-heading p {
  margin: 0;
  font-size: 17px;
  line-height: 2;
  color: #333;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.service-card {
  background: #fff;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-head {
  background: #4d86a6;
  color: #fff;
  text-align: center;
  padding: 22px 20px 18px;
}

.service-card-head h3 {
  margin: 0;
  font-size: clamp(26px, 2.2vw, 40px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.service-card-head p {
  margin: 4px 0 0;
  font-size: clamp(16px, 1.3vw, 24px);
  font-weight: 700;
  line-height: 1.5;
}

.service-card-body {
  padding: 28px 26px 34px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-image {
  margin-bottom: 22px;
  text-align: center;
}

.service-card-image img {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card-text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.95;
  color: #333;
}

.service-card-list {
  margin-bottom: 28px;
}

.service-card-list h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  color: #222;
}

.service-card-list ul {
  margin: 0;
  padding-left: 1.2em;
}

.service-card-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.service-card-link {
  margin: auto 0 0;
  text-align: center;
}

.service-card-link a {
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  color: #d8b11e;
  transition: opacity 0.25s ease;
}

.service-card-link a:hover {
  opacity: 0.75;
}

/* -------------------------
   Tablet
------------------------- */
@media screen and (max-width: 1024px) {
  .service-section {
    padding: 64px 16px 80px;
  }

  .service-heading {
    margin-bottom: 42px;
  }

  .service-heading p {
    font-size: 16px;
    line-height: 1.9;
  }

  .service-grid {
    gap: 22px;
  }

  .service-card {
    border-radius: 28px;
  }

  .service-card-body {
    padding: 24px 20px 28px;
  }
}

/* -------------------------
   Mobile
------------------------- */
@media screen and (max-width: 767px) {
  .service-section {
    padding: 50px 12px 60px;
  }

  .service-heading {
    margin-bottom: 30px;
  }

  .service-heading h2 {
    font-size: 28px;
    line-height: 1.5;
  }

  .service-heading-line {
    width: 72px;
    margin: 12px auto 20px;
  }

  .service-heading p {
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }

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

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

  .service-card-head {
    padding: 18px 16px 16px;
  }

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

  .service-card-head p {
    font-size: 15px;
  }

  .service-card-body {
    padding: 20px 16px 24px;
  }

  .service-card-image img {
    max-width: 100%;
  }

  .service-card-text,
  .service-card-list h4,
  .service-card-list li,
  .service-card-link a {
    font-size: 14px;
  }
}

/* ========================================
   制度改正案内セクション
======================================== */
.system-update-section {
  background: #fff;
  padding: 110px 20px 120px;
}

.system-update-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.system-update-title {
  margin: 0 0 56px;
  font-size: clamp(30px, 3vw, 58px);
  font-weight: 800;
  line-height: 1.45;
  color: #222;
  letter-spacing: 0.02em;
}

.system-update-text {
  max-width: 1160px;
  margin: 0 auto;
}

.system-update-text p {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 38px);
  line-height: 1.95;
  color: #333;
  letter-spacing: 0.02em;
}

.system-update-link {
  margin: 56px 0 0;
}

.system-update-link a {
  display: inline-block;
  font-size: clamp(24px, 2.2vw, 42px);
  font-weight: 800;
  line-height: 1.5;
  color: #ecd25d;
  transition: opacity 0.25s ease;
}

.system-update-link a:hover {
  opacity: 0.75;
}

/* -------------------------
   Tablet
------------------------- */
@media screen and (max-width: 1024px) {
  .system-update-section {
    padding: 80px 16px 88px;
  }

  .system-update-title {
    margin-bottom: 34px;
  }

  .system-update-text p {
    font-size: 16px;
    line-height: 1.95;
  }

  .system-update-link {
    margin-top: 38px;
  }

  .system-update-link a {
    font-size: 22px;
  }
}

/* -------------------------
   Mobile
------------------------- */
@media screen and (max-width: 767px) {
  .system-update-section {
    padding: 52px 12px 60px;
  }

  .system-update-title {
    margin-bottom: 24px;
    font-size: 26px;
    line-height: 1.6;
  }

  .system-update-text p {
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }

  .system-update-link {
    margin-top: 28px;
  }

  .system-update-link a {
    font-size: 18px;
  }
}

/* ========================================
   Contactセクション
======================================== */
.contact-section {
  background: #FAFAFA;
  padding: 50px 20px 80px;
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-head {
  display: flex;
  align-items: baseline;
  gap: 36px;
  margin-bottom: 28px;
  justify-content: center;
}

.contact-en {
  font-size: clamp(50px, 6vw, 168px);
  font-weight: 700;
  line-height: 0.95;
  color: #ecd25d;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.contact-head-text {
  padding-bottom: 18px;
}

.contact-head-text h2 {
  margin: 0;
  font-size: clamp(28px, 1.5vw, 58px);
  font-weight: 800;
  line-height: 1.45;
  color: #222;
  letter-spacing: 0.02em;
}

.contact-lead {
  max-width: 1260px;
  margin: 0 auto 50px;
}

.contact-lead p {
  font-size: clamp(18px, 1.5vw, 30px);
  line-height: 1.9;
  color: #333;
  letter-spacing: 0.02em;
  max-width: 800px;
  margin: 0 auto;
}

.contact-phone-area {
  text-align: center;
  margin-bottom: 42px;
}

.contact-phone-label {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 62px);
  font-weight: 500;
  line-height: 1.4;
  color: #222;
}

.contact-phone-number {
  margin: 0;
  line-height: 1;
}

.contact-phone-number a {
  display: inline-block;
  font-size: clamp(50px, 9vw, 58px);
  font-weight: 400;
  line-height: 1;
  color: #1f1712;
  letter-spacing: 0.02em;
}

.contact-button-wrap {
  text-align: center;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*min-width: 600px;*/
  min-height: 83px;
  padding: 20px 56px;
  background: #eedb59;
  border-radius: 999px;
  font-size: clamp(23px, 2vw, 35px);
  font-weight: 800;
  line-height: 1.2;
  color: #222;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-button:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* -------------------------
   Tablet
------------------------- */
@media screen and (max-width: 1024px) {
  .contact-section {
    padding: 70px 16px 80px;
  }

  .contact-head {
    gap: 24px;
    margin-bottom: 22px;
  }

  .contact-head-text {
    padding-bottom: 10px;
  }

  .contact-lead {
    margin-bottom: 56px;
  }

  .contact-lead p {
    font-size: 16px;
    line-height: 1.9;
  }

  .contact-phone-label {
    margin-bottom: 14px;
    font-size: 28px;
  }

  .contact-phone-number a {
    font-size: clamp(54px, 10vw, 96px);
  }

  .contact-button {
    min-width: min(100%, 760px);
    min-height: 86px;
    padding: 16px 32px;
    font-size: clamp(24px, 3vw, 38px);
  }
}

/* -------------------------
   Mobile
------------------------- */
@media screen and (max-width: 767px) {
  .contact-section {
    padding: 52px 12px 60px;
  }

  .contact-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
  }

  .contact-en {
    font-size: 68px;
    line-height: 1;
  }

  .contact-head-text {
    padding-bottom: 0;
  }

  .contact-head-text h2 {
    font-size: 24px;
    line-height: 1.6;
  }

  .contact-lead {
    margin-bottom: 42px;
  }

  .contact-lead p {
    font-size: 14px;
    line-height: 1.9;
  }

  .contact-phone-label {
    margin-bottom: 12px;
    font-size: 22px;
  }

  .contact-phone-number a {
    font-size: 52px;
    letter-spacing: 0.01em;
  }

  .contact-button {
    width: 100%;
    min-width: auto;
    min-height: 64px;
    padding: 14px 20px;
    font-size: 20px;
    text-align: center;
  }
}

/* ========================================
   Footer
======================================== */
.site-footer {
  background: #F9DC71;
  padding: 72px 40px 56px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}

.footer-left {
  flex: 1 1 50%;
}

.footer-name {
  margin: 0 0 24px;
  font-size: clamp(33px, 3vw, 72px);
  font-weight: 700;
  line-height: 1.2;
  color: #222;
}

.footer-name-s {
  font-size: clamp(27px, 1vw, 50px);
}

.footer-address {
  margin: 0;
  font-style: normal;
}

.footer-address span {
  display: block;
  font-size: clamp(18px, 1vw, 40px);
  line-height: 1.9;
  color: #4a463f;
}

.footer-right {
  flex: 1 1 50%;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 26px;
}

.footer-nav ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li {
  font-size: clamp(15px, 1vw, 34px);
  line-height: 1.7;
  color: #4a463f;
}

.footer-nav li:not(:last-child)::after {
  content: "｜";
  margin-left: 10px;
}

.footer-nav a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer-nav a:hover {
  opacity: 0.75;
}

.footer-copy {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 30px);
  line-height: 1.7;
  color: #5a564f;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #eedb59;
    color: #222;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid #e0c305;
    line-height: 1;
    transition: background-color 0.3s ease;
    margin: 30px auto;
    letter-spacing: 0.7em;
}
.btn:hover{
    background-color: #dbdbdb;
    color: #fff;
    border: 1px solid #fff;
}

.btn-contact {
    max-width: 600px;
    margin: 0 auto;
}

/* -------------------------
   Tablet
------------------------- */
@media screen and (max-width: 1024px) {
  .site-footer {
    padding: 56px 24px 44px;
  }

  .footer-inner {
    gap: 36px;
    align-items: flex-start;
  }

  .footer-name {
    margin-bottom: 18px;
  }

  .footer-address span {
    font-size: 16px;
    line-height: 1.9;
  }

  .footer-nav li {
    font-size: 16px;
  }

  .footer-copy {
    font-size: 15px;
  }
}

/* -------------------------
   Mobile
------------------------- */
@media screen and (max-width: 767px) {
  .site-footer {
    padding: 40px 16px 34px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    flex: none;
  }

  .footer-right {
    text-align: left;
    gap: 18px;
  }

  .footer-name {
    margin-bottom: 14px;
    font-size: 30px;
  }

  .footer-address span {
    font-size: 14px;
    line-height: 1.9;
  }

  .footer-nav ul {
    justify-content: flex-start;
    gap: 8px;
  }

  .footer-nav li {
    font-size: 14px;
  }

  .footer-nav li:not(:last-child)::after {
    margin-left: 8px;
  }

  .footer-copy {
    font-size: 13px;
    line-height: 1.8;
  }
}


/* =========================
   下層ページ上部
========================= */
.subpage-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 180px 0 120px;
  background: linear-gradient(90deg, rgba(233, 245, 212, 0.78) 0%, rgba(221, 239, 179, 0.72) 100%);
}

/* 背景画像 */
.subpage-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(239, 247, 220, 0.55) 0%, rgba(225, 241, 183, 0.42) 100%),
    url("../images/subpage-mv.jpg") center center / cover no-repeat;
  filter: blur(0.5px);
  transform: scale(1.03);
}

/* うっすら縦模様を足したい場合 */
.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.10) 0, rgba(255,255,255,0.10) 18%, transparent 19%) center top / 140px 320px repeat-y;
  opacity: 0.18;
  pointer-events: none;
}

.subpage-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
}

.subpage-hero__content {
  max-width: 520px;
  padding-top: 120px;
}

.subpage-hero__lead {
  margin: 0 0 22px;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #111;
}

.subpage-hero__title {
  margin: 0;
  font-size: clamp(42px, 4.3vw, 72px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.06em;
  color: #111;
}

/* =========================
   ヘッダーを画像イメージ寄りに調整したい場合
========================= */
.site-header {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}

.header-inner {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-logo img {
  width: auto;
  max-width: 320px;
  height: auto;
}

.global-nav {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  padding: 18px 34px;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav a {
  display: block;
  color: #555;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.global-nav a:hover,
.global-nav a:focus {
  opacity: 0.7;
}

/* ハンバーガーはPCでは非表示 */
/*.menu-toggle {
  display: none;
}*/

/* =========================
   SP
========================= */
@media (max-width: 1024px) {
  .subpage-hero {
    min-height: 500px;
    padding: 140px 0 80px;
  }

  .header-inner,
  .subpage-hero__inner {
    width: calc(100% - 32px);
  }

  .global-nav {
    padding: 14px 20px;
  }

  .global-nav ul {
    gap: 20px;
  }

  .global-nav a {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .site-header {
    top: 16px;
  }

  .header-inner {
    align-items: center;
  }

  .site-logo img {
    max-width: 220px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 2px;
  }

  .global-nav {
    display: none;
  }

  .subpage-hero {
    min-height: 420px;
    padding: 120px 0 60px;
  }

  .subpage-hero__content {
    padding-top: 70px;
    max-width: 100%;
  }

  .subpage-hero__lead {
    margin-bottom: 14px;
    letter-spacing: 0.06em;
  }

  .subpage-hero__title {
    line-height: 1.35;
  }
}

/* ========================================
   下層ページ共通
======================================== */
.page-main {
  background: #fff;
}

/* ========================================
   下層ページMV
======================================== */
.subpage-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 100px 0 120px;
  background: linear-gradient(90deg, rgba(233, 245, 212, 0.78) 0%, rgba(221, 239, 179, 0.72) 100%);
}

.subpage-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(239, 247, 220, 0.58) 0%, rgba(225, 241, 183, 0.44) 100%),
    url("images/subpage-mv.jpg") center center / cover no-repeat;
  transform: scale(1.03);
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.12) 0, rgba(255,255,255,0.12) 18%, transparent 19%) center top / 140px 320px repeat-y;
  opacity: 0.18;
  pointer-events: none;
}

.subpage-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
}

.subpage-hero__content {
  max-width: 800px;
  padding-top: 120px;
}

.subpage-hero__lead {
  margin: 0 0 22px;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #111;
}

.subpage-hero__title {
  margin: 0;
  font-size: clamp(42px, 3.3vw, 50px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.06em;
  color: #111;
}

/* ========================================
   公益認定申請とは
======================================== */
.service-about {
  padding: 120px 0 130px;
}

.service-about__inner {
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
}

.service-about__title {
  margin: 0;
  text-align: center;
  font-size: clamp(40px, 3vw, 72px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #111;
}

.service-about__line {
  display: block;
  width: 280px;
  height: 6px;
  margin: 28px auto 80px;
  background: #f2d21b;
}

.service-about__text {
  max-width: 1540px;
  margin: 0 auto;
}

.service-about__text p {
  margin: 0 0 28px;
  font-size: clamp(19px, 1.8vw, 34px);
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: #222;
}

.service-about__text p:last-child {
  margin-bottom: 0;
}

/* ========================================
   固定ページ本文
======================================== */
.page-content {
  padding: 80px 0 120px;
  background: #fff;
}

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

.page-content__inner > *:first-child {
  margin-top: 0;
}

.page-content__inner h2,
.page-content__inner h3,
.page-content__inner h4 {
  line-height: 1.4;
  color: #222;
}

.page-content__inner p {
  line-height: 2;
  color: #333;
}

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

/* ========================================
   既存ヘッダーを下層MVに重ねる
======================================== */
.site-header {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}

.header-inner {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-logo img {
  width: auto;
  max-width: 320px;
  height: auto;
}

.global-nav {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  padding: 18px 34px;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav a {
  display: block;
  color: #555;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.global-nav a:hover,
.global-nav a:focus {
  opacity: 0.7;
}

/*.menu-toggle {
  display: none;
}*/

/* ========================================
   タブレット
======================================== */
@media (max-width: 1024px) {
  .subpage-hero {
    min-height: 500px;
    padding: 140px 0 80px;
  }

  .subpage-hero__inner,
  .service-about__inner,
  .header-inner {
    width: calc(100% - 48px);
  }

  .subpage-hero__content {
    padding-top: 90px;
  }

  .service-about {
    padding: 90px 0 100px;
  }

  .service-about__line {
    width: 220px;
    margin: 22px auto 56px;
  }

  .service-about__text p {
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.85;
  }

  .global-nav {
    padding: 14px 20px;
  }

  .global-nav ul {
    gap: 20px;
  }

  .global-nav a {
    font-size: 15px;
  }
}

/* ========================================
   スマホ
======================================== */
@media (max-width: 767px) {
  .site-header {
    top: 16px;
  }

  .header-inner {
    width: calc(100% - 32px);
    align-items: center;
  }

  .site-logo img {
    max-width: 220px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 2px;
  }

  .global-nav {
    display: none;
      border-radius: 0px;
  }

  .subpage-hero {
    min-height: 420px;
    padding: 120px 0 60px;
  }

  .subpage-hero__inner {
    width: calc(100% - 32px);
  }

  .subpage-hero__content {
    max-width: 100%;
    padding-top: 70px;
  }

  .subpage-hero__lead {
    margin-bottom: 14px;
    font-size: 18px;
    letter-spacing: 0.06em;
  }

  .subpage-hero__title {
    font-size: 32px;
    line-height: 1.35;
  }

  .service-about {
    padding: 64px 0 72px;
  }

  .service-about__inner {
    width: calc(100% - 32px);
  }

  .service-about__title {
    font-size: 32px;
    line-height: 1.4;
  }

  .service-about__line {
    width: 140px;
    height: 4px;
    margin: 18px auto 34px;
  }

  .service-about__text p {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
  }

  .page-content {
    padding: 56px 0 80px;
  }

  .page-content__inner {
    width: calc(100% - 32px);
  }
}

/* ========================================
   メリット・デメリット + 支援内容
======================================== */
.support-detail-block {
  background: #FFFADB;
  padding: 0 20px;
}

.support-detail-block__inner {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  padding: 90px 60px 110px;
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(34px, 3.4vw, 60px);
  font-weight: 800;
  line-height: 1.35;
  color: #111;
  letter-spacing: 0.04em;
}

.section-title-line {
  display: block;
  width: 140px;
  height: 4px;
  margin: 16px auto 42px;
  background: #F9DC71;
  border-radius: 999px;
}

.section-lead {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(18px, 1.4vw, 28px);
  line-height: 1.9;
  color: #222;
}

/* -------------------------
   メリット・デメリット
------------------------- */
.merit-demerit-section {
  margin-bottom: 110px;
}

.merit-demerit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.info-panel {
  background: #FAF8EA;
  border-radius: 18px;
  overflow: hidden;
}

.info-panel__head {
  background: #5b89a5;
  color: #fff;
  text-align: center;
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 800;
  line-height: 1.4;
  padding: 18px 20px;
}

.info-panel__body {
  padding: 34px 34px 30px;
}

.info-item + .info-item {
  margin-top: 30px;
}

.info-item h3 {
  position: relative;
  margin: 0 0 10px;
  padding-left: 34px;
  font-size: clamp(20px, 1.6vw, 30px);
  font-weight: 800;
  line-height: 1.6;
  color: #111;
}

.info-item h3::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #5b89a5;
  transform: translateY(-50%);
}

.info-item h3::after {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 6px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.info-item p {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 24px);
  line-height: 1.95;
  color: #222;
}

/* -------------------------
   支援内容
------------------------- */
.support-menu-section .section-lead {
  max-width: 950px;
}

.support-menu-box {
  margin-top: 46px;
  padding: 18px 18px 14px;
  background: #FFFADB;
  border: 2px solid #e3a73c;
  border-radius: 18px;
}

.support-menu-box__title {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 800;
  line-height: 1.4;
  color: #111;
}

.support-menu-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: #f7f7f7;
  border-radius: 14px;
  overflow: hidden;
}

.support-menu-list {
  margin: 0;
  padding: 18px 28px 18px 34px;
  list-style: none;
}

.support-menu-list--right {
  border-left: 2px dashed #cfcfcf;
}

.support-menu-list li {
  position: relative;
  margin: 0;
  padding: 0 0 0 34px;
  font-size: clamp(17px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1.9;
  color: #222;
}

.support-menu-list li + li {
  margin-top: 12px;
}

.support-menu-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F9DC71;
  transform: translateY(-50%);
}

.support-menu-list li::after {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 6px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* -------------------------
   Tablet
------------------------- */
@media screen and (max-width: 1024px) {
  .support-detail-block {
    padding: 0 16px 90px;
  }

  .support-detail-block__inner {
    padding: 72px 32px 84px;
  }

  .merit-demerit-section {
    margin-bottom: 84px;
  }

  .section-title-line {
    margin-bottom: 32px;
  }

  .merit-demerit-grid {
    gap: 16px;
    margin-top: 38px;
  }

  .info-panel__body {
    padding: 28px 24px 26px;
  }

  .support-menu-box {
    margin-top: 36px;
  }

  .support-menu-list {
    padding: 18px 20px 18px 22px;
  }
}

/* -------------------------
   Mobile
------------------------- */
@media screen and (max-width: 767px) {
  .support-detail-block {
    padding: 0 12px 60px;
  }

  .support-detail-block__inner {
    padding: 52px 18px 60px;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.5;
  }

  .section-title-line {
    width: 92px;
    height: 3px;
    margin: 12px auto 24px;
  }

  .section-lead {
    font-size: 14px;
    line-height: 1.95;
  }

  .merit-demerit-section {
    margin-bottom: 58px;
  }

  .merit-demerit-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .info-panel__head {
    font-size: 22px;
    padding: 16px 14px;
  }

  .info-panel__body {
    padding: 22px 16px 20px;
  }

  .info-item + .info-item {
    margin-top: 22px;
  }

  .info-item h3 {
    padding-left: 28px;
    font-size: 18px;
  }

  .info-item h3::before {
    width: 16px;
    height: 16px;
  }

  .info-item h3::after {
    left: 5px;
    width: 5px;
    height: 5px;
  }

  .info-item p {
    font-size: 14px;
    line-height: 1.9;
  }

  .support-menu-box {
    margin-top: 28px;
    padding: 14px 12px 12px;
    border-radius: 14px;
  }

  .support-menu-box__title {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .support-menu-columns {
    grid-template-columns: 1fr;
  }

  .support-menu-list {
    padding: 14px 14px 14px 16px;
  }

  .support-menu-list--right {
    border-left: 0;
    border-top: 2px dashed #cfcfcf;
  }

  .support-menu-list li {
    padding-left: 28px;
    font-size: 14px;
    line-height: 1.85;
  }

  .support-menu-list li::before {
    width: 16px;
    height: 16px;
  }

  .support-menu-list li::after {
    left: 5px;
    width: 5px;
    height: 5px;
  }
}

/* ========================================
   進め方 + 強み
======================================== */
.support-flow-reason {
  background: #FFFADB;
  padding: 0 20px 120px;
}

.support-flow-reason__inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #efefef;
  padding: 0 60px 110px;
}

/* -------------------------
   進め方
------------------------- */
.support-flow {
  padding-top: 40px;
}

.support-flow__box {
  background: #f3f3f3;
  border-radius: 18px;
  padding: 56px 70px 48px;
}

.support-flow__title {
  margin: 0;
  text-align: center;
  font-size: clamp(34px, 3.3vw, 58px);
  font-weight: 800;
  line-height: 1.35;
  color: #111;
  letter-spacing: 0.04em;
}

.support-flow__line {
  display: block;
  width: 150px;
  height: 4px;
  margin: 16px auto 32px;
  background: #F9DC71;
  border-radius: 999px;
}

.support-flow__note {
  margin: 0 0 22px;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.8;
  color: #222;
}

.support-flow__timeline {
  position: relative;
  margin-top: 8px;
}

.support-flow__timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 16px;
  bottom: 18px;
  width: 6px;
  background: #F9DC71;
  border-radius: 999px;
}

.support-flow__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding-left: 0;
}

.support-flow__step:last-child::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 32px;
    width: 11px;
    height: calc(100% - 32px);
    background: #f3f3f3;
    z-index: 1;
}


.support-flow__step + .support-flow__step {
  margin-top: 28px;
}

.support-flow__marker {
  position: relative;
  z-index: 2;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  margin-top: 6px;
  border-radius: 50%;
  background: #F9DC71;
}

.support-flow__content {
  flex: 1;
  padding-top: 2px;
}

.support-flow__content h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 1.8vw, 34px);
  font-weight: 800;
  line-height: 1.5;
  color: #111;
}

.support-flow__content h3 span {
  color: #F9DC71;
  font-weight: 500;
  margin-right: 10px;
}

.support-flow__content p {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 24px);
  line-height: 1.9;
  color: #222;
}

/* -------------------------
   強い理由
------------------------- */
.support-strength {
  padding-top: 110px;
}

.support-strength__heading {
  max-width: 900px;
  margin: 0 auto 48px;
  background: #f3d700;
  padding: 18px 24px;
  text-align: center;
  font-size: clamp(28px, 2.8vw, 50px);
  font-weight: 800;
  line-height: 1.4;
  color: #111;
  letter-spacing: 0.03em;
}

.support-strength__body {
  max-width: 880px;
  margin: 0 auto;
}

.support-strength__body p {
  margin: 0 0 34px;
  font-size: clamp(18px, 1.35vw, 28px);
  line-height: 2;
  color: #222;
}

.support-strength__body p:last-child {
  margin-bottom: 0;
}

/* -------------------------
   Tablet
------------------------- */
@media screen and (max-width: 1024px) {
  .support-flow-reason {
    padding: 0 16px 90px;
  }

  .support-flow-reason__inner {
    padding: 0 32px 84px;
  }

  .support-flow__box {
    padding: 44px 34px 40px;
  }

  .support-flow__line {
    margin-bottom: 24px;
  }

  .support-flow__step + .support-flow__step {
    margin-top: 24px;
  }

  .support-strength {
    padding-top: 84px;
  }

  .support-strength__heading {
    margin-bottom: 36px;
  }
}

/* -------------------------
   Mobile
------------------------- */
@media screen and (max-width: 767px) {
  .support-flow-reason {
    padding: 0 12px 60px;
  }

  .support-flow-reason__inner {
    padding: 0 18px 60px;
  }

  .support-flow {
    padding-top: 24px;
  }

  .support-flow__box {
    border-radius: 14px;
    padding: 36px 18px 28px;
  }

  .support-flow__title {
    font-size: 28px;
    line-height: 1.5;
  }

  .support-flow__line {
    width: 92px;
    height: 3px;
    margin: 12px auto 20px;
  }

  .support-flow__note {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.8;
  }

  .support-flow__timeline::before {
    left: 11px;
    width: 4px;
  }

  .support-flow__step {
    gap: 16px;
  }

  .support-flow__step + .support-flow__step {
    margin-top: 20px;
  }

  .support-flow__marker {
    flex-basis: 26px;
    width: 26px;
    height: 26px;
    margin-top: 7px;
  }

  .support-flow__content h3 {
    font-size: 20px;
    line-height: 1.6;
  }

  .support-flow__content h3 span {
    display: inline-block;
    margin-right: 8px;
  }

  .support-flow__content p {
    font-size: 14px;
    line-height: 1.9;
  }

  .support-strength {
    padding-top: 58px;
  }

  .support-strength__heading {
    margin-bottom: 24px;
    padding: 14px 16px;
    font-size: 22px;
    line-height: 1.5;
  }

  .support-strength__body p {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.95;
  }
}


/* ========================================
   公益法人会計指導ページ 導入
======================================== */
.accounting-page-intro {
  background: #FFFADB;
  padding: 0 20px;
}

.accounting-page-intro__inner {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  padding: 82px 70px 110px;
}

.accounting-page-intro__lead,
.accounting-page-intro__body {
  max-width: 1360px;
  margin: 0 auto;
}

.accounting-page-intro__lead p,
.accounting-page-intro__body p {
  margin: 0 0 18px;
  font-size: clamp(18px, 1.35vw, 28px);
  line-height: 1.82;
  color: #222;
  letter-spacing: 0.03em;
}

.accounting-page-intro__lead p:last-child,
.accounting-page-intro__body p:last-child {
  margin-bottom: 0;
}

.accounting-page-intro__heading {
  margin: 120px 0 58px;
  text-align: center;
}

.accounting-page-intro__heading h2 {
  margin: 0;
  font-size: clamp(40px, 3vw, 72px);
  font-weight: 800;
  line-height: 1.3;
  color: #111;
  letter-spacing: 0.05em;
}

.accounting-page-intro__heading span {
  display: block;
  width: 180px;
  height: 5px;
  margin: 18px auto 0;
  background: #F9DC71;
  border-radius: 999px;
}

/* ========================================
   Tablet
======================================== */
@media screen and (max-width: 1024px) {
  
  .accounting-page-intro {
    padding: 0 16px 84px;
  }

  .accounting-page-intro__inner {
    padding: 64px 34px 84px;
  }

  .accounting-page-intro__lead p,
  .accounting-page-intro__body p {
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.85;
  }

  .accounting-page-intro__heading {
    margin: 84px 0 42px;
  }

  .accounting-page-intro__heading span {
    width: 150px;
  }
}

/* ========================================
   Mobile
======================================== */
@media screen and (max-width: 767px) {
  .accounting-page-intro {
    padding: 0 12px 60px;
  }

  .accounting-page-intro__inner {
    padding: 48px 18px 60px;
  }

  .accounting-page-intro__lead p,
  .accounting-page-intro__body p {
    font-size: 16px;
    line-height: 1.95;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
  }

  .accounting-page-intro__heading {
    margin: 56px 0 26px;
  }

  .accounting-page-intro__heading h2 {
    font-size: 32px;
    line-height: 1.45;
  }

  .accounting-page-intro__heading span {
    width: 96px;
    height: 3px;
    margin-top: 12px;
  }
}

/* ========================================
   公益法人会計指導：支援内容〜強み
======================================== */
.accounting-support-detail {
  background: #FFFADB;
  padding: 0 20px ;
}

.accounting-support-detail__inner {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  padding: 0 60px 110px;
}

/* -------------------------
   共通タイトル
------------------------- */
.accounting-section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(34px, 3.3vw, 58px);
  font-weight: 800;
  line-height: 1.35;
  color: #111;
  letter-spacing: 0.04em;
}

.accounting-section-line {
  display: block;
  width: 140px;
  height: 4px;
  margin: 14px auto 38px;
  background: #F9DC71;
  border-radius: 999px;
}

.accounting-section-lead {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(18px, 1.35vw, 28px);
  line-height: 1.9;
  color: #222;
}

/* -------------------------
   支援内容
------------------------- */
.accounting-menu-section {
  padding-top: 32px;
}

.accounting-menu-box {
  margin-top: 42px;
  padding: 18px 18px 14px;
  background: #FFFADB;
  border: 2px solid #e3a73c;
  border-radius: 18px;
}

.accounting-menu-box__title {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 800;
  line-height: 1.4;
  color: #111;
}

.accounting-menu-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: #f7f7f7;
  border-radius: 14px;
  overflow: hidden;
}

.accounting-menu-list {
  margin: 0;
  padding: 18px 28px 18px 28px;
  list-style: none;
}

.accounting-menu-list--right {
  border-left: 2px dashed #cfcfcf;
}

.accounting-menu-list li {
  position: relative;
  margin: 0;
  padding: 0 0 0 28px;
  font-size: clamp(16px, 1.18vw, 23px);
  line-height: 1.9;
  color: #222;
}

.accounting-menu-list li + li {
  margin-top: 10px;
}

.accounting-menu-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #F9DC71;
  transform: translateY(-50%);
}

.accounting-menu-list li::after {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 5px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* -------------------------
   会計指導の進め方
------------------------- */
.accounting-flow-section {
  padding-top: 74px;
}

.accounting-flow-box {
  background: #f3f3f3;
  border-radius: 18px;
  padding: 54px 64px 42px;
}

.accounting-flow-box__title {
  margin: 0;
  text-align: center;
  font-size: clamp(34px, 3.2vw, 56px);
  font-weight: 800;
  line-height: 1.35;
  color: #111;
  letter-spacing: 0.04em;
}

.accounting-flow-box__note {
  margin: 26px 0 22px;
  font-size: clamp(15px, 1.1vw, 21px);
  line-height: 1.8;
  color: #222;
  font-weight: 600;
}

.accounting-flow-timeline {
  position: relative;
}

.accounting-flow-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 14px;
  bottom: 18px;
  width: 6px;
  background: #F9DC71;
  border-radius: 999px;
}

.accounting-flow-step:last-child {
  position: relative;
}

.accounting-flow-step:last-child::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 32px;
  width: 10px;
  height: calc(100% - 32px);
  background: #f3f3f3;
  z-index: 1;
}

.accounting-flow-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.accounting-flow-step + .accounting-flow-step {
  margin-top: 24px;
}

.accounting-flow-step__marker {
  position: relative;
  z-index: 2;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  margin-top: 7px;
  border-radius: 50%;
  background: #F9DC71;
}

.accounting-flow-step__content h3 {
  margin: 0 0 6px;
  font-size: clamp(21px, 1.7vw, 32px);
  font-weight: 800;
  line-height: 1.55;
  color: #111;
}

.accounting-flow-step__content h3 span {
  color: #F9DC71;
  font-weight: 500;
  margin-right: 10px;
}

.accounting-flow-step__content p {
  margin: 0;
  font-size: clamp(16px, 1.18vw, 23px);
  line-height: 1.9;
  color: #222;
}

/* -------------------------
   強み
------------------------- */
.accounting-strength-section {
  padding-top: 78px;
}

.accounting-strength-heading {
  max-width: 920px;
  margin: 0 auto 36px;
  background: #f3d700;
  padding: 18px 24px;
  text-align: center;
  font-size: clamp(28px, 2.7vw, 50px);
  font-weight: 800;
  line-height: 1.4;
  color: #111;
  letter-spacing: 0.03em;
}

.accounting-strength-body {
  max-width: 980px;
  margin: 0 auto;
}

.accounting-strength-body p {
  margin: 0 0 30px;
  font-size: clamp(18px, 1.3vw, 27px);
  line-height: 1.95;
  color: #222;
}

.accounting-strength-body p:last-child {
  margin-bottom: 0;
}

/* -------------------------
   Tablet
------------------------- */
@media screen and (max-width: 1024px) {
  .accounting-support-detail {
    padding: 0 16px 90px;
  }

  .accounting-support-detail__inner {
    padding: 0 32px 84px;
  }

  .accounting-menu-box {
    margin-top: 34px;
  }

  .accounting-menu-list {
    padding: 16px 18px;
  }

  .accounting-flow-section {
    padding-top: 56px;
  }

  .accounting-flow-box {
    padding: 42px 30px 34px;
  }

  .accounting-flow-box__note {
    margin: 20px 0 18px;
  }

  .accounting-strength-section {
    padding-top: 58px;
  }
}

/* -------------------------
   Mobile
------------------------- */
@media screen and (max-width: 767px) {
  .accounting-support-detail {
    padding: 0 12px 60px;
  }

  .accounting-support-detail__inner {
    padding: 0 18px 60px;
  }

  .accounting-section-title {
    font-size: 28px;
    line-height: 1.5;
  }

  .accounting-section-line {
    width: 92px;
    height: 3px;
    margin: 12px auto 24px;
  }

  .accounting-section-lead {
    font-size: 14px;
    line-height: 1.95;
  }

  .accounting-menu-box {
    margin-top: 26px;
    padding: 14px 12px 12px;
    border-radius: 14px;
  }

  .accounting-menu-box__title {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .accounting-menu-columns {
    grid-template-columns: 1fr;
  }

  .accounting-menu-list {
    padding: 14px 14px 14px 16px;
  }

  .accounting-menu-list--right {
    border-left: 0;
    border-top: 2px dashed #cfcfcf;
  }

  .accounting-menu-list li {
    padding-left: 26px;
    font-size: 14px;
    line-height: 1.85;
  }

  .accounting-menu-list li::before {
    width: 15px;
    height: 15px;
  }

  .accounting-menu-list li::after {
    left: 5px;
    width: 4px;
    height: 4px;
  }

  .accounting-flow-step:last-child::after {
    left: 8px;
    top: 24px;
    width: 8px;
    height: calc(100% - 24px);
  }


  .accounting-flow-section {
    padding-top: 42px;
  }

  .accounting-flow-box {
    border-radius: 14px;
    padding: 34px 16px 26px;
  }

  .accounting-flow-box__title {
    font-size: 28px;
    line-height: 1.5;
  }

  .accounting-flow-box__note {
    margin: 18px 0 16px;
    font-size: 14px;
    line-height: 1.8;
  }

  .accounting-flow-timeline::before {
    left: 10px;
    width: 4px;
  }

  .accounting-flow-step {
    gap: 14px;
  }

  .accounting-flow-step + .accounting-flow-step {
    margin-top: 18px;
  }

  .accounting-flow-step__marker {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
    margin-top: 8px;
  }

  .accounting-flow-step__content h3 {
    font-size: 19px;
    line-height: 1.6;
  }

  .accounting-flow-step__content h3 span {
    margin-right: 8px;
  }

  .accounting-flow-step__content p {
    font-size: 14px;
    line-height: 1.9;
  }

  .accounting-strength-section {
    padding-top: 44px;
  }

  .accounting-strength-heading {
    margin-bottom: 24px;
    padding: 14px 16px;
    font-size: 22px;
    line-height: 1.5;
  }

  .accounting-strength-body p {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.95;
  }
}

/* ========================================
   制度改正のポイントページ
======================================== */
.point-hero {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  padding: 180px 0 70px;
  background: linear-gradient(90deg, rgba(226, 241, 173, 0.72) 0%, rgba(219, 238, 165, 0.68) 100%);
}

.point-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(239, 247, 220, 0.48) 0%, rgba(225, 241, 183, 0.30) 100%),
    url("images/subpage-mv.jpg") center center / cover no-repeat;
  transform: scale(1.03);
}

.point-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.08) 0, rgba(255,255,255,0.08) 18%, transparent 19%) center top / 140px 320px repeat-y;
  opacity: 0.18;
  pointer-events: none;
}

.point-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
}

.point-hero__title {
  margin: 0;
  max-width: 980px;
  font-size: clamp(34px, 2.5vw, 55px);
  font-weight: 800;
  line-height: 1.45;
  color: #111;
  letter-spacing: 0.03em;
}

.point-page {
  background: #FFFADB;
  padding: 0 20px ;
}

.point-page__inner {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  padding: 36px 70px 110px;
}

.point-intro {
  margin-bottom: 84px;
}

.point-intro p,
.point-section__text p {
  margin: 0 0 16px;
  font-size: clamp(18px, 1.3vw, 26px);
  line-height: 1.95;
  color: #222;
}

.point-intro p:last-child,
.point-section__text p:last-child {
  margin-bottom: 0;
}

.point-section {
  margin-bottom: 92px;
}

.point-section:last-child {
  margin-bottom: 0;
}

.point-section__title {
  margin: 0;
  text-align: center;
  font-size: clamp(34px, 3.1vw, 54px);
  font-weight: 800;
  line-height: 1.4;
  color: #111;
  letter-spacing: 0.04em;
}

.point-section__line {
  display: block;
  width: 120px;
  height: 4px;
  margin: 14px auto 38px;
  background: #F9DC71;
  border-radius: 999px;
}

.point-section__text {
  max-width: 980px;
  margin: 0 auto;
}

.point-card-list {
  margin-top: 34px;
  display: grid;
  gap: 20px;
}

.point-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #FFFADB;
  border-radius: 14px;
  padding: 20px 22px;
}

.point-card__num {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F9DC71;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 28px;
  text-align: center;
  margin-top: 2px;
}

.point-card__body h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 1.5vw, 28px);
  font-weight: 800;
  line-height: 1.6;
  color: #111;
}

.point-card__body p {
  margin: 0;
  font-size: clamp(15px, 1.1vw, 22px);
  line-height: 1.9;
  color: #333;
}

.point-list {
  margin: 10px 0 14px 1.2em;
  padding: 0;
}

.point-list li {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.9;
  color: #222;
}

.point-list--warning {
  margin-top: 8px;
}

.point-emphasis {
  font-weight: 700;
  color: #222;
}

.point-support-box {
  max-width: 980px;
  margin: 28px auto 0;
  background: #FFFADB;
  border: 2px solid #e3a73c;
  border-radius: 14px;
  padding: 22px 26px;
}

.point-support-box ul {
  margin: 0 0 10px 1.2em;
  padding: 0;
}

.point-support-box li,
.point-support-box p {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.9;
  color: #222;
}

.point-support-box p {
  margin: 0;
}

.point-related {
  margin-top: 20px;
}

.point-related__buttons {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.point-related__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 64px;
  padding: 14px 26px;
  background: #f3d700;
  border-radius: 12px;
  font-size: clamp(18px, 1.25vw, 22px);
  font-weight: 800;
  line-height: 1.4;
  color: #111;
  position: relative;
}

.point-related__button::after {
  content: "▶";
  font-size: 12px;
  margin-left: 12px;
}

/* Contact */
.point-contact {
  background: #efefef;
  padding: 70px 20px 90px;
}

.point-contact__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.point-contact__head {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 24px;
}

.point-contact__en {
  font-size: clamp(54px, 8vw, 140px);
  font-weight: 700;
  line-height: 0.95;
  color: #ecd25d;
  flex-shrink: 0;
}

.point-contact__title-wrap h2 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 44px);
  font-weight: 800;
  line-height: 1.5;
  color: #222;
}

.point-contact__lead {
  max-width: 980px;
  margin: 0 auto 44px;
}

.point-contact__lead p {
  margin: 0;
  font-size: clamp(16px, 1.15vw, 22px);
  line-height: 1.95;
  color: #333;
}

.point-contact__phone {
  text-align: center;
  margin-bottom: 30px;
}

.point-contact__phone-label {
  margin: 0 0 14px;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}

.point-contact__phone-number {
  margin: 0;
  line-height: 1;
}

.point-contact__phone-number a {
  display: inline-block;
  font-size: clamp(54px, 8vw, 88px);
  font-weight: 400;
  line-height: 1;
  color: #111;
}

.point-contact__button-wrap {
  text-align: center;
}

.point-contact__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 620px;
  min-height: 74px;
  padding: 16px 32px;
  background: #f3d700;
  border-radius: 999px;
  font-size: clamp(24px, 1.8vw, 34px);
  font-weight: 800;
  line-height: 1.3;
  color: #111;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .point-hero {
    min-height: 340px;
    padding: 140px 0 56px;
  }

  .point-hero__inner {
    width: calc(100% - 48px);
  }

  .point-page {
    padding: 0 16px 90px;
  }

  .point-page__inner {
    padding: 30px 34px 84px;
  }

  .point-intro,
  .point-section {
    margin-bottom: 70px;
  }

  .point-contact {
    padding: 56px 16px 70px;
  }

  .point-contact__button {
    min-width: min(100%, 760px);
  }
}

@media screen and (max-width: 767px) {
  .point-hero {
    min-height: 280px;
    padding: 120px 0 42px;
  }

  .point-hero__inner {
    width: calc(100% - 32px);
  }

  .point-hero__title {
    font-size: 28px;
    line-height: 1.5;
  }

  .point-page {
    padding: 0 12px 60px;
  }

  .point-page__inner {
    padding: 24px 18px 60px;
  }

  .point-intro,
  .point-section {
    margin-bottom: 52px;
  }

  .point-intro p,
  .point-section__text p,
  .point-list li,
  .point-support-box li,
  .point-support-box p {
    font-size: 14px;
    line-height: 1.95;
  }

  .point-section__title {
    font-size: 28px;
    line-height: 1.5;
  }

  .point-section__line {
    width: 92px;
    height: 3px;
    margin: 12px auto 24px;
  }

  .point-card {
    padding: 16px 14px;
    gap: 12px;
  }

  .point-card__num {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
  }

  .point-card__body h3 {
    font-size: 17px;
    line-height: 1.6;
  }

  .point-card__body p {
    font-size: 14px;
    line-height: 1.85;
  }

  .point-related__buttons {
    gap: 14px;
  }

  .point-related__button {
    width: 100%;
    min-width: auto;
    min-height: 56px;
    font-size: 16px;
  }

  .point-contact {
    padding: 46px 12px 56px;
  }

  .point-contact__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
  }

  .point-contact__en {
    font-size: 66px;
  }

  .point-contact__title-wrap h2 {
    font-size: 22px;
    line-height: 1.55;
  }

  .point-contact__lead {
    margin-bottom: 30px;
  }

  .point-contact__lead p {
    font-size: 14px;
    line-height: 1.9;
  }

  .point-contact__phone-label {
    font-size: 20px;
  }

  .point-contact__phone-number a {
    font-size: 46px;
  }

  .point-contact__button {
    width: 100%;
    min-width: auto;
    min-height: 60px;
    font-size: 19px;
    padding: 14px 20px;
  }
}