/* ========================
   base
======================== */
body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #333333;
  background: #f5f1e8;
}

section[id] {
  scroll-margin-top: 90px;
}

/* ========================
   header
======================== */

.container {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding-inline: 20px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-header {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.logo-header img {
  display: block;
  width: 56px;
  height: auto;
  flex-shrink: 0;
}

.logo-header__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.logo-header__title {
  margin: 0;
  color: #5d6b57;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.logo-header__subtitle {
  display: block;
  margin-top: 4px;
  color: #8f9a89;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.header__nav {
  margin-left: auto;
}

.header__nav a.is-active {
  color: #E19600;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-list a {
  position: relative;
  display: inline-block;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* ホバー色 */
.header__nav-list a:hover {
  color: #E19600;
}

/* 下線 */
.header__nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #E19600;
  transition: width 0.25s ease;
}

.header__nav-list a:hover::after {
  width: 100%;
}

.header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 40px;
  padding-inline: 20px;
  border-radius: 999px;
  background: #e19600;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.header__menu {
  display: none;
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
}

/* ========================
   SP nav 共通
======================== */

.sp-nav {
  display: none;
}

.sp-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(51, 51, 51, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 105;
}

.sp-nav__panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(80%, 320px);
  height: 100vh;
  padding: 100px 24px 40px;
  background: #f5f1e8;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 110;
  overflow-y: auto;
}

.sp-nav__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sp-nav__list a {
  display: block;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(74, 93, 78, 0.15);
}

/* 開いたとき */
body.is-open {
  overflow: hidden;
}

body.is-open .sp-nav__overlay {
  opacity: 1;
  visibility: visible;
}

body.is-open .sp-nav__panel {
  transform: translateX(0);
}

/* ========================
   SP
======================== */

@media (max-width: 768px) {
  .container {
    padding-inline: 16px;
  }

  .header__inner {
    min-height: 72px;
    gap: 16px;
  }

  /* ロゴ全体 */
  .logo-header {
    gap: 8px;
  }

  /* アイコンだけ小さく */
  .logo-header img {
    width: 44px;
  }

  /* テキスト調整 */
  .logo-header__title {
    font-size: 16px;
  }

  .logo-header__subtitle {
    font-size: 9px;
  }

  /* PC用ナビは消す */
  .header__nav,
  .header__cta {
    display: none;
  }

  /* ハンバーガーは出す */
  .header__menu {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e19600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    position: relative;
    z-index: 120;
  }

  .header__menu span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* SPナビを使う */
  .sp-nav {
    display: block;
  }

  /* ハンバーガー → バツ */
  body.is-open .header__menu span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.is-open .header__menu span:nth-child(2) {
    opacity: 0;
  }

  body.is-open .header__menu span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ========================
   PC
======================== */

@media (min-width: 769px) {
  .sp-nav {
    display: none;
  }
}


/* ========================
   hero
======================== */

.hero {
  background: #f5f1e8;
  position: relative;
}

/* Swiper本体 */
.hero-slider {
  position: relative;
  overflow: hidden;
}

/* 各スライドの土台 */
.hero__inner {
  position: relative;
  overflow: hidden;
}

/* メイン画像 */
.hero__image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: right top;
  display: block;
}

/* 左の白っぽいグラデーション */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(245, 241, 232, 0.92) 0%,
      rgba(245, 241, 232, 0.78) 30%,
      rgba(245, 241, 232, 0.35) 58%,
      rgba(245, 241, 232, 0) 80%);
  z-index: 1;
}

/* テキストエリア */
.hero__content {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 2;
}

/* キャッチコピー */
.hero__catch {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #333333;
}

.hero__catch-line2 {
  display: inline-block;
  margin-left: 0;
}

/* リード文 */
.hero__lead {
  margin-top: 32px;
  margin-left: 34px;
  font-size: 20px;
  line-height: 2;
  color: #4a5d4e;
}

/* ボタン */
.hero__btn {
  margin-top: 48px;
  margin-left: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 56px;
  padding-inline: 28px;
  border-radius: 999px;
  background: #e19600;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ホバー */
.hero__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(225, 150, 0, 0.3);
}

/* ページネーション */
.hero-slider .swiper-pagination {
  bottom: 20px !important;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid #e19600;
  background: transparent;
  opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
  background: #e19600;
}

