:root{
  /* containers */
  --container: 1280px;
  --container-wide: 1440px;
  --container-pad-narrow: 24px; /* 16〜32で調整 */
	
  /* header geometry */
  --header-h: 65px;
  --header-left: 18px;
  --header-logo-w: 179px;
  --header-logo-gap: 12px;

  /* hero geometry */
  --hero-left: 80px;
  --hero-illust-w: 842px;
  --hero-illust-h: 650px;

  /* colors */
  --text: #111;
  --muted: #333;
  --border: #e6e6e6;
	
  /* brand colors */
  --green: #00ad79;
  --orange: #ec6d45;
  --orange-footer: #fbcc7e;

  /* backgrounds color */
  --bg-gray: #f2f2f2;
	
  /* spacing */
  --pad-sp: 24px;
  --support-icon-size: 110px;
  --support-icon-out: 50px;   /* top:-50px 相当（飛び出し量） */
  --support-row-gap: 70px;    /* 上下の余白（ここだけ調整でOK） */
	
  /* font-size */
  --sp-header-h: 60px; /* 使ってる値に合わせる */
  --fs-h2: 48px;   /* 大見出し */
  --fs-h3: 36px;   /* 中見出し（全体） */
  --fs-h4: 32px;   /* 小見出し（全体：必要なら後で） */
  --fs-h5: 26px;   /* 小見出し（全体：必要なら後で） */
  --fs-h6: 24px;   /* 小見出し（全体：必要なら後で） */
  --fs-h7: 22px;   /* 小見出し（全体：必要なら後で） */
  --fs-h8: 20px;   /* 小見出し（全体：必要なら後で） */
  --fs-body: 18px; /* 本文 */
  --fs-body-s: 16px; /* 本文 */
  --fs-note: 14px; /* 注意書き */

  /* line hight */
  --lh-tight: 1.2;
  --lh-middle: 1.7;
  --lh-normal: 1.9;
	 
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
html{
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}

body{
  color: var(--text);
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
}

/* =========
  Containers
=========== */
.l-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0; /* ★1280以上はピタ */
}
.l-container--wide{
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0;
}
/* 1280未満 左右に余白 */
@media (max-width: 1279px){
  .l-container{
    padding: 0 var(--container-pad-narrow);
  }
}
/* SP 左右余白 */
@media (max-width: 899px){
  .l-container{
    padding: 0 var(--pad-sp);
  }
}


/* =========
  Header
=========== */
.goccha-header{
  background: #fff;
 }
.goccha-header__inner{
  position: relative;
  display: flex;
  align-items: center; 
  justify-content: space-between;
  height: var(--header-h);
  padding-left: var(--header-left);
  padding-right: 0;
}

/* logo: 下寄せ */
.goccha-header__brand{
  position: absolute;
  left: var(--header-left);
  bottom: 0;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}
.goccha-header__logo{
  width: var(--header-logo-w);
  height: auto;
  display: block;
}

/* left (tagline): ロゴ分だけ右へ */
.goccha-header__left{
  margin-left: calc(var(--header-logo-w) + var(--header-logo-gap));
  display: flex;
  align-items: center;
  min-width: 0;
}

