@charset "UTF-8";
/* ========================================
   1. Abstracts（変数・関数・mixins）
======================================== */
/* ========================================
   2. Base（初期化・共通設定）
======================================== */
html {
  font-size: 62.5%;
}

body {
  background-color: #FAFAF2;
  color: #444341;
}

/* 日本語（メイン） */
body {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.08em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #444341;
}

.section__title {
  font-size: 4rem;
  line-height: 1.5;
}

/* 英語指定（font-en クラス） */
.font-en {
  font-family: "Work Sans", sans-serif !important;
}

/* 数字用 */
.num {
  font-family: "Roboto", sans-serif !important;
  font-size: 1.1em;
}

/* 日本語を 0.9倍に縮小するユーティリティ */
.u-jp-small {
  display: inline-block;
  font-size: 0.9em;
}

/* ========================================
   3. Layout（サイト全体の構造）
======================================== */
.header.is-light .header__logo,
.header.is-light .header__nav-link,
.header.is-light .header__contact-link,
.header.is-light .header__menu-button {
  color: #FAFAF2 !important;
}
.header.is-light svg {
  color: #FAFAF2;
  fill: currentColor;
}

.header {
  position: fixed;
  width: 100vw;
  top: 0;
  z-index: 10;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 52px 85px 0;
  z-index: 10;
}
.header__logo {
  color: #444341;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.header__logo:hover {
  opacity: 0.8;
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__nav-item {
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.header__nav-item:hover {
  opacity: 0.8;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
}
.header__nav-item .header__nav-link {
  border-right: 1px solid rgba(68, 67, 65, 0.35);
  padding: 0 20px;
}
.header__nav-item:last-child .header__nav-link {
  border-right: none;
  letter-spacing: 0.1em;
}
.header__menu {
  display: none;
}
.header__menu-button {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.header__burger-wrapper {
  display: none;
}
.header__contact {
  font-weight: 500;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.header__contact:hover {
  opacity: 0.8;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 55px 35px 0;
  }
  .header__nav {
    display: none;
  }
  .header__contact {
    display: none;
  }
  .header__menu {
    display: block;
    color: #444341;
  }
  .header__menu-button {
    border: none;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none;
    cursor: pointer;
    color: #444341;
  }
  .header__burger-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #F3F3E9;
    z-index: 5;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: block;
    /* ▼ 初期状態（非表示） */
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  }
  .header__burger-wrapper.is-active {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .header__burger-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: calc(100% - 30vh);
    padding-top: 5%;
  }
  .header__burger-symbol {
    text-align: center;
  }
  .header__burger-symbol svg {
    width: 33px;
    height: 33px;
    color: #7A4228;
  }
  .header__burger-subtitle {
    font-size: 2.4rem;
    line-height: 1.5;
    color: #7A4228;
  }
  .header__burger-image-tb {
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 30vh;
  }
  .header__burger-image-tb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header__burger-nav {
    padding: 0 120px;
    width: 100%;
  }
  .header__burger-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 45px;
    width: 100%;
    max-width: 900px;
    margin: 80px auto 0;
  }
  .header__burger-item {
    font-size: 2.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  .header__logo {
    width: 50px;
  }
  .header__logo svg {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .header__inner {
    padding: 25px 20px 0;
  }
  .header__menu-button {
    color: #444341;
  }
  .header__burger-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: calc(100% - 20vh);
    padding-top: 5%;
  }
  .header__burger-symbol {
    text-align: center;
  }
  .header__burger-symbol svg {
    width: 24px;
    height: 24px;
    color: #7A4228;
  }
  .header__burger-subtitle {
    font-size: 2rem;
    line-height: 1.5;
    color: #7A4228;
  }
  .header__burger-image-tb {
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 20vh;
  }
  .header__burger-image-tb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header__burger-image-pc {
    display: none;
  }
  .header__burger-nav {
    padding: 0 50px;
  }
  .header__burger-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin: 50px auto 0;
  }
  .header__burger-item {
    padding: 0 5px;
    font-size: 2rem;
  }
  .header__burger-item .button-small {
    -webkit-transform: scale(0.75) translateY(3px);
            transform: scale(0.75) translateY(3px);
  }
}

/* ===========================
   Footer
=========================== */
.site-footer {
  position: relative;
  width: 100%;
  padding: 127px 35px 0;
  color: #fff;
  overflow: hidden;
  background-color: #444341;
  /* 背景（画像＋暗幕） */
  /* ------------------------------
      Branding（ロゴ + 社名）
  ------------------------------ */
  /* ------------------------------
      Navigation Blocks
  ------------------------------ */
}
.site-footer__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/footer_bg.webp");
  background-size: cover;
  background-position: center;
  z-index: 1;
  /* グラデーション暗幕 */
}
.site-footer__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(68, 67, 65, 0.8)), color-stop(90%, rgba(68, 67, 65, 0.95)), to(#444341));
  background: linear-gradient(to left, rgba(68, 67, 65, 0.8) 0%, rgba(68, 67, 65, 0.95) 90%, #444341 100%);
  z-index: 2;
  pointer-events: none;
}
.site-footer__wrapper {
  position: relative;
  z-index: 2;
  width: min(100%, 1420px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.site-footer__top {
  padding: 0 34px;
  border-bottom: 1px solid rgba(250, 250, 242, 0.3);
}
.site-footer__branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.site-footer__branding svg {
  width: 32px;
  height: 32px;
}
.site-footer__logo {
  width: 40px;
  height: auto;
  display: block;
  color: #FAFAF2;
}
.site-footer__company-name {
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.site-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  padding: 70px 0;
}
@media (max-width: 1024px) {
  .site-footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .site-footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
.site-footer__nav-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FAFAF2;
}
.site-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 38px;
}
.site-footer__nav-list li a {
  font-size: 1.6rem;
  color: rgba(250, 250, 242, 0.8);
  text-decoration: none;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  padding: 0 20px;
  position: relative;
}
.site-footer__nav-list li a:hover {
  opacity: 0.6;
}
.site-footer__nav-list li a::after {
  content: "";
  width: 1px;
  height: 14px;
  display: inline-block;
  background-color: rgba(250, 250, 242, 0.35);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.site-footer__nav-list li:last-child a::after {
  display: none;
}
.site-footer__nav-list li:first-child a {
  padding-left: 0;
}
.site-footer__nav-list--sns li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.site-footer__nav-list--sns lia {
  padding: 0;
}
.site-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 34px;
}
.site-footer__break {
  display: none;
}
.site-footer__badge {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.site-footer__badge:hover {
  opacity: 0.6;
}
.site-footer .copyright {
  font-size: 12px;
  opacity: 0.7;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .site-footer__bg {
    background-image: url("../images/footer_bg-tb.webp");
    background-repeat: no-repeat;
    background-position: bottom;
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    right: auto;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  .site-footer__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: -webkit-gradient(linear, right bottom, left top, from(rgba(68, 67, 65, 0.95)), color-stop(40%, rgba(68, 67, 65, 0.95)), color-stop(70%, rgba(68, 67, 65, 0.95)), to(#444341));
    background: linear-gradient(to top left, rgba(68, 67, 65, 0.95) 0%, rgba(68, 67, 65, 0.95) 40%, rgba(68, 67, 65, 0.95) 70%, #444341 100%);
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding: 80px 30px 0;
    position: relative;
    /* ★ ここは nav-right の外で OK */
  }
  .site-footer__bg {
    background-image: url("../images/footer_bg-sp.webp");
    background-repeat: no-repeat;
    background-position: bottom;
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    right: auto;
    z-index: 1;
    width: 100%;
    height: 460px;
  }
  .site-footer__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(68, 67, 65, 0.95)), color-stop(40%, rgba(68, 67, 65, 0.95)), color-stop(70%, rgba(68, 67, 65, 0.95)), to(#444341));
    background: linear-gradient(to top, rgba(68, 67, 65, 0.95) 0%, rgba(68, 67, 65, 0.95) 40%, rgba(68, 67, 65, 0.95) 70%, #444341 100%);
  }
  .site-footer__branding svg {
    width: 24px;
    height: 24px;
  }
  .site-footer__company-name {
    font-size: 2.6rem;
  }
  .site-footer__top {
    padding: 0;
  }
  .site-footer__nav {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .site-footer__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    padding-bottom: 30px;
  }
  .site-footer__nav-left .site-footer__nav-block:nth-of-type(1) .site-footer__nav-list li:nth-child(5) a {
    padding-left: 0;
  }
  .site-footer__nav-left .site-footer__nav-block:nth-of-type(3) .site-footer__nav-list li:nth-child(5) a {
    padding-left: 0;
  }
  .site-footer__nav-right .site-footer__nav-block:nth-of-type(2) .site-footer__nav-list li:nth-child(3) a {
    padding-left: 0;
  }
  .site-footer__break {
    display: block;
    width: 100%;
    height: 0;
  }
  .site-footer__break-sps {
    display: none;
  }
  .site-footer__bottom {
    padding: 10px;
  }
  .site-footer__badge {
    width: 120px;
    height: 100%;
  }
  .site-footer__badge a img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 396px) {
  .site-footer__break-sps {
    display: block;
    width: 100%;
    height: 0;
  }
  .site-footer__nav-right .site-footer__nav-block:nth-of-type(2) .site-footer__nav-list li:nth-child(5) a {
    padding-left: 0;
  }
}
@media (max-width: 1440px) {
  .site-footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.site-footer__nav-block .site-footer__nav-title a {
  display: inline-block;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.site-footer__nav-block .site-footer__nav-title a:hover {
  opacity: 0.8;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
}
.site-footer__nav-block .site-footer__nav-list a {
  display: inline-block;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.site-footer__nav-block .site-footer__nav-list a:hover {
  opacity: 0.8;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
}

/* ========================================
   4. Components（共通部品）
======================================== */
.page-title-block {
  margin: 100px auto 0;
  padding: 100px 35px 30px;
  width: min(100%, 1420px);
  position: relative;
}
.page-title-block::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: #444341;
}
.page-title-block .page-title {
  height: 220px;
  width: 100%;
  padding-top: 20px;
}
.page-title-block .page-title svg {
  width: 100%;
  height: auto;
}
.page-title-block .page-title text {
  font-size: 110px;
  font-weight: 700;
  fill: #FAFAF2;
  stroke: #7A4228;
  stroke-width: 5px;
  paint-order: stroke fill;
  letter-spacing: 0.02em;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.page-title-block .page-title__desc {
  font-size: 1.6rem;
  line-height: 2;
  color: #444341;
  width: min(100%, 724px);
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.page-title-block .page-title__bottom {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-title-block .page-title__breadcrumb {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.page-title-block .page-title__breadcrumb .sep {
  margin: 0 8px;
  color: #444341;
}
.page-title-block .page-title__breadcrumb a {
  color: #444341;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.page-title-block .page-title__breadcrumb a:hover {
  opacity: 0.7;
}
.page-title-block .page-title__section-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.page-title-block .page-title__section-nav a {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #444341;
  text-decoration: none;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.page-title-block .page-title__section-nav a::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 9px solid #7A4228;
  opacity: inherit;
}
.page-title-block .page-title__section-nav a:hover {
  opacity: 1;
}
.page-title-block .page-title__section-nav a.active {
  opacity: 1;
}
.page-title-block .page-title__section-nav a.active::before {
  opacity: 1;
}
@media (max-width: 1024px) {
  .page-title-block .page-title__breadcrumb {
    display: none;
  }
  .page-title-block .page-title__desc {
    -webkit-transform: translateY(-35px);
            transform: translateY(-35px);
  }
  .page-title-block .page-title__bottom {
    padding-left: 25px;
  }
}
@media (max-width: 768px) {
  .page-title-block .page-title text {
    font-size: 80px;
  }
  .page-title-block .page-title__desc {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  .page-title-block .page-title__bottom {
    margin-top: 30px;
  }
  .page-title-block .page-title__section-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 40px;
  }
}
@media (max-width: 480px) {
  .page-title-block {
    padding: 30px 20px 30px;
  }
}

.section-title.news__meta-title {
  display: inline-block;
  line-height: 1;
  padding-top: 30px;
}
.section-title.news__meta-title .section-title__svg {
  width: 100%;
  height: 2.5rem;
  overflow: visible;
  text-align: center;
}
.section-title.news__meta-title text {
  font-size: 19rem;
  font-weight: 700;
  fill: #FAFAF2;
  stroke: #7A4228;
  stroke-width: 30px;
  paint-order: stroke fill;
  letter-spacing: 0.08em;
  dominant-baseline: middle;
  text-anchor: start;
}

.section-title {
  display: inline-block;
  padding-top: 30px;
  line-height: 1;
}
.section-title .section-title__svg {
  width: 100%;
  height: 2.5rem;
  overflow: visible;
  display: block;
}
.section-title text {
  font-size: 2rem;
  font-weight: 700;
  fill: #FAFAF2;
  stroke: #7A4228;
  stroke-width: 3px;
  paint-order: stroke fill;
  letter-spacing: 0.08em;
  dominant-baseline: middle;
}

.section-lead {
  font-size: 4rem;
  padding: 80px 0 50px;
  line-height: 1.5em;
}

@media (max-width: 1536px) {
  .section-lead {
    font-size: 3.2rem;
  }
}
@media (max-width: 480px) {
  .section-title {
    padding-top: 20px;
  }
  .section-title text {
    font-size: 1.6rem;
  }
  .section-lead {
    font-size: 2.4rem !important;
    padding: 55px 0 40px;
  }
}
.c-btn-frame {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 14px 28px;
  font-size: 2rem;
  font-weight: 400;
  color: #7A4228;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* --------------------------
     外枠 SVG（2重フレーム）
  -------------------------- */
  /* --------------------------
     ラベル（文字）
  -------------------------- */
  /* --------------------------
     三角アイコン
  -------------------------- */
  /* --------------------------
     Hover（反転 + スライド）
  -------------------------- */
  /* --------------------------
     TB レスポンシブ
  -------------------------- */
}
.c-btn-frame svg.c-btn-frame__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.c-btn-frame svg.c-btn-frame__svg path {
  -webkit-transition: stroke 0.3s ease, fill 0.3s ease;
  transition: stroke 0.3s ease, fill 0.3s ease;
}
.c-btn-frame__label {
  position: relative;
  z-index: 2;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
.c-btn-frame__arrow {
  position: relative;
  z-index: 2;
  width: 15px;
  height: 17px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
.c-btn-frame__arrow path {
  fill: #FAFAF2;
  stroke: #7A4228;
  -webkit-transition: fill 0.3s ease, stroke 0.3s ease;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.c-btn-frame:hover {
  color: #FAFAF2;
  /* 外枠の反転 */
  /* ラベルを右へスライド */
  /* 三角形をさらに右へスライド */
  /* 三角形の色反転 */
}
.c-btn-frame:hover svg.c-btn-frame__svg path:first-child {
  fill: #7A4228;
  stroke: #7A4228;
}
.c-btn-frame:hover svg.c-btn-frame__svg path:last-child {
  stroke: #FAFAF2;
}
.c-btn-frame:hover .c-btn-frame__label {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.c-btn-frame:hover .c-btn-frame__arrow {
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}
.c-btn-frame:hover .c-btn-frame__arrow path {
  fill: #7A4228;
  stroke: #FAFAF2;
}
@media (max-width: 1024px) {
  .c-btn-frame {
    font-size: 1.6rem;
  }
  .c-btn-frame__arrow {
    width: 13px;
    height: 13px;
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
}

/* Contact form の submit ボタンは非表示 */
.contact-form__submit-btn {
  display: none;
}

.button-small {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24px;
  height: 24px;
  text-decoration: none;
}
.button-small .button-small__icon {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}
.button-small:hover .button-small__icon {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  opacity: 0.85;
}

.eyecatch {
  width: 100%;
}
.eyecatch__img {
  width: 100%;
}

/* =====================================================
   CONTACT セクション（シンプル版）
   ===================================================== */
.contact {
  position: relative;
  padding: 200px 35px;
  background-color: #FAFAF2;
  overflow: hidden;
  /* アニメーション：右→左へ無限ループ */
  /* タイトル */
  /* リード文 */
  /* 本文テキスト */
  /* ボタン */
}
.contact__bg-marquee {
  position: absolute;
  top: 48%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  gap: 4vw;
  padding-right: 100vw;
  font-size: 300px;
  font-weight: 1000;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(122, 66, 40, 0.3);
  pointer-events: none;
  z-index: 1;
  -webkit-animation: marquee-scroll 40s linear infinite;
          animation: marquee-scroll 40s linear infinite;
  /* ★ 上側の二本線 */
  /* ★ 下側の二本線 */
}
.contact__bg-marquee span {
  display: inline-block;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
}
.contact__bg-marquee::before, .contact__bg-marquee::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(122, 66, 40, 0.3);
}
.contact__bg-marquee::before {
  top: 40px; /* 文字の大きさに応じて位置調整 */
  -webkit-box-shadow: 0 24px rgba(122, 66, 40, 0.3);
          box-shadow: 0 24px rgba(122, 66, 40, 0.3);
}
.contact__bg-marquee::after {
  bottom: -10px;
  -webkit-box-shadow: 0 -24px rgba(122, 66, 40, 0.3);
          box-shadow: 0 -24px rgba(122, 66, 40, 0.3);
}
@-webkit-keyframes marquee-scroll {
  0% {
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
}
@keyframes marquee-scroll {
  0% {
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
}
.contact__wrapper {
  width: min(100%, 1420px);
  margin: 0 auto;
  position: relative;
  padding: 25px 30px;
  z-index: 2;
}
.contact__bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  color: #F3F3E9;
  pointer-events: none;
}
.contact__inner {
  position: relative;
  z-index: 2;
  padding: 130px 80px;
}
.contact__title {
  font-size: 1.6rem;
  color: #7A4228;
  position: relative;
  z-index: 2;
}
.contact__lead {
  font-size: 4rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.contact__lead span {
  display: inline-block;
}
.contact__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.contact__content {
  font-size: 1.6rem;
  line-height: 2;
  color: rgba(68, 67, 65, 0.85);
  z-index: 2;
  position: relative;
}
.contact__button {
  text-align: right;
  position: relative;
  z-index: 2;
}
.contact__button .c-btn-frame {
  display: inline-block;
}
.contact__button .c-btn-frame__arrow {
  top: 2px;
}
.contact__lead-br {
  display: none;
}
.contact__bg-svg-tb {
  display: none;
}
.contact__bg-svg-sp {
  display: none;
}
@media (max-width: 1440px) {
  .contact__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 70px;
  }
}
@media (max-width: 1024px) {
  .contact {
    padding: 150px 35px;
  }
  .contact__lead {
    padding: 45px 0 30px;
  }
  .contact__lead-br {
    display: block;
  }
  .contact__body {
    gap: 55px;
  }
  .contact__inner {
    padding: 105px 100px;
  }
  .contact__bg-svg-pc {
    display: none;
  }
  .contact__bg-svg-tb {
    display: block;
  }
  .contact__bg-svg-sp {
    display: none;
  }
  .contact__button .c-btn-frame__arrow {
    top: 1px;
  }
}
@media screen and (max-width: 950px) {
  .contact__inner {
    padding: 105px 70px;
  }
}
@media (max-width: 768px) {
  .contact__wrapper {
    padding: 0;
  }
  .contact__inner {
    padding: 105px 80px;
  }
  .contact__body {
    gap: 40px;
  }
  .contact__body .c-btn-frame {
    padding: 10px 20px;
  }
}
@media (max-width: 480px) {
  .contact {
    padding: 100px 20px;
  }
  .contact__inner {
    padding: 95px 70px;
  }
  .contact__lead {
    padding: 42px 0 28px;
  }
  .contact__body {
    gap: 40px;
  }
  .contact__body .c-btn-frame {
    padding: 10px 20px;
  }
  .contact__bg-svg-pc {
    display: none;
  }
  .contact__bg-svg-tb {
    display: none;
  }
  .contact__bg-svg-sp {
    display: block;
  }
}
@media screen and (max-width: 460px) {
  .contact__inner {
    padding: 95px 55px;
  }
}
@media screen and (max-width: 430px) {
  .contact__inner {
    padding: 95px 50px;
  }
  .contact__lead {
    font-size: 2rem !important;
  }
  .contact__content {
    font-size: 1.4rem;
  }
  .contact .c-btn-frame__label {
    font-size: 1.4rem;
  }
}

.pagination {
  margin-top: 160px;
  text-align: center;
  /* ===================================================
     ▼ ページ番号ボタン（数字）
     =================================================== */
  /* ===================================================
     ▼ current ページ（色反転・枠も塗りつぶす）
     =================================================== */
  /* ================================================
  Prev / Next（矢印ボタン）
  ================================================ */
  /* ▼ Prev / Next（矢印ボタン） */
  /* ▼ 三角形本体 */
  /* ▼ disabled（薄くしてクリック不能） */
}
.pagination__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 25px;
}
.pagination__item {
  width: 40px;
  height: 40px;
  position: relative;
  color: #7A4228;
  /* ▼ インライン SVG 共通スタイル */
  /* ▼ hover（current は除外） */
}
.pagination__item a,
.pagination__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: relative;
  font-size: 1.4rem;
  text-decoration: none;
}
.pagination__item .pagination-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.pagination__item .pagination-svg .svg-border {
  stroke: currentColor;
  fill: none;
  -webkit-transition: stroke 0.3s ease, fill 0.3s ease;
  transition: stroke 0.3s ease, fill 0.3s ease;
}
.pagination__item .pagination-svg .svg-border--inner {
  stroke: currentColor;
  opacity: 0.65;
  -webkit-transition: stroke 0.3s ease, opacity 0.3s ease;
  transition: stroke 0.3s ease, opacity 0.3s ease;
}
.pagination__item:not(.pagination__item--current):not(.pagination__item--disabled):hover {
  color: #FAFAF2;
}
.pagination__item:not(.pagination__item--current):not(.pagination__item--disabled):hover .svg-border {
  fill: #7A4228;
  stroke: #7A4228;
}
.pagination__item:not(.pagination__item--current):not(.pagination__item--disabled):hover .svg-border--inner {
  stroke: #FAFAF2;
  opacity: 1;
}
.pagination__item:not(.pagination__item--current):not(.pagination__item--disabled):hover .pagination .triangle {
  fill: #FAFAF2;
}
.pagination__item--current {
  color: #FAFAF2;
}
.pagination__item--current .svg-border {
  stroke: #7A4228 !important;
  fill: #7A4228 !important;
}
.pagination__item--current .svg-border--inner {
  stroke: #FAFAF2 !important;
  opacity: 1;
}
.pagination__item--arrow {
  /* ▼ hover：disabled 以外 */
  /* ▼ disabled（hover させない） */
}
.pagination__item--arrow svg path,
.pagination__item--arrow .triangle {
  -webkit-transition: stroke 0.3s ease, fill 0.3s ease, opacity 0.3s ease;
  transition: stroke 0.3s ease, fill 0.3s ease, opacity 0.3s ease;
}
.pagination__item--arrow:hover:not(.pagination__item--disabled) {
  color: #FAFAF2;
}
.pagination__item--arrow:hover:not(.pagination__item--disabled) .triangle {
  fill: #FAFAF2;
  stroke: #FAFAF2;
}
.pagination__item--arrow:hover:not(.pagination__item--disabled) .svg-border {
  fill: #7A4228;
  stroke: #7A4228;
}
.pagination__item--arrow:hover:not(.pagination__item--disabled) .svg-border--inner {
  stroke: #FAFAF2;
  opacity: 1;
}
.pagination__item--arrow.pagination__item--disabled {
  opacity: 0.35;
  pointer-events: none;
}
.pagination__item--arrow.pagination__item--disabled .triangle,
.pagination__item--arrow.pagination__item--disabled svg path {
  opacity: 0.35;
}
.pagination__arrow {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  color: currentColor;
}
.pagination .triangle {
  fill: currentColor;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.pagination__arrow--disabled {
  opacity: 0.35;
  pointer-events: none;
}
.pagination__arrow--disabled .triangle {
  opacity: 0.35;
}
.pagination-svg .svg-border--inner {
  fill: none;
}
.pagination__item--arrow {
  margin: 0 50px;
}
@media (max-width: 1024px) {
  .pagination {
    margin-top: 120px;
  }
}
@media (max-width: 768px) {
  .pagination {
    width: 100%;
  }
  .pagination__list {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pagination__item--arrow:nth-of-type(1) {
    margin: 0 30px 0 0;
  }
  .pagination__item--arrow:nth-last-of-type(1) {
    margin: 0 0 0 30px;
  }
}
@media (max-width: 480px) {
  .pagination {
    margin-top: 90px;
  }
}

/* 前へ（« 前へ）が入っている pagination__item を丸ごと非表示 */
.pagination__item:has(.page-numbers.prev) {
  display: none !important;
}

/* 必要なら「次へ」も LI ごと消せる */
.pagination__item:has(.page-numbers.next) {
  display: none !important;
}

/* ============================================
   ▼ Prev / Next 完全 hover 無効化（最優先）
   ============================================ */
.pagination__arrow--disabled,
.pagination__arrow--disabled:hover {
  pointer-events: none !important;
  opacity: 0.35 !important;
  color: #7A4228 !important;
}
.pagination__arrow--disabled .svg-border,
.pagination__arrow--disabled .svg-border--inner,
.pagination__arrow--disabled:hover .svg-border,
.pagination__arrow--disabled:hover .svg-border--inner {
  fill: #FAFAF2 !important;
  stroke: currentColor !important;
  opacity: 0.35 !important;
}
.pagination__arrow--disabled .triangle,
.pagination__arrow--disabled:hover .triangle {
  fill: #7A4228 !important;
  stroke: currentColor !important;
  opacity: 0.35 !important;
}

.button-small-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.button-small-wrap:hover .button-small {
  -webkit-transform: scale(1.08) rotate(90deg);
          transform: scale(1.08) rotate(90deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button-small-wrap:hover .button-small-text {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button-small-wrap.is_open:hover .button-small {
  -webkit-transform: scale(1.08) rotate(-90deg);
          transform: scale(1.08) rotate(-90deg);
}

.button-small {
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
}
.button-small .button-small__icon {
  width: 100%;
  height: 100%;
  display: block;
}

.button-small-text {
  font-size: 2rem;
  color: #444341;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.icon-small-static {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: absolute;
  bottom: 0;
  right: 5px;
}

.icon-small-static__circle {
  width: 24px;
  height: 24px;
  background-color: #7A4228;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.icon-small-static__icon {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background-color: #FAFAF2;
}

.icon-small-static__text {
  font-size: 2rem;
  color: #444341;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: 500;
}

.single-navigation {
  margin-top: 110px;
}
.single-navigation .single-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.single-navigation .single-nav__item--next, .single-navigation .single-nav__item--prev {
  width: 200px;
  font-size: 1.6rem;
  font-weight: 500;
}
.single-navigation .single-nav__item--next .single-nav__inner, .single-navigation .single-nav__item--prev .single-nav__inner {
  border-bottom: 1px solid rgba(68, 67, 65, 0.8);
  padding-bottom: 3px;
}
.single-navigation .single-nav__item--next .single-nav__text, .single-navigation .single-nav__item--prev .single-nav__text {
  padding-bottom: 2px;
}
.single-navigation .single-nav__item--prev .button-small__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.single-navigation .single-nav__item--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateX(-1px);
          transform: translateX(-1px);
}
.single-navigation .single-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5px;
}
.single-navigation .c-btn-frame {
  padding: 8px 35px;
}
.single-navigation .c-btn-frame__label {
  font-size: 2rem;
}
.single-navigation .c-btn-frame__arrow {
  display: none;
}
@media (max-width: 1024px) {
  .single-navigation {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .single-navigation .single-nav .button-small {
    width: 18px;
    height: 18px;
  }
  .single-navigation .single-nav__item--next, .single-navigation .single-nav__item--prev {
    width: 180px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  .single-navigation .c-btn-frame__label {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .single-navigation {
    margin-top: 65px;
  }
  .single-navigation .single-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .single-navigation .single-nav__item--next .single-nav__inner, .single-navigation .single-nav__item--prev .single-nav__inner {
    border-bottom: none;
  }
  .single-navigation .single-nav .button-small {
    width: 34px;
    height: 34px;
  }
  .single-navigation .single-nav__inner {
    padding: 0;
  }
  .single-navigation .single-nav__item--next, .single-navigation .single-nav__item--prev {
    width: 34px;
  }
  .single-navigation .single-nav__text {
    display: none;
  }
}

/* ========================================
   5. Pages（ページ固有の調整）
======================================== */
.hero {
  position: relative;
  /* emoji（👉）の基本設定 */
  /* hero 円に入ったら emoji を出す */
  /* dot（本体）の初期設定 */
  /* hero 内にいるときカーソルは 👈 に */
  /* 白い円本体 */
  /* 中の配置調整 */
  /* 点線円 */
  /* 中央の点 */
  /* SVG の文字（上に表示） */
}
.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 238px 0 0;
  overflow: hidden;
}
.hero #cursor-emoji {
  position: absolute;
  font-size: 26px;
  pointer-events: none;
  z-index: 5;
  opacity: 0; /* 最初は見せない */
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.1s linear;
  transition: opacity 0.2s ease, -webkit-transform 0.1s linear;
  transition: opacity 0.2s ease, transform 0.1s linear;
  transition: opacity 0.2s ease, transform 0.1s linear, -webkit-transform 0.1s linear;
}
.hero .hero__circle:hover #cursor-emoji {
  opacity: 1;
}
.hero .hero__circle-dot {
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}
.hero .hero__circle.hovering {
  cursor: none;
}
.hero__logo {
  color: #7A4228;
  width: 34px;
  height: 34px;
}
.hero__logo svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero__subtitle {
  color: #7A4228;
  font-size: 2.8rem;
  line-height: 1.5;
  padding-top: 0.2em;
}
.hero__title {
  font-size: 14rem;
  font-weight: 400;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transform: translateX(0.4em);
          transform: translateX(0.4em);
  -webkit-text-stroke: 2px #444341;
  line-height: 1;
  padding: 60px 0 25px;
  letter-spacing: 0.1em;
  overflow: hidden;
}
.hero__title span:nth-child(2) {
  -webkit-transform: translateX(-0.5em);
          transform: translateX(-0.5em);
}
.hero__lead {
  font-size: 4.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  line-height: 1.5;
  padding: 0 0 200px;
}
.hero__lead span:nth-child(2) {
  -webkit-transform: translateX(-12px);
          transform: translateX(-12px);
}
.hero__bg {
  position: relative;
  width: 100%;
}
.hero__bg img {
  width: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
}
.hero__circle {
  position: absolute;
  left: 50%;
  top: -85px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 170px;
  height: 170px;
  background-color: #FAFAF2;
  border-radius: 50%;
  z-index: 3;
}
.hero__circle-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__circle-dotted {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); /* 上に寄せる */
  border-radius: 50%;
  opacity: 0.6;
  -webkit-animation: rotateDot 10s linear infinite;
          animation: rotateDot 10s linear infinite;
}
.hero__circle-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #7A4228;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.hero__circle-text {
  position: absolute;
  left: 50%;
  top: -18px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}
@media (max-width: 1536px) {
  .hero__logo {
    width: 24px;
    height: 24px;
  }
  .hero__subtitle {
    font-size: 2rem;
  }
  .hero__title {
    font-size: 10rem;
    padding: 40px 0 20px;
  }
  .hero__lead {
    font-size: 3rem;
  }
}
.hero__circle-text--tb {
  display: none;
}
@media (max-width: 768px) {
  .hero {
    /* ▼ 円サイズの変更（あなたが書いたコード） */
    /* ▼ SVG の切替（TB用だけ表示） */
    /* ▼ テキストSVGの位置合わせ */
  }
  .hero__circle {
    top: -70px;
    width: 130px;
    height: 130px;
  }
  .hero__circle-dotted {
    width: 95px;
    height: 95px;
  }
  .hero__circle-text--pc {
    display: none;
  }
  .hero__circle-text--tb {
    display: block;
  }
  .hero__circle-text {
    top: -42px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 480px) {
  .hero__inner {
    padding: 180px 0 0;
  }
  .hero__title {
    font-size: 5.4rem;
  }
  .hero__lead {
    font-size: 2rem;
  }
}

/* 回転アニメーション */
@-webkit-keyframes rotateDot {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotateDot {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
.news {
  border-bottom: 1px solid rgba(122, 66, 40, 0.5);
}
.news__wrapper {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: 8px 35px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}
.news__meta-title {
  padding-top: 20px;
}
.news__content-time {
  font-size: 1.4rem;
  line-height: 1;
}
.news__title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  padding-top: 3px;
}
.news .c-btn-frame {
  margin-top: 18px;
  display: inline-block;
}
.news .button-small {
  display: none;
}
@media (max-width: 1536px) {
  .news__meta {
    gap: 0;
  }
}
@media (max-width: 480px) {
  .news__wrapper {
    padding: 20px 20px 30px;
  }
  .news .section-title.news__meta-title {
    display: none;
  }
  .news__content-time {
    font-size: 1.6rem;
  }
  .news .c-btn-frame {
    display: none;
  }
  .news .button-small {
    display: inline-block;
    position: absolute;
    bottom: 30px;
    right: 20px;
  }
  .news__title {
    font-size: 1.6rem;
  }
}

.section-lead {
  font-size: 3.2rem;
}

.about {
  text-align: center;
  position: relative;
  z-index: 1;
  /* セクションタイトル */
  /* ------------------------------
     リード文（大きい見出し）
  ------------------------------ */
  /* ------------------------------
     本文のブロック
  ------------------------------ */
  /* ------------------------------
     各段落
     - span は inline（自然な行間）
     - 改行したい部分は <br> を使用
  ------------------------------ */
  /* ------------------------------
     背景色つき強調
     - 文字幅に背景をつけたいときだけ inline-block
  ------------------------------ */
}
.about__wrapper {
  padding: 200px 35px 300px;
}
.about .section-title {
  padding-bottom: 80px;
}
.about__lead {
  font-size: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.5;
  padding-bottom: 60px;
}
.about__content {
  font-size: 3.2rem;
  line-height: 2;
  position: relative;
}
.about__text {
  margin-bottom: 35px;
}
.about__text span {
  display: inline;
}
.about__text .about__text-br {
  display: none;
}
.about__text-highlight {
  display: inline-block;
  background-color: #7A4228;
  color: #FAFAF2;
  padding: 0 0.4em;
  line-height: 1.6;
}
@media (max-width: 1536px) {
  .about__lead {
    font-size: 3.6rem;
  }
  .about__content {
    font-size: 2.4rem;
  }
  .about__text {
    margin-bottom: 25px;
  }
}
@media (max-width: 1024px) {
  .about__wrapper {
    padding: 150px 35px 300px;
  }
  .about__text .about__text-br {
    display: block;
  }
}
@media (max-width: 480px) {
  .about .section-title {
    padding-bottom: 55px;
  }
  .about__wrapper {
    padding: 100px 20px 200px;
  }
  .about__lead {
    font-size: 2.4rem;
    padding-bottom: 35px;
  }
  .about__text {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
}

/* =========================================================
   About：span 左からマスクでテキストが現れるアニメーション
========================================================= */
/* span 単位でマスク処理の準備 */
.about__content span {
  position: relative;
  display: inline-block; /* テキスト幅でマスク */
  overflow: hidden; /* 子要素（マスク）がはみ出ない */
  top: -30px;
  opacity: 0;
}

/* マスク：背景色と同じ色でフタをする */
.about__content span::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #FAFAF2; /* ←背景と同じ色 (#FAFAF2) */
  -webkit-transform: translateX(0);
          transform: translateX(0); /* 初期状態：完全に覆っている */
}

/* 表示開始（JS で .about--visible を付与） */
.about__span-active::after {
  -webkit-animation: about-reveal-mask 2s ease forwards;
          animation: about-reveal-mask 2s ease forwards;
}

.about__span-active {
  -webkit-animation: about-slide-in 2s ease forwards;
          animation: about-slide-in 2s ease forwards; /* 上→下 + フェードイン */
}

/* マスクが左→右へ流れるアニメーション */
@-webkit-keyframes about-reveal-mask {
  to {
    -webkit-transform: translateX(101%);
            transform: translateX(101%); /* マスクが右へ抜ける */
  }
}
@keyframes about-reveal-mask {
  to {
    -webkit-transform: translateX(101%);
            transform: translateX(101%); /* マスクが右へ抜ける */
  }
}
@-webkit-keyframes about-slide-in {
  0% {
    top: -20px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes about-slide-in {
  0% {
    top: -20px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.service {
  padding: 200px 35px;
  background-color: #444341;
  color: #FAFAF2;
  position: relative;
  z-index: 2;
  /* =========================================================
  About：span 左からマスクでテキストが現れるアニメーション
  ========================================================= */
}
.service .section-title {
  -webkit-text-stroke: 1px #FAFAF2;
  color: transparent;
}
.service .section-title text {
  text-anchor: start;
  fill: #444341;
  stroke: #FAFAF2;
}
.service__wrapper {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: 8px 0 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.service__lead {
  position: relative;
  display: inline-block;
  --max-span-width: 0px;
}
.service__wrapper::after {
  content: "";
  position: absolute;
  top: 185px;
  right: 35px;
  width: calc(100% - var(--lead-max-span-width) - 120px);
  height: 1px;
  background-color: rgba(250, 250, 242, 0.5);
}
.service__content {
  background-color: #FAFAF2;
  color: #444341;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .service {
    padding: 150px 35px;
  }
}
@media (max-width: 480px) {
  .service {
    padding: 100px 20px;
  }
  .service__wrapper::after {
    display: none;
  }
  .service__lead {
    padding: 55px 0 40px;
    font-size: 2.4rem;
  }
  .service__content {
    margin-bottom: 60px;
  }
}
.service .service-list {
  padding: 70px 50px;
}
.service .service-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 44px;
  position: relative;
  padding-bottom: 52px;
}
.service .service-list__title {
  font-size: 3.6rem;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
}
.service .service-list__title::before {
  content: "";
  width: 10px;
  height: 44px;
  display: block;
  background-color: #7A4228;
  position: absolute;
  left: -50px;
  top: 16px;
}
.service .service-list__desc {
  position: relative;
  top: 10px;
}
.service .service-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.service .service-list__item {
  width: calc(50% - 10px);
  background-color: #F3F3E9;
  padding: 45px 54px 86px;
  position: relative;
}
.service .service-list__item .button-small {
  position: absolute;
  right: 54px;
  bottom: 45px;
}
.service .service-list__item::before {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  background-color: #7A4228;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0%);
}
.service .service-list__item-number {
  color: rgba(122, 66, 40, 0.8);
  font-weight: 700;
  -webkit-transform-origin: center;
          transform-origin: center;
  display: inline-block;
  position: absolute;
  right: 54px;
  top: 45px;
  -webkit-transform: perspective(300px) rotateX(6deg) rotateY(-8deg) skewX(-10deg);
          transform: perspective(300px) rotateX(6deg) rotateY(-8deg) skewX(-10deg);
}
.service .service-list__item-title {
  padding: 75px 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service .service-list__item-title .ja_accent {
  font-size: 2rem;
  color: rgba(122, 66, 40, 0.6);
  line-height: 1.5;
  font-weight: 500;
}
.service .service-list__item-title :nth-child(2) {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .service .service-list {
    padding: 40px 30px;
  }
  .service .service-list__title {
    font-size: 2.8rem;
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
  .service .service-list__title::before {
    width: 8px;
    height: 36px;
    top: 10px;
    left: -22px;
  }
  .service .service-list__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    padding-bottom: 40px;
  }
  .service .service-list__desc {
    top: 0;
  }
  .service .service-list__en-production {
    display: none;
  }
  .service .service-list__item-desc {
    font-size: 1.4rem;
  }
  .service .service-list__items {
    gap: 16px;
  }
  .service .service-list__item {
    width: calc(50% - 8px);
    padding: 40px 30px 100px;
  }
  .service .service-list__item::before {
    width: 24px;
    height: 24px;
  }
  .service .service-list__item-title .ja_accent {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .service .service-list {
    padding: 40px 30px;
  }
  .service .service-list__title::before {
    left: -22px;
  }
  .service .service-list__item {
    padding: 40px 30px 70px;
  }
  .service .service-list__item .button-small {
    bottom: 40px;
    right: 30px;
  }
  .service .service-list__item-number {
    top: 35px;
    right: 30px;
  }
  .service .service-list__icon {
    width: 60px;
    height: 60px;
  }
  .service .service-list__icon img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 480px) {
  .service .service-list {
    padding: 35px 15px;
  }
  .service .service-list__title {
    font-size: 2.4rem;
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  .service .service-list__title::before {
    width: 4px;
    height: 30px;
    left: -10px;
  }
  .service .service-list__header {
    padding-bottom: 35px;
  }
  .service .service-list__desc {
    font-size: 1.4rem;
  }
  .service .service-list__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service .service-list__item {
    width: 100%;
    padding: 35px 30px 90px;
  }
}
.service__button {
  text-align: right;
  position: relative;
  padding-right: 70px;
}
.service__button .c-btn-frame {
  color: #FAFAF2;
}
.service__button .c-btn-frame .c-btn-frame__arrow path {
  fill: transparent;
  stroke: #FAFAF2;
}
.service__button .c-btn-frame .c-btn-frame__svg path:first-child {
  stroke: #FAFAF2;
}
.service__button .c-btn-frame .c-btn-frame__svg path:last-child {
  stroke: #FAFAF2;
  stroke-opacity: 0.65;
}
.service__button .c-btn-frame:hover {
  /* 外枠（1本目のパス） */
  /* 内枠（2本目のパス）は塗りなし、線だけアクセント or 元のまま */
  /* 矢印もアクセント系に */
  /* 文字色もアクセントに */
}
.service__button .c-btn-frame:hover .c-btn-frame__svg path:first-child {
  stroke: #7A4228;
  fill: #FAFAF2;
}
.service__button .c-btn-frame:hover .c-btn-frame__svg path:last-child {
  stroke: #7A4228;
  fill: transparent;
  stroke-opacity: 1;
}
.service__button .c-btn-frame:hover .c-btn-frame__arrow path {
  stroke: #7A4228;
  fill: #FAFAF2;
}
.service__button .c-btn-frame:hover .c-btn-frame__label {
  color: #7A4228;
}
.service__button::before {
  content: "";
  width: calc(var(--service-list-width) - var(--btn-width) - 70px - 28px);
  height: 1px;
  background-color: rgba(250, 250, 242, 0.5);
  position: absolute;
  top: 50%;
  left: 0;
}
.service__button::after {
  content: "";
  width: 42px;
  height: 1px;
  background-color: rgba(250, 250, 242, 0.5);
  position: absolute;
  top: 50%;
  right: 0;
}
@media (max-width: 480px) {
  .service__button {
    padding-right: 0;
  }
  .service__button::before {
    width: calc(var(--service-list-width) - var(--btn-width) - 28px);
  }
  .service__button::after {
    display: none;
  }
}

.member {
  padding: 200px 35px;
}
.member__wrapper {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: 8px 35px 20px;
  position: relative;
}
.member__wrapper .section-title {
  width: 100%;
}
.member__wrapper .section-title text {
  text-anchor: end;
}
.member .section-title {
  text-align: right;
}
.member__lead {
  text-align: right;
}
.member__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-top: 50px;
}
.member__button {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
@media (max-width: 1024px) {
  .member__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 30px;
    gap: 20px;
  }
  .member__button {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (max-width: 1024px) {
  .member {
    padding: 150px 35px;
  }
}
@media (max-width: 480px) {
  .member {
    padding: 100px 20px;
  }
  .member__wrapper {
    padding: 0;
  }
  .member__lead {
    padding: 55px 0 40px;
  }
  .member__bottom {
    padding: 25px 0 0;
  }
}

/* ===========================
   メンバーカード一覧
   =========================== */
.member {
  position: relative;
  overflow: hidden;
  background-color: #444341;
  /* 背景画像 */
  /* 色つきグラデーション overlay（今回の主役） */
  /* ===========================
     フリップカード本体
     =========================== */
}
.member::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--mask-width);
  height: var(--member-height);
  background-image: var(--member-bg);
  background-size: auto 100%;
  background-position: left top;
  background-repeat: no-repeat;
  z-index: 1;
}
.member::after {
  content: "";
  position: absolute;
  inset: 0;
  /* 左上 → 透明、右下 → color-base */
  background: linear-gradient(120deg, rgba(250, 250, 242, 0.3) 10%, rgba(250, 250, 242, 0.7) 30%, #fafaf2 50%, #FAFAF2 100%);
  z-index: 2;
  pointer-events: none;
}
.member > * {
  position: relative;
  z-index: 3;
}
.member__card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 30px;
  will-change: transform;
}
.member .member-card {
  width: 356px;
  height: 525px;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.member .member-card__inner {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
.member .member-card:hover .member-card__inner {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.member .member-card__front,
.member .member-card__back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
}
.member .member-card__front img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.member .member-card__back {
  position: absolute;
  inset: 0;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
  /* ← 元画像の背景（PHPで inline style で渡してる）*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* ← アクセントカラ― overlay（半透明）*/
  /* ← テキストを overlay の上に出す */
}
.member .member-card__back::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #7A4228;
  opacity: 0.9;
  z-index: 1;
}
.member .member-card__back::after {
  content: "";
  position: absolute;
  inset: 20px 15px;
  border: 1px solid #FAFAF2;
  z-index: 2;
  pointer-events: none;
}
.member .member-card__back .member-card__title,
.member .member-card__back .member-card__text {
  position: relative;
  z-index: 2;
}
.member .member-card__back .member-card__title {
  font-size: 2rem;
  font-weight: 300;
  position: relative;
}
.member .member-card__back .member-card__title::after {
  content: "";
  width: 28px;
  height: 1px;
  background-color: rgba(250, 250, 242, 0.4);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -5px;
}
.member .member-card__back .member-card__text {
  font-size: 1.4rem;
  font-weight: 300;
  padding-top: 30px;
}
.member .member-card__back .member-card__text .big {
  font-size: 16px;
}
.member .member-card__back .member-card__text .pad {
  display: inline-block;
  padding-bottom: 10px;
}

@media (max-width: 1024px) {
  .eyecatch {
    width: 100%;
    height: 480px;
  }
  .eyecatch img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media (max-width: 480px) {
  .eyecatch {
    height: 100%;
  }
}
/* =====================================================
   WORKS
   ===================================================== */
.works {
  width: 100%;
  padding: 200px 35px;
  background-color: #F3F3E9;
  /* 上のタイトル */
  /* リード */
  /* 一覧全体 */
  /* ================================
     各アイテム
  ================================= */
  /* サムネイル */
  /* テキスト側 */
  /* タグ */
  /* タイトル */
  /* 説明文 */
  /* button ボタン */
}
.works__wrapper {
  width: min(100%, 1420px);
  margin: 0 auto;
  position: relative;
}
.works__title {
  text-align: left;
  margin-bottom: 20px;
  padding-left: 10px;
}
.works__lead {
  margin-bottom: 30px;
}
.works__lead::after {
  content: "";
  position: absolute;
  right: 0;
  top: 170px;
  width: calc(100% - var(--works-lead-span-width) - 28px);
  height: 1px;
  background-color: rgba(68, 67, 65, 0.4);
}
.works__lead span {
  display: inline-block;
}
.works__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}
.works__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 900px) {
  .works__item {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.works__thumb {
  width: 100%;
  text-align: center;
}
.works__thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.works__info {
  background: #fafaf2;
  border: 1px solid rgba(68, 67, 65, 0.3);
  padding: 35px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.works__info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #7A4228 transparent transparent transparent;
  /* ↑ 塗りたい色（$color-base）だけ指定 */
}
.works__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.works__tag {
  display: inline-block;
  font-size: 12px;
  padding: 0 6px;
  background: #7A4228;
  color: #FAFAF2;
}
.works__item-title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-top: 10px;
}
.works__item-lead {
  font-size: 1.6rem;
  line-height: 1.5;
  opacity: 0.85;
  letter-spacing: 0.05;
}
.works__button {
  margin-top: 100px;
  text-align: right;
  position: relative;
}
.works__button::before {
  content: "";
  width: calc(100% - var(--btn-width) - 28px);
  height: 1px;
  background-color: rgba(68, 67, 65, 0.4);
  position: absolute;
  top: 50%;
  left: 0px;
}
.works__button .c-btn-frame {
  display: inline-block;
}
.works__button .c-btn-frame__arrow {
  top: 2px;
}
@media (max-width: 1024px) {
  .works {
    padding: 150px 35px;
  }
  .works__list {
    gap: 30px;
  }
  .works__button .c-btn-frame__arrow {
    top: 1px;
  }
}
@media (max-width: 768px) {
  .works__item-title {
    margin-top: 5px;
  }
  .works__info {
    padding: 25px 15px;
  }
  .works__tag {
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .works {
    padding: 100px 20px;
  }
  .works__lead {
    margin-bottom: 20px;
  }
  .works__lead::after {
    display: none;
  }
  .works__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 45px;
  }
  .works__info::before {
    border-width: 15px 15px 0 0;
  }
  .works__button {
    margin-top: 50px;
  }
}

/* ===============================
   NEWS ARCHIVE PAGE
================================= */
.news-archive__wrapper {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding-top: 200px;
  padding-left: 35px;
  padding-right: 35px;
}
.news-archive__wrapper .section-title {
  padding-top: 0;
}
.news-archive .section-lead {
  position: relative;
}
.news-archive .section-lead::after {
  content: "";
  position: absolute;
  top: 110px;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 1px;
  width: calc(100% - var(--section-lead-width) - 100px);
  background-color: rgba(68, 67, 65, 0.35);
}

/* ===== ニュース一覧 ===== */
.news-archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 35px;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .news-archive__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .news-archive__list {
    grid-template-columns: 1fr;
  }
}

/* ===== ニュースカード ===== */
.news-item {
  /* アイキャッチ画像 */
  /* カテゴリーラベル */
  /* タイトル */
  /* 日付 */
  /* 要約テキスト */
}
.news-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-item__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: #ddd;
  border: 1px solid rgba(68, 67, 65, 0.3);
}
.news-item__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-item__body {
  padding: 24px 10px 0;
}
.news-item__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.news-item__cat {
  background: #7A4228;
  padding: 4px 8px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  display: inline-block;
}
.news-item__title {
  font-size: 2.4rem;
  font-weight: 400;
  color: #444341;
  padding: 10px 0 4px;
  line-height: 1.4;
}
.news-item__title a {
  color: inherit;
  text-decoration: none;
}
.news-item__title a:hover {
  opacity: 0.7;
}
.news-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-item__date {
  font-size: 1.2rem;
  color: rgba(68, 67, 65, 0.7);
  display: block;
}
.news-item__excerpt {
  font-size: 1.4rem;
  color: #444341;
  line-height: 1.5;
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .news-archive .section-lead::after {
    width: calc(100% - var(--section-lead-width) - 50px);
  }
  .news-archive__wrapper {
    padding-top: 150px;
  }
  .news-archive__list {
    gap: 45px 30px;
  }
  .news-archive .news-item__body {
    padding: 20px 5px 0;
  }
}
@media (max-width: 480px) {
  .news-archive .section-lead::after {
    width: calc(100% - var(--section-lead-width) - 30px);
  }
  .news-archive__wrapper {
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.works-archive {
  /* -----------------------------
     section-lead（横線つくるやつ）
  ----------------------------- */
}
.works-archive__wrapper {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding-top: 200px;
  padding-left: 35px;
  padding-right: 35px;
}
.works-archive .section-lead {
  position: relative;
}
.works-archive .section-lead::after {
  content: "";
  position: absolute;
  top: 110px;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 1px;
  width: calc(100% - var(--section-lead-width) - 100px);
  background-color: rgba(68, 67, 65, 0.35);
}
.works-archive__wide-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.works-archive__wide-list .works-card--wide:last-child {
  border-left: none;
}
.works-archive__wide-list .works-card--wide {
  border-bottom: none;
}
.works-archive__normal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  border-bottom: 1px solid rgba(68, 67, 65, 0.45);
}
.works-archive .works-card {
  padding: 25px 20px;
  border-left: 1px solid rgba(68, 67, 65, 0.45);
  border-top: 1px solid rgba(68, 67, 65, 0.45);
  border-right: 1px solid rgba(68, 67, 65, 0.45);
  position: relative;
}
.works-archive .works-card::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-color: #7A4228;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.works-archive .works-card:not(:nth-child(3n+1)) {
  border-left: none;
}
.works-archive .works-card__thumb, .works-archive .works-card__thumb img {
  min-width: 0;
  width: 100%;
  height: auto;
  max-width: none;
}
.works-archive .works-card__body {
  padding: 25px 0 0;
}
.works-archive .works-card__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}
.works-archive .works-card__cat {
  color: #FAFAF2;
  background-color: #7A4228;
  font-size: 12px;
  line-height: 1;
  padding: 3px 5px;
}
.works-archive .works-card__title {
  font-size: 2.4rem;
  font-weight: 500;
}
.works-archive .works-card__excerpt {
  line-height: 1.5;
  color: rgba(68, 67, 65, 0.85);
}
.works-archive .works-card .c-btn-frame__label {
  font-size: 14px;
}
.works-archive .works-card--dummy-tb {
  display: none;
}
@media (max-width: 1024px) {
  .works-archive {
    /* すべての border をリセット */
    /* 左列（奇数：1,3,5,...） */
    /* 右列（偶数：2,4,6,...） */
    /* 最後の2つだけ下線を付ける */
  }
  .works-archive__wrapper {
    padding-top: 150px;
  }
  .works-archive .section-lead::after {
    width: calc(100% - var(--section-lead-width) - 50px);
  }
  .works-archive .works-card {
    border: none;
  }
  .works-archive .works-card:nth-child(2n+1) {
    border-left: 1px solid rgba(68, 67, 65, 0.45);
    border-top: 1px solid rgba(68, 67, 65, 0.45);
  }
  .works-archive .works-card:nth-child(2n) {
    border-left: 1px solid rgba(68, 67, 65, 0.45);
    border-top: 1px solid rgba(68, 67, 65, 0.45);
    border-right: 1px solid rgba(68, 67, 65, 0.45);
  }
  .works-archive .works-archive__normal-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .works-archive .works-card--dummy {
    display: none;
  }
  .works-archive .works-card--dummy-tb {
    display: block;
  }
}
@media (max-width: 480px) {
  .works-archive__wrapper {
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .works-archive .section-lead::after {
    width: calc(100% - var(--section-lead-width) - 30px);
    top: 74px;
  }
  .works-archive .works-card {
    padding: 15px 10px;
  }
  .works-archive .works-card::before {
    width: 15px;
    height: 15px;
  }
  .works-archive .works-card__title {
    font-size: 1.6rem;
    font-weight: 500;
  }
  .works-archive .works-card__cat {
    font-size: 10px;
    padding: 2px 3px;
  }
  .works-archive .works-card__body {
    padding: 15px 0 0;
  }
  .works-archive .works-card__excerpt {
    display: none;
  }
}

.news-single__wrapper {
  width: min(100%, 1420px);
  margin: 200px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  padding: 0 35px;
}
.news-single__inner {
  padding: 150px 80px 110px;
  background-color: #F3F3E9;
  border-top: 10px solid #7A4228;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
.news-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.news-single__data {
  color: rgba(122, 66, 40, 0.8);
}
.news-single__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  height: 100%;
}
.news-single__cat {
  background-color: #7A4228;
  color: #FAFAF2;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 0 5px;
}
.news-single .news-item__thumb {
  border: 1px solid rgba(122, 66, 40, 0.35);
}
.news-single__content p {
  padding: 25px 20px 45px;
}
.news-single__content h2 {
  font-size: 3.2rem;
  background-color: rgba(122, 66, 40, 0.15);
  font-weight: 500;
  border-top: 5px solid #7A4228;
  line-height: 1.5;
  padding: 3px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.news-single__content h2 .heading-num-svg {
  display: inline-block;
  overflow: visible;
  background-color: #7A4228;
  width: 34px;
  height: 34px;
  text-align: center;
}
.news-single__content h2 .heading-num-svg text {
  font-size: 1.8rem;
  font-weight: 700;
  fill: #7A4228;
  stroke: #FAFAF2;
  stroke-width: 2px;
  paint-order: stroke;
}
.news-single__content h3 {
  background-image: linear-gradient(to right, #7A4228, #7A4228 3px, transparent 3px, transparent 8px), linear-gradient(to right, #7A4228, #7A4228 3px, transparent 3px, transparent 8px);
  background-size: 8px 1px, 8px 1px; /* 下線 */
  background-position: left top, left bottom; /* 下線の位置 */
  background-repeat: repeat-x, repeat-x;
  font-weight: 400;
  padding: 4px 13px;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.news-single__content h3 .heading-num-svg {
  width: 20px;
}
.news-single__content h3 .heading-num-svg text {
  font-size: 1.6rem;
  font-weight: 700;
  fill: #F3F3E9;
  stroke: #7A4228;
  stroke-width: 3px;
  paint-order: stroke;
  -webkit-transform: translate(3px, 22px);
          transform: translate(3px, 22px);
}
.news-single__title {
  font-size: 4rem;
  font-weight: 500;
  padding: 15px 0 60px;
}
.news-single__side-bar {
  width: 353px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 353px;
          flex: 0 0 353px;
}
.news-single__side-bar .news-item__body {
  padding: 20px 5px 35px;
}
.news-single__side-bar .news-item__title {
  padding: 5px 0 4px;
}
.news-single__side-bar .news-item__categories {
  font-size: 1.2rem;
}
.news-single__side-title {
  font-size: 2.4rem;
  padding: 5px 15px 8px;
  border-left: 3px solid #7A4228;
  border-bottom: 1px solid #7A4228;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .news-single__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 150px;
    gap: 0;
  }
  .news-single__inner {
    padding: 100px 30px 70px;
  }
  .news-single__title {
    line-height: 1.5;
    font-weight: 400;
  }
  .news-single__side-title {
    margin-bottom: 80px;
    margin-top: 140px;
  }
  .news-single .news-item__body {
    padding: 20px 5px 20px;
  }
  .news-single__side-bar {
    width: 100%;
  }
  .news-single__side-bar-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
  .news-single__side-bar-wrapper .news-item {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .news-single__wrapper {
    padding: 0 20px;
  }
  .news-single__title {
    font-size: 2.4rem;
    padding: 15px 0 40px;
  }
  .news-single__side-title {
    margin-top: 120px;
  }
  .news-single__content p {
    padding: 25px 5px 40px;
    font-size: 1.4rem;
  }
  .news-single__content h2 {
    font-size: 2rem;
    padding: 6px 10px;
  }
  .news-single__content h2 .heading-num-svg {
    width: 30px;
    height: 30px;
  }
  .news-single__content h2 .heading-num-svg text {
    font-size: 1.6rem;
  }
  .news-single__side-bar {
    width: 100%;
  }
  .news-single__side-bar-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 0;
  }
  .news-single__side-bar-wrapper .news-item {
    max-width: 100%;
  }
}

.header {
  color: #444341;
}
.header.is-light {
  color: #FAFAF2;
}
.header .header__nav-link,
.header .header__contact-link,
.header .header__logo svg {
  -webkit-transition: color 0.3s ease, fill 0.3s ease, stroke 0.3s ease;
  transition: color 0.3s ease, fill 0.3s ease, stroke 0.3s ease;
}
.header.is-light .header__nav-link,
.header.is-light .header__contact-link {
  color: #FAFAF2;
}
.header.is-light .header__logo svg {
  color: #FAFAF2;
}

.page-about__wrapper {
  width: min(100%, 1490px);
  margin: 0 auto;
  padding-top: 200px;
  padding-left: 35px;
  padding-right: 35px;
}
.page-about .about-mv-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 80px;
  gap: 60px;
}
.page-about .about-mv-block__item {
  border-left: 1px solid rgba(68, 67, 65, 0.4);
  padding-left: 40px;
}
.page-about .about-mv-block__item .section-title {
  padding-top: 0;
}
.page-about .about-mv-block__item .section-lead {
  padding: 80px 0 40px;
}
.page-about .about-philosophy-chart {
  background-color: #F3F3E9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  padding: 80px 35px;
  margin-bottom: 200px;
  /* JA の切り替え */
  /* EN の切り替え（SVG text） */
  /* ======================================
  Bridge Line Animation（フルセット）
  ====================================== */
  /* ▼ 共通アニメーション：回転角を維持したまま伸びる */
  /* ▼ 擬似要素共通設定 */
  /* ======================================
  before（左側の線）
  ====================================== */
  /* 1段目：左下 → 中央（-28°） */
  /* 2段目：水平線（0°） */
  /* 3段目：左上 → 中央（+28°） */
  /* ======================================
  after（右側の線）
  ====================================== */
  /* 1段目：中央 → 右上（+28°） */
  /* 2段目：水平線（0°） */
  /* 3段目：中央 → 右下（-28°） */
}
.page-about .about-philosophy-chart__heading {
  text-align: center;
}
.page-about .about-philosophy-chart__heading .section-title text {
  font-size: 2.8rem;
}
.page-about .about-philosophy-chart__heading .section-title__sub {
  font-size: 1.6rem;
}
.page-about .about-philosophy-chart .apc-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1070px;
  height: 525px;
}
.page-about .about-philosophy-chart .apc-side {
  width: 300px;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-about .about-philosophy-chart .apc-side .apc-circle {
  border-radius: 50%;
  background-color: #fff;
  width: 300px;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-about .about-philosophy-chart .apc-side .apc-circle svg {
  height: 25px;
}
.page-about .about-philosophy-chart .apc-side .apc-circle text {
  font-size: 2.4rem;
  fill: transparent;
  stroke: #444341;
  font-weight: 900;
}
.page-about .about-philosophy-chart .apc-side .apc-circle .apc-circle__ja {
  display: inline-block;
}
.page-about .about-philosophy-chart .apc-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
}
.page-about .about-philosophy-chart .apc-bridge {
  border-radius: 50%;
  background-color: #444341;
  color: #FAFAF2;
  width: 155px;
  height: 155px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-image: none;
  -webkit-transition: background 1s ease;
  transition: background 1s ease;
  /* 初期状態：before は表示 */
  /* 初期状態：after は非表示 */
}
.page-about .about-philosophy-chart .apc-bridge.animate {
  background-color: #444341;
  background-image: url("../images/about/about-our-relationship_bg.svg");
  background-size: cover;
  background-position: center;
}
.page-about .about-philosophy-chart .apc-bridge .apc-bridge__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-about .about-philosophy-chart .apc-bridge svg {
  height: 22px;
}
.page-about .about-philosophy-chart .apc-bridge text {
  font-size: 2.2rem;
  fill: transparent;
  stroke: #FAFAF2;
  font-weight: 900;
}
.page-about .about-philosophy-chart .apc-bridge__en_before, .page-about .about-philosophy-chart .apc-bridge__en_after {
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  opacity: 0;
}
.page-about .about-philosophy-chart .apc-bridge__en_before {
  opacity: 1;
}
.page-about .about-philosophy-chart .apc-bridge__en_after {
  opacity: 0;
}
.page-about .about-philosophy-chart .apc-bridge__ja_after, .page-about .about-philosophy-chart .apc-bridge__ja_before {
  display: inline-block;
  font-size: 1.4rem;
  color: #FAFAF2;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
.page-about .about-philosophy-chart .apc-bridge__ja_before {
  opacity: 1;
}
.page-about .about-philosophy-chart .apc-bridge__ja_after {
  opacity: 0;
}
.page-about .about-philosophy-chart .apc-bridge__inner.animate .apc-bridge__ja_before {
  opacity: 0;
}
.page-about .about-philosophy-chart .apc-bridge__inner.animate .apc-bridge__ja_after {
  opacity: 1;
}
.page-about .about-philosophy-chart .apc-bridge__inner.animate .apc-bridge__en_before {
  opacity: 0;
}
.page-about .about-philosophy-chart .apc-bridge__inner.animate .apc-bridge__en_after {
  opacity: 1;
}
@-webkit-keyframes bridge-line-grow {
  0% {
    -webkit-transform: rotate(var(--deg, 0deg)) scaleX(0);
            transform: rotate(var(--deg, 0deg)) scaleX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(var(--deg, 0deg)) scaleX(1);
            transform: rotate(var(--deg, 0deg)) scaleX(1);
    opacity: 1;
  }
}
@keyframes bridge-line-grow {
  0% {
    -webkit-transform: rotate(var(--deg, 0deg)) scaleX(0);
            transform: rotate(var(--deg, 0deg)) scaleX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(var(--deg, 0deg)) scaleX(1);
            transform: rotate(var(--deg, 0deg)) scaleX(1);
    opacity: 1;
  }
}
.page-about .about-philosophy-chart .apc-bridge {
  position: relative;
  /* before = 最初に発火するアニメーション */
  /* after = before の直後（0.8s後）に発火 */
}
.page-about .about-philosophy-chart .apc-bridge::before {
  content: "";
  width: 150px;
  height: 2px;
  background-color: #444341;
  display: block;
  position: absolute;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(var(--deg, 0deg)) scaleX(0);
          transform: rotate(var(--deg, 0deg)) scaleX(0);
  opacity: 0;
}
.page-about .about-philosophy-chart .apc-bridge::after {
  content: "";
  width: 150px;
  height: 2px;
  background-color: #444341;
  display: block;
  position: absolute;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(var(--deg, 0deg)) scaleX(0);
          transform: rotate(var(--deg, 0deg)) scaleX(0);
  opacity: 0;
}
.page-about .about-philosophy-chart .apc-bridge.animate-before::before {
  -webkit-animation: bridge-line-grow 0.5s ease forwards;
          animation: bridge-line-grow 0.5s ease forwards;
}
.page-about .about-philosophy-chart .apc-bridge.animate-after::after {
  -webkit-animation: bridge-line-grow 0.5s ease forwards;
          animation: bridge-line-grow 0.5s ease forwards;
}
.page-about .about-philosophy-chart .apc-center .apc-row:nth-child(1) .apc-bridge::before {
  top: 95%;
  left: -105%;
  --deg: -28deg;
}
.page-about .about-philosophy-chart .apc-center .apc-row:nth-child(2) .apc-bridge::before {
  top: 50%;
  left: -85%;
  width: 110px;
  --deg: 0deg;
}
.page-about .about-philosophy-chart .apc-center .apc-row:nth-child(3) .apc-bridge::before {
  bottom: 95%;
  left: -105%;
  --deg: 28deg;
}
.page-about .about-philosophy-chart .apc-center .apc-row:nth-child(1) .apc-bridge::after {
  top: 50%;
  right: -115%;
  --deg: 28deg;
}
.page-about .about-philosophy-chart .apc-center .apc-row:nth-child(2) .apc-bridge::after {
  top: 50%;
  right: -85%;
  width: 110px;
  --deg: 0deg;
}
.page-about .about-philosophy-chart .apc-center .apc-row:nth-child(3) .apc-bridge::after {
  bottom: 50%;
  right: -115%;
  --deg: -28deg;
}
@media (max-width: 1536px) {
  .page-about .about-philosophy-chart .apc-inner {
    width: 900px;
  }
  .page-about .about-philosophy-chart .apc-center .apc-row:nth-child(1) .apc-bridge::before {
    top: 170px;
    left: -55%;
    --deg: -32deg;
    width: 100px;
  }
  .page-about .about-philosophy-chart .apc-center .apc-row:nth-child(2) .apc-bridge::before {
    left: -61px;
    width: 50px;
  }
  .page-about .about-philosophy-chart .apc-center .apc-row:nth-child(3) .apc-bridge::before {
    bottom: 170px;
    left: -55%;
    --deg: 32deg;
    width: 100px;
  }
  .page-about .about-philosophy-chart .apc-center .apc-row:nth-child(1) .apc-bridge::after {
    top: 110px;
    right: -70%;
    --deg: 32deg;
    width: 100px;
  }
  .page-about .about-philosophy-chart .apc-center .apc-row:nth-child(2) .apc-bridge::after {
    top: 50%;
    right: -61px;
    width: 50px;
    --deg: 0deg;
  }
  .page-about .about-philosophy-chart .apc-center .apc-row:nth-child(3) .apc-bridge::after {
    bottom: 110px;
    right: -70%;
    --deg: -32deg;
    width: 100px;
  }
}
@media (max-width: 1023px) {
  .page-about .about-philosophy-chart {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 1250px;
    margin-bottom: 150px;
  }
  .page-about .about-philosophy-chart .apc-inner {
    -webkit-transform: rotate(90deg) translateX(70px);
            transform: rotate(90deg) translateX(70px);
    height: 768px;
  }
  .page-about .about-philosophy-chart .apc-circle {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .page-about .about-philosophy-chart .apc-center .apc-row .apc-bridge__inner {
    -webkit-transform: rotate(-90deg) translate(-4px, -152px);
            transform: rotate(-90deg) translate(-4px, -152px);
  }
}
@media (max-width: 768px) {
  .page-about .about-philosophy-chart {
    width: 100vw;
    position: relative; /* 親の padding 影響を受けない */
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); /* 真ん中に置く */
    overflow: hidden; /* はみ出る apc-inner を隠す */
    height: 1030px;
  }
  .page-about .about-philosophy-chart .apc-inner {
    -webkit-transform: rotate(90deg) scale(0.8);
            transform: rotate(90deg) scale(0.8);
  }
  .page-about .about-philosophy-chart .apc-center {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .page-about .about-philosophy-chart {
    padding: 60px 35px 0;
    height: 900px;
    margin-bottom: 100px;
  }
  .page-about .about-philosophy-chart__heading {
    text-align: center;
  }
  .page-about .about-philosophy-chart__heading .section-title text {
    font-size: 2rem;
  }
  .page-about .about-philosophy-chart__heading .section-title__sub {
    font-size: 1.4rem;
  }
  .page-about .about-philosophy-chart .apc-inner {
    -webkit-transform: rotate(90deg) scale(0.7) translateX(-40px);
            transform: rotate(90deg) scale(0.7) translateX(-40px);
  }
}
@media (max-width: 1024px) {
  .page-about .about-mv-block {
    gap: 30px;
  }
  .page-about .about-mv-block__item {
    padding-left: 20px;
  }
  .page-about .about-mv-block__item .section-lead {
    padding: 55px 0 25px;
  }
}
@media (max-width: 768px) {
  .page-about__wrapper {
    padding-top: 150px;
  }
  .page-about .about-mv-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
  }
}
@media (max-width: 480px) {
  .page-about__wrapper {
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.about-value {
  text-align: center;
  background-color: #444341;
  color: #FAFAF2;
  padding: 35px 50px;
}
.about-value__wrapper {
  border: 1px solid #FAFAF2;
  padding: 115px 35px 125px;
}
.about-value__head .section-title {
  -webkit-text-stroke: 1px #FAFAF2;
  color: transparent;
}
.about-value__head .section-title text {
  fill: #444341;
  stroke: #FAFAF2;
}
.about-value .value-chart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 0;
  gap: -20px;
}
.about-value .value-chart-circle {
  width: 360px;
  height: var(--value-chart-circle-width);
  border-radius: 50%;
  border: 1px solid #FAFAF2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.35s ease;
  transition: 0.35s ease;
  /* === アンダーライン（線） === */
  /* ======== HOVER ANIMATION ======== */
}
.about-value .value-chart-circle:not(:first-child) {
  margin-left: -20px;
}
.about-value .value-chart-circle::after {
  content: "";
  position: absolute;
  bottom: 55%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  width: 0;
  height: 1px;
  background: rgba(68, 67, 65, 0.35);
  opacity: 0;
  -webkit-transition: 0.35s ease;
  transition: 0.35s ease;
}
.about-value .value-chart-circle .value-chart-inner {
  text-align: center;
  -webkit-transition: 0.35s ease;
  transition: 0.35s ease;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.about-value .value-chart-circle .value-chart-inner h3 {
  padding-top: 10px;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
.about-value .value-chart-circle .value-chart-inner h3 text {
  fill: #444341;
  stroke: #FAFAF2;
  font-size: 2.4rem;
  -webkit-transition: 0.35s ease;
  transition: 0.35s ease;
}
.about-value .value-chart-circle .value-chart-inner .value-none-hover {
  font-size: 14px;
  line-height: 1.5;
  color: #FAFAF2;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.2s ease, transform 0.35s ease;
  transition: opacity 0.2s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
}
.about-value .value-chart-circle .value-chart-inner .value-hover {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
  color: #444341;
}
.about-value .value-chart-circle:hover {
  background: #FAFAF2;
  border-color: #7A4228;
  /* ① 線が伸びて出現 */
}
.about-value .value-chart-circle:hover::after {
  width: 24px;
  opacity: 1;
  bottom: calc(50% + 6px); /* h3 から 12px 下 */
}
.about-value .value-chart-circle:hover .value-chart-inner {
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  /* ② h3 が少し上に */
  /* ③ 短文はフェードアウト */
  /* ④ 長文（詳細）は下からフェードイン */
}
.about-value .value-chart-circle:hover .value-chart-inner h3 {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
}
.about-value .value-chart-circle:hover .value-chart-inner h3 text {
  stroke: #7A4228;
  fill: #FAFAF2;
  stroke-width: 3px;
}
.about-value .value-chart-circle:hover .value-chart-inner .value-none-hover {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.about-value .value-chart-circle:hover .value-chart-inner .value-hover {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.about-value .value-none-hover-br {
  display: none;
}
.about-value .value-hover-span {
  display: inline;
}
@media (max-width: 1024px) {
  .about-value {
    padding: 25px 35px;
  }
  .about-value .value-chart-circle {
    width: 250px;
    height: var(--value-chart-circle-width);
  }
  .about-value .value-chart-circle:hover .value-chart-inner h3 {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  .about-value .value-chart-circle:hover .value-chart-inner .value-hover {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
}
@media (max-width: 768px) {
  .about-value .value-chart-circle {
    width: 200px;
    height: var(--value-chart-circle-width);
  }
  .about-value .value-chart-circle:hover .value-chart-inner h3 {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  .about-value .value-chart-circle:hover .value-chart-inner .value-hover {
    font-size: 1.4rem;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    line-height: 1.5;
  }
}
@media (max-width: 700px) {
  .about-value {
    padding: 20px 15px;
  }
  .about-value .value-chart {
    padding: 50px 0;
  }
  .about-value .value-none-hover-br {
    display: block;
  }
  .about-value__wrapper {
    padding: 75px 15px 135px;
  }
  .about-value .value-chart {
    position: relative;
    width: 290px;
    height: 270px;
    margin: 0 auto;
  }
  .about-value .value-chart-circle {
    position: absolute;
    width: 150px;
    height: 150px;
  }
  .about-value .value-chart-circle:hover .value-chart-inner .value-hover {
    font-size: 1.2rem;
  }
  .about-value .value-chart-circle::after {
    display: none;
  }
  .about-value .value-chart-circle:nth-of-type(1) {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .about-value .value-chart-circle:nth-of-type(2) {
    margin-left: 0;
    -webkit-transform: translate(-70px, 120px);
            transform: translate(-70px, 120px);
  }
  .about-value .value-chart-circle:nth-of-type(3) {
    margin-left: 0;
    -webkit-transform: translate(70px, 120px);
            transform: translate(70px, 120px);
  }
  .about-value .value-hover-span {
    display: none;
  }
  .about-value .value-chart-circle .value-chart-inner {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  .about-value .value-chart-circle:nth-of-type(2) .value-chart-inner {
    -webkit-transform: translateY(38px);
            transform: translateY(38px);
  }
  .about-value .value-chart-circle:nth-of-type(3) .value-chart-inner {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .about-value .value-chart-circle .value-chart-inner h3 text {
    font-size: 2rem;
  }
  .about-value .value-chart-circle .value-chart-inner .value-none-hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  .about-value .value-chart-circle:nth-of-type(1) .value-chart-inner .value-hover {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  .about-value .value-chart-circle:nth-of-type(2) .value-chart-inner .value-hover {
    -webkit-transform: translateY(-55px);
            transform: translateY(-55px);
  }
  .about-value .value-chart-circle:nth-of-type(3) .value-chart-inner {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .about-value .value-chart-circle:nth-of-type(3):hover .value-chart-inner {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  .about-value .value-chart-circle:nth-of-type(3) .value-chart-inner .value-hover {
    -webkit-transform: translateY(-35px);
            transform: translateY(-35px);
  }
}

.about-member {
  padding-bottom: 200px;
}
.about-member__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px 0 70px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 80px;
}
.about-member__head .section-lead {
  padding: 0;
}
.about-member__head .about-member__desc {
  padding-bottom: 15px;
}
@media (max-width: 1024px) {
  .about-member {
    padding-bottom: 150px;
  }
  .about-member__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 35px;
    padding: 80px 0 50px;
  }
}
@media (max-width: 480px) {
  .about-member {
    padding-bottom: 100px;
  }
  .about-member__head {
    padding: 55px 0 40px;
  }
}

.about-member-card__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-member-card__wrapper .about-member-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 15px 15px 20px;
  border: 1px solid rgba(122, 66, 40, 0.5);
  background-color: #F3F3E9;
}
.about-member-card__wrapper .about-member-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-member-card__wrapper .about-member-card__body .c-btn-frame {
  font-size: 1.2rem;
  padding: 14px 20px;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.about-member-card__wrapper .about-member-card__image {
  border: 1px solid rgba(122, 66, 40, 0.3);
}
.about-member-card__wrapper .about-member-card__title {
  font-size: 2.8rem;
  font-weight: 400;
  padding: 11px 20px;
  line-height: 1;
  border-left: 7px solid #7a4228;
}
.about-member-card__wrapper .about-member-card__name-wrapper {
  padding: 11px 20px;
  border-left: 7px solid rgba(122, 66, 40, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.about-member-card__wrapper .about-member-card__role {
  font-size: 1.2rem;
  line-height: 1;
}
.about-member-card__wrapper .about-member-card__name {
  font-size: 2rem;
  line-height: 1;
}
@media (max-width: 1536px) {
  .about-member-card__wrapper .about-member-card {
    max-width: 32%;
  }
  .about-member-card__wrapper .about-member-card__image {
    width: 100%;
  }
  .about-member-card__wrapper .about-member-card__image img {
    width: 100%;
  }
  .about-member-card__wrapper .about-member-card__title {
    font-size: 2.4rem;
    padding: 11px 0 11px 20px;
  }
  .about-member-card__wrapper .about-member-card__name-wrapper {
    padding: 11px 0 11px 20px;
  }
}
@media (max-width: 1024px) {
  .about-member-card__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .about-member-card__wrapper .about-member-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 30px;
    position: relative;
    gap: 40px;
    max-width: 100%;
  }
  .about-member-card__wrapper .about-member-card__image {
    width: 30%;
    max-width: 100%;
  }
  .about-member-card__wrapper .about-member-card__image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about-member-card__wrapper .about-member-card__body {
    width: 70%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .about-member-card__wrapper .about-member-card__body .c-btn-frame {
    position: absolute;
    bottom: 20px;
    right: 30px;
  }
  .about-member-card__wrapper .about-member-card__title {
    font-size: 3.2rem;
    padding: 15px 30px 20px;
  }
  .about-member-card__wrapper .about-member-card__name-wrapper {
    padding: 20px 30px;
  }
}
@media (max-width: 768px) {
  .about-member-card__wrapper .about-member-card {
    padding: 15px 30px;
    gap: 25px;
  }
  .about-member-card__wrapper .about-member-card__title {
    font-size: 3.2rem;
    padding: 11px 18px 15px;
  }
  .about-member-card__wrapper .about-member-card__name-wrapper {
    padding: 11px 18px;
  }
}
@media (max-width: 480px) {
  .about-member-card__wrapper .about-member-card {
    padding: 15px 15px 20px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-member-card__wrapper .about-member-card__image {
    width: 100%;
  }
  .about-member-card__wrapper .about-member-card__body {
    width: 100%;
  }
  .about-member-card__wrapper .about-member-card__body .c-btn-frame {
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
  .about-member-card__wrapper .about-member-card__title {
    font-size: 2.4rem;
  }
}

.eyecatch__img--pc {
  display: block;
}

.eyecatch__img--sp {
  display: none;
}

@media (max-width: 480px) {
  .eyecatch__img--pc {
    display: none;
  }
  .eyecatch__img--sp {
    display: block;
  }
}
.about-info {
  padding-bottom: 10px;
  /* ===== テーブル基本デザイン ===== */
}
.about-info__wrapper {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding-top: 200px;
  padding-left: 35px;
  padding-right: 35px;
}
.about-info__wrapper .section-title {
  padding-bottom: 80px;
}
.about-info__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-info__flex .section-lead {
  padding: 0;
}
.about-info .about-info__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 1.8;
  max-width: 1082px;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.about-info .about-info__table tr {
  border-top: 1px solid rgba(68, 67, 65, 0.35);
  border-left: 1px solid rgba(68, 67, 65, 0.35);
  border-right: 1px solid rgba(68, 67, 65, 0.35);
}
.about-info .about-info__table tr:nth-last-child(1) {
  border-bottom: 1px solid rgba(68, 67, 65, 0.35);
}
.about-info .about-info__table th,
.about-info .about-info__table td {
  padding: 35px 30px;
  text-align: left;
}
.about-info .about-info__table th {
  width: 210px;
  background: rgba(122, 66, 40, 0.1);
  font-weight: 400;
  letter-spacing: 0.05em;
  border-right: none;
  border-top: none;
}
.about-info .about-info__table td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  border-top: none;
}
.about-info .about-info__table td span {
  border-right: 1px solid rgba(68, 67, 65, 0.35);
  padding-right: 20px;
  line-height: 1.5;
}
.about-info .about-info__table td span:last-child {
  border-right: none;
  padding-right: 0;
}
@media (max-width: 1536px) {
  .about-info__tabal td {
    width: 100%;
  }
  .about-info__flex .section-lead {
    min-width: 200px;
  }
}
@media (max-width: 1024px) {
  .about-info__wrapper {
    padding-top: 150px;
  }
  .about-info__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
  }
  .about-info .about-info__table th,
  .about-info .about-info__table td {
    padding: 30px 30px;
  }
}
@media (max-width: 480px) {
  .about-info__wrapper {
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-info__wrapper .section-title {
    padding-bottom: 55px;
  }
  .about-info__flex {
    gap: 40px;
  }
  .about-info .about-info__table th,
  .about-info .about-info__table td {
    display: block;
    width: 100%;
    padding: 18px 15px 15px 15px;
  }
  .about-info .about-info__table th {
    font-size: 1.6rem;
  }
  .about-info .about-info__table td {
    font-size: 1.4rem;
  }
  .about-info .about-info__table td span {
    padding-right: 15px;
    padding-left: 15px;
  }
  .about-info .about-info__table td span:nth-of-type(1) {
    padding-left: 0;
  }
}

.total-design__wrapper {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: 200px 35px 120px;
}
.total-design__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
.total-design .section-title__sub {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.total-design__desc {
  padding-bottom: 60px;
}
.total-design__desc p {
  padding-bottom: 15px;
}
.total-design__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.total-design__nav ul li {
  border-bottom: 1px solid rgba(122, 66, 40, 0.75);
}
.total-design__nav ul li .button-small-wrap {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.total-design .total-design-chart {
  background-color: #F3F3E9;
  width: 727px;
  height: 755px;
  text-align: center;
  padding: 70px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 150px;
  margin-top: 80px;
  /* ▼ 中央のGoal */
  /* ▼ 各円（◯）の位置 */
  /* ▼ 円パーツ（あなたが指定したコード） */
}
.total-design .total-design-chart .total-design-chart__center {
  position: relative;
  width: 300px;
  height: 300px;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.total-design .total-design-chart .total-design-chart__center .total-design-chart__line {
  display: block;
  width: 415px;
  height: 415px;
  border: 2px solid rgba(122, 66, 40, 0.35);
  border-radius: 50%;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.total-design .total-design-chart .total-design-chart__center .apc-circle__center p {
  color: #444341;
  line-height: 1;
}
.total-design .total-design-chart .total-design-chart__center svg {
  height: 40px;
}
.total-design .total-design-chart .total-design-chart__center text {
  fill: transparent;
  stroke: #7A4228;
  font-weight: 900;
  font-size: 3.4rem;
}
.total-design .total-design-chart .total-design-chart__item {
  position: absolute;
  z-index: 2;
}
.total-design .total-design-chart .total-design-chart__item text {
  fill: transparent;
  stroke: #FAFAF2;
  font-size: 2.2rem;
}
.total-design .total-design-chart .total-design-chart__item--top {
  top: -40%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.total-design .total-design-chart .total-design-chart__item--left {
  bottom: -10%;
  left: -30%;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}
.total-design .total-design-chart .total-design-chart__item--right {
  bottom: -10%;
  right: -30%;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}
.total-design .total-design-chart .apc-circle {
  width: 200px;
  height: 200px;
  background: #3e3d3b;
  border-radius: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.total-design .total-design-chart .apc-circle__en {
  width: 100%;
  height: 50%;
  fill: #fff;
  font-size: 18px;
}
.total-design .total-design-chart .apc-circle__ja {
  color: #fff;
  font-size: 14px;
  margin-top: -8px;
}
@media (max-width: 1024px) {
  .total-design {
    margin-top: 0;
  }
  .total-design__wrapper {
    padding: 150px 35px;
  }
  .total-design__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
    position: relative;
  }
  .total-design__nav {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 2;
  }
  .total-design__desc {
    padding-bottom: 0;
  }
  .total-design__right {
    width: 100%;
    height: calc(var(--scaled-height) + var(--nav-height) + 55px);
    overflow: hidden;
    position: relative;
  }
  .total-design__right .total-design-chart {
    width: 727px;
    height: 755px;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    margin-top: 0;
  }
  .total-design__right .total-design-chart .section-title {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .total-design .total-design-chart {
    gap: 180px;
  }
  .total-design .total-design-chart .section-title {
    padding-top: 0;
  }
  .total-design .total-design-chart .section-title__sub {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .total-design__wrapper {
    padding: 100px 20px;
  }
  .total-design__right {
    height: calc(var(--scaled-height) + var(--nav-height) + 45px);
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  .total-design .total-design-chart {
    gap: 320px;
    height: 980px;
    padding: 70px 0;
  }
  .total-design .total-design-chart .section-title {
    line-height: 1;
  }
  .total-design .total-design-chart .section-title__sub {
    line-height: 1;
  }
  .total-design .total-design-chart__body {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}

#service-homepage .service-homepage__frame {
  border-top: 1px solid rgba(122, 66, 40, 0.7);
}

.service-homepage {
  padding: 0 35px;
}
.service-homepage__frame {
  width: min(100%, 1420px);
  margin: 0 auto;
  position: relative;
  border-bottom: 1px solid rgba(122, 66, 40, 0.7);
}
.service-homepage__frame .button-small-wrap {
  position: absolute;
  bottom: 0;
  right: 5px;
}
.service-homepage__frame .button-small-wrap .button-small-text {
  font-size: 2rem;
  padding-right: 20px;
}
@media (max-width: 480px) {
  .service-homepage .service-homepage__frame .button-small-wrap .button-small-text {
    font-size: 1.6rem;
  }
}
.service-homepage .service-homepage__frame .button-small-wrap .button-small {
  width: 20px;
  height: 20px;
  padding-bottom: 2px;
}
.service-homepage .service-homepage__frame .icon-small-static .icon-small-static__text {
  font-size: 1.6rem;
}
.service-homepage .service-homepage__frame .icon-small-static .icon-small-static__circle {
  width: 20px;
  height: 20px;
  padding-bottom: 2px;
}
.service-homepage__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 28px;
  height: 28px;
  background-color: #7A4228;
  position: absolute;
  left: 0;
  top: 0;
  color: #FAFAF2;
  font-weight: 600;
}
.service-homepage__num span {
  -webkit-transform: translate(1px, -1px);
          transform: translate(1px, -1px);
}
.service-homepage__wrapper {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: 70px 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}
.service-homepage__thumb {
  width: 105px;
}
.service-homepage__thumb img {
  width: 105px;
}
.service-homepage__contents {
  width: calc(100% - 70px - 105px);
}
.service-homepage__contents h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 35px;
}
.service-homepage__contents h2 .ja {
  font-size: 2.4rem;
  color: rgba(122, 66, 40, 0.6);
}
.service-homepage__contents h2 .font-en {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}
.service-homepage__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  width: 100%;
}
.service-homepage__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  width: 45%;
}
.service-homepage__reccomend {
  width: 55%;
  background-color: #F3F3E9;
  padding: 35px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service-homepage__reccomend p {
  color: #7A4228;
  padding-bottom: 15px;
}
.service-homepage__reccomend ul {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.service-homepage__reccomend ul li {
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}
.service-homepage__reccomend ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 11px;
  height: 11px;
  background-image: url("../images/service/service_reccomend_li.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
.service-homepage__accordion {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.45s ease;
  transition: max-height 0.45s ease;
}
.service-homepage__accordion-heading .section-lead {
  font-size: 3.2rem;
  padding: 50px 0 45px;
}
.service-homepage__accordion-price-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.service-homepage__accordion-price-item {
  width: 330px;
  text-align: center;
}
.service-homepage__accordion-price-item:nth-of-type(3) .guideline {
  left: 177px;
  white-space: nowrap;
}
.service-homepage__accordion-price-title {
  background-color: #7A4228;
  color: #FAFAF2;
  font-size: 2rem;
  padding: 5px 0;
}
.service-homepage__accordion-price-title .num {
  padding-right: 2px;
}
.service-homepage__accordion-price-desc {
  background-color: #F3F3E9;
  padding: 18px 40px 32px;
}
.service-homepage__accordion-price-num {
  font-size: 4rem;
  font-weight: 500;
  position: relative;
}
.service-homepage__accordion-price-num .guideline {
  font-size: 1.2rem;
  position: absolute;
  left: 163px;
  top: 22px;
  white-space: nowrap;
}
.service-homepage__accordion-price-num .unit {
  font-size: 1.7rem;
  padding-left: 8px;
}
.service-homepage__accordion-price-delivery {
  background-color: #fff;
  padding: 5px 0;
}
.service-homepage__accordion-price-delivery .title {
  font-size: 1.3rem;
  padding-right: 30px;
}
.service-homepage__accordion-price-delivery .guideline {
  font-size: 1.2rem;
  font-weight: 500;
}
.service-homepage__accordion-price-delivery .num {
  font-size: 2rem;
  font-weight: 300;
  padding-left: 3px;
}
.service-homepage__accordion-price-delivery .unit {
  font-size: 1.2rem;
  font-weight: 500;
}
.service-homepage__accordion .attention {
  font-size: 1.4rem;
  padding-top: 15px;
}
.service-homepage__accordion-flow {
  padding-right: 30px;
}
.service-homepage__accordion-flow .section-title {
  padding-top: 110px;
}
.service-homepage__accordion-flow-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  position: relative;
}
.service-homepage__accordion-flow-contents::before {
  content: "";
  display: block;
  width: 1px;
  height: var(--flow-height);
  background-color: rgba(122, 66, 40, 0.45);
  position: absolute;
  top: 0;
  left: 40px;
}
.service-homepage__accordion-flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.service-homepage__accordion-flow-step {
  border: 1px solid #7A4228;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FAFAF2;
  z-index: 2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.service-homepage__accordion-flow-step .section-title {
  padding-top: 0;
}
.service-homepage__accordion-flow-step .section-title__svg {
  -webkit-transform: translate(1px, 17px);
          transform: translate(1px, 17px);
}
.service-homepage__accordion-flow-step .section-title__svg text {
  font-weight: 600;
  font-size: 1.5rem;
}
.service-homepage__accordion-flow-step .step_num {
  font-size: 3.2rem;
  font-weight: 600;
  color: #7A4228;
  -webkit-transform: translate(1px, -2px);
          transform: translate(1px, -2px);
}
.service-homepage__accordion-flow-title {
  font-size: 2rem;
  padding: 16px 0 12px;
}
.service-homepage__accordion-flow-text {
  font-size: 1.4rem;
  line-height: 1.8;
}
.service-homepage__accordion-flow .attention {
  font-size: 1rem;
  padding-top: 30px;
}
.service-homepage__accordion-kyouiku {
  background-color: #fff;
  padding: 70px 65px;
  margin-top: 110px;
}
.service-homepage__accordion-kyouiku .section-title {
  padding-top: 0;
}
.service-homepage__accordion-kyouiku .section-lead {
  padding: 35px 0 20px;
}
.service-homepage__accordion-kyouiku-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}
.service-homepage__accordion-kyouiku-left {
  width: 90%;
}
.service-homepage__accordion-kyouiku-left .text {
  padding-bottom: 50px;
  font-size: 1.4rem;
}
.service-homepage__accordion-kyouiku-right {
  padding-top: 35px;
  width: 100%;
}
.service-homepage__accordion-kyouiku-right img {
  width: 100%;
  border: 1px solid rgba(122, 66, 40, 0.5);
}
.service-homepage__accordion.is-open {
  overflow: visible;
  padding-top: 100px;
}
.service-homepage .button-small__icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media (max-width: 1024px) {
  .service-homepage__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .service-homepage__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
  .service-homepage__thumb {
    width: 70px;
  }
  .service-homepage__thumb img {
    width: 100%;
  }
  .service-homepage__contents {
    width: 100%;
  }
  .service-homepage__desc {
    width: 100%;
    gap: 10px;
  }
  .service-homepage__reccomend {
    width: 100%;
  }
  .service-homepage__accordion-price-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service-homepage__accordion-price-item {
    width: 100%;
  }
  .service-homepage__accordion-price-item:nth-of-type(3) .guideline {
    left: 148px;
  }
  .service-homepage__accordion-price-num {
    display: inline-block;
  }
  .service-homepage__accordion-price-num .guideline {
    left: 122px;
  }
  .service-homepage__accordion-price-delivery {
    max-width: 250px;
    margin: 0 auto;
  }
  .service-homepage__accordion-kyouiku {
    padding: 80px 45px 170px;
  }
  .service-homepage__accordion-kyouiku-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    gap: 30px;
  }
  .service-homepage__accordion-kyouiku-flex .c-btn-frame {
    position: absolute;
    bottom: -110px;
    left: 0;
  }
  .service-homepage__accordion-kyouiku-right {
    padding-top: 0;
  }
  .service-homepage__accordion-kyouiku-right img {
    width: 100%;
  }
  .service-homepage__accordion-kyouiku-left .text {
    padding-bottom: 0;
  }
}
@media (max-width: 480px) {
  .service-homepage {
    padding: 0 20px;
  }
  .service-homepage .sp-none {
    display: none;
  }
  .service-homepage__wrapper {
    padding: 70px 0;
  }
  .service-homepage__desc {
    font-size: 1.4rem;
  }
  .service-homepage__reccomend p {
    font-weight: 500;
  }
  .service-homepage__accordion-flow {
    padding-right: 0;
  }
}

.page-member {
  background-color: #444341;
}
.page-member .header {
  color: #FAFAF2;
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  width: 100%;
}
.page-member .header__contact {
  display: none;
}
.page-member .header__menu {
  display: block;
}
.page-member .header__menu-button {
  background-color: #444341;
  padding: 4px 8px 3px;
  border: none;
  color: #FAFAF2;
}
.page-member .header__nav {
  display: none;
}
.page-member .header__burger-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #F3F3E9;
  z-index: 5;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  /* ▼ 初期状態（非表示） */
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
.page-member .header__burger-wrapper.is-active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.page-member .header__burger-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  padding-top: 5%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  padding: 0 80px;
}
.page-member .header__burger-nav {
  width: 100%;
}
.page-member .header__burger-bottom {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  height: 100vh;
}
.page-member .header__burger-symbol {
  text-align: center;
}
.page-member .header__burger-symbol svg {
  width: 33px;
  height: 33px;
  color: #7A4228;
}
.page-member .header__burger-subtitle {
  font-size: 2.8rem;
  color: #7A4228;
  margin-bottom: 90px;
}
.page-member .header__burger-image-tb {
  display: none;
}
.page-member .header__burger-image-pc {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  height: 100vh;
}
.page-member .header__burger-image-pc img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-member .header__burger-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.page-member .header__burger-item {
  width: 100%;
  font-size: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(68, 67, 65, 0.35);
}
.page-member .header__burger-item .button-small {
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}
@media (max-width: 1024px) {
  .page-member .header__nav {
    display: none;
  }
  .page-member .header__contact {
    display: none;
  }
  .page-member .header__menu {
    display: block;
    color: #444341;
  }
  .page-member .header__menu-button {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none;
    cursor: pointer;
  }
  .page-member .header__burger-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #F3F3E9;
    z-index: 5;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: block;
    /* ▼ 初期状態（非表示） */
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  }
  .page-member .header__burger-wrapper.is-active {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .page-member .header__burger-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: calc(100% - 30vh);
    padding-top: 5%;
    padding: 0;
  }
  .page-member .header__burger-symbol {
    text-align: center;
  }
  .page-member .header__burger-symbol svg {
    width: 33px;
    height: 33px;
    color: #7A4228;
  }
  .page-member .header__burger-subtitle {
    font-size: 2.4rem;
    line-height: 1.5;
    color: #7A4228;
    margin-bottom: 0;
  }
  .page-member .header__burger-image-pc {
    display: none;
  }
  .page-member .header__burger-image-tb {
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 30vh;
    display: block;
  }
  .page-member .header__burger-image-tb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-member .header__burger-nav {
    padding: 0 120px;
    width: 100%;
  }
  .page-member .header__burger-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 45px;
    width: 100%;
    max-width: 900px;
    margin: 80px auto 0;
  }
  .page-member .header__burger-item {
    font-size: 2.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    min-width: 180px;
  }
}
@media (max-width: 480px) {
  .page-member .header__burger-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: calc(100% - 20vh);
    padding: 0;
  }
  .page-member .header__burger-symbol {
    text-align: center;
  }
  .page-member .header__burger-symbol svg {
    width: 24px;
    height: 24px;
    color: #7A4228;
  }
  .page-member .header__burger-subtitle {
    font-size: 2rem;
    line-height: 1.5;
    color: #7A4228;
  }
  .page-member .header__burger-image-tb {
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 20vh;
  }
  .page-member .header__burger-image-tb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-member .header__burger-image-pc {
    display: none;
  }
  .page-member .header__burger-nav {
    padding: 0 50px;
  }
  .page-member .header__burger-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin: 50px auto 0;
  }
  .page-member .header__burger-item {
    padding: 0 5px;
    font-size: 2rem;
  }
  .page-member .header__burger-item .button-small {
    -webkit-transform: scale(0.75) translateY(3px);
            transform: scale(0.75) translateY(3px);
  }
  .page-member .header__burger-image-tb {
    display: block;
  }
}

.member-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
.member-detail .member-detail__image {
  width: 50%;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.member-detail .member-detail__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.member-detail .member-detail__content {
  color: #FAFAF2;
  padding: 250px 150px 150px 0;
  position: relative;
}
.member-detail .member-detail__content .section-title text {
  fill: #444341;
  stroke: #FAFAF2;
}
.member-detail .member-detail__content .section-lead {
  font-size: 6.4rem;
}
.member-detail .member-detail__content::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 50px;
  background-color: rgba(250, 250, 242, 0.3);
}
.member-detail .member-detail__role {
  padding-bottom: 120px;
}
.member-detail .member-detail__role .role-label {
  background-color: #7A4228;
  padding: 2px 6px 3px;
}
.member-detail .member-detail__role .role-name {
  font-size: 2.8rem;
  padding: 7px 0 30px;
}
.member-detail .member-detail__block {
  border-top: 1px solid rgba(250, 250, 242, 0.6);
  padding-bottom: 80px;
  overflow: hidden;
}
.member-detail .member-detail__block p {
  line-height: 2em;
  padding-bottom: 15px;
}
.member-detail .member-detail__block ul {
  padding-bottom: 15px;
}
.member-detail .member-detail__block ul li {
  position: relative;
  -webkit-transform: translateX(25px);
          transform: translateX(25px);
}
.member-detail .member-detail__block ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: rgba(122, 66, 40, 0.6);
  border: 2px solid rgba(250, 250, 242, 0.8);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: -25px;
  top: 12px;
}
.member-detail .member-detail__heading {
  font-size: 2.8rem;
  font-weight: 500;
  padding: 60px 0 30px;
  position: relative;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.member-detail .member-detail__heading::before {
  content: "";
  width: 8px;
  height: 40px;
  background-color: #7A4228;
  display: block;
  position: absolute;
  left: -30px;
  top: 70px;
}
@media (max-width: 1536px) {
  .member-detail {
    gap: 65px;
  }
  .member-detail .member-detail__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 42%;
            flex: 0 0 42%;
  }
  .member-detail .member-detail__content {
    padding: 250px 120px 150px 0;
  }
  .member-detail .member-detail__content .section-lead {
    font-size: 4.8rem;
  }
}
@media (max-width: 1024px) {
  .member-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .member-detail .member-detail__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: 100%;
    position: static;
    height: 40vh;
    overflow: hidden;
  }
  .member-detail .member-detail__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .member-detail .member-detail__content {
    padding: 150px 35px;
  }
  .member-detail .member-detail__content::after {
    display: none;
  }
  .member-detail .member-detail__role .role-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .member-detail .member-detail__role .role-desc {
    padding-top: 30px;
  }
}
@media (max-width: 768px) {
  .member-detail .member-detail__content .section-lead {
    padding: 80px 0 60px;
    font-size: 5rem;
  }
  .member-detail .member-detail__role .role-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .member-detail .member-detail__role .role-name {
    padding: 7px 0 25px;
  }
  .member-detail .member-detail__role .role-desc {
    padding-top: 0;
  }
}
@media (max-width: 480px) {
  .member-detail .member-detail__content .section-lead {
    padding: 55px 0 45px;
    font-size: 3.2rem !important;
  }
  .member-detail .member-detail__content {
    padding: 100px 20px;
  }
  .member-detail .member-detail__role .role-label {
    font-size: 1.2rem;
  }
  .member-detail .member-detail__role .role-name {
    padding: 7px 0 25px;
    font-size: 2rem;
  }
  .member-detail .member-detail__role .role-desc {
    font-size: 1.4rem;
  }
  .member-detail .member-detail__heading {
    font-size: 2.4rem;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  .member-detail .member-detail__heading::before {
    height: 32px;
    width: 5px;
    left: -20px;
  }
}

.other-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.other-member__image {
  width: 50%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  /* ▼ 画像 */
  /* ▼ ホバー：カラー + ズーム */
  /* ▼ 下部ボタン */
  /* ▼ 画像ホバーしたらボタンも少し浮く */
}
.other-member__image .other-member__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.other-member__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.6s ease, -webkit-transform 0.6s ease;
  transition: -webkit-filter 0.6s ease, -webkit-transform 0.6s ease;
  transition: filter 0.6s ease, transform 0.6s ease;
  transition: filter 0.6s ease, transform 0.6s ease, -webkit-filter 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.other-member__image:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.other-member__image .page_button {
  position: absolute;
  bottom: 75px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 72%;
  height: 90px;
  background-color: rgba(250, 250, 242, 0.9);
  color: #444341;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: background-color 0.4s ease, -webkit-transform 0.4s ease;
  transition: background-color 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, background-color 0.4s ease;
  transition: transform 0.4s ease, background-color 0.4s ease, -webkit-transform 0.4s ease;
}
.other-member__image .page_button__wrapper {
  padding: 9px 12px;
  width: 100%;
}
.other-member__image .page_button__wrapper .catch {
  font-size: 2.8rem;
  font-weight: 500;
}
.other-member__image .page_button__wrapper .arrow-icon {
  margin-top: 10px;
  /* 三角形の色 ← path に効く */
}
.other-member__image .page_button__wrapper .arrow-icon .arrow-icon-svg {
  width: 24px;
  height: 24px;
  color: #444341;
}
.other-member__image .page_button__wrapper .arrow-icon .triangle {
  fill: #FAFAF2;
}
.other-member__image .page_button__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border: 1px solid rgba(122, 66, 40, 0.6);
  padding: 8px 35px;
}
.other-member__image:hover .page_button {
  -webkit-transform: translateX(-50%) translateY(-4px);
          transform: translateX(-50%) translateY(-4px);
  background-color: #fafaf2;
  color: #7A4228;
}
.other-member__image:hover .page_button .arrow-icon {
  margin-top: 10px;
}
.other-member__image:hover .page_button .arrow-icon svg {
  width: 24px;
  height: 24px;
  display: inline-block;
  -webkit-transition: color 0.4s ease, -webkit-transform 0.4s ease;
  transition: color 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, color 0.4s ease;
  transition: transform 0.4s ease, color 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.other-member__image:hover .page_button .arrow-icon svg .arrow-icon-svg {
  color: #7A4228;
}
@media (max-width: 1024px) {
  .other-member {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .other-member__image {
    width: 100%;
    height: 50vh;
  }
}
@media (max-width: 480px) {
  .other-member .page_button {
    width: 90%;
    height: 65px;
    bottom: 30px;
  }
  .other-member .page_button__wrapper .catch {
    font-size: 2rem;
  }
  .other-member .page_button__content {
    padding: 3px 20px;
  }
}

/* ===============================
   Contact Page Wrapper
================================ */
.page-contact__wrapper {
  padding: 200px 35px;
  margin: 0 auto;
  width: min(100%, 1420px);
}
@media (max-width: 1024px) {
  .page-contact__wrapper {
    padding: 150px 35px;
  }
}
@media (max-width: 480px) {
  .page-contact__wrapper {
    padding: 100px 20px;
  }
}

/* ===============================
   Section Lead（横線のやつ）
================================ */
.page-contact .section-lead {
  position: relative;
  margin-bottom: 50px;
  --section-lead-width: 0px;
}
.page-contact .section-lead span {
  display: inline-block;
  font-weight: 500;
}
.page-contact .section-lead::after {
  content: "";
  position: absolute;
  top: 110px;
  right: 0;
  width: calc(100% - var(--section-lead-width) - 100px);
  height: 1px;
  background: rgba(91, 74, 57, 0.35);
}
@media (max-width: 1024px) {
  .page-contact .section-lead::after {
    width: calc(100% - var(--section-lead-width) - 50px);
  }
}
@media (max-width: 480px) {
  .page-contact .section-lead {
    margin-bottom: 10px;
  }
  .page-contact .section-lead::after {
    top: 72px;
    width: calc(100% - var(--section-lead-width) - 30px);
  }
}

/* ===============================
   Contact Form
================================ */
.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  /* ラベル */
  /* テキスト系 input */
  /* ラジオボタン風のボタン群 */
}
.contact-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 50px;
}
.contact-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 6px;
  font-size: 2.4rem;
  color: #5b4a39;
  width: 270px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 270px;
          flex: 0 0 270px;
}
.contact-form__label .contact-form__required {
  font-size: 1.2rem;
  padding: 0 6px;
  background: #7A4228;
  color: #FAFAF2;
  line-height: 1.5;
  height: 19px;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  border: 1px solid rgba(122, 66, 40, 0.5);
  background-color: #fff;
  font-size: 2rem;
  font-weight: 400;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: #b07b5a;
}
.contact-form__input::-webkit-input-placeholder, .contact-form__textarea::-webkit-input-placeholder {
  color: rgba(68, 67, 65, 0.3);
  font-size: 2rem;
  letter-spacing: 0.1;
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: rgba(68, 67, 65, 0.3);
  font-size: 2rem;
  letter-spacing: 0.1;
}
.contact-form__input:-ms-input-placeholder, .contact-form__textarea:-ms-input-placeholder {
  color: rgba(68, 67, 65, 0.3);
  font-size: 2rem;
  letter-spacing: 0.1;
}
.contact-form__input::-ms-input-placeholder, .contact-form__textarea::-ms-input-placeholder {
  color: rgba(68, 67, 65, 0.3);
  font-size: 2rem;
  letter-spacing: 0.1;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: rgba(68, 67, 65, 0.3);
  font-size: 2rem;
  letter-spacing: 0.1;
}
.contact-form__input {
  height: 80px;
}
.contact-form__textarea {
  height: 180px;
  resize: vertical;
  font-weight: 400;
  padding: 30px;
}
.contact-form__btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 23px;
}
.contact-form__btn {
  width: 230px;
  height: 55px;
  background: #fff;
  border: 1px solid rgba(122, 66, 40, 0.5);
  font-size: 1.4rem;
  cursor: pointer;
  -webkit-transition: background 0.2s, border-color 0.2s;
  transition: background 0.2s, border-color 0.2s;
  /* ACTIVE 状態（のち JS 連動） */
}
.contact-form .c-btn-frame {
  display: none;
}
@media (max-width: 1024px) {
  .contact-form {
    gap: 40px;
  }
  .contact-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .contact-form__label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 0px;
            flex: 0 0 0;
  }
  .contact-form__input, .contact-form__textarea {
    padding-left: 20px;
    padding-right: 20px;
  }
  .contact-form__input::-webkit-input-placeholder, .contact-form__textarea::-webkit-input-placeholder {
    font-size: 1.8rem;
  }
  .contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
    font-size: 1.8rem;
  }
  .contact-form__input:-ms-input-placeholder, .contact-form__textarea:-ms-input-placeholder {
    font-size: 1.8rem;
  }
  .contact-form__input::-ms-input-placeholder, .contact-form__textarea::-ms-input-placeholder {
    font-size: 1.8rem;
  }
  .contact-form__input::placeholder, .contact-form__textarea::placeholder {
    font-size: 1.8rem;
  }
  .contact-form__input {
    height: 60px;
  }
}
@media (max-width: 480px) {
  .contact-form {
    gap: 25px;
  }
  .contact-form__label {
    font-size: 1.6rem;
  }
  .contact-form__input::-webkit-input-placeholder, .contact-form__textarea::-webkit-input-placeholder {
    font-size: 1.4rem;
  }
  .contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
    font-size: 1.4rem;
  }
  .contact-form__input:-ms-input-placeholder, .contact-form__textarea:-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .contact-form__input::-ms-input-placeholder, .contact-form__textarea::-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .contact-form__input::placeholder, .contact-form__textarea::placeholder {
    font-size: 1.4rem;
  }
  .contact-form__input {
    height: 45px;
  }
  .contact-form__btn-group {
    gap: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .contact-form__btn-group .contact-form__btn {
    height: 40px;
    width: calc(50% - 5px);
  }
}

/* ==========================================
   Contact Submit Button（送信ボタン専用）
========================================== */
.contact_submit-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 12px;
  margin: 0 auto;
  padding: 30px 80px;
  font-size: 2rem;
  font-weight: 400;
  color: #7A4228;
  background: transparent;
  border: none;
  cursor: pointer;
  width: auto;
  white-space: nowrap;
  text-decoration: none;
  /* ラベル */
  /* 三角アイコン */
  /* 外枠 SVG */
  /* hoverアニメーション */
}
.contact_submit-btn .c-btn-frame__label {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.contact_submit-btn .c-btn-frame__arrow {
  position: relative;
  z-index: 2;
  width: 15px;
  height: 17px;
  display: none;
}
.contact_submit-btn .c-btn-frame__arrow path {
  fill: #FAFAF2;
  stroke: #7A4228;
  -webkit-transition: fill 0.3s ease, stroke 0.3s ease;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.contact_submit-btn .c-btn-frame__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.contact_submit-btn .c-btn-frame__svg path {
  -webkit-transition: stroke 0.3s ease, fill 0.3s ease;
  transition: stroke 0.3s ease, fill 0.3s ease;
}
.contact_submit-btn:hover {
  color: #FAFAF2;
}
.contact_submit-btn:hover .c-btn-frame__svg path:first-child {
  fill: #7A4228;
  stroke: #7A4228;
}
.contact_submit-btn:hover .c-btn-frame__svg path:last-child {
  stroke: #FAFAF2;
}
.contact_submit-btn:hover .c-btn-frame__arrow path {
  fill: #7A4228;
  stroke: #FAFAF2;
}
@media (max-width: 1024px) {
  .contact_submit-btn {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .contact_submit-btn {
    font-size: 1.6rem;
    width: 200px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* 注意書き */
.contact__notice {
  font-size: 1.4rem;
  text-align: center;
  margin: 30px 0 40px;
  color: #5b4a39;
}
@media (max-width: 480px) {
  .contact__notice {
    margin: 20px 0 10px;
  }
}

.contact-form__row br {
  display: none !important;
}

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

.contact-form__label {
  margin-bottom: 0;
}

.wpcf7-checkbox {
  border: none;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  height: 100%;
}

.wpcf7-list-item {
  width: 230px;
  height: 55px;
  background: #fff;
  border: 1px solid rgba(122, 66, 40, 0.5);
  font-size: 1.4rem;
  cursor: pointer;
  -webkit-transition: background 0.2s, border-color 0.2s;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
  text-align: center;
  margin: 0;
}
.wpcf7-list-item:hover, .wpcf7-list-item.is-active {
  background-color: #7A4228;
  color: #FAFAF2;
}
.wpcf7-list-item .wpcf7-list-item-label {
  display: block;
  width: 100%;
  height: 100%;
  padding: 13px;
}

.contact-form__btn input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form__row:nth-of-type(6) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact-submit-hidden,
.wpcf7-spinner {
  display: none !important;
}

@media (max-width: 1024px) {
  .contact-form__label {
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .contact-form__row {
    gap: 8px;
  }
  .contact-form__btn-group .contact-form__btn {
    height: 100%;
    width: 100%;
  }
  .wpcf7-checkbox {
    width: 100%;
  }
  .wpcf7-list-item {
    width: calc(50% - 5px);
    padding: 0;
  }
}
/* ===============================
   Legal Pages (Privacy / Terms / Law)
================================ */
.page-legal__wrapper {
  padding-top: 200px;
  padding-bottom: 200px;
  width: min(100%, 1420px);
  margin: 0 auto;
  padding-left: 35px;
  padding-right: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1024px) {
  .page-legal__wrapper {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
@media (max-width: 480px) {
  .page-legal__wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.page-legal .section-lead {
  padding: 50px 0 30px;
}
.page-legal__heading {
  font-weight: 400;
}
.page-legal__list {
  list-style: decimal;
  padding-left: 1.5em;
}
.page-legal__list ::marker {
  color: #7A4228;
}
.page-legal__list ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.page-legal__list ol ::marker {
  color: #7A4228;
}

/* ===============================
   特定商取引法 表レイアウト
================================ */
.page-legal__definition {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-top: 1px solid rgba(122, 66, 40, 0.25);
}

/* dt / dd 共通 */
.page-legal__definition dt,
.page-legal__definition dd {
  padding: 24px 0;
  border-bottom: 1px solid rgba(122, 66, 40, 0.15);
  line-height: 1.8;
}

/* 項目名（左カラム） */
.page-legal__definition dt {
  font-weight: 600;
  color: #444341;
  padding-right: 24px;
}

/* 内容（右カラム） */
.page-legal__definition dd {
  margin: 0;
  color: #444341;
}

/* 注意書き・補足（※〜）を少し薄く */
.page-legal__definition dd small,
.page-legal__definition dd em {
  color: rgba(68, 67, 65, 0.7);
  font-style: normal;
}

/* ===============================
   SP対応（縦積み）
================================ */
@media (max-width: 768px) {
  .page-legal__definition {
    grid-template-columns: 1fr;
  }
  .page-legal__definition dt {
    padding-bottom: 8px;
    border-bottom: none;
  }
  .page-legal__definition dd {
    padding-top: 0;
    padding-bottom: 20px;
  }
}
/* =========================================
   ▼ フェードアップ共通アニメーション
========================================= */
.fade-up {
  opacity: 0;
  -webkit-filter: blur(6px);
          filter: blur(6px);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 1s ease-out, -webkit-filter 1s ease-out;
  transition: opacity 1s ease-out, -webkit-filter 1s ease-out;
  transition: opacity 1s ease-out, filter 1s ease-out;
  transition: opacity 1s ease-out, filter 1s ease-out, -webkit-filter 1s ease-out;
}

.fade-up.is-visible {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}