@media (max-width: 768px) {
  .hero__inner {
    height: 300px;
  }

  .hero__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    background: #f5f1e8;
    display: block;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg,
        rgba(245, 241, 232, 0.95) 0%,
        rgba(245, 241, 232, 0.85) 30%,
        rgba(245, 241, 232, 0.65) 50%,
        rgba(245, 241, 232, 0.35) 60%);
  }

  .hero__content {
    position: absolute;
    top: 6%;
    left: 0;
    width: 100%;
    max-width: none;
    padding: 0 20px;
    transform: none;
    z-index: 2;
  }

  .hero__catch {
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .hero__catch-line2 {
    margin-left: 0.8em;
  }

  .hero__lead {
    margin-top: 16px;
    margin-left: 0;
    font-size: 10px;
    line-height: 1.7;
    color: #2f3a31;
  }

  .hero__btn {
    margin-top: 22px;
    margin-left: 0;
    min-width: 150px;
    height: 42px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .hero-slider .swiper-pagination {
    bottom: 14px !important;
  }

  .hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

/* ========================
   news
======================== */

.news {
  padding: 56px 0;
  background: #f5f1e8;
}

.news__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 見出し */
.section-heading {
  text-align: center;
}

.section-heading__title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
}

.section-heading__sub {
  margin-top: 6px;
  font-size: 12px;
  color: #caa043;
  letter-spacing: 0.12em;
  position: relative;
  display: inline-block;
  padding: 0 18px;
}

.section-heading__sub::before,
.section-heading__sub::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 32px;
  height: 1px;
  background: #d8c9a7;
  transform: translateY(-50%);
}

.section-heading__sub::before {
  left: -24px;
}

.section-heading__sub::after {
  right: -24px;
}

/* ボックス */
.news__box {
  margin-top: 28px;
  background: #FDF9F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 24px 16px 18px;
}

/* リスト */
.news__list {
  display: flex;
  flex-direction: column;
}

.news__item+.news__item {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(74, 93, 78, 0.12);
}

.news__link {
  display: block;
  color: inherit;
}

.news__date {
  display: block;
  font-size: 14px;
  color: #9b978f;
  line-height: 1.6;
}

.news__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 22px;
  margin-top: 8px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.news__label--new {
  color: #d98c00;
  border: 1px solid #e19600;
  background: #fff8e8;
}

.news__label--important {
  color: #d45a3d;
  border: 1px solid #e7a08e;
  background: #fff7f4;
}

.news__text {
  display: block;
  position: relative;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  transition: color 0.2s ease;
}

/* ホバーは親リンクで判定 */
.news__link:hover .news__text {
  color: #E19600;
}

/* 一覧を見る */
.news__more {
  margin-top: 18px;
  text-align: right;
}

.news__more a {
  font-size: 14px;
  font-weight: 700;
  color: #e19600;
  position: relative;
  display: inline-block;
}

.news__more a::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.news__more a:hover::after {
  transform: translateX(4px);
}

/* ========================
   pc
======================== */
@media (min-width: 769px) {
  .news {
    padding: 72px 0;
  }

  .section-heading__title {
    font-size: 32px;
  }

  .section-heading__sub {
    margin-top: 8px;
    font-size: 14px;
  }

  .news__box {
    margin-top: 32px;
    padding: 28px 40px 22px;
    border-radius: 16px;
  }

  .news__item+.news__item {
    margin-top: 0;
    padding-top: 0;
  }

  .news__item {
    border-top: 1px solid rgba(74, 93, 78, 0.12);
  }

  .news__item:first-child {
    border-top: none;
  }

  .news__link {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 56px;
  }

  .news__date {
    display: block;
    width: 86px;
    flex-shrink: 0;
    font-size: 14px;
  }

  .news__label {
    margin-top: 0;
    min-width: 86px;
    height: 26px;
    font-size: 11px;
  }

  .news__text {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.8;
    flex: 1;
  }

  .news__more {
    margin-top: 14px;
  }

  .news__more a {
    font-size: 16px;
  }
}

/* ========================
   about
======================== */

.about {
  padding: 56px 0;
  background: #f5f1e8;
}

.about__box {
  margin-top: 28px;
  background: #FDF9F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 24px 16px;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.8;
  color: #4A5D4E;
}

.about__lead {
  margin-top: 14px;
  font-size: 16px;
  line-height: 2;
  color: #333333;
}

.about__lead-accent {
  color: #5d6b57;
  font-weight: 700;
}

.about__image {
  order: -1;
}

.about__image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.about__more {
  margin-top: 20px;
}

.about__more a {
  font-size: 16px;
  font-weight: 700;
  color: #e19600;
  display: inline-block;
}

.about__more a::after {
  content: "→";
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.about__more a:hover::after {
  transform: translateX(4px);
}

/* ========================
   PC
======================== */

@media (min-width: 769px) {
  .about {
    padding: 72px 0;
  }

  .about__box {
    margin-top: 32px;
    padding: 40px;
    border-radius: 16px;
  }

  .about__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .about__text {
    flex: 1;
  }

  .about__image {
    width: 420px;
    flex-shrink: 0;
  }

  .about__title {
    font-size: 30px;
    line-height: 1.7;
  }

  .about__lead {
    margin-top: 16px;
    font-size: 16px;
    line-height: 2;
  }

  .about__more {
    margin-top: 24px;
  }
}

/* ========================
   profile
======================== */

.profile {
  padding: 56px 0;
  background: #f5f1e8;
}

.profile__box {
  margin-top: 28px;
  background: #FDF9F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 24px 16px;
}

.profile__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile__image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.profile__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  color: #4a5d4e;
}