.goccha-header__tagline{
  font-size: var(--fs-body-s);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* menu */
.goccha-header__menu{
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.goccha-header__link{
  font-size: var(--fs-body-s);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  color: #111;
}
.goccha-header__link:hover{ opacity: .75; }

/* SP toggle */
.goccha-header__toggle{
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}
.goccha-header__toggle-line{
  width: 26px;
  height: 2px;
  background: #111;
  display: block;
}
.goccha-header__toggle-line + .goccha-header__toggle-line{
  margin-top: 6px;
}
.goccha-header__toggle{
  display: none;
}
.goccha-drawer{
  display: none;
}
.goccha-hero__sp-visual{
  display: none;
}

@media (max-width: 899px){
  :is(#problem, #solution, #about, #system, #service, #support, #steps, #benefit, #links, #contact){
    scroll-margin-top: calc(var(--sp-header-h) + 12px);
  }
  .goccha-header__inner{
    height: 60px;
    padding-left: var(--pad-sp);
    padding-right: var(--pad-sp);
    justify-content: space-between;
  }
  .goccha-header__brand{
    position: static;
    display: flex;
    align-items: center;
  }
  .goccha-header__logo{
    width: 150px; 
  }

  /* タグライン：SPでは一旦消す */
  .goccha-header__left{
    margin-left: 0;
    display: none;
  }

  /* PCメニュー非表示 */
  .goccha-header__nav{
    display: none;
  }

  /* トグル表示 */
  .goccha-header__toggle{
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    margin-left: auto;
  }

  /* トグル線の見た目を安定 */
  .goccha-header__toggle-line{
    margin: 0;
  }
	
  /* ヘッダーを追従（固定） */
  .goccha-header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255,255,255,.86); /* ★透過 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari */
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
  }

  /* ヘッダーの高さ（SP用） */
  .goccha-header__inner{
    height: 60px; /* 既に指定してるなら合わせる */
  }

  /* 固定ヘッダー分、本文下げ */
  body{
    padding-top: 60px;
  }
  /* ドロワー全体（開閉は body.is-drawer-open で制御） */
  .goccha-drawer{
    display: block;
	position: fixed;
    inset: 0;
    z-index: 2000; /* ヘッダーより上 */
    pointer-events: none; /* 閉じてる時は操作不可 */
  }

  /* オーバーレイ */
  .goccha-drawer__overlay{
    position: absolute;
    inset: 0;
/*    background: rgba(0,0,0,.35);*/
    opacity: 0;
    transition: opacity .25s ease;
  }


/* パネル */
.goccha-drawer__panel{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(86vw, 360px);
  background: rgba(17,17,17,.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(100%);
  transition: transform .25s ease;
  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto; 
}

  .goccha-drawer__close{
    align-self: flex-end;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: rgba(0,0,0,.06);
    font-size: 24px;
    line-height: 1;
  }

  .goccha-drawer__nav{
    display: grid;
    gap: 10px;
    margin-top: 6px;
  }

  .goccha-drawer__link{
    display: block;
    padding: 14px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #111;
    font-weight: 800;
  background: rgba(255,255,255,.9); 
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: none;
  }

  /* OPEN状態 */
  body.is-drawer-open .goccha-drawer{
    pointer-events: auto;
  }
  body.is-drawer-open .goccha-drawer__overlay{
    opacity: 1;
  }
  body.is-drawer-open .goccha-drawer__panel{
    transform: translateX(0);
  }

  /* 開いてる時スクロール禁止 */
  body.is-drawer-open{
    overflow: hidden;
  }
}



/* =========================
  Hero Section (background in 1440 area)
=========================== */
.goccha-hero{
  background: #fff;
  padding-bottom: 50px;	
}
.goccha-hero__inner{
  padding-left: var(--hero-left);
  padding-right: 0;
  padding-top: 56px;
  padding-bottom: 72px;
  min-height: 760px;
  background-image: url("../img/hero-illustration.png");
  background-repeat: no-repeat;
  background-size: var(--hero-illust-w) var(--hero-illust-h);
  background-position: right calc(100% - 40px);
}

.goccha-hero__copy{
  max-width: 700px;
}

.goccha-hero__title{
  margin: 0 0 18px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-size: clamp(28px, 3.4vw, 50px);

}
.goccha-hero__title-accent{ color: var(--orange); }

.goccha-hero__lead{
  margin: 0 0 78px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.9;
  font-size: var(--fs-body);
}

.goccha-hero__actions{
  display: grid;
  grid-template-columns: repeat(2, 220px);
  gap: 18px;
  justify-content: start; /* 左寄せ */
}
.goccha-hero__actions .goccha-button{
  font-size: 20px;
  letter-spacing: 0.1em;
}

/* button */
.goccha-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .08s ease, opacity .2s ease;
}
.goccha-button--primary{
  background: var(--green);
  color: #fff;
}
.goccha-button--primary:hover{ opacity: .9; }
.goccha-button--primary:active{ transform: translateY(1px); }


@media (max-width: 899px){
  .goccha-hero__inner{
    padding-top: 36px;
	  background-image: none;
	  min-height: auto;
    padding-bottom: 24px;
  }

  .goccha-hero__title{
    margin-bottom: 12px;
  }
  .goccha-hero__lead{
    margin-bottom: 22px;
  }

  .goccha-hero__sp-visual{
    display: block;
    margin-top: 18px;
  }
  .goccha-hero__sp-visual img{
    width: 100%;
    height: auto;
    display: block;
  }

  .goccha-hero__actions{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .goccha-hero__actions .goccha-button{
    width: 100%;
    height: 52px;
  }

}


/* =========================
  SP Header 
=========================== */
@media (max-width: 899px){
  .l-container--wide{
    padding: 0 var(--pad-sp);
  }

  .goccha-header__nav{ display:none; }
  .goccha-header__toggle{
    display: inline-flex;
    flex-direction: column;
    margin-left: auto;
  }

  .goccha-header__inner{
    justify-content: flex-end;
    padding-right: var(--pad-sp);
  }
  .goccha-header__brand{
    left: var(--pad-sp);
  }

  .goccha-hero__inner{
    padding-left: var(--pad-sp);
    padding-right: var(--pad-sp);
	padding-top: 20px;
    min-height: auto;

    background-position: center bottom;
    background-size: 90%;
  }
  .goccha-hero__copy{
    max-width: 100%;
  }
}

/* =========================
  Common
=========================== */
.goccha-problem__title,
.goccha-solution__title,
.goccha-about__title,
.goccha-service__title,
.goccha-cta__title{
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  font-weight: 800;
  text-align: center;
}
.goccha-problem-card__text,
.goccha-solution-box__text,
.goccha-support-card__text,
.goccha-step__text,
.goccha-benefit-card__text,
.goccha-linkcard__text,
.goccha-cta__lead{
  font-size: var(--fs-body); 
  line-height: var(--lh-middle);
  font-weight: normal;
  color: var(--text);
}

/* =========================
  Problem Section
=========================== */
.goccha-problem{
  padding: 96px 0;
  background: var(--bg-gray);
}

.goccha-problem__title{
  margin: 0 0 72px;
}
.goccha-problem__title span{ color:var(--orange); }

.goccha-problem__body{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 70px;
}

.goccha-problem__content{
  flex: 1 1 0;
  min-width: 0;
}

.goccha-problem__visual{
  flex: 0 0 422px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
	margin-top: -18px;
}

.goccha-problem__visual-img--top{
  width: 408px;
  height: 350px;
  display: block;
}
.goccha-problem__visual-gap{ height: 144px; }
.goccha-problem__visual-img--bottom{
  width: 404px;
  height: 243px;
  display: block;
}

.goccha-problem__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 92px;
}

/* カード */
.goccha-problem-card{
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 76px 24px 24px;
}

.goccha-problem-card__badge{
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 0;
  z-index: 2;
}

/* 困った人：左上に“かぶせる” */
.goccha-problem-card__avatar{
  position: absolute;
  left: 0;
  top: -62px;
  width: 126px;
  height: 137px;
  display: block;
}