.profile__lead {
  margin-top: 14px;
  font-size: 16px;
  line-height: 2;
  color: #333333;
}

.profile__career {
  margin-top: 32px;
}

.profile__career-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #4a5d4e;
  line-height: 1.6;
  position: relative;
}

.profile__career-title::before,
.profile__career-title::after {
  content: "—";
  display: inline-block;
  margin: 0 14px;
  color: #4a5d4e;
}

.profile__career-list {
  margin-top: 20px;
}

.profile__career-list li {
  position: relative;
  padding-left: 1em;
  font-size: 16px;
  line-height: 2;
  color: #333333;
}

.profile__career-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.profile__more {
  margin-top: 28px;
  text-align: right;
}

.profile__more a {
  font-size: 16px;
  font-weight: 700;
  color: #e19600;
  display: inline-block;
}

.profile__more a::after {
  content: "→";
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.profile__more a:hover::after {
  transform: translateX(4px);
}

/* ========================
   PC
======================== */

@media (min-width: 769px) {
  .profile {
    padding: 72px 0;
  }

  .profile__box {
    margin-top: 32px;
    padding: 40px;
    border-radius: 16px;
  }

  .profile__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 52px;
  }

  .profile__image {
    width: 308px;
    flex-shrink: 0;
  }

  .profile__text {
    flex: 1;
  }

  .profile__title {
    font-size: 24px;
    line-height: 1.8;
  }

  .profile__lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 2;
  }

  .profile__career {
    margin-top: 48px;
  }

  .profile__career-title {
    font-size: 24px;
  }

  .profile__career-list {
    margin-top: 24px;
    max-width: 620px;
    margin-inline: auto;
  }

  .profile__career-list li {
    font-size: 16px;
    line-height: 2;
  }

  .profile__more {
    margin-top: 36px;
  }

  .profile__more a {
    font-size: 16px;
  }
}

/* ========================
   service
======================== */

.service {
  padding: 56px 0;
  background: #f5f1e8;
}

.service__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* カード */
.service__item {
  background: #FDF9F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}

/* アイコン */
.service__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  border: 2px solid #4a5d4e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service__icon img {
  width: 70%;
  height: auto;
}

/* タイトル */
.service__title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #4a5d4e;
}

/* 本文 */
.service__text {
  margin-top: 16px;
  font-size: 16px;
  line-height: 2;
  color: #333333;
  text-align: left;
}

/* CTA */
.service__cta-wrap {
  margin-top: 24px;
  text-align: center;
}

.service__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #e19600;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* ========================
   PC
======================== */

@media (min-width: 769px) {
  .service {
    padding: 72px 0;
  }

  .service__list {
    margin-top: 32px;
    flex-direction: row;
    gap: 24px;
  }

  .service__item {
    flex: 1;
    padding: 36px 24px;
    border-radius: 16px;
  }

  .service__icon {
    width: 112px;
    height: 112px;
  }

  .service__title {
    font-size: 20px;
    margin-top: 24px;
  }

  .service__text {
    font-size: 16px;
    margin-top: 18px;
  }

  .service__cta-wrap {
    margin-top: 32px;
  }

  .service__cta {
    min-height: 52px;
    padding: 0 32px;
    font-size: 16px;
  }
}

/* ========================
   price
======================== */

.price {
  padding: 56px 0;
  background: #f5f1e8;
}

/* リード文 */
.price__lead {
  margin-top: 20px;
  font-size: 16px;
  line-height: 2;
  text-align: left;
  color: #333333;
}