/* 丸数字 */
.goccha-problem-card__num{
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 55px;
  font-weight: 800;
  line-height: 1;
}
/* 枠内タイトル：オレンジ＆中央＆大きく */
.goccha-problem-card__title{
  margin: 0 0 14px;
  text-align: center;
  color: var(--orange);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.goccha-problem-card__text{
  margin: 0;
}

/* =========================
  SP Problem Section 
=========================== */
@media (max-width: 899px){

  .goccha-problem__body{
    flex-direction: column;
    gap: 28px;
    padding-top: 48px; /* バッジ分の逃げ。必要なら調整 */
  }
  .goccha-problem__title{
	 margin: 0 0 36px;
  }

  .goccha-problem__title span{display:block;}

  /* 右のイラストは幅100%へ */
  .goccha-problem__visual{
    flex: initial;
    width: 100%;
    margin-top: 0;
    align-items: center;
  }

  .goccha-problem__visual-img--top,
  .goccha-problem__visual-img--bottom{
    width: 100%;
    height: auto;
    max-width: 520px; /* 好みで */
  }

  .goccha-problem__visual-gap{
    height: 24px;
  }

  /* カード：1列 */
  .goccha-problem__grid{
    grid-template-columns: 1fr;
    row-gap: 72px; /* バッジ被り分の余白 */
  }

  .goccha-problem-card{
    padding: 72px 18px 20px;
  }

  .goccha-problem-card__badge{
    left: 18px;
    right: 18px;
  }

  .goccha-problem-card__avatar{
    width: 110px;
    height: auto;
    top: -54px;
  }

  .goccha-problem-card__num{
    width: 84px;
    height: 84px;
    font-size: 44px;
  }
}


/* =========================
  Solution Section
=========================== */

.goccha-solution{
  padding: 96px 0;
}

.goccha-solution__title{
  margin: 0 0 72px;
}
.goccha-solution__title-green{ color: var(--green); }
.goccha-solution__title-orange{ color: var(--orange); }

.goccha-solution-item{
  display: flex;
  align-items: stretch;
  gap: 32px;
  margin: 0;
  padding-bottom: 6px;
}

.goccha-solution-box{
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  position: relative;
  border-radius: 18px;
  padding: 28px 15px 0 28px;
  overflow: visible;
}

.goccha-solution-box--problem{
  border: 3px solid var(--green);
}
.goccha-solution-box--problem .goccha-solution-box__title{
  color: var(--green);
}
.goccha-solution-box--solution{
  border: 3px solid var(--orange);
}
.goccha-solution-box--solution .goccha-solution-box__title{
  color: var(--orange);
}

.goccha-problem-card__title,
.goccha-solution-box__title{
  font-size: var(--fs-h6);
  line-height: 1.35;
  font-weight: 700;
  margin-top:0;
}
.goccha-solution-box__text{
  margin: 0;
}

.goccha-solution-box__note{
  margin: 8px 0 0;
  line-height: 1.6;
  font-size: var(--fs-note);
}
/*
.goccha-solution-box__people{
  float: right;
  width: 240px;
  max-width: none;
  height: auto;
  max-height: none;
  margin: -10px 0 0 0;
  object-fit: contain;
  display: block;
  shape-image-threshold: 0.25;
  shape-margin: 20px;
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  pointer-events: none;
}
*/
.goccha-solution-box__people{
  float: right;
  width: 240px;
  height: auto;
  shape-image-threshold: 0.10; /* 透過の境界が甘い時は0.05〜0.15 */
  shape-margin: 10px;          /* 文字との距離 */
  margin: -10px 0 10px 16px;   /* 少し上に上げたいなら -10px、不要なら0 */
  margin: -10px 0 0 0;
  object-fit: contain;
  pointer-events: none;
}

.goccha-solution-box::after{
  content:"";
  display:block;
  clear:both;
}

.goccha-solution-box__title,
.goccha-solution-box__text,
.goccha-solution-box__note{
  padding-right: 0 !important;
}

/* 矢印 */
.goccha-solution-arrow{
  flex: 0 0 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.goccha-solution-arrow::before{
  content:"";
  width: 28px;          /* 三角の横幅 */
  height: 78px;         /* 三角の縦 */
  background: var(--orange);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  border-radius: 2px;
}
.goccha-solution__after{
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.goccha-solution__flow-btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
  transition: transform .15s ease, opacity .15s ease;
}

.goccha-solution__flow-btn:hover{
  transform: translateY(-1px);
  opacity: .95;
}

.goccha-solution__flow-text{
  white-space: nowrap;
}

.goccha-solution__list{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* =========================
  SP Solution Section
=========================== */
@media (max-width: 899px){
  .goccha-solution__title{
    margin: 0 0 36px;
  }
	.goccha-solution__title-green{display: block;}
  .goccha-solution__list {
      gap: 48px;
  }
  .goccha-solution-item{
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    padding-bottom: 0;
  }

  .goccha-solution-box{
    padding: 22px 22px 18px;
    overflow: visible;
  }
  .goccha-solution-box__title{
	margin-bottom: 10px;
  }
  .goccha-solution-box__title,
  .goccha-solution-box__text,
  .goccha-solution-box__note{
    display: block;
  }
/*
  .goccha-solution-box__people{
    position: static;
    height: auto;
    display: block;
    margin: 12px 0 0 0;
    width: 40%;
    shape-margin: 8px;
  }
*/
  .goccha-solution-box__people{
    width: 40%;
    max-width: 240px;
    margin: 0 0 8px 12px;      /* SPは変に上げない方が安定 */
    margin: 12px 0 0 0;
    shape-margin: 8px;
  }
  /* 矢印 */
  .goccha-solution-arrow{
    width: 100%;
    flex: 0 0 auto;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .goccha-solution-arrow::before{
    width: 44px;
    height: 22px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }

  .goccha-solution__flow-btn{
    width: 100%;
    justify-content: center;
  }
}


/* =========================
  About Section
=========================== */
.goccha-about{
  padding: 96px 0;
  background: var(--bg-gray);
}

.goccha-about__kicker{
  margin: 0 0 10px;
  text-align: center;
  font-weight: 700;
  font-size: var(--fs-h4);
}

.goccha-about__title{
  margin: 0 0 72px;
}
.goccha-about__title span{
  color: var(--orange);
}
.goccha-about__title br{display: none;}
.goccha-about__panel{
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  padding: 26px 36px 36px;
}

.goccha-about__top{
  display: grid;
  grid-template-columns: 440px 1fr; /* 460〜520で調整OK */
  gap: 160px;
  align-items: start;
  margin-bottom: 0;
  padding: 0 48px;
}

.goccha-about__visual{
  flex: initial;
}

.goccha-about__visual-img{
  width: 100%;
  height: auto;
  display: block;
}

.goccha-about__desc{
  flex: 1;
  max-width: 450px;
}

.goccha-about__point + .goccha-about__point{
  margin-top: 18px;
}

.goccha-about__point-title{
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: var(--fs-h4);
  line-height: 1.3;
  color: var(--orange);
}

.goccha-about__bar{
  width: 6px;
  height: 30px;
  background: var(--orange);
  flex: 0 0 auto;
}
.goccha-about__bar2{
  width: 6px;
  height: 80px;
  background: var(--orange);
  flex: 0 0 auto;
}
.goccha-about__arrow{
  color: var(--green);
  font-weight: 900;
}

.goccha-about__point-text{
  margin: 0 0 50px 0;
  line-height: 1.7;
  color: var(--text);
  font-weight: 600;
  font-size: var(--fs-h6);   /* 24px */
}
.goccha-about__point-text.last-c{
  margin: 0;
}
/* 下段：システムの流れ */
.goccha-about__flow{
  padding-top: 18px;
}

.goccha-about__flow-title{
  margin: 0 0 12px;
  text-align: center;
  font-weight: 800;
  font-size: 22px;
}

.goccha-flow{
  display: grid;
  grid-template-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-rows: auto auto; /* ★上：枠 / 下：caption */
  column-gap: 10px;
  row-gap: 10px;               /* ★枠とcaptionの間 */
  align-items: start;
  margin-bottom: 30px;
}

/* stepの箱を消して、中の要素を親グリッドに */
.goccha-flow__step{
  display: contents;
}
/* それぞれのstepがどの列かをCSS変数で割り当て（子に継承） */
.goccha-flow > .goccha-flow__step:nth-child(1){ --col: 1; }
.goccha-flow > .goccha-flow__step:nth-child(3){ --col: 3; }
.goccha-flow > .goccha-flow__step:nth-child(5){ --col: 5; }
.goccha-flow > .goccha-flow__step:nth-child(7){ --col: 7; }

/* 枠上段 */
.goccha-flow__step .goccha-flow__box{
  grid-column: var(--col);
  grid-row: 1;
}

.goccha-flow__box{
  border: 2px solid var(--orange);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: left;
  font-weight: 700;
  font-size: var(--fs-body);
  line-height: 1.35;
  background: #fff;
  word-break: keep-all;
  overflow-wrap: anywhere;
  position: relative;
  text-align: left;
  padding-left: 62px;
  min-height: 84px;
  display: flex;
  align-items: center;
}
.goccha-flow__num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  margin-bottom: 6px;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  flex: 0 0 auto;	
}

.goccha-flow__caption{
  margin: 10px 0 0;
  text-align: left;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  font-weight: 600;
}

.goccha-flow__caption{
  grid-column: var(--col);
  grid-row: 2;
  margin-top: 0;
  line-height:1.5;
  padding-left:30px;
}
/* flowの矢印 */
.goccha-flow__arrow{
  grid-row: 1;
  align-self: center;
  justify-self: center;
  position: relative;
  width: 18px;
  height: 42px;
  color: transparent;
  font-size: 0;
  line-height: 0;
}
/* 右向き三角 */
.goccha-flow__arrow::before{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  border-radius: 2px;
}

.goccha-about__note{
  margin: 14px 0 0;
  text-align: center;
  color: var(--text);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  font-weight: 600;
}

.goccha-about__note-underline{
  display: inline;
  padding:0 1em;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.goccha-about__note-accent{
  color: var(--orange);
}

/* =========================
  SP About Section
=========================== */
@media (max-width: 899px){
  .goccha-about__title {
      margin: 0 0 36px;
  }
  .goccha-about__title br{display:inherit;}
  .goccha-about__point-text {
      margin: 0 0 30px 0;
      line-height: 1.5;
  }
  .goccha-about__bar2 {
      height: 50px;
  }
  .goccha-flow__box br{
    display: none;
  }
  .goccha-flow__caption br{
    display: none;
  }
  .goccha-about__panel{
    padding: 18px 16px 18px;
    border-radius: 14px;
  }

  .goccha-about__top{
    grid-template-columns: 1fr;
    gap: 18px;
	padding: 0 12px 20px;
  }

  .goccha-about__visual{
    width: 100%;
  }

  .goccha-flow{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .goccha-flow__step{
    display: block;
    width: 100%;
  }

  .goccha-flow__box,
  .goccha-flow__caption{
    grid-column: auto;
    grid-row: auto;
  }
  .goccha-flow__box{
    width: 100%; 
    max-width: none;
    display: block;
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
    min-height: auto;
  }

  .goccha-flow__caption{
    margin-top: 10px;
    text-align: center;
    width: 100%;
	padding: 0;
  }

  .goccha-flow{
    align-items: stretch;
  }

  .goccha-flow__num{
    position: static;
    transform: none;
    margin: 0 auto 8px;
    display: block;
	font-size: 20px;
	width:30px;
	height:30px;
  }

  .goccha-flow__arrow{
    width: 100%;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
    align-self: stretch;
  }

  .goccha-flow__arrow::before{
    content: "";
    display: block;
    background: var(--orange);

    position: static;
    width: 34px;
    height: 18px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .goccha-about__note-underline {padding: 0;}
  .goccha-about__note-accent.arrow{
    display: none;
  }

}


/* =========================
  Service Section
=========================== */
.goccha-service{
	padding: 96px 0;
}
.goccha-service__title{
  margin:0 0 72px;
}
.goccha-service__title br{display: none;}
.goccha-service__title span{
  color: var(--orange);
}
.goccha-service-title{
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: var(--fs-h3); 
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
}
.goccha-service-title br{display: none;}
.goccha-service-title__icon{
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: transparent; /* 念のため */
  border: 0;               /* ★枠なし */
  border-radius: 0;        /* ★丸枠なし */
  padding: 0;
}

.goccha-service-title__icon img{
  width: 80px;
  height: auto;
  display: block;
}

/* 文字部分だけに下線を引く（ここがポイント） */
.goccha-service-title__text{
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green); /* ★緑下線 */
}

/* 「黒＋オレンジ混在」にしたい場合（任意） */
.goccha-service-title__accent{
  color: var(--orange); /* オレンジ */
}

.goccha-support{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: var(--support-row-gap);
  padding-top: var(--support-icon-out);
}

.goccha-support-card{
  position: relative;
  overflow: visible;

  border: 2px solid var(--green);
  border-radius: 16px;
  background: #fff;
  text-align: center;

  padding: calc(10px + var(--support-icon-out)) 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.goccha-support-card__icon{
  position: absolute;
  left: 50%;
  top: calc(-1 * var(--support-icon-out));
  transform: translateX(-50%);
  width: var(--support-icon-size);
  height: auto;
  margin: 0;
}

.goccha-support-card__title{
  margin: 0 0 10px;
  color: var(--green);
  font-size: var(--fs-h5);
  line-height: 1.35;
  font-weight: 600;
}
.goccha-support-card__text{
  margin: 0;
  text-align: left;
}
.goccha-support-card__note{
  margin: 0;
  line-height: 1.3;
  font-size: var(--fs-note);
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
.goccha-service__block{
  padding: 0 0 80px;
}
.goccha-service__block:last-child{
  padding: 0;
}
.goccha-steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 40px;
}

/* Steps2：カード内を「本文左＋イラスト右」 */
.goccha-step{
  position: relative;
  border: 2px solid var(--green);
  border-radius: 16px;
  background: #fff;
  min-height: 240px;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 145px;
  grid-template-rows: auto auto 1fr;
  column-gap: 14px;
  row-gap: 10px;
  padding: 30px 18px 20px;
}

/* STEPラベル */
.goccha-step__tag{
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  height: 48px;
  padding: 0 24px;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 35px;
  line-height: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.goccha-step__title{
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  text-align: center;
  color: var(--green);
  font-size: var(--fs-h5);
  line-height: 1.35;
  font-weight: 600;
}

.goccha-step__text{
  grid-column: 1;
  grid-row: 3;
  margin: 0;
  padding-right: 0;
}

.goccha-step__img{
  grid-column: 2;
  grid-row: 3;
  position: static;
  width: 163px;
  height: auto;
  align-self: end;
  justify-self: end;
  margin: 0;
}

.goccha-benefit-title{
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  position: relative;
  padding-bottom: 14px;
}

.goccha-benefit-title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 560px;
  max-width: 100%;
  height: 2px;
  background: var(--green);
}

.goccha-benefit-title__icon{
  width: 38px;
  height: 38px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.goccha-benefit-title__icon img{
  width: 22px;
  height: auto;
  display: block;
}

.goccha-benefit{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px;
  padding-top: 20px;
}

.goccha-benefit-card{
  border: 2px solid var(--green); /* 緑枠 */
  background: #fff;
  padding: 16px 14px 14px;
  text-align: center;
}

.goccha-benefit-card__visual{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  min-height: 120px;
  margin-bottom: 10px;
}

.goccha-benefit-card__img{
  max-height: 170px;
  width: auto;
  height: auto;
  display: block;
}

.goccha-benefit-card__text{
  margin: 0;
}

/* =========================
  SP Service Section
=========================== */
@media (max-width: 899px){
  .goccha-service{
    padding: 64px 0;
  }
  .goccha-service__title {
      margin: 0 0 36px;
  }
  .goccha-service__title br{display: inherit;}

  .goccha-service__block{
    padding: 0 0 40px;
  }
  .goccha-service-title {
    margin: 0 auto 20px;
	}
  .goccha-service-title br{display: inherit;}

  .goccha-service-title__icon{
    width: 50px;
    height: 50px;
  }

  .goccha-service-title__icon img{
    width: 50px;
   }

  .goccha-support{
    grid-template-columns: 1fr;  /* ★1列 */
  }
  .goccha-support-card { gap:0}
  .goccha-service{
    --support-icon-size: 84px;
    --support-icon-out: 38px;
    --support-row-gap: 56px;
  }
  .goccha-steps{
    grid-template-columns: 1fr; /* ★1列 */
    gap: 18px;
  }

  .goccha-step{
    grid-template-columns: 1fr 96px;
    padding: 40px 16px 18px;
  }
  .goccha-step__img{
    width: 88px;
  }
  .goccha-benefit{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  /* 1列 */
  .goccha-steps{
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  /* カード中身：縦積み */
  .goccha-step{
    display: block !important;
    padding: 40px 16px 18px !important;
  }
  .goccha-step__title{ margin-bottom:10px;}
  .goccha-step__text{
    padding-right: 0 !important;
  }


  .goccha-step__img{
    position: static !important;
    width: min(220px, 70%) !important;
    height: auto !important;
    display: block !important;
    margin: 14px auto 0 !important;
  }
  .goccha-benefit{
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px !important;
  }

  .goccha-benefit-card__visual{
    min-height: 110px;
  }
  .goccha-benefit-card__img{
    max-height: 160px;
  }
}

@media (max-width: 420px){
  .goccha-benefit{
    grid-template-columns: 1fr;
  }
}


/* =========================
  Linkcards Section
=========================== */
.goccha-linkcards{
  padding: 96px 0;
  background: var(--bg-gray);
}

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

.goccha-linkcard{
  background: #fff;
  min-height: 260px;
  padding: 38px 44px 34px;
  text-decoration: none;
  color: #111;
  display: flex;
  flex-direction: column;
}

.goccha-linkcard__head{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.goccha-linkcard__icon{
  border: 0;
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.goccha-linkcard__icon img{
  width: 80px;
  height: auto;
  display: block;
}

.goccha-linkcard__title{
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
}

.goccha-linkcard__text{
  margin: 0 0 60px;
}

.goccha-linkcard__accent{
  color: var(--green);
  font-weight: 700;
}

.goccha-linkcard__btn{
  margin-top: auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  min-width: 270px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}

/* hover */
.goccha-linkcard:hover{ opacity: .96; }

/* =========================
  SP Linkcards Section
=========================== */
@media (max-width: 899px){
  .goccha-linkcards__grid{
    display: grid !important;
    grid-template-columns: 1fr !important; /* ★1列 */
    gap: 16px !important;
  }

  .goccha-linkcard{
    min-height: auto !important;   /* 高さ固定を解除 */
    padding: 22px 18px 20px !important;
  }

  .goccha-linkcard__title{
    font-size: 22px;
    line-height: 1.25;
  }
  .goccha-linkcard__icon img {
    width: 50px;
  }
  .goccha-linkcard__head{
    margin-bottom: 12px;
  }
  .goccha-linkcard__text{
    margin: 0 0 20px;
  }
  .goccha-linkcard__btn{
    width: 100%;
    justify-content: center;
  }
}


/* =========================
  CTA Section
=========================== */
.goccha-cta{
  padding: 96px 0;
}

.goccha-cta__inner{
  text-align: center;
}

.goccha-cta__title{
  margin: 0 0 18px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  color: #111;
  letter-spacing: .02em;
}
.goccha-cta__title span{
  color: var(--orange); 
}
.goccha-cta__title br{display: none;}

.goccha-cta__lead{
  margin: 0 auto 40px;
}

.goccha-cta__actions{
  display: flex;
  justify-content: center;
  gap: 100px;
}

.goccha-cta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 56px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
  transition: transform .15s ease, opacity .15s ease;
}

.goccha-cta__btn:hover{
  transform: translateY(-1px);
  opacity: .95;
}

/* =========================
  SP CTA Section
=========================== */
@media (max-width: 899px){
  .goccha-cta{
    padding: 64px 0 72px;
  }

  .goccha-cta__title{
    font-size: 32px;
    line-height: 1.25;
  }
  .goccha-cta__title br{display: inherit;}

  .goccha-cta__lead{
    font-size: 16px;
    line-height: 1.9;
  }

  .goccha-cta__actions{
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }

  .goccha-cta__btn{
    width: 100%;
    height: 52px;
  }
}


/* =========================
  Footer
=========================== */
.goccha-footer{
  background: var(--orange-footer);
  color: #111;
}

.goccha-footer__inner{
  position: relative;
  padding: 60px 0 54px;
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  column-gap: 120px;
  align-items: start;
}

.goccha-footer__logo img{
  width: 176px;
  height: auto;
  display: block;
}

.goccha-footer__catch{
  margin: 22px 0 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .02em;
}

.goccha-footer__nav{
  display: grid;
  gap: 22px;
}

.goccha-footer__link{
  color: #111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.goccha-footer__link:hover{
  opacity: .78;
}

.goccha-footer__copy{
  position: absolute;
  right: 0;
  bottom: 14px;
  font-size: var(--fs-note);
  font-weight: 600;
  color: #111;
  opacity: .9;
}

/* =========================
  SP Footer
=========================== */
@media (max-width: 899px){
  .goccha-footer__inner{
    padding: 44px 0 60px;
	padding-left: var(--pad-sp);
    padding-right: var(--pad-sp);
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 18px;
  }

  .goccha-footer__brand{
    display: grid;
    justify-items: center;
    text-align: center;
  }
  .goccha-footer__logo img{
    width: 150px;
  }
  .goccha-footer__catch{
    margin-top: 14px;
  }
  .goccha-footer__nav--primary{
    display: none;
  }

  .goccha-footer__nav--secondary{
    justify-items: center;
    text-align: center;
    gap: 14px;
  }

  .goccha-footer__copy{
    position: static;
    display: block;
    margin-top: 10px;
    font-size: 12px;
    opacity: .9;
	  text-align: center;
  }
}


@media (max-width: 899px){
  :root{
    --fs-h2: 28px;
    --fs-h3: 24px;
    --fs-h4: 22px;
    --fs-h5: 22px;
    --fs-h6: 20px;
    --fs-h7: 18px;
    --fs-h8: 18px;
    --fs-body: 18px;
    --fs-body-s: 14px;
	--fs-note: 12px;
  }
  .goccha-problem,
  .goccha-solution,
  .goccha-about,
  .goccha-service,
  .goccha-linkcards,
  .goccha-cta{
    padding: 40px 0; /* 96→40 */
  }
  .goccha-solution-box{
    padding: 18px !important; /* SP用 */
    padding: 18px !important; /* SP用 */
  }

}