/* 一覧 */
.price__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* カード */
.price__item {
  position: relative;
  background: #FDF9F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}

/* 英字ラベル */
.price__label {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(74, 93, 78, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #4a5d4e;
}

/* タイトル */
.price__title {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #4a5d4e;
}

/* 区切り線 */
.price__line {
  width: 40px;
  height: 2px;
  margin: 18px auto 0;
  background: #d9b15c;
}

/* 金額 */
.price__amount {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
}

/* 補足 */
.price__amount-note {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
  min-height: 22px;
}

/* 詳細 */
.price__detail {
  margin-top: 20px;
  text-align: left;
}

/* 見出し */
.price__detail-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  color: #4a5d4e;
}

/* 本文 */
.price__detail-text {
  margin-top: 6px;
  font-size: 16px;
  line-height: 2;
  color: #333333;
}

/* CTA */
.price__cta-wrap {
  margin-top: 28px;
  text-align: center;
}

.price__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #e19600;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* ========================
   PC
======================== */

@media (min-width: 769px) {

  .price {
    padding: 72px 0;
  }

  .price__lead {
    margin-top: 24px;
    font-size: 16px;
    text-align: center;
  }

  .price__list {
    margin-top: 32px;
    flex-direction: row;
    gap: 24px;
    align-items: stretch;
  }

  .price__item {
    flex: 1;
    padding: 36px 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
  }

  .price__title {
    font-size: 22px;
  }

  .price__amount {
    font-size: 28px;
  }

  .price__detail-title {
    font-size: 16px;
  }

  .price__detail-text {
    font-size: 16px;
  }

  .price__detail--target {
    min-height: 94px;
  }

  .price__cta-wrap {
    margin-top: 40px;
  }

  .price__cta {
    min-height: 52px;
    padding: 0 32px;
    font-size: 16px;
  }

}

/* ========================
   faq
======================== */

.faq {
  padding: 56px 0;
  background: #f5f1e8;
}

.faq__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq__item {
  background: #FDF9F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  padding: 20px 20px 18px;
  border: none;
  background: transparent;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  cursor: pointer;
}

.faq__label {
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1;
}

.faq__label--q {
  color: #4a5d4e;
  font-size: 22px;
  margin-top: 2px;
}

.faq__label--a {
  color: #e19600;
  font-size: 22px;
  margin-top: 2px;
}

.faq__question-text {
  flex: 1;
  font-size: 16px;
  /* font-weight: 400; */
  line-height: 1.9;
  color: #333333;
}

.faq__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 8px;
  margin-left: 8px;
  border-right: 2px solid #e19600;
  border-bottom: 2px solid #e19600;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.faq__answer {
  border-top: 1px solid rgba(74, 93, 78, 0.12);
  padding: 0 20px 20px;
}

.faq__answer-inner {
  padding-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq__answer-text {
  flex: 1;
  font-size: 16px;
  line-height: 2;
  color: #666666;
}

/* 閉じた状態 */
.faq__item:not(.is-open) .faq__answer {
  display: none;
}

/* 開いたときの矢印 */
.faq__item.is-open .faq__icon {
  transform: rotate(225deg);
  margin-top: 14px;
}

/* ========================
   PC
======================== */

@media (min-width: 769px) {
  .faq {
    padding: 72px 0;
  }

  .faq__list {
    margin-top: 32px;
    gap: 24px;
  }

  .faq__item {
    border-radius: 16px;
  }

  .faq__question {
    padding: 24px 28px 22px;
    gap: 16px;
  }

  .faq__label--q,
  .faq__label--a {
    font-size: 24px;
  }

  .faq__question-text {
    font-size: 16px;
    line-height: 1.8;
  }

  .faq__answer {
    padding: 0 28px 24px;
  }

  .faq__answer-inner {
    padding-top: 18px;
    gap: 16px;
  }

  .faq__answer-text {
    font-size: 16px;
  }
}

/* ========================
   flow
======================== */

.flow {
  padding: 56px 0;
  background: #f5f1e8;
}

.flow__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flow__item {
  background: #FDF9F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 20px 20px 18px;
}

.flow__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(74, 93, 78, 0.12);
}

.flow__lead {
  margin-top: 20px;
  font-size: 16px;
  line-height: 2;
  text-align: left;
  color: #333333;
}

.flow__num {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #4a5d4e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}

.flow__title {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  color: #333333;
}

.flow__body {
  color: #666666;
}

.flow__text,
.flow__note {
  font-size: 16px;
  line-height: 2;
  color: #666666;
}

.flow__body p+p {
  margin-top: 14px;
}

.flow__note {
  font-size: 16px;
  line-height: 1.9;
}

/* ========================
   PC
======================== */

@media (min-width: 769px) {
  .flow {
    padding: 72px 0;
  }

  .flow__list {
    margin-top: 32px;
    gap: 24px;
  }

  .flow__item {
    border-radius: 16px;
    padding: 24px 28px 22px;
  }

  .flow__head {
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 18px;
  }

  .flow__lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .flow__num {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .flow__title {
    font-size: 16px;
    line-height: 1.8;
  }

  .flow__text {
    font-size: 16px;
  }

  .flow__note {
    font-size: 16px;
  }

  .flow__body p+p {
    margin-top: 16px;
  }
}

/* ========================
   contact
======================== */

.contact {
  padding: 56px 0;
  background: #f5f1e8;
}

.contact__intro {
  margin-top: 28px;
  text-align: center;
}

.contact__lead {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  color: #4A5D4E;
}

.contact__text {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  margin-top: 14px;
  font-size: 16px;
  line-height: 2;
  color: #666666;
}

.contact__form {
  margin-top: 32px;
}

.contact__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__row+.contact__row {
  margin-top: 18px;
}

.contact__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #333333;
}

.contact__row .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact__row .wpcf7-form-control-wrap .wpcf7-form-control {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact__input,
.contact__textarea,
.contact__row .wpcf7-form-control {
  width: 100%;
  border: 1px solid rgba(74, 93, 78, 0.25);
  border-radius: 8px;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  appearance: none;
  box-sizing: border-box;
}

.contact__input,
.contact__row input.wpcf7-form-control {
  height: 48px;
  padding: 0 14px;
}

.contact__textarea,
.contact__row textarea.wpcf7-form-control {
  min-height: 220px;
  padding: 14px;
  resize: vertical;
}

.contact__input::placeholder,
.contact__textarea::placeholder,
.contact__row .wpcf7-form-control::placeholder {
  color: #9a9a9a;
}

.contact__input:focus,
.contact__textarea:focus,
.contact__row .wpcf7-form-control:focus {
  outline: none;
  border-color: #e19600;
  box-shadow: 0 0 0 3px rgba(225, 150, 0, 0.12);
}

.contact__submit {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.contact__submit>p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  position: relative;
}

.contact__submit .wpcf7-spinner {
  position: absolute;
  left: calc(100% + 12px);
  margin: 0;
}

.contact__button,
.contact__submit .wpcf7-submit {
  width: auto;
  height: 44px;
  padding: 0 24px;
  border: none;
  border-radius: 8px;
  background: #e19600;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact__button:hover,
.contact__submit .wpcf7-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.contact__note {
  margin-top: 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  color: #666666;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 16px;
  color: #d63638;
}

.wpcf7 form .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.8;
}

.contact__row>p {
  display: contents;
  margin: 0;
}

.contact__row br {
  display: none;
}

/* ========================
   PC
======================== */

@media (min-width: 769px) {
  .contact {
    padding: 72px 0;
  }

  .contact__intro {
    margin-top: 32px;
  }

  .contact__lead {
    font-size: 18px;
  }

  .contact__text {
    max-width: 640px;
    margin: 14px auto 0;
    text-align: center;
    font-size: 16px;
    line-height: 2;
    color: #666666;
  }

  .contact__form {
    max-width: 760px;
    margin: 36px auto 0;
  }

  .contact__row {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
  }

  .contact__row+.contact__row {
    margin-top: 20px;
  }

  .contact__row>.wpcf7-form-control-wrap {
    display: block;
    min-width: 0;
    width: 100%;
  }

  .contact__label {
    padding-top: 11px;
    font-size: 16px;
  }

  .contact__row--textarea .contact__label {
    padding-top: 14px;
  }

  .contact__input,
  .contact__row input.wpcf7-form-control {
    height: 50px;
    padding: 0 16px;
    border-radius: 10px;
  }

  .contact__textarea,
  .contact__row textarea.wpcf7-form-control {
    min-height: 184px;
    padding: 16px;
    border-radius: 10px;
  }

  .contact__row .wpcf7-form-control {
    display: block;
    width: 100% !important;
    min-width: 0;
    box-sizing: border-box;
  }

  .contact__submit {
    margin-top: 28px;
  }

  .contact__button,
  .contact__submit .wpcf7-submit {
    width: auto;
    height: 42px;
    border-radius: 8px;
    font-size: 16px;
  }

  .contact__note {
    margin-top: 18px;
    font-size: 16px;
  }
}

/* ========================
   footer
======================== */

.footer {
  padding: 56px 0 24px;
  background: #5a6f5f;
  color: #ffffff;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.footer__logo img {
  width: 96px;
  height: auto;
  display: block;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
}

.footer__logo-subtitle {
  margin: 6px 0 0;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer__address,
.footer__tel {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}

.footer__tel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #5a6f5f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer__tel a:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.footer__business-info {
  margin-top: 12px;
  line-height: 1.8;
  font-size: 16px;
  text-align: center;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer__nav-list a {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer__nav-list a:hover {
  opacity: 0.75;
}

.footer__bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.footer__copy {
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* ========================
   PC
======================== */

@media (min-width: 769px) {

  .footer {
    padding: 64px 0 28px;
  }

  .footer__top {
    display: grid;
    grid-template-columns: 360px 1fr 220px;
    gap: 48px;
    align-items: flex-start;
  }

  /* 左 */
  .footer__info {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .footer__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .footer__logo img {
    width: 86px;
    flex-shrink: 0;
  }

  .footer__logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer__logo-title {
    font-size: 20px;
    line-height: 1.5;
  }

  .footer__logo-subtitle {
    margin-top: 6px;
    font-size: 11px;
  }

  .footer__meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .footer__address {
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
  }

  .footer__tel a {
    min-width: 160px;
    min-height: 38px;
    padding: 0 18px;
    font-size: 16px;
    align-self: flex-start;
  }

  /* 真ん中 */
  .footer__business {
    display: flex;
    flex-direction: column;
    gap: 18px;

    padding-top: 8px;
  }

  .footer__business-info {
    font-size: 16px;
    line-height: 2;
    text-align: left;
  }

  /* 右 */
  .footer__nav {
    padding-top: 8px;
  }

  .footer__nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer__nav-list a {
    font-size: 14px;
    line-height: 1.8;
  }

  .footer__bottom {
    margin-top: 40px;
    padding-top: 18px;
  }

  .footer__copy {
    font-size: 13px;
  }
}

/* スムーススクロール */
html {
  scroll-behavior: smooth;
}

/* ========================
   about page
======================== */

.about-page__section {
  padding: 46px 0;
}

.about-page__card {
  margin-top: 24px;
  padding: 28px 24px;
  background: #FDF9F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
}

/* レイアウト */
.about-page__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* テキスト */
.about-page__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #4A5D4E;
}

.about-page__text p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.about-page__highlight {
  font-weight: 700;
  position: relative;
  display: inline;
  background-image: linear-gradient(rgba(243, 210, 122, 0.85), rgba(243, 210, 122, 0.85));
  background-repeat: no-repeat;
  background-size: 100% 6px;
  background-position: 0 95%;
}

.about-page__content-body strong {
  background: linear-gradient(transparent 60%, #f4d78b 60%);
}

/* 画像 */

.about-page__image {
  order: -1;
}

.about-page__image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* CTA */
.about-page__cta {
  margin-top: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #e19600;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ========================
   SPのみ中央寄せ
======================== */

.about-page__title {
  text-align: center;
}

.about-page__cta {
  text-align: center;
}

/* ========================
   PC
======================== */

@media (min-width: 769px) {

  .about-page__section {
    padding: 64px 0;
  }

  .about-page__card {
    padding: 64px 46px;
  }

  .about-page__content {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .about-page__text {
    flex: 1;
  }

  .about-page__image {
    flex: 0 0 420px;
    order: 0;
  }

  .about-page__title {
    font-size: 22px;
  }

  .about-page__text p {
    font-size: 16px;
  }

  .about-page__title {
    text-align: left;
  }

  .about-page__cta {
    text-align: left;
  }

}

/* ========================
   profile page
======================== */

.profile-page__section {
  padding: 46px 0;
}

.profile-page__card {
  margin-top: 24px;
  padding: 28px 24px;
  background: #FDF9F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
}

.profile-page__image {
  text-align: center;
  margin-bottom: 24px;
}

.profile-page__image img {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.profile-page__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  color: #4a5d4e;
}

.profile-page__text p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.profile-page__content-body strong {
  background: linear-gradient(transparent 60%, #f4d78b 60%);
}

.profile-page__career {
  margin-top: 40px;
}

.profile-page__cta {
  margin-top: 32px;
  text-align: center;
}

@media (min-width: 769px) {
  .profile-page__section {
    padding: 64px 0;
  }

  .profile-page__card {
    padding: 64px 46px;
  }

  .profile-page__image img {
    max-width: 360px;
  }

  .profile-page__title {
    font-size: 22px;
  }

  .profile-page__text {
    max-width: 720px;
    margin: 0 auto;
  }

  .profile-page__text p {
    font-size: 16px;
  }
}

/* ========================
   profile timeline
======================== */

.profile-page__career {
  margin-top: 48px;
}

.profile-page__career-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  position: relative;
}

.profile-page__career-title::before,
.profile-page__career-title::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #333;
  margin: 0 10px;
  vertical-align: middle;
}

/* タイムライン */
.profile-page__timeline {
  position: relative;
  padding-left: 32px;
}

/* 縦線 */
.profile-page__timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e19600;
}

/* 各項目 */
.profile-page__timeline-item {
  position: relative;
  margin-bottom: 28px;
  padding-left: 12px;
}

/* 丸 */
.profile-page__timeline-dot {
  position: absolute;
  left: -19px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #e19600;
  border-radius: 50%;
  transform: translateX(-50%);
}

/* テキスト */
.profile-page__timeline-content {
  padding-left: 18px;
}

.profile-page__timeline-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #e19600;
  margin-bottom: 6px;
}

.profile-page__timeline-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #333;
}

.profile-page__bold {
  font-size: 14px;
  font-weight: 700;
}

/* PC */
@media (min-width: 769px) {

  .profile-page__career {
    margin-top: 64px;
  }

  .profile-page__timeline {
    max-width: 600px;
    margin: 0 auto;
  }

  .profile-page__timeline-content h4 {
    font-size: 17px;
  }

  .profile-page__timeline-content p {
    font-size: 16px;
  }
}

/* ========================
   service page
======================== */

.service-page__section {
  padding: 46px 0;
}

.service-page__card {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-page__item,
.service-page__guide {
  padding: 28px 24px;
  border-radius: 16px;
  background: #FDF9F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.service-page__guide {
  background: #fbf9f5;
}

.service-page__icon {
  text-align: center;
}

.service-page__icon img {
  width: 82px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.service-page__title {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #4a5d4e;
}

.service-page__catch {
  margin-top: 14px;
  font-size: 16px;
  line-height: 2;
  text-align: center;
  color: #333333;
}

/* 内容 / 価値 ラベル */
.service-page__label {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 17px;
  font-weight: 700;
  color: #4a5d4e;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.service-page__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #4a5d4e;
}

.service-page__label img {
  width: 14px;
  height: auto;
  display: block;
}

.service-page__text {
  margin-top: 16px;
  font-size: 16px;
  line-height: 2;
  color: #333333;
  text-align: left;
}

/* ご案内カード */
.service-page__guide-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  color: #4a5d4e;
}

.service-page__guide-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-page__guide-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 1.9;
  color: #333333;
}

.service-page__guide-list img {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  flex-shrink: 0;
}

.service-page__notes {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(74, 93, 78, 0.14);
}

.service-page__notes p {
  font-size: 14px;
  line-height: 1.9;
  color: #666666;
}

.service-page__notes p+p {
  margin-top: 8px;
}

/* CTA */
.service-page__cta {
  margin-top: 24px;
  text-align: center;
}

/* ========================
   PC
======================== */

@media (min-width: 769px) {
  .service-page__section {
    padding: 64px 0;
  }

  .service-page__card {
    margin-top: 28px;
    gap: 24px;
  }

  .service-page__item,
  .service-page__guide {
    padding: 64px 46px;
  }

  .service-page__icon img {
    width: 92px;
  }

  .service-page__title {
    margin-top: 22px;
    font-size: 22px;
  }

  .service-page__catch {
    margin-top: 16px;
    font-size: 16px;
  }

  .service-page__label {
    margin-top: 26px;
    font-size: 17px;
  }

  .service-page__label img {
    width: 15px;
  }

  .service-page__text {
    max-width: 760px;
    margin: 16px auto 0;
    font-size: 16px;
  }

  .service-page__guide-title {
    font-size: 18px;
  }

  .service-page__guide-list {
    max-width: 760px;
    margin: 20px auto 0;
  }

  .service-page__guide-list li {
    font-size: 16px;
  }

  .service-page__notes {
    max-width: 760px;
    margin: 20px auto 0;
  }

  .service-page__notes p {
    font-size: 14px;
  }

  .service-page__cta {
    margin-top: 28px;
  }
}

/* ========================
   news page
======================== */

.news-page__section {
  padding: 46px 0;
}

.news-page__card {
  margin-top: 24px;
  padding: 28px 24px;
  border-radius: 16px;
  background: #FDF9F0;
}

.news-page__list {
  display: flex;
  flex-direction: column;
}

.news-page__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(74, 93, 78, 0.12);
}

.news-page__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-page__date {
  font-size: 14px;
  line-height: 1.6;
  color: #999;
}

.news-page__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  background: #fff;
}

.news-page__label--new {
  color: #E19600;
  border: 1px solid #E19600;
  background: #fff8e8;
}

.news-page__label--important {
  color: #F06B3E;
  border: 1px solid #F06B3E;
  background: #fff7f4;
}

.news-page__link {
  color: #333333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-page__link:hover {
  color: #E19600;
}

.news-page__back {
  margin-top: 28px;
}

.news-page__back a {
  color: #E19600;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.news-page__back a:hover {
  opacity: 0.75;
}

/* ========================
   PC
======================== */

@media (min-width: 769px) {
  .news-page__section {
    padding: 64px 0;
  }

  .news-page__card {
    margin-top: 28px;
    padding: 40px 42px;
  }

  .news-page__item {
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: center;
    column-gap: 18px;
    row-gap: 0;
    padding: 20px 0;
  }

  .news-page__meta {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .news-page__date {
    font-size: 13px;
    flex-shrink: 0;
  }

  .news-page__label {
    min-width: 82px;
    height: 28px;
    font-size: 11px;
    flex-shrink: 0;
  }

  .news-page__link {
    font-size: 16px;
    line-height: 1.8;
  }

  .news-page__back {
    margin-top: 32px;
  }
}

/* ========================
   privacy-policy
======================== */

.page-id-3 .entry-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.9;
}

.entry-content h2 {
  margin-top: 40px;
  font-size: 20px;
  font-weight: bold;
}

.entry-content ul {
  padding-left: 20px;
}

/* ========================
   default page
======================== */

.page-default {
  padding: 56px 0;
  background: #f5f1e8;
}

.page-default__inner {
  max-width: 900px;
}

.page-default__content {
  margin-top: 32px;
  font-size: 16px;
  line-height: 2;
  color: #333333;
}

.page-default__content h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #1f2d35;
}

.page-default__content h2:first-child {
  margin-top: 0;
}

.page-default__content p {
  margin-bottom: 18px;
}

.page-default__content ul,
.page-default__content ol {
  margin: 12px 0 24px;
  padding-left: 1.5em;
}

.page-default__content li {
  margin-bottom: 6px;
  line-height: 1.9;
}

@media (min-width: 769px) {
  .page-default {
    padding: 72px 0;
  }

  .page-default__content {
    font-size: 16px;
  }

  .page-default__content h2 {
    font-size: 26px;
  }
}

/* ヘッダーロゴ */
.custom-logo {
  height: 56px;
  width: auto;
}

@media screen and (max-width: 767px) {
  .custom-logo {
    height: 44px;
  }
}

/* フッターロゴ */
.footer .custom-logo {
  height: 96px;
}

@media screen and (max-width: 767px) {
  .footer .custom-logo {
    height: 86px;
  }
}

/* ========================
   price page
======================== */

.price-page__section {
  padding: 46px 0;
}

/* カード全体 */
.price-page__card {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* プランカード */
.price-page__item,
.price-page__guide {
  padding: 28px 24px;
  border-radius: 16px;
  background: #FDF9F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* 英字ラベル */
.price-page__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(74, 93, 78, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #4a5d4e;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* タイトル */
.price-page__title {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #4a5d4e;
}

/* 区切り線 */
.price-page__line {
  width: 40px;
  height: 2px;
  margin: 18px auto 0;
  background: #d9b15c;
}

/* 金額 */
.price-page__amount {
  margin-top: 22px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #333333;
}

/* 補足 */
.price-page__amount-note {
  margin-top: 6px;
  min-height: 22px;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  color: #666666;
}

/* ブロック */
.price-page__block {
  margin-top: 26px;
}

/* 見出し */
.price-page__block-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  color: #4a5d4e;
}

/* 本文 */
.price-page__text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 2;
  color: #333333;
  text-align: left;
}

.price-page__text-target {
  margin-top: 10px;
  font-size: 16px;
  line-height: 2;
  color: #333333;
  text-align: left;
}

/* 注意事項 */
.price-page__guide {
  background: #fbf9f5;
}

/* 注意事項タイトル */
.price-page__guide-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  color: #4a5d4e;
}

/* 注意事項本文 */
.price-page__guide-content {
  margin-top: 24px;
}

.price-page__guide-block+.price-page__guide-block {
  margin-top: 24px;
}

.price-page__guide-heading {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  color: #4a5d4e;
}

.price-page__guide-block p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 2;
  color: #333333;
}

/* CTA */
.price-page__cta {
  margin-top: 24px;
  text-align: center;
}

/* ========================
   PC
======================== */

@media (min-width: 769px) {

  .price-page__section {
    padding: 64px 0;
  }

  .price-page__card {
    margin-top: 28px;
    gap: 24px;
  }

  .price-page__item,
  .price-page__guide {
    padding: 64px 46px;
  }

  .price-page__title {
    margin-top: 22px;
    font-size: 28px;
  }

  .price-page__amount {
    margin-top: 26px;
    font-size: 36px;
  }

  .price-page__amount-note {
    font-size: 16px;
  }

  .price-page__block {
    margin-top: 32px;
  }

  .price-page__block-title {
    font-size: 18px;
  }

  .price-page__text {
    max-width: 680px;
    margin: 12px auto 0;
    font-size: 16px;
    text-align: left;
  }

  .price-page__text-target {
    max-width: 680px;
    margin: 12px auto 0;
    font-size: 16px;
    text-align: center;
  }

  .price-page__guide-title {
    font-size: 18px;
  }

  .price-page__guide-content {
    max-width: 760px;
    margin: 28px auto 0;
  }

  .price-page__guide-heading {
    font-size: 17px;
  }

  .price-page__guide-block p {
    font-size: 16px;
  }

  .price-page__cta {
    margin-top: 32px;
  }

}

/* ========================
   news detail
======================== */

.news-detail {
  background: #f5f1e8;
}

.news-detail__section {
  padding: 56px 0;
}

.news-detail__inner {
  max-width: 900px;
  margin: 0 auto;
  background: #FDF9F0;
  border-radius: 12px;
  padding: 28px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.news-detail__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-detail__date {
  font-size: 12px;
  color: #9b978f;
}

.news-detail__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.news-detail__label--new {
  color: #d98c00;
  border: 1px solid #e19600;
  background: #fff8e8;
}

.news-detail__label--important {
  color: #d45a3d;
  border: 1px solid #e7a08e;
  background: #fff7f4;
}

.news-detail__title {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.5;
  color: #333;
}

.news-detail__content {
  margin-top: 24px;
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.news-detail__content p+p {
  margin-top: 16px;
}

.news-detail__back {
  margin-top: 32px;
}

.news-detail__back a {
  font-size: 14px;
  font-weight: 700;
  color: #e19600;
}

@media (min-width: 769px) {
  .news-detail__section {
    padding: 80px 0;
  }

  .news-detail__inner {
    padding: 48px 56px;
    border-radius: 16px;
  }

  .news-detail__title {
    font-size: 32px;
  }
}