@charset "UTF-8";
/*
Theme Name: Start by Design
Description: LP専用オリジナルWordPressテーマ
Version: 1.0
*/
/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6,
p, ul, ol, li {
  margin: 0;
  padding: 0;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

dd {
  margin-inline-start: 0;
}

ul, ol {
  list-style: none;
}

img {
  height: auto;
  display: block;
}

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

body.is-menu-open {
  overflow: hidden;
  touch-action: none;
}

:root {
  /* Colors */
  --color-main: #E95C0B;
  --color-sub: #ffffff;
  --color-text: #2A2A2A;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray: #666666;
  --color-light-gray: #aaaaaa;
  --color-muted-gray: #8D8D8D;
  --color-border-black: #000000;
  --color-bg-light: #F6F6F6;
  --color-bg-column: #f8f6f2;
  /* Fonts */
  --font-body: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-title: "Sorts Mill Goudy", serif;
  --font-subtitle: "Zen Old Mincho", serif;
  --font-nav: "Zen Kaku Gothic New", sans-serif;
  --font-tag: "Sorts Mill Goudy", serif;
  --font-number: "Quando", serif;
  /* Layout */
  --gutter: clamp(16px, 2.8vw, 40px);
  --container: 1200px;
  --container-narrow: 960px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.8;
  background: var(--color-sub);
  font-weight: 400;
}

.pc-only {
  display: flex;
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
.section {
  position: relative;
  width: 100%;
  padding: clamp(52px, 12vw, 100px) 0;
  overflow: visible;
}

.container {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - var(--gutter) * 2, var(--container-narrow));
}

.section-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  z-index: 3;
  background-repeat: no-repeat;
  background-position: center top;
}

.section > .container {
  position: relative;
  z-index: 2;
}

.section--orange {
  background: url("../images/top/bg-orange-pattern.svg") center;
}

.section--white {
  background: #ffffff;
}

.section--beige {
  background: url("../images/top/bg-beige-pattern.svg") center;
}

/* セクションタイトル */
.section-title-en {
  font-family: var(--font-title);
  color: var(--color-main);
  font-size: clamp(2.125rem, 4.2vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.section-head {
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* サブタイトル */
.section-title-ja {
  font-family: var(--font-subtitle);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.section-header {
  padding: 135px 30px 227px;
  position: relative;
}

.section-header::before {
  background-image: url("../images/top/wave-white.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 7/1;
  position: absolute;
  left: 0px;
  bottom: -1px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.section-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-header__title {
  text-align: left;
}

.section-header__jp {
  font-family: var(--font-subtitle);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.4;
}

.section-header__en {
  color: var(--color-main);
  font-family: var(--font-tag);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  margin-left: 5px;
}

.section-header__breadcrumb {
  position: absolute;
  right: 10%;
  bottom: 15%;
  font-size: 14px;
  z-index: 10;
}

.section-header__breadcrumb > a {
  color: var(--color-main);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  cursor: pointer;
}

.section-header__breadcrumb > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-main);
}

/* =========================
  スクロールアニメーション追加
========================= */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

.section-anim {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-anim.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .fade-up {
    transform: translateY(20px);
    transition-duration: 0.6s;
  }
}
@media (max-width: 767px) {
  .section-title-ja {
    margin-bottom: 30px;
  }
  .section-header__jp {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .section-header__en {
    font-size: 1rem;
    line-height: 1.4;
  }
  .section-header {
    padding: 80px 0 100px;
  }
  .section-header__title {
    margin-left: 20px;
  }
  .section-header__breadcrumb {
    right: 5%;
    bottom: 0;
  }
  .section > .container {
    padding: 30px 0;
  }
  .section-header__breadcrumb {
    font-size: 12px;
  }
}
/* 一覧に戻るボタン */
.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(320px, 78vw);
  height: 64px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-main);
  border: 2px solid var(--color-main);
  font-weight: 400;
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.btn-more:hover {
  background: var(--color-main);
  color: #fff;
  box-shadow: 0 14px 30px rgba(233, 92, 11, 0.35);
}

.btn-more:active {
  box-shadow: 0 8px 18px rgba(233, 92, 11, 0.25);
}

.saboxplugin-wrap .saboxplugin-gravatar img {
  width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 0;
  display: block;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  position: fixed;
}

.header-inner {
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: clamp(16px, 2.78vw, 40px);
  padding-right: clamp(16px, 2.43vw, 35px);
  min-height: 90px;
}

.site-title {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}

.header-logo {
  width: clamp(200px, 24.8vw, 357.24px);
  height: auto;
  display: block;
}

.header-nav {
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
  padding-right: clamp(160px, 19.11vw, 275.167px);
}

.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(18px, 2.2vw, 32px);
}

.nav-list a,
.nav-parent {
  font-family: var(--font-nav);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.nav-contact-box {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(140px, 19.11vw, 275.167px);
  aspect-ratio: 275.167/182;
  background: url("../images/top/menu-contact-bg.svg") no-repeat right top/contain;
  pointer-events: none;
  z-index: 1;
}

.nav-contact {
  position: absolute;
  top: 25px;
  right: 36px;
  aspect-ratio: 275.167/182;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.nav-contact-icon {
  width: clamp(42px, 4.24vw, 61px);
  aspect-ratio: 1/1;
  background: url("../images/top/icon-mail.webp") no-repeat center/contain;
}

.nav-contact-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--color-sub);
  font-family: var(--font-nav);
  font-size: 0.875rem;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.nav-list > li {
  position: relative;
}

.nav-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--color-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-list > li:hover::before {
  transform: scaleX(1);
}

.nav-list > li:hover {
  color: var(--color-main);
}

.nav-parent {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.nav-parent::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  transform: rotate(45deg);
  margin-left: 12px;
  margin-bottom: 3px;
  transition: transform 0.3s ease;
}

.nav-parent::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--color-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-parent:hover::before {
  transform: scaleX(1);
}

.nav-parent:hover::after {
  transform: rotate(225deg);
  margin-bottom: -3px;
}

.nav-item {
  position: relative;
}

.nav-list-sub {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 176px;
  padding: 20px 17px;
  margin-top: 5px;
  background: var(--color-sub);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  filter: blur(2px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.4s;
}

.nav-item:hover .nav-list-sub {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  color: var(--color-text);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s;
}

.nav-list-sub li {
  width: 100%;
  position: relative;
}

.nav-list-sub li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--color-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-list-sub li:hover::before {
  transform: scaleX(1);
}

.sub-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.93rem;
  font-family: var(--font-nav);
  font-weight: 500;
  line-height: 1.375;
}

.sub-item::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  transform: rotate(-45deg);
  margin-bottom: 3px;
  transition: transform 0.3s ease;
}

.hamburger {
  width: 44px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: clamp(10px, 1.1vw, 14px);
  right: clamp(12px, 2.71vw, 39px);
  z-index: 3;
}

.hamburger span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: var(--color-sub);
  border-radius: 2px;
}

.hamburger span:first-child {
  top: 12px;
}

.hamburger span:last-child {
  bottom: 12px;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}

.drawer.is-open .drawer-white {
  transform: translateX(0);
}

.drawer-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 360px;
  background: url("../images/top/sp-drawer-bg.svg") left top/contain repeat-y;
  transform: translateX(100%);
  transition: transform 0.45s ease 0.05s;
  z-index: 2;
}

.drawer.is-open .drawer-bg {
  transform: translateX(0);
}

.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.drawer-nav {
  position: relative;
  z-index: 3;
  height: 100%;
  margin-left: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(105px, 97.241px + 2.069vw, 120px) clamp(40px, 6vw, 50px) clamp(40px, 10vw, 64px) 76px;
  gap: 34px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease 0.25s, transform 0.35s ease 0.25s;
}

.drawer.is-open .drawer-nav {
  opacity: 1;
  transform: translateY(0);
}

.drawer-nav > ul {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.drawer-nav li a,
.drawer-nav-parent {
  color: var(--color-sub);
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
}

.drawer-nav-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.drawer-nav-parent::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--color-sub);
  border-bottom: 2px solid var(--color-sub);
  transform: rotate(45deg);
  margin-bottom: 3px;
  transition: transform 0.3s ease;
}

.drawer-nav-list-sub {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

/* 開いたとき */
.drawer-nav-item.is-open > .drawer-nav-list-sub {
  display: flex;
}

/* 矢印回転 */
.drawer-nav-item.is-open .drawer-nav-parent::after {
  transform: rotate(225deg);
}

.header-nav a {
  position: relative;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: var(--color-main);
}

.drawer-contact {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(250px, 70vw);
  padding: 16px 24px;
  background: #fff;
  color: var(--color-main);
  border-radius: 999px;
  font-family: var(--font-nav);
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  margin-left: -10px;
}

.drawer-contact::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../images/top/icon-mail-orange.webp") no-repeat center/contain;
  flex: 0 0 auto;
}

.nav-contact {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-contact:hover {
  opacity: 0.75;
  cursor: pointer;
}

.drawer-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
  transition: opacity 0.3s ease, transform 0.4s ease;
  z-index: 5;
}

.drawer.is-open .drawer-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.drawer-close span {
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.drawer-close span:first-child {
  transform: translateY(-50%) rotate(45deg);
}

.drawer-close span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}

.drawer-nav li {
  opacity: 0.95;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.drawer.is-open .drawer-nav li {
  opacity: 1;
  transform: translateY(0);
}

.drawer-nav li:nth-child(1) {
  transition-delay: 0.25s;
}

.drawer-nav li:nth-child(2) {
  transition-delay: 0.35s;
}

.drawer-nav li:nth-child(3) {
  transition-delay: 0.45s;
}

.drawer-nav li:nth-child(4) {
  transition-delay: 0.55s;
}

.drawer-nav li:nth-child(5) {
  transition-delay: 0.65s;
}

.drawer-nav li:nth-child(6) {
  transition-delay: 0.75s;
}

.drawer-contact {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-delay: 0.9s;
}

.drawer.is-open .drawer-contact {
  opacity: 1;
  transform: translateY(0);
}

.drawer.is-open .drawer-nav li {
  opacity: 1;
  transform: translateY(0);
}

.pc-only {
  display: flex;
}

.sp-only {
  display: none;
}

@media (max-width: 1100px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: inline-flex;
  }
  .nav-contact-box {
    display: block;
  }
  .nav-contact {
    display: none;
  }
  .nav-list a,
  .nav-parent {
    font-size: 0.9375rem;
  }
  .header-inner {
    align-items: center;
  }
}
.footer {
  background: var(--color-sub);
  padding: clamp(60px, 49.437px + 2.817vw, 90px) 0 0;
}

.footer-inner {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  margin-bottom: 56px;
}

@media (max-width: 767px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.footer-brand {
  text-align: left;
}

@media (max-width: 767px) {
  .footer-brand {
    margin: 0 auto;
  }
}
.footer-logo {
  width: 234px;
  margin: 0 0 25px;
  display: block;
}

@media (max-width: 767px) {
  .footer-logo {
    width: 140px;
  }
}
.footer-address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  font-style: normal;
}

@media (max-width: 767px) {
  .footer-address {
    font-size: 0.75rem;
  }
}
.footer-nav-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
  align-content: start;
  gap: clamp(28px, 21.662px + 1.69vw, 46px);
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(60px, 45.211px + 3.944vw, 102px);
}

@media (max-width: 767px) {
  .footer-nav {
    justify-content: center;
  }
}
.footer-nav-list,
.footer-nav-item,
.footer-nav-sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  max-width: 140px;
  width: 100%;
  gap: 10px;
}

.footer-nav-toggle,
.footer-nav-title {
  font-family: var(--font-nav);
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  white-space: nowrap;
}

.footer-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-nav-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.footer-nav-toggle {
  position: relative;
}

.footer-nav-toggle a {
  transition: color 0.3s ease;
}

.footer-nav-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--color-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-nav-toggle:hover {
  color: var(--color-main);
}

.footer-nav-toggle:hover::before {
  transform: scaleX(1);
}

.footer-nav-toggle:hover::after {
  transform: rotate(-45deg) scale(1.3);
}

.footer-nav-sns {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 18px;
}

.sns-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: #000;
  transition: transform 0.3s ease, color 0.3s ease;
}

.sns-link::before {
  content: "";
  position: absolute;
  inset: -6px;
  background: var(--color-main);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

.sns-icon {
  width: 25px;
  height: 25px;
}

.sns-link:hover {
  transform: scale(1.1);
  color: #fff;
}

.sns-link:hover::before {
  transform: scale(1);
}

.footer-copy {
  background-color: var(--color-main);
  padding: 29px 0;
}

.footer-copy-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-copy-list li {
  white-space: nowrap;
  color: var(--color-sub);
  font-size: 0.93rem;
  font-weight: 500;
}

.footer-copy-list li a {
  position: relative;
  display: inline-block;
}

.footer-copy-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: var(--color-sub);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-copy-list li a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .footer-copy {
    padding: 18px 20px;
  }
  .footer-copy-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .footer-copy-list li {
    white-space: normal;
    font-size: 0.75rem;
    line-height: 1.6;
  }
}
.contact {
  position: relative;
  padding: 0 0 50px 0;
}

.contact .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.contact-box {
  border-radius: 18px;
  padding: clamp(20px, 5vw, 56px);
  width: 100%;
  text-align: center;
}

.contact-text {
  margin: 20px 0 28px;
  font-family: var(--font-subtitle);
  font-size: 1.1rem;
  line-height: 1.9;
}

.contact-btn {
  display: inline-flex;
  max-width: 320px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 62px;
  padding: 0 36px;
  border-radius: 999px;
  width: 70%;
  background: var(--color-main);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(233, 92, 11, 0.45);
  transition: background-color 0.35s ease, color 0.35s ease, border 0.1s ease, box-shadow 0.35s ease;
}

.contact-btn__icon {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 18px;
  transform: translateY(1px);
}

.contact-btn:hover {
  background-color: #fff;
  color: var(--color-main);
  border: 1.9px solid var(--color-main);
  box-shadow: 0 14px 30px rgba(233, 92, 11, 0.35);
}

.contact-btn:hover .contact-btn__icon svg {
  color: var(--color-main);
}

.contact-btn:active {
  box-shadow: 0 8px 18px rgba(233, 92, 11, 0.25);
}

@media (max-width: 767px) {
  .contact-box {
    margin: 0 16px;
  }
  .contact-btn {
    width: 90%;
  }
  .contact-btn {
    font-size: 0.875rem;
  }
}
.page-header {
  background: url("../images/contact/header-bg.jpg") center/cover no-repeat;
  padding: 120px 0 160px;
  position: relative;
}

.page-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.page-header__jp {
  font-size: 2.1rem;
}

.page-header__en {
  color: var(--color-main);
  font-style: italic;
}

:root {
  --header-safe: clamp(72px, 6vw, 110px);
  --side-safe: clamp(16px, 3vw, 60px);
}

.fv {
  height: 100svh;
  z-index: 1;
  position: relative;
}

.fv-bg {
  background: url("../images/top/fv-main.webp") center top/cover no-repeat;
  background-attachment: fixed;
}

.fv-bg::before {
  background: url("../images/top/wave-orange.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 10/1;
  position: absolute;
  left: 0px;
  bottom: -1px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.fv-inner {
  position: absolute;
  left: clamp(16px, 10vw, 144px);
  top: clamp(var(--header-safe) + 40px, 44vh, 100svh - 280px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 18px);
  max-width: calc(100% - var(--side-safe) * 2);
  transform-origin: left top;
  --fv-inner-scale: clamp(0.75, calc(100vw / 1440), 1);
  transform: scale(var(--fv-inner-scale));
}

.fv-en {
  display: none;
  width: clamp(240px, 33.3vw, 480px);
  transform: rotate(-4deg);
  margin-left: -5%;
}

.fv-sub {
  padding: clamp(8px, 0.8vw, 12px) clamp(16px, 2.2vw, 32px);
  font-family: var(--font-subtitle);
  font-size: clamp(1rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: var(--color-main);
  border-radius: clamp(6px, 0.7vw, 10px);
  width: 80%;
}

.fv-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(8px, 1vw, 10px);
}

.fv-title {
  padding: clamp(10px, 1.1vw, 16px) clamp(18px, 2.5vw, 36px);
  font-family: var(--font-subtitle);
  font-size: clamp(1.75rem, 4.2vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  background: #fff;
  border-radius: clamp(6px, 0.7vw, 10px);
}

.fv-wave,
.wave-top,
.wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.fv-wave,
.wave-top,
.wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.fv--wave-a .fv-wave {
  background-image: url("../images/top/wave-fv-a.webp");
}

@media (max-width: 767px) {
  .fv-bg {
    background-image: url("../images/top/fv-main-sp.webp");
    background-position: center top;
    background-size: cover;
    background-attachment: scroll;
  }
  .fv-canvas {
    width: 90%;
    --fv-scale: clamp(0.5, calc(100vw / 390), 1);
    transform: scale(var(--fv-scale));
    transform-origin: left top;
  }
  .fv-inner {
    left: 23px;
    top: 50%;
    gap: 12px;
  }
  .fv-en {
    width: 240px;
  }
  .fv-sub {
    font-size: 0.9375rem;
    padding: 10px 16px;
    width: 80%;
    text-align: center;
  }
  .fv-title {
    font-size: 1.5625rem;
    padding: 12px 18px;
  }
}
.news {
  position: absolute;
  right: 5%;
  bottom: 7%;
  z-index: 20;
  pointer-events: auto;
}

.news__inner {
  display: block;
  width: 100%;
}

.news-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "badge date" "title title";
  gap: 10px 14px;
  width: 320px;
  height: auto;
  padding: 18px 22px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.news-card:hover .news-card__title {
  color: var(--color-main);
}

.news-card__badge {
  font-family: var(--font-tag);
  padding: 6px 10px;
  width: 30%;
  min-width: 100px;
  text-align: center;
  border: 1px solid var(--color-main);
  border-radius: 999px;
  color: var(--color-main);
  padding: 7px 10px 0px 10px;
  font-size: 0.875rem;
  line-height: 1;
}

.news-card__date {
  grid-area: date;
  justify-self: end;
  font-size: 0.875rem;
  color: #8A8A8A;
}

.news-card__title {
  grid-area: title;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}

@media (max-width: 767px) {
  .news {
    left: 50%;
    bottom: 0;
    width: 90%;
    transform: translateX(-50%) translateY(clamp(24px, 6vw, 48px));
    display: flex;
    justify-content: center;
    z-index: 20;
  }
  .news-card {
    padding: 16px 18px;
    width: 100%;
  }
  .news-card__title {
    font-size: 1rem;
  }
}
.message {
  position: relative;
  padding: clamp(40px, 1vw, 140px) 0 clamp(120px, 30vw, 345px);
}

.message::before {
  background-image: url("../images/top/wave-beige-white.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 7/1;
  position: absolute;
  left: 0px;
  bottom: -1px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.message-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.message .section-title-en {
  color: var(--color-sub);
  padding-top: 30px;
}

.message-inner .section-title-ja {
  color: var(--color-sub);
}

.message-box {
  position: relative;
  margin: 0 auto;
  width: min(800px, 100% - 32px);
  background: #fff;
  border-radius: clamp(18px, 2.2vw, 28px);
  padding: clamp(34px, 4.2vw, 64px) clamp(20px, 3.6vw, 56px) clamp(44px, 6.2vw, 88px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.message-box h3 {
  margin: 0 auto;
  font-family: var(--font-subtitle);
  font-size: clamp(1.125rem, 1.8vw, 1.625rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  font-style: normal;
  line-height: normal;
}

.message-box h3::after {
  content: "";
  display: block;
  width: clamp(44px, 5vw, 72px);
  height: 0;
  margin: clamp(14px, 1.8vw, 22px) auto clamp(18px, 2.2vw, 28px);
  border-top: 1px dotted var(--color-main);
}

.message-box p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.02em;
  padding: 0 30px 30px;
  justify-content: center;
}

.message-illust {
  position: absolute;
  z-index: 3;
  width: auto;
  pointer-events: none;
  bottom: -25%;
}

.message-illust--left {
  left: -8%;
  aspect-ratio: 232/263;
  max-width: 232px;
  height: auto;
}

.message-illust--right {
  right: 3%;
  aspect-ratio: 128/246;
  max-width: 135px;
  height: auto;
}

@media (max-width: 992px) {
  .message-illust--left {
    left: -3%;
  }
}
@media (max-width: 767px) {
  .message {
    padding: 20px 0 100px;
  }
  .message::before {
    aspect-ratio: 5/1;
  }
  .message-box {
    width: 100%;
    padding: 34px 12px 54px;
    margin: 0 auto;
  }
  .message-box h3 {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .message-box p {
    font-size: 0.87rem;
    line-height: 2;
    padding: 0;
  }
  .message-illust {
    height: auto;
    bottom: -20%;
  }
  .message-illust--left {
    left: 0;
    width: 130px;
  }
  .message-illust--right {
    width: 76px;
  }
}
.works {
  padding: 30px 0 220px;
}

.works::before {
  background-image: url("../images/top/wave-white.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 10/1;
  position: absolute;
  left: 0px;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.section-title-en {
  color: var(--color-main);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px) clamp(24px, 5vw, 70px);
}

@media (min-width: 768px) {
  .works-grid > *:nth-child(even) {
    margin-top: clamp(40px, 6vw, 80px);
  }
}
.work-card__link {
  display: block;
  color: inherit;
}

.work-card__link:hover .work-card__thumb .work-card__img {
  transform: scale(1.09);
}

.work-card__thumb {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.work-card__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.work-card__meta {
  margin-top: 14px;
}

.work-card__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.work-card__badge {
  height: 28px;
  width: 91px;
  text-align: center;
  padding: 2px 14px 0px 14px;
  border: 1px solid var(--color-main);
  border-radius: 999px;
  background: #fff;
  color: var(--color-main);
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  line-height: normal;
}

.work-card__title {
  margin: 0;
  font-family: var(--font-subtitle);
  font-size: 1.3rem;
  font-weight: 700;
}

.work-card__note {
  margin-top: 6px;
  font-family: var(--font-tag);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
}

.works-more {
  display: flex;
  justify-content: center;
  padding: 60px 70px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(320px, 78vw);
  height: 64px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-main);
  border: 2px solid var(--color-main);
  font-weight: 400;
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.btn-more:hover {
  background: var(--color-main);
  color: #fff;
  box-shadow: 0 14px 30px rgba(233, 92, 11, 0.35);
}

.btn-more:active {
  box-shadow: 0 8px 18px rgba(233, 92, 11, 0.25);
}

@media (max-width: 767px) {
  .works {
    padding: 60px 0 50px 0;
  }
  .works > .container {
    padding: 0px 20px 40px 20px;
  }
  .works-grid {
    grid-template-columns: 1fr;
  }
  .works-grid > * {
    margin-top: 0 !important;
  }
  .works-more {
    padding: 40px 0px 40px 0px;
  }
}
.service {
  margin: 0 auto;
  padding: 30px 50px 300px;
  width: 100%;
}

.service .container {
  width: 100%;
  max-width: none;
}

.service::before {
  background-image: url("../images/top/wave-orange.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 10/1;
  position: absolute;
  left: 0px;
  bottom: -1px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.service-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(60px, 41.69px + 4.883vw, 112px);
}

.service-item {
  max-width: clamp(500px, 263.732px + 63.005vw, 1171px);
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: start;
}

.service-item__body {
  max-width: 100%;
  width: 100%;
}

.service-item--left {
  direction: rtl;
}

.service-item--left > * {
  direction: ltr;
}

.service-num {
  display: inline-block;
  font-family: var(--font-number);
  font-size: clamp(1rem, 0.56rem + 1.878vw, 2.25rem);
  line-height: 1.25;
  color: var(--color-main);
  margin-bottom: clamp(1px, -4.282px + 1.408vw, 16px);
}

.service-title {
  margin: 0 0 6px;
  font-family: var(--font-subtitle);
  font-size: clamp(1.5rem, 1.148rem + 1.502vw, 2.5rem);
  font-weight: 400;
  line-height: 1.5;
}

.service-sub {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: clamp(-7px, -21.789px + 3.944vw, 35px);
}

.service-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 31px;
}

.service-tags {
  max-width: 486px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.service-tags li {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1;
  padding: 10px 15px;
  color: var(--color-text);
  border: 1px solid #E0E0E0;
  border-radius: 999px;
}

.service-more {
  display: flex;
  justify-content: flex-start;
  margin-top: 42px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(320px, 78vw);
  height: 64px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-main);
  border: 2px solid var(--color-main);
  font-weight: 400;
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.btn-more:hover {
  background: var(--color-main);
  color: #fff;
  box-shadow: 0 14px 30px rgba(233, 92, 11, 0.35);
}

.btn-more:active {
  box-shadow: 0 8px 18px rgba(233, 92, 11, 0.25);
}

.service-item__mediaWrap {
  position: relative;
}

.service-item__media {
  margin: clamp(46px, 40.366px + 1.502vw, 62px) 0 0;
  max-width: clamp(332px, 263.338px + 18.31vw, 527px);
}

.service-item__media img {
  width: 100%;
  height: auto;
  display: block;
}

.service-item__label {
  position: absolute;
  right: clamp(5px, 2.535px + 0.657vw, 12px);
  top: 0;
  writing-mode: vertical-rl;
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(2.563rem, 2.056rem + 2.16vw, 4rem);
  line-height: 1.4;
  color: var(--color-main);
  pointer-events: none;
  z-index: 2;
  white-space: nowrap;
}

.service-item--left .service-item__label {
  right: auto;
  left: clamp(5px, 2.535px + 0.657vw, 12px);
}

@media (max-width: 1100px) {
  .service-item {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .service-desc {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .service {
    padding: 60px 0 150px;
  }
  .service > .container {
    padding: 0px 20px;
  }
  .service-item {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 0;
    justify-content: flex-start;
  }
  .service-item__body {
    display: contents;
  }
  .service-num {
    order: 1;
  }
  .service-title {
    order: 2;
  }
  .service-sub {
    order: 3;
  }
  .service-item__mediaWrap {
    order: 4;
  }
  .service-desc {
    max-width: 100%;
    order: 5;
  }
  .service-tags {
    order: 6;
  }
  .service-more {
    order: 7;
  }
  .service-item--left {
    direction: ltr;
  }
  .service::before {
    aspect-ratio: 5/1;
  }
  .service-more {
    justify-content: center;
    margin-top: 30px;
  }
  .service-item__media {
    margin-bottom: 24.5px;
  }
  .service-item--left .service-item__label {
    right: 5px;
    left: auto;
  }
}
.strengths {
  position: relative;
  padding: 60px 0 220px;
}

.strengths::before {
  background-image: url("../images/top/wave-beige-white.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 7/1;
  position: absolute;
  left: 0px;
  bottom: -1px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.strengths .section-head--white .section-title-en {
  color: var(--color-sub);
  display: flex;
  align-items: center;
  justify-content: center;
}

.strengths .section-title-en > span {
  margin-top: -27px;
  margin-right: 5px;
  display: block;
  font-size: 4rem;
}

.strengths .section-head--white .section-title-ja {
  color: var(--color-sub);
}

.strengths-list {
  display: flex;
  flex-direction: column;
  padding-bottom: 90px;
}

.strengths-item {
  display: grid;
  grid-template-columns: 1fr 577px;
  align-items: center;
  gap: clamp(24px, 6vw, 80px);
}

.strengths-item--right {
  grid-template-columns: 577px 1fr;
}

.strengths-text {
  color: var(--color-sub);
  max-width: 520px;
}

.strengths-num {
  display: inline-block;
  font-family: var(--font-tag);
  font-size: 2.5rem;
  color: var(--color-sub);
  margin-bottom: 10px;
}

.strengths-title {
  margin: 0 0 2rem;
  font-family: var(--font-subtitle);
  color: var(--color-sub);
  font-size: clamp(1.625rem, 3.5vw, 2.625rem);
  line-height: normal;
  font-weight: 400;
}

.strengths-desc {
  color: var(--color-sub);
  font-size: 1rem;
  line-height: 180%;
  font-weight: 300;
  font-family: noto sans-serif;
}

.strengths-image picture,
.strengths-image img {
  width: 100%;
  aspect-ratio: 1/1;
  display: block;
}

@media (max-width: 767px) {
  .strengths {
    padding: 25px 0 90px;
  }
  .strengths .section-title-en > span {
    margin-top: -17px;
    margin-right: 3px;
    font-size: 2.5rem;
  }
  .strengths > .container {
    padding: 0px 20px;
  }
  .strengths-list {
    padding-bottom: 40px;
    margin-top: -16px;
  }
  .strengths-item {
    gap: 0;
  }
  .strengths-item,
  .strengths-item--right {
    grid-template-columns: 1fr;
  }
  .strengths-image {
    order: -1;
  }
  .strengths-text {
    max-width: none;
  }
  .strengths-num {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
  .strengths-title {
    line-height: normal;
  }
  .strengths::before {
    aspect-ratio: 5/1;
  }
}
.voice {
  position: relative;
  padding-top: 20px;
}

.voice::before {
  background-image: url("../images/top/wave-white.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 10/1;
  position: absolute;
  left: 0px;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.voice .section-head {
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 1;
}

.voice .section-title-en {
  color: var(--color-main);
}

.voice-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 clamp(16px, 6vw, 120px);
}

.voice-slider {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 3vw, 32px);
  overflow: visible;
  will-change: transform;
  transition: transform 0.45s ease;
}

.voice-card {
  align-items: center;
  background: transparent;
  border-radius: 0;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 670px;
  justify-content: space-between;
  margin: 0px 0px 0px 0px;
  outline-offset: -4px;
  width: 860px;
}

.voice-card__inner {
  background: #fff;
  border-radius: 42px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  padding: 60px;
  display: grid;
  grid-template-columns: clamp(160px, 26vw, 240px) 1fr;
  gap: clamp(14px, 2vw, 22px);
  align-items: center;
}

.voice-card__img {
  display: flex;
  flex-direction: column;
}

.voice-card__img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  display: block;
}

.voice-company {
  margin-top: 14px;
}

.voice-meta {
  font-size: 0.875rem;
  font-weight: 300;
}

.voice-card__content {
  position: relative;
  width: 90%;
  margin: 0 auto;
  min-height: 200px;
  height: auto;
}

.voice-title {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 500;
}

.voice-text {
  font-size: 0.875rem;
  line-height: 1.8;
}

.voice-quote {
  color: var(--color-main);
  font-size: clamp(3.25rem, 6vw, 4.375rem);
  line-height: 1;
  font-weight: 500;
}

.voice-card__content .voice-quote:first-of-type {
  position: absolute;
  left: -18px;
  top: -40px;
}

.voice-card__content .voice-quote:last-of-type {
  position: absolute;
  right: -13px;
  bottom: -40px;
  transform: rotate(180deg);
}

.voice-nav {
  position: absolute;
  right: 5%;
  bottom: 27%;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.voice-prev,
.voice-next {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--color-main);
  color: #fff;
  font-size: 1.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding: 0;
  box-shadow: 0 8px 18px rgba(227, 107, 32, 0.35);
}

.voice-prev,
.voice-next {
  vertical-align: middle;
}

.voice-prev,
.voice-next {
  padding-bottom: 2px;
}

@media (max-width: 767px) {
  .voice-card {
    width: 86vw;
    height: auto;
  }
  .voice-card__inner {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .voice-card__img img {
    width: 100%;
  }
  .voice-card__img {
    gap: unset;
  }
  .voice-company {
    margin-top: 12px;
  }
  .voice-name {
    margin-top: 4px;
  }
  .voice-card__inner {
    height: 100%;
    border-radius: 42px;
    padding: 30px;
    align-content: start;
  }
  .voice-slider-wrap {
    padding-bottom: 100px;
  }
  .voice-nav {
    position: absolute;
    top: 56%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }
  .voice-prev,
  .voice-next {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
  }
  .voice-quote {
    font-size: clamp(3.25rem, 8vw, 3.75rem);
  }
  .voice-card__content .voice-quote:first-of-type {
    top: -30px;
  }
  .voice-card__content {
    height: auto;
  }
  .voice-text {
    font-size: 1rem;
    line-height: 180%;
  }
}
.profile {
  padding-top: 60px;
}

.profile-body {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.profile-photo picture,
.profile-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.profile-role {
  font-family: var(--font-subtitle);
  font-size: 1rem;
  margin-bottom: -15px;
}

.profile-name {
  margin: 0 0 18px;
  font-family: var(--font-subtitle);
  font-size: 3.5rem;
  font-weight: 400;
}

.profile-name-en {
  margin-left: 14px;
  font-family: var(--font-tag);
  color: var(--color-main);
  font-size: 3rem;
  opacity: 0.2;
}

.profile-text p {
  font-size: 1rem;
  margin-bottom: 1.2em;
  font-weight: 300;
  line-height: 180%;
}

@media (max-width: 767px) {
  .profile {
    padding-top: 20px;
    padding-bottom: 0px;
  }
  .profile-body {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .profile-photo {
    margin: 0 auto;
  }
  .profile-name {
    margin: 0px;
    font-size: 2rem;
    text-align: center;
  }
  .profile-role {
    font-size: 0.89rem;
    margin-bottom: 0px;
    text-align: center;
  }
  .profile-name-en {
    font-size: 2rem;
    margin-left: 0px;
    text-align: center;
    display: inline-block;
  }
}
.faq {
  position: relative;
}

.faq::before {
  background-image: url("../images/top/wave-beige-white.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 7/1;
  position: absolute;
  left: 0px;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.faq-list {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.faq-question {
  width: 100%;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: var(--color-main);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-q {
  width: 46px;
  font-size: 1.6rem;
  font-family: var(--font-tag);
  border-radius: 50%;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-text {
  flex: 1;
  line-height: 1.6;
}

.faq-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  margin-left: auto;
  flex-shrink: 0;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.faq-toggle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-main);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-50%, -50%) rotate(135deg);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-toggle::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-question:hover .faq-toggle {
  filter: brightness(1.05);
}

.faq-answer {
  padding: 0 22px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.faq-item.is-open .faq-answer {
  padding: 22px;
  opacity: 1;
  transform: translateY(0);
}

.faq-item.is-open .faq-question {
  filter: brightness(1.03);
}

.faq-single__back {
  display: flex;
  justify-content: center;
  padding: 60px 70px clamp(100px, -401px + 46.389vw, 267px);
}

.faq-single__back > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(320px, 78vw);
  height: 64px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-main);
  border: 2px solid var(--color-main);
  font-weight: 400;
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.faq-single__back > a:hover {
  background: var(--color-main);
  color: #fff;
  box-shadow: 0 14px 30px rgba(233, 92, 11, 0.35);
}

.faq-single__back > a:active {
  box-shadow: 0 8px 18px rgba(233, 92, 11, 0.25);
}

@media (max-width: 1080px) {
  .faq-single__back {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .faq {
    padding-bottom: 100px;
    padding-top: 20px;
  }
  .faq-question {
    padding: 14px 16px;
  }
  .faq-answer {
    font-size: 1rem;
  }
  .faq-toggle {
    width: 30px;
    height: 30px;
  }
  .faq > .container {
    padding-bottom: 0;
  }
  .faq-answer {
    padding: 0px;
  }
  .faq-text {
    font-size: 1rem;
    line-height: 140%;
  }
  .faq-question {
    gap: 10px;
    height: auto;
  }
  .faq-single__back {
    padding: 40px 0px 40px 0px;
  }
}
.company__bg {
  background: url(../images/company/bg.svg) center center/cover no-repeat;
}

.company .section-header::after {
  background: url("../images/company/wave-gradation.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 7/1;
  position: absolute;
  left: 0px;
  bottom: -1px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 5;
}

#concept {
  padding: clamp(3.75rem, 2.364rem + 5.915vw, 7.688rem) 0 0;
}

#concept .container {
  max-width: 1100px;
  margin: 0 auto;
}

.concept-item {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(60px, 40.634px + 5.164vw, 115px);
}

.concept-title {
  margin: 0 0 6px;
  font-family: var(--font-subtitle);
  font-size: clamp(1.5rem, 1.148rem + 1.502vw, 2.5rem);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 29px;
  white-space: nowrap;
}

.concept-desc {
  max-width: 474px;
  width: 100%;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  white-space: normal;
  overflow-wrap: break-word;
  margin-bottom: 23px;
}

.concept-item__media {
  margin-bottom: 0;
  position: relative;
}

.concept-item__graph {
  width: clamp(100px, 84.507px + 4.131vw, 144px);
  height: auto;
  position: absolute;
  top: clamp(0px, -17.958px + 4.789vw, 51px);
  left: clamp(80px, 72.958px + 1.878vw, 100px);
}

.concept-item__mtg {
  width: clamp(330px, 272.606px + 15.305vw, 493px);
  height: auto;
  margin-top: clamp(50px, 28.873px + 5.634vw, 110px);
}

.concept__wide-photo {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.concept__wide-photo img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .concept-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .concept-desc {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .concept .concept__head {
    text-align: center;
  }
  .concept > .container {
    padding: 0px 10px;
  }
  .concept-item {
    grid-template-columns: 1fr;
    gap: 0;
    justify-content: center;
  }
  .concept-title {
    white-space: normal;
  }
  .concept-desc {
    max-width: 100%;
    margin-bottom: 0;
  }
  .concept-item__body {
    display: contents;
  }
  .concept-num {
    order: 1;
  }
  .concept-title {
    order: 2;
  }
  .concept-item__media {
    order: 3;
    margin-bottom: 24.5px;
  }
  .concept-desc {
    max-width: 100%;
    order: 5;
  }
}
#features {
  padding: clamp(70px, 54.155px + 4.225vw, 115px) 0 90px;
}

#features .container {
  max-width: 1100px;
  margin: 0 auto;
}

#features .section-head {
  text-align: left;
}

.features-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 67px;
}

.features-item {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
}

.features-item__body {
  max-width: 500px;
  width: 100%;
}

.features-item--left {
  direction: rtl;
}

.features-item--left > * {
  direction: ltr;
}

.features-num {
  display: inline-block;
  font-family: var(--font-number);
  font-size: clamp(1rem, 0.56rem + 1.878vw, 2.25rem);
  line-height: 1.25;
  color: var(--color-main);
  margin-bottom: 11px;
}

.features-title {
  margin: 0 0 6px;
  font-family: var(--font-subtitle);
  font-size: clamp(1.5rem, 1.324rem + 0.751vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 29px;
}

.features-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  white-space: normal;
  overflow-wrap: break-word;
}

.features-item__media {
  max-width: 530px;
  width: 100%;
  max-height: 400px;
  height: 100%;
  aspect-ratio: 530/400;
  border-radius: 30px;
  overflow: hidden;
}

.features-item__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.features-item__img01 {
  transform: scale(1.3);
  transform-origin: center 85%;
}

.features-item__img02 {
  transform: scale(1.45);
  transform-origin: 80% top;
}

.features-item__img03 {
  transform: scale(1.2);
  transform-origin: center center;
}

@media (max-width: 1100px) {
  .features-item {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .features-desc {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  #features .section-head {
    text-align: center;
  }
  .features {
    padding: 60px 0 150px;
  }
  .features > .container {
    padding: 0px 10px;
  }
  .features-item {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .features-item__body {
    display: contents;
  }
  .features-num {
    order: 1;
  }
  .features-title {
    order: 2;
  }
  .features-item__media {
    order: 3;
    margin-bottom: 24.5px;
  }
  .features-desc {
    max-width: 100%;
    order: 5;
  }
  .features-item--left {
    direction: ltr;
  }
  .features::before {
    aspect-ratio: 5/1;
  }
}
.company-info {
  position: relative;
  padding: 0 0 18% 0;
  overflow: visible;
}

.company-useful > .container > .section-head > .section-title-en,
.company-useful > .container > .section-head > .section-title-ja {
  color: var(--color-sub);
}

.section-title-en {
  font-style: italic;
}

.company-useful {
  position: relative;
  padding: 0 0 18% 0;
  overflow: visible;
}

.useful-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.useful-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.useful-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.useful-card__img {
  background: #e0e0e0;
  border-radius: 12px;
  margin: 16px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.useful-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.useful-card__noimage {
  color: #fff;
  font-size: 0.87rem;
}

.useful-card__title {
  padding: 0 16px 20px;
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.6;
}

.useful-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.useful-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
}

.company-info__list {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-top: 1px solid #282727;
  border-bottom: 1px solid #282727;
}

.company-info__list dt,
.company-info__list dd {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.company-info__list dt {
  background: #FFFAF2;
  font-weight: 500;
}

.company-info::before {
  background-image: url("../images/top/wave-orange.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 7/1;
  position: absolute;
  left: 0px;
  bottom: -1px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.company-useful::before {
  background-image: url("../images/top/wave-beige-white.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 7/1;
  position: absolute;
  left: 0px;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  /* 全体レイアウト */
  .company-info.section {
    margin-top: 30px;
  }
  .company-info {
    padding-bottom: 32%;
  }
  .company-info__list {
    grid-template-columns: 1fr;
    border-top: none;
    text-align: center;
  }
  .company-info__list dt {
    padding: 16px;
    font-weight: 600;
    font-size: 0.875rem;
  }
  .company-info__list dd {
    border-bottom: 1px solid #eee;
  }
  .company-useful {
    padding-bottom: 32%;
  }
  .useful-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .useful-card {
    border-radius: 12px;
  }
  .useful-card__img {
    margin: 12px;
    border-radius: 10px;
  }
  .useful-card__title {
    padding: 0 12px 16px;
    font-size: 0.85rem;
  }
  .company-useful > .container {
    padding: 0 0 50px 0;
  }
  .company-info::before,
  .company-useful::before {
    aspect-ratio: 4/1;
  }
  .company .section > .container {
    padding: 0 !important;
  }
}
/* Page scope: body.error404 */
body.error404 .section-404 {
  position: relative;
  padding: clamp(52px, 12vw, 100px) 0 18%;
  text-align: center;
}
body.error404 .section-404::before {
  background-image: url("../images/top/wave-beige-white.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 7/1;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}
body.error404 .section-404__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
body.error404 .section-404__text {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.6;
}
body.error404 .section-404__subtext {
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: 48px;
  line-height: 1.8;
}
body.error404 .section-404__actions {
  display: flex;
  justify-content: center;
}
body.error404 .btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(320px, 78vw);
  height: 64px;
  border-radius: 999px;
  background: var(--color-main);
  color: #fff;
  border: 2px solid var(--color-main);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
body.error404 .btn--primary:hover {
  background: #fff;
  color: var(--color-main);
  box-shadow: 0 14px 30px rgba(233, 92, 11, 0.35);
}
body.error404 .btn--primary:active {
  box-shadow: 0 8px 18px rgba(233, 92, 11, 0.25);
}
@media (max-width: 767px) {
  body.error404 .section-404 {
    padding-bottom: 32%;
  }
  body.error404 .section-404__text {
    font-size: 1.0625rem;
  }
  body.error404 .section-404__subtext {
    font-size: 0.875rem;
    margin-bottom: 36px;
  }
}

/* Page scope: body.page-template-page-privacy-policy-php, body.privacy-policy */
body.page-template-page-privacy-policy .privacy-item, body.page-template-page-privacy-policy-php .privacy-item, body.privacy-policy .privacy-item {
  max-width: 920px;
  margin: 0 auto 80px;
  padding: 0 20px;
}
body.page-template-page-privacy-policy .privacy-title, body.page-template-page-privacy-policy-php .privacy-title, body.privacy-policy .privacy-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.4;
}
body.page-template-page-privacy-policy .privacy-accent, body.page-template-page-privacy-policy-php .privacy-accent, body.privacy-policy .privacy-accent {
  width: 6px;
  height: 28px;
  background: var(--color-main);
  margin-top: 4px;
  flex-shrink: 0;
}
body.page-template-page-privacy-policy .privacy-note, body.page-template-page-privacy-policy-php .privacy-note, body.privacy-policy .privacy-note {
  padding: 20px;
  text-align: left;
  max-width: 930px;
  margin: 30px auto;
  font-size: 0.875rem;
}
body.page-template-page-privacy-policy .privacy-num, body.page-template-page-privacy-policy-php .privacy-num, body.privacy-policy .privacy-num {
  font-weight: 700;
}
body.page-template-page-privacy-policy .privacy-text, body.page-template-page-privacy-policy-php .privacy-text, body.privacy-policy .privacy-text {
  font-size: 14px;
  line-height: 2;
}
body.page-template-page-privacy-policy .privacy-text a, body.page-template-page-privacy-policy-php .privacy-text a, body.privacy-policy .privacy-text a {
  color: var(--color-main);
  text-decoration: underline;
}
body.page-template-page-privacy-policy .privacy-footer, body.page-template-page-privacy-policy-php .privacy-footer, body.privacy-policy .privacy-footer {
  max-width: 920px;
  margin: 0 auto 80px;
  padding: 0 20px;
}
body.page-template-page-privacy-policy .privacy-footer__meta, body.page-template-page-privacy-policy-php .privacy-footer__meta, body.privacy-policy .privacy-footer__meta {
  font-size: 14px;
  line-height: 2;
  text-align: right;
  margin-top: 32px;
}
@media (max-width: 768px) {
  body.page-template-page-privacy-policy, body.page-template-page-privacy-policy-php, body.privacy-policy {
    /* 全体レイアウト */
  }
  body.page-template-page-privacy-policy .section-privacy-policy, body.page-template-page-privacy-policy-php .section-privacy-policy, body.privacy-policy .section-privacy-policy {
    margin-top: 30px;
  }
  body.page-template-page-privacy-policy .privacy-title, body.page-template-page-privacy-policy-php .privacy-title, body.privacy-policy .privacy-title {
    font-size: 18px;
    gap: 12px;
  }
  body.page-template-page-privacy-policy .privacy-accent, body.page-template-page-privacy-policy-php .privacy-accent, body.privacy-policy .privacy-accent {
    height: 22px;
  }
  body.page-template-page-privacy-policy .privacy-text, body.page-template-page-privacy-policy-php .privacy-text, body.privacy-policy .privacy-text {
    font-size: 13px;
    line-height: 1.9;
  }
  body.page-template-page-privacy-policy .privacy-item, body.page-template-page-privacy-policy-php .privacy-item, body.privacy-policy .privacy-item {
    margin-bottom: 56px;
  }
  body.page-template-page-privacy-policy .privacy-footer, body.page-template-page-privacy-policy-php .privacy-footer, body.privacy-policy .privacy-footer {
    margin-bottom: 56px;
  }
  body.page-template-page-privacy-policy .privacy-footer__meta, body.page-template-page-privacy-policy-php .privacy-footer__meta, body.privacy-policy .privacy-footer__meta {
    font-size: 13px;
    line-height: 1.9;
  }
}

/* =========================
   Price Page
========================= */
.price-section {
  padding: 20px 5% 120px;
}

/* セクションタイトル */
.price-section__title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 48px;
  font-family: var(--font-subtitle);
}

.price-section__num {
  color: var(--color-main);
  margin-right: 8px;
  font-size: 2.5rem;
  font-weight: 400;
  font-family: var(--font-title);
}

.price-section__last {
  position: relative;
  padding: 20px 5% 300px;
  overflow: visible;
}

.price-section__last::before {
  background-image: url("../images/top/wave-beige-white.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 7/1;
  position: absolute;
  left: 0px;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

/* =========================
   プランカード
========================= */
.price-plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 24px;
}

.price-card {
  border: 2px solid var(--color-main);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 40px;
  padding: 32px 24px;
  background: #fff;
  position: relative;
  padding: 40px 24px 32px;
  max-width: 350px;
}

.price-card__label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  background: var(--color-main);
  color: #fff;
  font-family: var(--font-subtitle);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 400;
  width: 70%;
  margin-bottom: 16px;
}

.price-card__lead {
  list-style: disc;
  margin-left: 15px;
  padding-left: 1em;
}

.price-card__lead li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.price-card__lead li::marker {
  color: var(--color-main);
}

.price-card__price {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
}

.price-card__price > strong {
  color: var(--color-main);
}

.price-card__price strong {
  font-size: 3rem;
  font-weight: 400;
  font-family: var(--font-subtitle);
}

.price-card__note {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 16px;
}

.price-card__detail {
  background: #F6F6F6;
  border-radius: 14px;
  padding: 16px;
}

.price-card__detail li {
  font-size: 13px;
  line-height: 1.6;
}

/* =========================
   含まれるサービス
========================= */
.price-include {
  margin-top: 80px;
}

.price-include__title {
  text-align: center;
  font-family: var(--font-subtitle);
  color: #000;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.price-include__title::after {
  content: "";
  display: block;
  width: clamp(44px, 5vw, 72px);
  height: 0;
  margin: clamp(10px, 1.8vw, 0px) auto clamp(18px, 1.5vw, 15px);
  border-top: 1px dotted var(--color-main);
}

.price-include__note {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 32px;
}

.price-include__list {
  display: grid;
  gap: 12px 24px;
}

.price-include__list-flex {
  display: flex;
  justify-content: space-around;
}

.price-include__list li {
  font-size: 1rem;
  position: relative;
  padding-left: 20px;
}

.price-include__list li::before {
  content: "✓";
  color: var(--color-main);
  position: absolute;
  left: 0;
}

/* =========================
   オプション
========================= */
.price-option {
  margin-top: 80px;
}

.price-option__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 50px;
}

.price-option__list li {
  background: #f5f5f5;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 400;
}

/* =========================
   CTA
========================= */
.price-cta {
  text-align: center;
  margin-top: 40px;
}

/* =========================
   テーブル
========================= */
.price-table li {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  background: #F6F6F6;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
}

.price-note {
  font-size: 1rem;
  margin-top: 20px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 24px;
}

/* 左：タイトル */
.price-row__title {
  min-width: 180px;
  font-weight: 400;
  font-size: 1.1rem;
}

/* 中央：説明文 */
.price-row__desc {
  flex: 1;
  font-size: 1rem;
}

/* 右：料金 */
.price-row__price {
  white-space: nowrap;
  font-weight: 400;
  font-family: var(--font-subtitle);
}

/* 金額だけ色変更 */
.price-row__price-num {
  color: var(--color-main); /* #E95C0B */
  font-size: 1.25rem;
  font-weight: 400;
  margin-right: 4px;
}

/* =========================
   SP（〜768px）
========================= */
@media (max-width: 768px) {
  /* ===== セクション全体 ===== */
  .price-section {
    padding: 0 5% 80px;
  }
  .price-section__title {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }
  .price-section__num {
    font-size: 2rem;
  }
  /* ===== プランカード ===== */
  .price-plan {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
    padding: 0;
  }
  .price-card {
    width: 100%;
    max-width: 100%;
    border-radius: 28px;
    padding: 48px 20px 28px;
  }
  .price-card__label {
    font-size: 1rem;
    width: 80%;
    padding: 6px 12px;
  }
  .price-card__lead li {
    font-size: 0.95rem;
  }
  .price-card__price {
    font-size: 1.2rem;
  }
  .price-card__price strong {
    font-size: 2.4rem;
  }
  .price-card__note {
    font-size: 0.9rem;
  }
  .price-card__detail {
    padding: 14px;
  }
  .price-card__detail li {
    font-size: 0.85rem;
  }
  /* ===== 含まれるサービス ===== */
  .price-include {
    margin-top: 64px;
  }
  .price-include__title {
    font-size: 1.5rem;
  }
  .price-include__note {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .price-include__list-flex {
    display: block;
  }
  .price-include__list {
    gap: 12px;
  }
  .price-include__list li {
    font-size: 0.95rem;
  }
  /* ===== オプション ===== */
  .price-option {
    margin-top: 64px;
  }
  .price-option__list {
    gap: 8px;
    margin-top: 32px;
  }
  .price-option__list li {
    font-size: 0.9rem;
    padding: 6px 14px;
  }
  /* ===== テーブル（料金行） ===== */
  .price-table li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    padding: 16px;
  }
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 0;
  }
  .price-row__title {
    min-width: auto;
    font-size: 1rem;
  }
  .price-row__desc {
    font-size: 0.95rem;
  }
  .price-row__price {
    font-size: 1rem;
  }
  .price-row__price-num {
    font-size: 1.5rem;
  }
  .price-note {
    font-size: 0.9rem;
  }
  .price-section__last {
    padding: 20px 5% 150px;
  }
  /* ===== 波背景 ===== */
  .price-section__last::before {
    aspect-ratio: 375/80;
  }
}
/* Page scope: body.page-template-page-contact-php, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks-php */
body.page-template-page-contact .contact-page .container, body.page-template-page-contact-php .contact-page .container, body.page-template-page-contact-confirm .contact-page .container, body.page-template-page-contact-confirm-php .contact-page .container, body.page-template-page-contact-thanks .contact-page .container, body.page-template-page-contact-thanks-php .contact-page .container {
  max-width: 760px;
  margin: 0 auto;
}
body.page-template-page-contact .wpcf7, body.page-template-page-contact-php .wpcf7, body.page-template-page-contact-confirm .wpcf7, body.page-template-page-contact-confirm-php .wpcf7, body.page-template-page-contact-thanks .wpcf7, body.page-template-page-contact-thanks-php .wpcf7 {
  padding: 0 !important;
}
body.page-template-page-contact .contact-page .section-head, body.page-template-page-contact-php .contact-page .section-head, body.page-template-page-contact-confirm .contact-page .section-head, body.page-template-page-contact-confirm-php .contact-page .section-head, body.page-template-page-contact-thanks .contact-page .section-head, body.page-template-page-contact-thanks-php .contact-page .section-head {
  text-align: center;
  margin-bottom: 50px;
}
body.page-template-page-contact .contact-page .contact-lead, body.page-template-page-contact-php .contact-page .contact-lead, body.page-template-page-contact-confirm .contact-page .contact-lead, body.page-template-page-contact-confirm-php .contact-page .contact-lead, body.page-template-page-contact-thanks .contact-page .contact-lead, body.page-template-page-contact-thanks-php .contact-page .contact-lead {
  font-size: 13px;
  line-height: 1.8;
  color: #666;
}
body.page-template-page-contact .contact-note, body.page-template-page-contact-php .contact-note, body.page-template-page-contact-confirm .contact-note, body.page-template-page-contact-confirm-php .contact-note, body.page-template-page-contact-thanks .contact-note, body.page-template-page-contact-thanks-php .contact-note {
  text-align: center;
  font-size: 1rem;
  padding: 0 16px;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 1.6px;
}
body.page-template-page-contact .wpcf7, body.page-template-page-contact-php .wpcf7, body.page-template-page-contact-confirm .wpcf7, body.page-template-page-contact-confirm-php .wpcf7, body.page-template-page-contact-thanks .wpcf7, body.page-template-page-contact-thanks-php .wpcf7 {
  background: #fff;
  padding: 56px 48px 64px;
  border-radius: 16px;
}
body.page-template-page-contact .cf7-field, body.page-template-page-contact-php .cf7-field, body.page-template-page-contact-confirm .cf7-field, body.page-template-page-contact-confirm-php .cf7-field, body.page-template-page-contact-thanks .cf7-field, body.page-template-page-contact-thanks-php .cf7-field {
  margin-bottom: 35px;
}
body.page-template-page-contact .cf7-field label, body.page-template-page-contact-php .cf7-field label, body.page-template-page-contact-confirm .cf7-field label, body.page-template-page-contact-confirm-php .cf7-field label, body.page-template-page-contact-thanks .cf7-field label, body.page-template-page-contact-thanks-php .cf7-field label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 14px;
}
body.page-template-page-contact .field-box label, body.page-template-page-contact-php .field-box label, body.page-template-page-contact-confirm .field-box label, body.page-template-page-contact-confirm-php .field-box label, body.page-template-page-contact-thanks .field-box label, body.page-template-page-contact-thanks-php .field-box label {
  margin-bottom: -20px;
}
body.page-template-page-contact .cf7-privacy .wpcf7-list-item > label, body.page-template-page-contact-php .cf7-privacy .wpcf7-list-item > label, body.page-template-page-contact-confirm .cf7-privacy .wpcf7-list-item > label, body.page-template-page-contact-confirm-php .cf7-privacy .wpcf7-list-item > label, body.page-template-page-contact-thanks .cf7-privacy .wpcf7-list-item > label, body.page-template-page-contact-thanks-php .cf7-privacy .wpcf7-list-item > label {
  display: inline-flex;
  align-items: left;
  gap: 4px;
}
body.page-template-page-contact .wpcf7-list-item-label, body.page-template-page-contact-php .wpcf7-list-item-label, body.page-template-page-contact-confirm .wpcf7-list-item-label, body.page-template-page-contact-confirm-php .wpcf7-list-item-label, body.page-template-page-contact-thanks .wpcf7-list-item-label, body.page-template-page-contact-thanks-php .wpcf7-list-item-label {
  margin-left: 0 !important;
  padding: 0;
}
body.page-template-page-contact .cf7-privacy input[type=checkbox], body.page-template-page-contact-php .cf7-privacy input[type=checkbox], body.page-template-page-contact-confirm .cf7-privacy input[type=checkbox], body.page-template-page-contact-confirm-php .cf7-privacy input[type=checkbox], body.page-template-page-contact-thanks .cf7-privacy input[type=checkbox], body.page-template-page-contact-thanks-php .cf7-privacy input[type=checkbox] {
  margin: 0;
}
body.page-template-page-contact .cf7-required, body.page-template-page-contact-php .cf7-required, body.page-template-page-contact-confirm .cf7-required, body.page-template-page-contact-confirm-php .cf7-required, body.page-template-page-contact-thanks .cf7-required, body.page-template-page-contact-thanks-php .cf7-required {
  background: var(--color-main);
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1;
}
body.page-template-page-contact .cf7-privacy-label a, body.page-template-page-contact-php .cf7-privacy-label a, body.page-template-page-contact-confirm .cf7-privacy-label a, body.page-template-page-contact-confirm-php .cf7-privacy-label a, body.page-template-page-contact-thanks .cf7-privacy-label a, body.page-template-page-contact-thanks-php .cf7-privacy-label a {
  color: var(--color-main);
  text-decoration: underline;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}
body.page-template-page-contact .wpcf7 input[type=text],
body.page-template-page-contact .wpcf7 input[type=email],
body.page-template-page-contact .wpcf7 select,
body.page-template-page-contact .wpcf7 textarea, body.page-template-page-contact-php .wpcf7 input[type=text],
body.page-template-page-contact-php .wpcf7 input[type=email],
body.page-template-page-contact-php .wpcf7 select,
body.page-template-page-contact-php .wpcf7 textarea, body.page-template-page-contact-confirm .wpcf7 input[type=text],
body.page-template-page-contact-confirm .wpcf7 input[type=email],
body.page-template-page-contact-confirm .wpcf7 select,
body.page-template-page-contact-confirm .wpcf7 textarea, body.page-template-page-contact-confirm-php .wpcf7 input[type=text],
body.page-template-page-contact-confirm-php .wpcf7 input[type=email],
body.page-template-page-contact-confirm-php .wpcf7 select,
body.page-template-page-contact-confirm-php .wpcf7 textarea, body.page-template-page-contact-thanks .wpcf7 input[type=text],
body.page-template-page-contact-thanks .wpcf7 input[type=email],
body.page-template-page-contact-thanks .wpcf7 select,
body.page-template-page-contact-thanks .wpcf7 textarea, body.page-template-page-contact-thanks-php .wpcf7 input[type=text],
body.page-template-page-contact-thanks-php .wpcf7 input[type=email],
body.page-template-page-contact-thanks-php .wpcf7 select,
body.page-template-page-contact-thanks-php .wpcf7 textarea {
  width: 100%;
  height: 48px;
  padding: 12px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  box-sizing: border-box;
}
body.page-template-page-contact .wpcf7 textarea, body.page-template-page-contact-php .wpcf7 textarea, body.page-template-page-contact-confirm .wpcf7 textarea, body.page-template-page-contact-confirm-php .wpcf7 textarea, body.page-template-page-contact-thanks .wpcf7 textarea, body.page-template-page-contact-thanks-php .wpcf7 textarea {
  height: auto;
  min-height: 160px;
  resize: vertical;
  line-height: 160%;
}
body.page-template-page-contact .wpcf7 input::placeholder,
body.page-template-page-contact .wpcf7 textarea::placeholder, body.page-template-page-contact-php .wpcf7 input::placeholder,
body.page-template-page-contact-php .wpcf7 textarea::placeholder, body.page-template-page-contact-confirm .wpcf7 input::placeholder,
body.page-template-page-contact-confirm .wpcf7 textarea::placeholder, body.page-template-page-contact-confirm-php .wpcf7 input::placeholder,
body.page-template-page-contact-confirm-php .wpcf7 textarea::placeholder, body.page-template-page-contact-thanks .wpcf7 input::placeholder,
body.page-template-page-contact-thanks .wpcf7 textarea::placeholder, body.page-template-page-contact-thanks-php .wpcf7 input::placeholder,
body.page-template-page-contact-thanks-php .wpcf7 textarea::placeholder {
  color: #aaa;
}
body.page-template-page-contact .wpcf7-spinner, body.page-template-page-contact-php .wpcf7-spinner, body.page-template-page-contact-confirm .wpcf7-spinner, body.page-template-page-contact-confirm-php .wpcf7-spinner, body.page-template-page-contact-thanks .wpcf7-spinner, body.page-template-page-contact-thanks-php .wpcf7-spinner {
  display: block;
}
body.page-template-page-contact .wpcf7 input:focus,
body.page-template-page-contact .wpcf7 select:focus,
body.page-template-page-contact .wpcf7 textarea:focus, body.page-template-page-contact-php .wpcf7 input:focus,
body.page-template-page-contact-php .wpcf7 select:focus,
body.page-template-page-contact-php .wpcf7 textarea:focus, body.page-template-page-contact-confirm .wpcf7 input:focus,
body.page-template-page-contact-confirm .wpcf7 select:focus,
body.page-template-page-contact-confirm .wpcf7 textarea:focus, body.page-template-page-contact-confirm-php .wpcf7 input:focus,
body.page-template-page-contact-confirm-php .wpcf7 select:focus,
body.page-template-page-contact-confirm-php .wpcf7 textarea:focus, body.page-template-page-contact-thanks .wpcf7 input:focus,
body.page-template-page-contact-thanks .wpcf7 select:focus,
body.page-template-page-contact-thanks .wpcf7 textarea:focus, body.page-template-page-contact-thanks-php .wpcf7 input:focus,
body.page-template-page-contact-thanks-php .wpcf7 select:focus,
body.page-template-page-contact-thanks-php .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--color-main);
}
body.page-template-page-contact .cf7-note, body.page-template-page-contact-php .cf7-note, body.page-template-page-contact-confirm .cf7-note, body.page-template-page-contact-confirm-php .cf7-note, body.page-template-page-contact-thanks .cf7-note, body.page-template-page-contact-thanks-php .cf7-note {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 6px 0 10px;
}
body.page-template-page-contact .budget, body.page-template-page-contact-php .budget, body.page-template-page-contact-confirm .budget, body.page-template-page-contact-confirm-php .budget, body.page-template-page-contact-thanks .budget, body.page-template-page-contact-thanks-php .budget {
  margin-bottom: 52px;
}
body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
  /* .wpcf7 select:has(option[value=""]:checked) {
    color: #aaaaaa;
    font-size: 0.875rem;
  }

  .wpcf7 select:focus,
  .wpcf7 select:valid {
    color: #2a2a2a;
  } */
}
body.page-template-page-contact .wpcf7 .wpcf7-list-item, body.page-template-page-contact-php .wpcf7 .wpcf7-list-item, body.page-template-page-contact-confirm .wpcf7 .wpcf7-list-item, body.page-template-page-contact-confirm-php .wpcf7 .wpcf7-list-item, body.page-template-page-contact-thanks .wpcf7 .wpcf7-list-item, body.page-template-page-contact-thanks-php .wpcf7 .wpcf7-list-item {
  display: block;
  margin-bottom: 24px;
  margin-left: 0;
}
body.page-template-page-contact .wpcf7 .wpcf7-list-item-label, body.page-template-page-contact-php .wpcf7 .wpcf7-list-item-label, body.page-template-page-contact-confirm .wpcf7 .wpcf7-list-item-label, body.page-template-page-contact-confirm-php .wpcf7 .wpcf7-list-item-label, body.page-template-page-contact-thanks .wpcf7 .wpcf7-list-item-label, body.page-template-page-contact-thanks-php .wpcf7 .wpcf7-list-item-label {
  font-size: 0.875rem;
  font-weight: 400;
}
body.page-template-page-contact .cf7-privacy, body.page-template-page-contact-php .cf7-privacy, body.page-template-page-contact-confirm .cf7-privacy, body.page-template-page-contact-confirm-php .cf7-privacy, body.page-template-page-contact-thanks .cf7-privacy, body.page-template-page-contact-thanks-php .cf7-privacy {
  font-size: 13px;
  margin-top: 16px;
}
body.page-template-page-contact .cf7-submit,
body.page-template-page-contact .cf7-confirm-btns, body.page-template-page-contact-php .cf7-submit,
body.page-template-page-contact-php .cf7-confirm-btns, body.page-template-page-contact-confirm .cf7-submit,
body.page-template-page-contact-confirm .cf7-confirm-btns, body.page-template-page-contact-confirm-php .cf7-submit,
body.page-template-page-contact-confirm-php .cf7-confirm-btns, body.page-template-page-contact-thanks .cf7-submit,
body.page-template-page-contact-thanks .cf7-confirm-btns, body.page-template-page-contact-thanks-php .cf7-submit,
body.page-template-page-contact-thanks-php .cf7-confirm-btns {
  text-align: center;
  margin-top: 45px;
}
body.page-template-page-contact .cf7-submit p input,
body.page-template-page-contact .cf7-confirm-btns p input, body.page-template-page-contact-php .cf7-submit p input,
body.page-template-page-contact-php .cf7-confirm-btns p input, body.page-template-page-contact-confirm .cf7-submit p input,
body.page-template-page-contact-confirm .cf7-confirm-btns p input, body.page-template-page-contact-confirm-php .cf7-submit p input,
body.page-template-page-contact-confirm-php .cf7-confirm-btns p input, body.page-template-page-contact-thanks .cf7-submit p input,
body.page-template-page-contact-thanks .cf7-confirm-btns p input, body.page-template-page-contact-thanks-php .cf7-submit p input,
body.page-template-page-contact-thanks-php .cf7-confirm-btns p input {
  background: var(--color-main);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 16px 48px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.35s ease, color 0.35s ease, border 0.08s ease, box-shadow 0.35s ease;
}
body.page-template-page-contact .cf7-submit p input:hover,
body.page-template-page-contact .cf7-confirm-btns p input:hover, body.page-template-page-contact-php .cf7-submit p input:hover,
body.page-template-page-contact-php .cf7-confirm-btns p input:hover, body.page-template-page-contact-confirm .cf7-submit p input:hover,
body.page-template-page-contact-confirm .cf7-confirm-btns p input:hover, body.page-template-page-contact-confirm-php .cf7-submit p input:hover,
body.page-template-page-contact-confirm-php .cf7-confirm-btns p input:hover, body.page-template-page-contact-thanks .cf7-submit p input:hover,
body.page-template-page-contact-thanks .cf7-confirm-btns p input:hover, body.page-template-page-contact-thanks-php .cf7-submit p input:hover,
body.page-template-page-contact-thanks-php .cf7-confirm-btns p input:hover {
  background-color: #fff;
  color: var(--color-main);
  border: 1.9px solid var(--color-main);
  box-shadow: 0 14px 30px rgba(233, 92, 11, 0.35);
}
body.page-template-page-contact .cf7-confirm, body.page-template-page-contact-php .cf7-confirm, body.page-template-page-contact-confirm .cf7-confirm, body.page-template-page-contact-confirm-php .cf7-confirm, body.page-template-page-contact-thanks .cf7-confirm, body.page-template-page-contact-thanks-php .cf7-confirm {
  padding-top: 8px;
}
body.page-template-page-contact .cf7-confirm-list, body.page-template-page-contact-php .cf7-confirm-list, body.page-template-page-contact-confirm .cf7-confirm-list, body.page-template-page-contact-confirm-php .cf7-confirm-list, body.page-template-page-contact-thanks .cf7-confirm-list, body.page-template-page-contact-thanks-php .cf7-confirm-list {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px 24px;
}
body.page-template-page-contact .cf7-confirm-list dt, body.page-template-page-contact-php .cf7-confirm-list dt, body.page-template-page-contact-confirm .cf7-confirm-list dt, body.page-template-page-contact-confirm-php .cf7-confirm-list dt, body.page-template-page-contact-thanks .cf7-confirm-list dt, body.page-template-page-contact-thanks-php .cf7-confirm-list dt {
  font-weight: 600;
  font-size: 14px;
}
body.page-template-page-contact .cf7-confirm-list dd, body.page-template-page-contact-php .cf7-confirm-list dd, body.page-template-page-contact-confirm .cf7-confirm-list dd, body.page-template-page-contact-confirm-php .cf7-confirm-list dd, body.page-template-page-contact-thanks .cf7-confirm-list dd, body.page-template-page-contact-thanks-php .cf7-confirm-list dd {
  margin: 0;
  padding: 12px 14px;
  background: #f7f7f7;
  border-radius: 6px;
  font-size: 14px;
}
body.page-template-page-contact .wpcf7-not-valid-tip, body.page-template-page-contact-php .wpcf7-not-valid-tip, body.page-template-page-contact-confirm .wpcf7-not-valid-tip, body.page-template-page-contact-confirm-php .wpcf7-not-valid-tip, body.page-template-page-contact-thanks .wpcf7-not-valid-tip, body.page-template-page-contact-thanks-php .wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 6px;
}
body.page-template-page-contact .wpcf7-response-output, body.page-template-page-contact-php .wpcf7-response-output, body.page-template-page-contact-confirm .wpcf7-response-output, body.page-template-page-contact-confirm-php .wpcf7-response-output, body.page-template-page-contact-thanks .wpcf7-response-output, body.page-template-page-contact-thanks-php .wpcf7-response-output {
  margin-top: 32px;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
}
body.page-template-page-contact .thanks-page, body.page-template-page-contact-php .thanks-page, body.page-template-page-contact-confirm .thanks-page, body.page-template-page-contact-confirm-php .thanks-page, body.page-template-page-contact-thanks .thanks-page, body.page-template-page-contact-thanks-php .thanks-page {
  padding: 120px 0;
  text-align: center;
}
body.page-template-page-contact .thanks-title, body.page-template-page-contact-php .thanks-title, body.page-template-page-contact-confirm .thanks-title, body.page-template-page-contact-confirm-php .thanks-title, body.page-template-page-contact-thanks .thanks-title, body.page-template-page-contact-thanks-php .thanks-title {
  font-size: 48px;
  color: var(--color-main);
  margin-bottom: 24px;
  text-align: center;
}
body.page-template-page-contact .thanks-text, body.page-template-page-contact-php .thanks-text, body.page-template-page-contact-confirm .thanks-text, body.page-template-page-contact-confirm-php .thanks-text, body.page-template-page-contact-thanks .thanks-text, body.page-template-page-contact-thanks-php .thanks-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}
body.page-template-page-contact .thanks-btn, body.page-template-page-contact-php .thanks-btn, body.page-template-page-contact-confirm .thanks-btn, body.page-template-page-contact-confirm-php .thanks-btn, body.page-template-page-contact-thanks .thanks-btn, body.page-template-page-contact-thanks-php .thanks-btn {
  text-align: center;
}
body.page-template-page-contact a.btn, body.page-template-page-contact-php a.btn, body.page-template-page-contact-confirm a.btn, body.page-template-page-contact-confirm-php a.btn, body.page-template-page-contact-thanks a.btn, body.page-template-page-contact-thanks-php a.btn {
  color: var(--color-main);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  cursor: pointer;
}
body.page-template-page-contact a.btn::after, body.page-template-page-contact-php a.btn::after, body.page-template-page-contact-confirm a.btn::after, body.page-template-page-contact-confirm-php a.btn::after, body.page-template-page-contact-thanks a.btn::after, body.page-template-page-contact-thanks-php a.btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-main);
}
body.page-template-page-contact a.btn:hover, body.page-template-page-contact-php a.btn:hover, body.page-template-page-contact-confirm a.btn:hover, body.page-template-page-contact-confirm-php a.btn:hover, body.page-template-page-contact-thanks a.btn:hover, body.page-template-page-contact-thanks-php a.btn:hover {
  opacity: 0.6;
  color: var(--color-main);
}
body.page-template-page-contact .cf7-privacy-text, body.page-template-page-contact-php .cf7-privacy-text, body.page-template-page-contact-confirm .cf7-privacy-text, body.page-template-page-contact-confirm-php .cf7-privacy-text, body.page-template-page-contact-thanks .cf7-privacy-text, body.page-template-page-contact-thanks-php .cf7-privacy-text {
  text-align: center;
  font-size: 13px;
  margin-bottom: 16px;
}
body.page-template-page-contact .cf7-privacy-label, body.page-template-page-contact-php .cf7-privacy-label, body.page-template-page-contact-confirm .cf7-privacy-label, body.page-template-page-contact-confirm-php .cf7-privacy-label, body.page-template-page-contact-thanks .cf7-privacy-label, body.page-template-page-contact-thanks-php .cf7-privacy-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}
body.page-template-page-contact .wpcf7 input[type=checkbox], body.page-template-page-contact-php .wpcf7 input[type=checkbox], body.page-template-page-contact-confirm .wpcf7 input[type=checkbox], body.page-template-page-contact-confirm-php .wpcf7 input[type=checkbox], body.page-template-page-contact-thanks .wpcf7 input[type=checkbox], body.page-template-page-contact-thanks-php .wpcf7 input[type=checkbox] {
  appearance: auto;
  -webkit-appearance: checkbox;
}
body.page-template-page-contact .cf7-submit, body.page-template-page-contact-php .cf7-submit, body.page-template-page-contact-confirm .cf7-submit, body.page-template-page-contact-confirm-php .cf7-submit, body.page-template-page-contact-thanks .cf7-submit, body.page-template-page-contact-thanks-php .cf7-submit {
  display: flex;
  justify-content: center;
}
body.page-template-page-contact .cf7-submit p, body.page-template-page-contact-php .cf7-submit p, body.page-template-page-contact-confirm .cf7-submit p, body.page-template-page-contact-confirm-php .cf7-submit p, body.page-template-page-contact-thanks .cf7-submit p, body.page-template-page-contact-thanks-php .cf7-submit p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
body.page-template-page-contact .cf7-submit input[type=submit],
body.page-template-page-contact .cf7-submit input[type=button], body.page-template-page-contact-php .cf7-submit input[type=submit],
body.page-template-page-contact-php .cf7-submit input[type=button], body.page-template-page-contact-confirm .cf7-submit input[type=submit],
body.page-template-page-contact-confirm .cf7-submit input[type=button], body.page-template-page-contact-confirm-php .cf7-submit input[type=submit],
body.page-template-page-contact-confirm-php .cf7-submit input[type=button], body.page-template-page-contact-thanks .cf7-submit input[type=submit],
body.page-template-page-contact-thanks .cf7-submit input[type=button], body.page-template-page-contact-thanks-php .cf7-submit input[type=submit],
body.page-template-page-contact-thanks-php .cf7-submit input[type=button] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  padding: 0 36px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 999px;
  width: 50%;
  max-width: 340px;
  cursor: pointer;
  transition: all 0.25s ease;
}
body.page-template-page-contact .cf7-submit input[type=submit], body.page-template-page-contact-php .cf7-submit input[type=submit], body.page-template-page-contact-confirm .cf7-submit input[type=submit], body.page-template-page-contact-confirm-php .cf7-submit input[type=submit], body.page-template-page-contact-thanks .cf7-submit input[type=submit], body.page-template-page-contact-thanks-php .cf7-submit input[type=submit] {
  background: var(--color-main);
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(233, 92, 11, 0.45);
}
body.page-template-page-contact .cf7-submit input[type=submit]:hover, body.page-template-page-contact-php .cf7-submit input[type=submit]:hover, body.page-template-page-contact-confirm .cf7-submit input[type=submit]:hover, body.page-template-page-contact-confirm-php .cf7-submit input[type=submit]:hover, body.page-template-page-contact-thanks .cf7-submit input[type=submit]:hover, body.page-template-page-contact-thanks-php .cf7-submit input[type=submit]:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
body.page-template-page-contact .cf7-submit input.wpcf7-previous, body.page-template-page-contact-php .cf7-submit input.wpcf7-previous, body.page-template-page-contact-confirm .cf7-submit input.wpcf7-previous, body.page-template-page-contact-confirm-php .cf7-submit input.wpcf7-previous, body.page-template-page-contact-thanks .cf7-submit input.wpcf7-previous, body.page-template-page-contact-thanks-php .cf7-submit input.wpcf7-previous {
  background: #F9F9F5;
  color: var(--color-main);
  border: 2px solid var(--color-main);
  box-shadow: none;
  margin-right: 15px;
}
body.page-template-page-contact .cf7-submit input.wpcf7-previous:hover, body.page-template-page-contact-php .cf7-submit input.wpcf7-previous:hover, body.page-template-page-contact-confirm .cf7-submit input.wpcf7-previous:hover, body.page-template-page-contact-confirm-php .cf7-submit input.wpcf7-previous:hover, body.page-template-page-contact-thanks .cf7-submit input.wpcf7-previous:hover, body.page-template-page-contact-thanks-php .cf7-submit input.wpcf7-previous:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
body.page-template-page-contact .cf7-submit-area, body.page-template-page-contact-php .cf7-submit-area, body.page-template-page-contact-confirm .cf7-submit-area, body.page-template-page-contact-confirm-php .cf7-submit-area, body.page-template-page-contact-thanks .cf7-submit-area, body.page-template-page-contact-thanks-php .cf7-submit-area {
  background: #F9F9F5;
  width: 100%;
  min-height: 299px;
  padding: 50px;
  margin-top: 90px;
}
body.page-template-page-contact .cf7-submit-area p, body.page-template-page-contact-php .cf7-submit-area p, body.page-template-page-contact-confirm .cf7-submit-area p, body.page-template-page-contact-confirm-php .cf7-submit-area p, body.page-template-page-contact-thanks .cf7-submit-area p, body.page-template-page-contact-thanks-php .cf7-submit-area p {
  margin: 0;
}
body.page-template-page-contact .cf7-submit-area .cf7-privacy-text, body.page-template-page-contact-php .cf7-submit-area .cf7-privacy-text, body.page-template-page-contact-confirm .cf7-submit-area .cf7-privacy-text, body.page-template-page-contact-confirm-php .cf7-submit-area .cf7-privacy-text, body.page-template-page-contact-thanks .cf7-submit-area .cf7-privacy-text, body.page-template-page-contact-thanks-php .cf7-submit-area .cf7-privacy-text {
  text-align: center;
  margin: 0;
  padding: 0 16px;
}
body.page-template-page-contact .cf7-submit-area .cf7-privacy, body.page-template-page-contact-php .cf7-submit-area .cf7-privacy, body.page-template-page-contact-confirm .cf7-submit-area .cf7-privacy, body.page-template-page-contact-confirm-php .cf7-submit-area .cf7-privacy, body.page-template-page-contact-thanks .cf7-submit-area .cf7-privacy, body.page-template-page-contact-thanks-php .cf7-submit-area .cf7-privacy {
  display: flex;
  justify-content: center;
  margin-top: 0;
  text-align: center;
}
body.page-template-page-contact .cf7-submit-area .wpcf7-list-item, body.page-template-page-contact-php .cf7-submit-area .wpcf7-list-item, body.page-template-page-contact-confirm .cf7-submit-area .wpcf7-list-item, body.page-template-page-contact-confirm-php .cf7-submit-area .wpcf7-list-item, body.page-template-page-contact-thanks .cf7-submit-area .wpcf7-list-item, body.page-template-page-contact-thanks-php .cf7-submit-area .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
body.page-template-page-contact .cf7-submit-area .wpcf7-list-item > label, body.page-template-page-contact-php .cf7-submit-area .wpcf7-list-item > label, body.page-template-page-contact-confirm .cf7-submit-area .wpcf7-list-item > label, body.page-template-page-contact-confirm-php .cf7-submit-area .wpcf7-list-item > label, body.page-template-page-contact-thanks .cf7-submit-area .wpcf7-list-item > label, body.page-template-page-contact-thanks-php .cf7-submit-area .wpcf7-list-item > label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
body.page-template-page-contact .cf7-submit-area input[type=checkbox], body.page-template-page-contact-php .cf7-submit-area input[type=checkbox], body.page-template-page-contact-confirm .cf7-submit-area input[type=checkbox], body.page-template-page-contact-confirm-php .cf7-submit-area input[type=checkbox], body.page-template-page-contact-thanks .cf7-submit-area input[type=checkbox], body.page-template-page-contact-thanks-php .cf7-submit-area input[type=checkbox] {
  margin: 0;
}
body.page-template-page-contact .cf7-field, body.page-template-page-contact-php .cf7-field, body.page-template-page-contact-confirm .cf7-field, body.page-template-page-contact-confirm-php .cf7-field, body.page-template-page-contact-thanks .cf7-field, body.page-template-page-contact-thanks-php .cf7-field {
  max-width: 100%;
  word-break: break-word;
}
@media (max-width: 768px) {
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* コンテナ幅 */
  }
  body.page-template-page-contact .contact-page .container, body.page-template-page-contact-php .contact-page .container, body.page-template-page-contact-confirm .contact-page .container, body.page-template-page-contact-confirm-php .contact-page .container, body.page-template-page-contact-thanks .contact-page .container, body.page-template-page-contact-thanks-php .contact-page .container {
    max-width: 100%;
    padding: 0 16px;
  }
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* フォーム本体 */
  }
  body.page-template-page-contact .wpcf7, body.page-template-page-contact-php .wpcf7, body.page-template-page-contact-confirm .wpcf7, body.page-template-page-contact-confirm-php .wpcf7, body.page-template-page-contact-thanks .wpcf7, body.page-template-page-contact-thanks-php .wpcf7 {
    padding: 32px 16px 40px;
    border-radius: 12px;
  }
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* セクション見出し */
  }
  body.page-template-page-contact .contact-page .section-head, body.page-template-page-contact-php .contact-page .section-head, body.page-template-page-contact-confirm .contact-page .section-head, body.page-template-page-contact-confirm-php .contact-page .section-head, body.page-template-page-contact-thanks .contact-page .section-head, body.page-template-page-contact-thanks-php .contact-page .section-head {
    margin-bottom: 32px;
    padding: 30px 12px;
  }
  body.page-template-page-contact .contact-page .contact-lead, body.page-template-page-contact-php .contact-page .contact-lead, body.page-template-page-contact-confirm .contact-page .contact-lead, body.page-template-page-contact-confirm-php .contact-page .contact-lead, body.page-template-page-contact-thanks .contact-page .contact-lead, body.page-template-page-contact-thanks-php .contact-page .contact-lead {
    font-size: 12px;
  }
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* フィールド間隔 */
  }
  body.page-template-page-contact .cf7-field, body.page-template-page-contact-php .cf7-field, body.page-template-page-contact-confirm .cf7-field, body.page-template-page-contact-confirm-php .cf7-field, body.page-template-page-contact-thanks .cf7-field, body.page-template-page-contact-thanks-php .cf7-field {
    margin-bottom: 22px;
  }
  body.page-template-page-contact .cf7-field.field-box, body.page-template-page-contact-php .cf7-field.field-box, body.page-template-page-contact-confirm .cf7-field.field-box, body.page-template-page-contact-confirm-php .cf7-field.field-box, body.page-template-page-contact-thanks .cf7-field.field-box, body.page-template-page-contact-thanks-php .cf7-field.field-box {
    margin-top: 38px !important;
  }
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* ラベル：折り返しOKに */
  }
  body.page-template-page-contact .cf7-field label, body.page-template-page-contact-php .cf7-field label, body.page-template-page-contact-confirm .cf7-field label, body.page-template-page-contact-confirm-php .cf7-field label, body.page-template-page-contact-thanks .cf7-field label, body.page-template-page-contact-thanks-php .cf7-field label {
    flex-wrap: wrap;
    margin-left: 0;
    gap: 6px;
    font-size: 13px;
  }
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* 必須バッジ */
  }
  body.page-template-page-contact .cf7-required, body.page-template-page-contact-php .cf7-required, body.page-template-page-contact-confirm .cf7-required, body.page-template-page-contact-confirm-php .cf7-required, body.page-template-page-contact-thanks .cf7-required, body.page-template-page-contact-thanks-php .cf7-required {
    font-size: 10px;
    padding: 2px 5px;
  }
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* 入力 */
  }
  body.page-template-page-contact .wpcf7 input[type=text],
  body.page-template-page-contact .wpcf7 input[type=email],
  body.page-template-page-contact .wpcf7 select,
  body.page-template-page-contact .wpcf7 textarea, body.page-template-page-contact-php .wpcf7 input[type=text],
  body.page-template-page-contact-php .wpcf7 input[type=email],
  body.page-template-page-contact-php .wpcf7 select,
  body.page-template-page-contact-php .wpcf7 textarea, body.page-template-page-contact-confirm .wpcf7 input[type=text],
  body.page-template-page-contact-confirm .wpcf7 input[type=email],
  body.page-template-page-contact-confirm .wpcf7 select,
  body.page-template-page-contact-confirm .wpcf7 textarea, body.page-template-page-contact-confirm-php .wpcf7 input[type=text],
  body.page-template-page-contact-confirm-php .wpcf7 input[type=email],
  body.page-template-page-contact-confirm-php .wpcf7 select,
  body.page-template-page-contact-confirm-php .wpcf7 textarea, body.page-template-page-contact-thanks .wpcf7 input[type=text],
  body.page-template-page-contact-thanks .wpcf7 input[type=email],
  body.page-template-page-contact-thanks .wpcf7 select,
  body.page-template-page-contact-thanks .wpcf7 textarea, body.page-template-page-contact-thanks-php .wpcf7 input[type=text],
  body.page-template-page-contact-thanks-php .wpcf7 input[type=email],
  body.page-template-page-contact-thanks-php .wpcf7 select,
  body.page-template-page-contact-thanks-php .wpcf7 textarea {
    height: 44px;
    font-size: 14px;
  }
  body.page-template-page-contact .wpcf7 textarea, body.page-template-page-contact-php .wpcf7 textarea, body.page-template-page-contact-confirm .wpcf7 textarea, body.page-template-page-contact-confirm-php .wpcf7 textarea, body.page-template-page-contact-thanks .wpcf7 textarea, body.page-template-page-contact-thanks-php .wpcf7 textarea {
    min-height: 140px;
  }
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* ラジオ */
  }
  body.page-template-page-contact .wpcf7 .wpcf7-list-item, body.page-template-page-contact-php .wpcf7 .wpcf7-list-item, body.page-template-page-contact-confirm .wpcf7 .wpcf7-list-item, body.page-template-page-contact-confirm-php .wpcf7 .wpcf7-list-item, body.page-template-page-contact-thanks .wpcf7 .wpcf7-list-item, body.page-template-page-contact-thanks-php .wpcf7 .wpcf7-list-item {
    margin-bottom: 8px;
  }
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* プライバシーエリア */
  }
  body.page-template-page-contact .cf7-submit-area, body.page-template-page-contact-php .cf7-submit-area, body.page-template-page-contact-confirm .cf7-submit-area, body.page-template-page-contact-confirm-php .cf7-submit-area, body.page-template-page-contact-thanks .cf7-submit-area, body.page-template-page-contact-thanks-php .cf7-submit-area {
    margin-top: 40px;
    padding: 24px 16px;
    min-height: auto;
  }
  body.page-template-page-contact .cf7-submit-area .cf7-privacy, body.page-template-page-contact-php .cf7-submit-area .cf7-privacy, body.page-template-page-contact-confirm .cf7-submit-area .cf7-privacy, body.page-template-page-contact-confirm-php .cf7-submit-area .cf7-privacy, body.page-template-page-contact-thanks .cf7-submit-area .cf7-privacy, body.page-template-page-contact-thanks-php .cf7-submit-area .cf7-privacy {
    justify-content: center;
    margin-top: 10px;
  }
  body.page-template-page-contact .cf7-privacy-label, body.page-template-page-contact-php .cf7-privacy-label, body.page-template-page-contact-confirm .cf7-privacy-label, body.page-template-page-contact-confirm-php .cf7-privacy-label, body.page-template-page-contact-thanks .cf7-privacy-label, body.page-template-page-contact-thanks-php .cf7-privacy-label {
    justify-content: flex-start;
    font-size: 12px;
    text-align: left;
  }
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* チェックボックスと文言 */
  }
  body.page-template-page-contact .cf7-submit-area .wpcf7-list-item > label, body.page-template-page-contact-php .cf7-submit-area .wpcf7-list-item > label, body.page-template-page-contact-confirm .cf7-submit-area .wpcf7-list-item > label, body.page-template-page-contact-confirm-php .cf7-submit-area .wpcf7-list-item > label, body.page-template-page-contact-thanks .cf7-submit-area .wpcf7-list-item > label, body.page-template-page-contact-thanks-php .cf7-submit-area .wpcf7-list-item > label {
    justify-content: flex-start;
    gap: 8px;
  }
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* ボタン */
  }
  body.page-template-page-contact .cf7-submit p, body.page-template-page-contact-php .cf7-submit p, body.page-template-page-contact-confirm .cf7-submit p, body.page-template-page-contact-confirm-php .cf7-submit p, body.page-template-page-contact-thanks .cf7-submit p, body.page-template-page-contact-thanks-php .cf7-submit p {
    flex-direction: column;
    gap: 0px;
  }
  body.page-template-page-contact .cf7-submit input[type=submit],
  body.page-template-page-contact .cf7-submit input[type=button], body.page-template-page-contact-php .cf7-submit input[type=submit],
  body.page-template-page-contact-php .cf7-submit input[type=button], body.page-template-page-contact-confirm .cf7-submit input[type=submit],
  body.page-template-page-contact-confirm .cf7-submit input[type=button], body.page-template-page-contact-confirm-php .cf7-submit input[type=submit],
  body.page-template-page-contact-confirm-php .cf7-submit input[type=button], body.page-template-page-contact-thanks .cf7-submit input[type=submit],
  body.page-template-page-contact-thanks .cf7-submit input[type=button], body.page-template-page-contact-thanks-php .cf7-submit input[type=submit],
  body.page-template-page-contact-thanks-php .cf7-submit input[type=button] {
    width: 80%;
    height: 56px;
    font-size: 0.9rem;
    margin-right: 0;
    margin-bottom: 0;
  }
  body.page-template-page-contact .cf7-submit,
  body.page-template-page-contact .cf7-confirm-btns, body.page-template-page-contact-php .cf7-submit,
  body.page-template-page-contact-php .cf7-confirm-btns, body.page-template-page-contact-confirm .cf7-submit,
  body.page-template-page-contact-confirm .cf7-confirm-btns, body.page-template-page-contact-confirm-php .cf7-submit,
  body.page-template-page-contact-confirm-php .cf7-confirm-btns, body.page-template-page-contact-thanks .cf7-submit,
  body.page-template-page-contact-thanks .cf7-confirm-btns, body.page-template-page-contact-thanks-php .cf7-submit,
  body.page-template-page-contact-thanks-php .cf7-confirm-btns {
    margin-top: 0px;
  }
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* 確認画面 */
  }
  body.page-template-page-contact .cf7-confirm, body.page-template-page-contact-php .cf7-confirm, body.page-template-page-contact-confirm .cf7-confirm, body.page-template-page-contact-confirm-php .cf7-confirm, body.page-template-page-contact-thanks .cf7-confirm, body.page-template-page-contact-thanks-php .cf7-confirm {
    padding-top: 0;
  }
  body.page-template-page-contact .cf7-confirm-list, body.page-template-page-contact-php .cf7-confirm-list, body.page-template-page-contact-confirm .cf7-confirm-list, body.page-template-page-contact-confirm-php .cf7-confirm-list, body.page-template-page-contact-thanks .cf7-confirm-list, body.page-template-page-contact-thanks-php .cf7-confirm-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  body.page-template-page-contact .cf7-confirm-list dt, body.page-template-page-contact-php .cf7-confirm-list dt, body.page-template-page-contact-confirm .cf7-confirm-list dt, body.page-template-page-contact-confirm-php .cf7-confirm-list dt, body.page-template-page-contact-thanks .cf7-confirm-list dt, body.page-template-page-contact-thanks-php .cf7-confirm-list dt {
    font-size: 13px;
    margin-top: 8px;
  }
  body.page-template-page-contact .cf7-confirm-list dd, body.page-template-page-contact-php .cf7-confirm-list dd, body.page-template-page-contact-confirm .cf7-confirm-list dd, body.page-template-page-contact-confirm-php .cf7-confirm-list dd, body.page-template-page-contact-thanks .cf7-confirm-list dd, body.page-template-page-contact-thanks-php .cf7-confirm-list dd {
    font-size: 13px;
    padding: 10px 12px;
  }
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* サンクス */
  }
  body.page-template-page-contact .thanks-page, body.page-template-page-contact-php .thanks-page, body.page-template-page-contact-confirm .thanks-page, body.page-template-page-contact-confirm-php .thanks-page, body.page-template-page-contact-thanks .thanks-page, body.page-template-page-contact-thanks-php .thanks-page {
    padding: 80px 16px;
  }
  body.page-template-page-contact .thanks-title, body.page-template-page-contact-php .thanks-title, body.page-template-page-contact-confirm .thanks-title, body.page-template-page-contact-confirm-php .thanks-title, body.page-template-page-contact-thanks .thanks-title, body.page-template-page-contact-thanks-php .thanks-title {
    font-size: 32px;
  }
  body.page-template-page-contact .thanks-text, body.page-template-page-contact-php .thanks-text, body.page-template-page-contact-confirm .thanks-text, body.page-template-page-contact-confirm-php .thanks-text, body.page-template-page-contact-thanks .thanks-text, body.page-template-page-contact-thanks-php .thanks-text {
    font-size: 13px;
  }
}
body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
  /* =========================
     予算（radio）SP用
  ========================= */
}
@media (max-width: 768px) {
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* ラジオ全体 */
  }
  body.page-template-page-contact .wpcf7-form-control-wrap[data-name=budget] .wpcf7-radio, body.page-template-page-contact-php .wpcf7-form-control-wrap[data-name=budget] .wpcf7-radio, body.page-template-page-contact-confirm .wpcf7-form-control-wrap[data-name=budget] .wpcf7-radio, body.page-template-page-contact-confirm-php .wpcf7-form-control-wrap[data-name=budget] .wpcf7-radio, body.page-template-page-contact-thanks .wpcf7-form-control-wrap[data-name=budget] .wpcf7-radio, body.page-template-page-contact-thanks-php .wpcf7-form-control-wrap[data-name=budget] .wpcf7-radio {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* 各選択肢 */
  }
  body.page-template-page-contact .wpcf7-form-control-wrap[data-name=budget] .wpcf7-list-item, body.page-template-page-contact-php .wpcf7-form-control-wrap[data-name=budget] .wpcf7-list-item, body.page-template-page-contact-confirm .wpcf7-form-control-wrap[data-name=budget] .wpcf7-list-item, body.page-template-page-contact-confirm-php .wpcf7-form-control-wrap[data-name=budget] .wpcf7-list-item, body.page-template-page-contact-thanks .wpcf7-form-control-wrap[data-name=budget] .wpcf7-list-item, body.page-template-page-contact-thanks-php .wpcf7-form-control-wrap[data-name=budget] .wpcf7-list-item {
    margin: 0;
  }
  body.page-template-page-contact .wpcf7-form-control-wrap[data-name=budget] label, body.page-template-page-contact-php .wpcf7-form-control-wrap[data-name=budget] label, body.page-template-page-contact-confirm .wpcf7-form-control-wrap[data-name=budget] label, body.page-template-page-contact-confirm-php .wpcf7-form-control-wrap[data-name=budget] label, body.page-template-page-contact-thanks .wpcf7-form-control-wrap[data-name=budget] label, body.page-template-page-contact-thanks-php .wpcf7-form-control-wrap[data-name=budget] label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.4;
    transition: all 0.2s ease;
  }
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* デフォルトのradioを非表示 */
  }
  body.page-template-page-contact .wpcf7-form-control-wrap[data-name=budget] input[type=radio], body.page-template-page-contact-php .wpcf7-form-control-wrap[data-name=budget] input[type=radio], body.page-template-page-contact-confirm .wpcf7-form-control-wrap[data-name=budget] input[type=radio], body.page-template-page-contact-confirm-php .wpcf7-form-control-wrap[data-name=budget] input[type=radio], body.page-template-page-contact-thanks .wpcf7-form-control-wrap[data-name=budget] input[type=radio], body.page-template-page-contact-thanks-php .wpcf7-form-control-wrap[data-name=budget] input[type=radio] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #999;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
  }
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* 選択時の丸 */
  }
  body.page-template-page-contact .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked, body.page-template-page-contact-php .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked, body.page-template-page-contact-confirm .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked, body.page-template-page-contact-confirm-php .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked, body.page-template-page-contact-thanks .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked, body.page-template-page-contact-thanks-php .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked {
    border-color: #000;
  }
  body.page-template-page-contact .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked::after, body.page-template-page-contact-php .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked::after, body.page-template-page-contact-confirm .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked::after, body.page-template-page-contact-confirm-php .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked::after, body.page-template-page-contact-thanks .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked::after, body.page-template-page-contact-thanks-php .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #000;
    border-radius: 50%;
  }
  body.page-template-page-contact, body.page-template-page-contact-php, body.page-template-page-contact-confirm, body.page-template-page-contact-confirm-php, body.page-template-page-contact-thanks, body.page-template-page-contact-thanks-php {
    /* 選択時：枠＋背景 */
  }
  body.page-template-page-contact .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked + .wpcf7-list-item-label, body.page-template-page-contact-php .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked + .wpcf7-list-item-label, body.page-template-page-contact-confirm .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked + .wpcf7-list-item-label, body.page-template-page-contact-confirm-php .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked + .wpcf7-list-item-label, body.page-template-page-contact-thanks .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked + .wpcf7-list-item-label, body.page-template-page-contact-thanks-php .wpcf7-form-control-wrap[data-name=budget] input[type=radio]:checked + .wpcf7-list-item-label {
    font-weight: 600;
  }
  body.page-template-page-contact .wpcf7-form-control-wrap[data-name=budget] label:has(input[type=radio]:checked), body.page-template-page-contact-php .wpcf7-form-control-wrap[data-name=budget] label:has(input[type=radio]:checked), body.page-template-page-contact-confirm .wpcf7-form-control-wrap[data-name=budget] label:has(input[type=radio]:checked), body.page-template-page-contact-confirm-php .wpcf7-form-control-wrap[data-name=budget] label:has(input[type=radio]:checked), body.page-template-page-contact-thanks .wpcf7-form-control-wrap[data-name=budget] label:has(input[type=radio]:checked), body.page-template-page-contact-thanks-php .wpcf7-form-control-wrap[data-name=budget] label:has(input[type=radio]:checked) {
    border-color: #000;
    background: #f7f7f7;
  }
}

.news-archive__inner > .container {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  min-height: 50vh;
}

/* サイドバー */
.news-archive__sidebar {
  width: 330px;
  border-radius: 16px;
  overflow: hidden;
}

.news-sidebar__title {
  background: url("../images/top/bg-orange-pattern.svg");
  color: #fff;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 700;
}

.news-sidebar__list {
  background: #f8f6f2;
  padding: 20px;
}

.news-sidebar__list li {
  margin-bottom: 16px;
}

.news-sidebar__list li:last-child {
  margin-bottom: 0;
}

.news-sidebar__list a {
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-sidebar__list li a:hover {
  color: var(--color-main);
}

/* 一覧 */
.news-archive__inner {
  position: relative;
  padding: 0 0 18% 0;
  overflow: visible;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-archive__inner .news-archive-card {
  display: flex;
  gap: 24px;
  align-items: center;
}

.news-archive__inner .news-archive-card:hover {
  opacity: 0.8;
}

.news-archive__inner .news-archive-card__thumb {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 12px;
}

.news-archive__inner .news-archive-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-archive__inner .news-archive-card__badge {
  font-family: var(--font-tag);
  padding: 6px 10px;
  width: 30%;
  min-width: 100px;
  text-align: center;
  border: 1px solid var(--color-main);
  border-radius: 999px;
  color: var(--color-main);
  padding: 3px 10px 0px 10px;
  font-size: 0.875rem;
  line-height: 1;
}

.news-archive__inner .news-archive-card__title {
  font-size: 16px;
  font-weight: 700;
}

.news-archive__inner .news-archive-card__date {
  font-size: 12px;
  color: #999;
}

/* ページネーション */
.pagination {
  margin: 48px 0;
  text-align: start;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  text-align: center;
  padding: 8px 12px;
  border-radius: 999px;
  width: 45px;
}

.pagination .current {
  background: #f47a20;
  color: #fff;
}

.news-archive__inner::before {
  background-image: url("../images/top/wave-beige-white.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 7/1;
  position: absolute;
  left: 0px;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

/* 詳細ページ */
.news-archive__content {
  width: 90%;
}

.news-single__thumb > img {
  width: 100%;
}

.news-single__header {
  margin-bottom: 20px;
}

.news-single__badge {
  font-family: var(--font-tag);
  padding: 6px 10px;
  width: 30%;
  min-width: 100px;
  text-align: center;
  border: 1px solid var(--color-main);
  border-radius: 999px;
  color: var(--color-main);
  padding: 3px 10px 0px 10px;
  font-size: 0.875rem;
  line-height: 1;
}

.news-single__content {
  margin-top: 48px;
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
}

.news-single__content h2 {
  position: relative;
  padding-left: 16px;
  margin: 56px 0 24px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
}

.news-single__content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 4px;
  height: 1.2em;
  background: var(--color-main);
  border-radius: 2px;
}

.news-single__content h3 {
  margin: 48px 0 20px;
  padding-bottom: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  border-bottom: 1px solid var(--color-main);
}

.news-single__content p {
  margin-bottom: 1.6em;
}

.news-single__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 32px auto;
  border-radius: 16px;
}

.news-single__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 32px auto;
  border-radius: 16px;
}

.news-single__content ul {
  padding-left: 1.2em;
  margin: 24px 0;
}

.news-single__content li {
  margin-bottom: 0.8em;
}

.news-single__back {
  display: flex;
  justify-content: center;
  padding: 60px 70px;
}

.news-single__back > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(320px, 78vw);
  height: 64px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-main);
  border: 2px solid var(--color-main);
  font-weight: 400;
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.news-single__back > a:hover {
  background: var(--color-main);
  color: #fff;
  box-shadow: 0 14px 30px rgba(233, 92, 11, 0.35);
}

.news-single__back > a:active {
  box-shadow: 0 8px 18px rgba(233, 92, 11, 0.25);
}

@media (max-width: 767px) {
  .section-header__breadcrumb {
    width: 90%;
    text-align: end;
  }
  .news-single__back {
    padding: 40px 0px 40px 0px;
  }
  .news-single__badge {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
  .news-single__content {
    margin-top: 32px;
    font-size: 0.95rem;
  }
  .news-single__content h2 {
    font-size: 1.125rem;
  }
  .news-single__content h3 {
    font-size: 1rem;
  }
  .news-single__content .wp-block-columns {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  /* 全体レイアウト */
  .news-archive__inner {
    margin-top: 30px;
  }
  .news-archive__inner > .container {
    flex-direction: column-reverse;
    gap: 32px;
    min-height: auto;
  }
  /* サイドバー */
  .news-archive__sidebar {
    width: 90%;
    margin: 0 auto;
  }
  .news-sidebar__title {
    font-size: 1rem;
    padding: 14px 16px;
  }
  .news-sidebar__list {
    padding: 16px;
  }
  .news-sidebar__list li {
    margin-bottom: 12px;
  }
  .news-sidebar__list a {
    font-size: 0.95rem;
  }
  /* 一覧 */
  .news-archive__inner {
    padding-bottom: 120px;
    /* 波背景分 */
  }
  .news-list {
    gap: 20px;
  }
  /* カードを縦積み */
  .news-archive__inner .news-archive-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .news-archive__inner .news-archive-card__thumb {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 3/2;
  }
  .news-archive__inner .news-archive-card__badge {
    font-size: 0.75rem;
    min-width: auto;
    padding: 4px 10px;
  }
  .news-archive__inner .news-archive-card__title {
    font-size: 1rem;
    margin-top: 10px;
    line-height: 1.5;
  }
  .news-archive__inner .news-archive-card__date {
    font-size: 0.75rem;
  }
  .news-archive__content {
    margin: 0 auto;
  }
  /* ページネーション */
  .pagination {
    margin: 32px 0;
    text-align: center;
  }
  .pagination .page-numbers {
    width: 40px;
    padding: 6px 0;
    font-size: 0.875rem;
  }
  /* 波背景（SP用） */
  .news-archive__inner::before {
    aspect-ratio: 375/80;
    background-size: cover;
  }
  .news-archive .section > .container {
    padding: 0 !important;
  }
}
.columns {
  padding: 56px 0 300px;
  position: relative;
}

@media (max-width: 768px) {
  .columns {
    padding: 30px 0 70px;
  }
}
.columns__inner {
  margin: 0 clamp(28.5px, -20.268px + 13.005vw, 167px);
}

.columns::before {
  background-image: url("../images/top/wave-beige-white.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 7/1;
  position: absolute;
  left: 0px;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.columns-filter {
  margin: 0 0 53px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.columns-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 768px) {
  .columns-filter__list {
    gap: 8px;
  }
}
.columns-filter__btn {
  padding: 15px 30px;
  border-radius: 48px;
  border: 0.96px solid var(--color-text);
  color: var(--color-text);
  background-color: transparent;
  cursor: pointer;
  transition: border 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.columns-filter__btn.btn-all {
  padding: 16px 40px;
}

.columns-filter__btn:hover {
  background-color: var(--color-main);
  color: var(--color-sub);
  border: 0.96px solid var(--color-main);
}

.columns-filter__btn.is-active {
  background-color: var(--color-main);
  color: var(--color-sub);
  border: 0.96px solid var(--color-main);
}

a.columns-filter__btn {
  display: inline-block;
  text-decoration: none;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .columns-filter {
    gap: 8px;
    margin: 0 0 30px;
    font-size: 0.75rem;
    line-height: 1;
  }
  .columns-filter__btn {
    padding: 6px 15px;
    border-radius: 15px;
  }
  .columns-filter__btn.btn-all {
    padding: 6px 20px;
  }
}
.columns-grid {
  display: grid;
  justify-content: center;
  gap: 60px 40px;
}

@media (min-width: 1100px) {
  .columns-grid {
    grid-template-columns: repeat(auto-fill, minmax(clamp(21rem, 0rem + 23.333vw, 26.25rem), 1fr));
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .columns-grid {
    grid-template-columns: repeat(2, minmax(308px, 420px));
  }
}
@media (max-width: 768px) {
  .columns-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.column-card {
  width: 100%;
}

@media (max-width: 768px) {
  .column-card {
    max-width: 100%;
  }
}
.column-card__link {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.column-card__link:hover {
  opacity: 0.7;
}

.column-card__media {
  width: 100%;
  aspect-ratio: 768/403;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 11px;
  position: relative;
}

@media (max-width: 768px) {
  .column-card__media {
    max-width: 100%;
  }
}
.column-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.column-card__meta {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}

.column-card__date {
  display: inline-block;
  font-size: clamp(0.75rem, 0.684rem + 0.282vw, 0.938rem);
  color: #8D8D8D;
  line-height: 1.2;
  font-weight: 500;
}

.column-card__tags {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.column-card__tag {
  display: flex;
  align-items: center;
  padding: 5.5px 9px;
  border-radius: 30px;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
}

.column-card__title {
  font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
}

.pager {
  margin: 60px 0 0;
}

.pager__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  z-index: 30;
}

.pager__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-text);
  line-height: 1;
  padding: 6px 2px;
}

.pager__link:hover {
  opacity: 0.7;
}

.pager__link.is-current {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-main);
  color: var(--color-sub);
  padding: 0;
  margin-right: -20px;
  pointer-events: none;
}

.pager__ellipsis {
  color: var(--color-text);
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 768px) {
  .pager__list {
    gap: 20px;
  }
  .pager__link {
    font-size: 0.875rem;
  }
  .pager__link.is-current {
    width: 40px;
    height: 40px;
    margin-right: 0;
  }
}
/* Page scope: body.single-post */
@media (max-width: 768px) {
  body.single-post .column-single .section-header__breadcrumb {
    width: 90%;
    text-align: end;
    bottom: -6%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    word-break: auto-phrase;
    line-break: strict;
  }
  body.single-post .column-single .section-header__breadcrumb span {
    display: inline;
  }
}
body.single-post .column-single__inner {
  padding: 0 clamp(28.5px, -72.732px + 26.995vw, 316px) clamp(70px, 24.225px + 12.207vw, 200px);
  position: relative;
  margin-top: -90px;
}
@media (max-width: 768px) {
  body.single-post .column-single__inner {
    margin-top: 0;
  }
}
body.single-post .column-single__inner::before {
  background-image: url("../images/top/wave-beige-white.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 7/1;
  position: absolute;
  left: 0px;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}
body.single-post .column-article__header {
  margin-top: 96px;
}
@media (max-width: 768px) {
  body.single-post .column-article__header {
    margin-top: 30px;
  }
}
body.single-post {
  /* SIMPLE BLOG DESIGN 表示テストのため、目次を除く column-article 内のスタイルを一時停止
  .column-article__meta {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 12px;
  }
   */
}
body.single-post .column-article__category {
  display: inline-block;
  padding: 6px 17px;
  border-radius: 40px;
  background-color: var(--color-main);
  color: var(--color-sub);
  border: 1px solid var(--color-main);
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
}
@media (max-width: 768px) {
  body.single-post .column-article__category {
    font-size: 0.75rem;
    min-width: auto;
    padding: 4px 10px;
  }
}
body.single-post {
  /*
  .column-article__title {
      font-size: clamp(1.375rem, 1.155rem + 0.939vw, 2rem);
      font-weight: 700;
      line-height: 1.2;
  }

  .column-article__date {
      font-size: 0.9rem;
      font-weight: 500;
      line-height: 1.2;
      color: #8D8D8D;
  }
  */
}
body.single-post .column-article__thumbnail {
  width: 100%;
  aspect-ratio: 800/381;
  height: auto;
  margin: clamp(1.25rem, 0.964rem + 1.221vw, 2.063rem) 0 27px;
  overflow: hidden;
}
body.single-post .column-article__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body.single-post {
  /* 
  .column-article__lead {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.6;
      margin-bottom: 39px;
  }
  */
  /* .column-toc,
  #ez-toc-container {
      width: 100%;
      border-top: 8px solid var(--color-main);
      box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
      margin: clamp(25px, 20.070px + 1.315vw, 39px) 0 clamp(48px, 37.437px + 2.817vw, 78px);
      padding: clamp(20px, 17.183px + 0.751vw, 28px) clamp(20px, 10.845px + 2.441vw, 46px) clamp(28px, 20.958px + 1.878vw, 48px);
      overflow-wrap: anywhere;
      word-break: break-word;
  }

  .column-toc__title,
  #ez-toc-container .ez-toc-title-container {
      text-align: center;
      font-size: clamp(1.125rem, 0.993rem + 0.563vw, 1.5rem);
      font-family: var(--font-subtitle);
      font-weight: 400;
      line-height: 1.5;
      color: var(--color-main);
      margin-bottom: clamp(16px, 11.775px + 1.127vw, 28px);
  }

  #ez-toc-container .ez-toc-title-toggle {
      display: none;
  }

  .column-toc__list,
  #ez-toc-container .ez-toc-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
  }

  .column-toc__item,
  #ez-toc-container .ez-toc-heading-level-2 {
      display: block;
  }

  .column-toc__main,
  #ez-toc-container .ez-toc-heading-level-2>.ez-toc-link {
      position: relative;
      display: inline-block;
      padding-left: 21px;
      font-size: clamp(1rem, 0.956rem + 0.188vw, 1.125rem);
      font-weight: 700;
      line-height: 1.6;
      transition: color .3s ease-in-out;
  }

  .column-toc__main::before,
  #ez-toc-container .ez-toc-heading-level-2>.ez-toc-link::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 6px;
      height: clamp(25px, 23.944px + 0.282vw, 28px);
      background-color: var(--color-main);
  }

  .column-toc__sublist,
  #ez-toc-container .ez-toc-list-level-3 {
      margin-top: 10px;
      margin-left: 13px;
      display: flex;
      flex-direction: column;
      gap: 5px;
  }

  .column-toc__subitem a,
  #ez-toc-container .ez-toc-heading-level-3>.ez-toc-link {
      position: relative;
      display: inline-block;
      padding-left: 22px;
      font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
      font-weight: 400;
      line-height: 1.6;
      transition: color .3s ease-in-out;
  }

  .column-toc__subitem a::before,
  #ez-toc-container .ez-toc-heading-level-3>.ez-toc-link::before {
      content: "";
      position: absolute;
      top: 0.4em;
      left: 0;
      width: 11px;
      height: 11px;
      border-top: 1px solid var(--color-main);
      border-right: 1px solid var(--color-main);
      transform: rotate(45deg);
  }

  #ez-toc-container .ez-toc-link:hover {
      color: var(--color-main);
      text-decoration: none;
  } */
  /* SIMPLE BLOG DESIGN 表示テストのため、目次を除く column-article 内のスタイルを一時停止
  .column-article__body {
      overflow-wrap: anywhere;
      word-break: break-word;
  }

  .column-article__body a {
      color: var(--color-main);
      text-decoration: underline;
  }

  .column-article__body a:hover {
      opacity: 0.7;
      text-decoration: underline;
  }

  .column-article__body strong,
  .column-article__body b {
      font-weight: 700;
  }

  .column-article__body ul:not(.column-toc *, #ez-toc-container *),
  .column-article__body ol:not(.column-toc *, #ez-toc-container *) {
      padding-left: 1.5em;
      margin-bottom: clamp(35px, 31.127px + 1.033vw, 46px);
  }

  .column-article__body ul:not(.column-toc *, #ez-toc-container *) {
      list-style: disc;
  }

  .column-article__body ol:not(.column-toc *, #ez-toc-container *) {
      list-style: decimal;
  }

  .column-article__body ul:not(.column-toc *, #ez-toc-container *) li,
  .column-article__body ol:not(.column-toc *, #ez-toc-container *) li {
      margin-bottom: 0.5em;
  }

  .column-article__body h2,
  h2>.wp-block-heading {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: clamp(1.3rem, 1.142rem + 0.676vw, 1.75rem);
      font-weight: 700;
      line-height: 1.5;
      margin-bottom: clamp(23px, 18.423px + 1.221vw, 36px);
  }

  .column-article__body h2::before,
  h2>.wp-block-heading::before {
      content: "";
      display: inline-block;
      width: 10px;
      height: clamp(38px, 36.592px + 0.376vw, 42px);
      background-color: var(--color-main);
      flex-shrink: 0;
  }

  .column-article__body h3,
  h3>.wp-block-heading {
      font-size: clamp(1.125rem, 0.993rem + 0.563vw, 1.5rem);
      font-weight: 700;
      line-height: 1.2;
      padding-bottom: clamp(15px, 12.535px + 0.657vw, 22px);
      margin-bottom: clamp(15px, 12.535px + 0.657vw, 22px);
      border-bottom: 1px solid var(--color-main);
  }

  .column-article__body p {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.6;
      margin-bottom: clamp(35px, 31.127px + 1.033vw, 46px);
  }

  @media (max-width: 768px) {
      .column-article__body p {
          line-height: 2;
      }
  }

  .column-article__body img {
      width: 100%;
      aspect-ratio: 800 / 381;
      height: auto;
      object-fit: cover;
      overflow: hidden;
      margin-bottom: clamp(35px, 31.127px + 1.033vw, 46px);
  }

  .wp-block-media-text {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(15px, 2.676px + 3.286vw, 50px);
      margin-bottom: clamp(35px, 31.127px + 1.033vw, 46px);
      justify-content: center;
  }


  .column-single .wp-block-media-text__content {
      padding: 0;
  }

  .column-single .wp-block-media-text__content p {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.6;
      margin-bottom: 0;
      text-align: left;
  }

  .column-single .wp-block-media-text__media {
      aspect-ratio: 384 / 265;
      width: 100%;
      height: auto;
      overflow: hidden;
  }

  .column-single .wp-block-media-text__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
  }
  */
}
body.single-post .columns-more {
  display: flex;
  justify-content: center;
  padding: 60px 70px;
}
@media (max-width: 768px) {
  body.single-post .columns-more {
    padding: 40px 0px 40px 0px;
  }
}
body.single-post {
  /* ------------------------------------------------------------------------*/
  /* 目次
  ---------------------------------------------------------------------------*/
}
body.single-post #ez-toc-container {
  width: 100%;
  padding: 3.5em 4.5em;
  border: none;
  margin-top: 2em;
  margin-bottom: 2em;
  overflow-wrap: anywhere;
  word-break: break-word;
}
body.single-post .ez-toc-title-container {
  text-align: center;
}
body.single-post .ez-toc-list.ez-toc-list-level-1 {
  margin-top: 2em !important;
  counter-reset: toc;
}
body.single-post .ez-toc-list.ez-toc-list-level-1 > li {
  position: relative;
  padding: 0 0 0 2em !important;
  margin-bottom: 1em !important;
}
body.single-post .ez-toc-list.ez-toc-list-level-1 > li::before {
  font-size: 1em;
  position: absolute;
  left: 0;
  display: block;
  box-sizing: content-box;
  width: 1.5em;
  height: 1.5em;
  padding: 0;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  background-color: var(--color-main);
  border-radius: 50%;
  content: counter(toc);
  counter-increment: toc;
  border: none;
  transform: scale(0.8);
  top: 0.2em;
}
body.single-post .ez-toc-page-1.ez-toc-heading-level-2 > a {
  font-size: 0.875rem !important;
  line-height: 1.75;
  font-weight: 700 !important;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}
body.single-post .ez-toc-list-level-3 {
  margin-top: 1em !important;
  margin-left: 0 !important;
}
body.single-post .ez-toc-list-level-3 > li {
  margin-bottom: 0.5em !important;
}
body.single-post .ez-toc-list-level-3 > li > a {
  font-size: 0.875rem !important;
  line-height: 1.75;
  display: flex !important;
  align-items: flex-start !important;
  font-weight: 400 !important;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}
body.single-post .ez-toc-list-level-3 > li > a::before {
  border: 5px solid transparent;
  border-left: 8px solid #555;
  content: "";
  margin-top: 0.55em;
}
@media (max-width: 768px) {
  body.single-post #ez-toc-container {
    padding: 2.5em 1.25em;
  }
}
body.single-post {
  /* ------------------------------------------------------------------------*/
  /* 本文装飾
  ---------------------------------------------------------------------------*/
  /* h2 */
}
body.single-post .column-article__body > * {
  margin: 2em 0 !important;
}
body.single-post .column-article__body h2.wp-block-heading {
  position: relative;
  padding: 0.87em 0.87em 0.87em 1.44em;
  background-color: #f8f6f2;
  overflow-wrap: anywhere;
  word-break: break-word;
}
body.single-post .column-article__body h2.wp-block-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 1.44em;
  background-color: var(--color-main);
}
body.single-post {
  /* h3 */
}
body.single-post .column-article__body h3.wp-block-heading {
  border-left: solid 5px var(--color-main);
  padding: 0.25em 0 0.5em 1em;
  border-bottom: 1px dashed var(--color-main);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Page scope: body.single-works */
@media (max-width: 768px) {
  body.single-works .work-detail .section-header__breadcrumb {
    bottom: -6%;
    width: 90%;
    text-align: end;
  }
}
body.single-works .work-single {
  padding: 0;
}
body.single-works .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
body.single-works .work__header {
  margin: 0 11.8% 38px;
}
body.single-works .work__tags {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 11px;
  font-size: 0.938rem;
}
body.single-works .work__tag {
  padding: 7px 15px;
  border-radius: 30px;
  background-color: var(--color-main);
  color: var(--color-sub);
}
@media (max-width: 767px) {
  body.single-works .work__header {
    margin: 30px 7.6% 20px;
  }
  body.single-works .work__tags {
    flex-wrap: wrap;
    gap: 10px 5px;
    margin-bottom: 10px;
    font-size: 0.75rem;
  }
  body.single-works .work__tag {
    padding: 3px 10px;
    border-radius: 13px;
  }
}
body.single-works .work__title {
  font-size: 2.25rem;
  font-family: var(--font-subtitle);
  font-weight: 500;
}
body.single-works .work__url {
  color: var(--color-main);
  font-size: 1.25rem;
  font-weight: 500;
  font-family: var(--font-subtitle);
  border-bottom: 1px solid var(--color-main);
}
@media (max-width: 768px) {
  body.single-works .work__title {
    font-size: 1.6rem;
    line-height: 1.1;
    margin-bottom: 10px;
  }
  body.single-works .work__url {
    font-size: 1rem;
    line-height: 1.1;
  }
}
body.single-works .work__hero {
  margin: 0 11.8% 56px;
}
body.single-works .mockup {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}
body.single-works .mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 768px) {
  body.single-works .work__hero {
    margin: 0 7.6% 30px;
  }
}
body.single-works .work__gallery {
  margin: 0 11.8% 86px;
}
body.single-works .gallery__item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background-color: #F6F6F6;
}
body.single-works .gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 768px) {
  body.single-works .work__gallery {
    margin: 0 7.6% 50px;
  }
}
body.single-works .work__info {
  margin: 0 11.8% 226px;
}
body.single-works .work-info__term {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}
body.single-works .work-info__term::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 42px;
  background-color: var(--color-main);
  flex-shrink: 0;
}
body.single-works .work-info__desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 56px 30px;
}
@media (max-width: 768px) {
  body.single-works .work__info {
    margin: 0 7.6% 100px;
  }
  body.single-works .work-info__term {
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  body.single-works .work-info__term::before {
    width: 7px;
    height: 33px;
  }
  body.single-works .work-info__desc {
    font-size: 1rem;
    margin: 0 0 25px 20px;
  }
}
body.single-works .works-more {
  display: flex;
  justify-content: center;
  padding: 60px 70px;
}
@media (max-width: 768px) {
  body.single-works .works-more {
    padding: 40px 0px 40px 0px;
  }
}
body.single-works .work__thumbs {
  position: relative;
  background: url("../images/top/bg-orange-pattern.svg") center/cover no-repeat;
  padding: 0 0 205px;
}
body.single-works .work__thumbs::before,
body.single-works .work__thumbs::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 7/1;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}
body.single-works .work__thumbs::before {
  top: -180px;
  background-image: url("../images/top/wave-orange.svg");
}
body.single-works .work__thumbs::after {
  bottom: -5px;
  background-image: url("../images/top/wave-beige-white.svg");
}
@media (max-width: 1280px) {
  body.single-works .work__thumbs {
    padding: 0 0 80px;
  }
  body.single-works .work__thumbs::before {
    top: -120px;
  }
  body.single-works .work__thumbs::after {
    bottom: -5px;
  }
}
@media (max-width: 840px) {
  body.single-works .work__thumbs {
    padding: 0 0 60px;
  }
  body.single-works .work__thumbs::before,
  body.single-works .work__thumbs::after {
    aspect-ratio: 5/1;
  }
  body.single-works .work__thumbs::before {
    top: -80px;
  }
  body.single-works .work__thumbs::after {
    bottom: -20px;
  }
}
@media (max-width: 768px) {
  body.single-works .work__thumbs::before {
    top: -70px;
  }
}
body.single-works .work__thumbs > * {
  position: relative;
  z-index: 2;
}
body.single-works .thumbs {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
body.single-works .thumbs__list {
  margin: 15px 0 50px;
}
body.single-works .slick-list {
  overflow: hidden;
}
body.single-works .slick-slide {
  box-sizing: border-box;
}
body.single-works .thumbs__link {
  display: flex;
  flex-direction: column;
  justify-items: flex-start;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
body.single-works .thumbs__figure {
  max-width: 340px;
  max-height: 196px;
  width: 100%;
  height: 100%;
  aspect-ratio: 340/196;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
  margin: 25px;
}
body.single-works .thumbs__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
body.single-works .thumbs__title {
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color-sub);
  text-align: left;
}
body.single-works .thumbs__nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 22px;
  position: relative;
  z-index: 50;
  padding-bottom: 60px;
}
body.single-works .thumbs__arrow {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  border: 0;
  background: var(--color-sub);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 50;
}
body.single-works .thumbs__arrow.slick-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
body.single-works .thumbs__arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  transform: rotate(-45deg);
}
body.single-works .thumbs__arrow--prev::before {
  transform: rotate(135deg);
}
body.single-works .thumbs__list.is-static {
  display: flex;
  gap: 34px;
}
body.single-works .thumbs__list.is-static[data-count="1"] .thumbs__item {
  width: 100%;
}
body.single-works .thumbs__list.is-static[data-count="2"] .thumbs__item {
  width: calc((100% - 34px) / 2);
}
body.single-works .thumbs__list.is-static[data-count="3"] .thumbs__item {
  width: calc((100% - 68px) / 3);
}
body.single-works .thumbs__item:hover .thumbs__link .thumbs__figure img {
  transform: scale(1.1);
}
@media (max-width: 1200px) {
  body.single-works .thumbs__figure {
    max-width: 280px;
    height: auto;
    aspect-ratio: 340/196;
  }
  body.single-works .thumbs__link {
    margin: 10px;
  }
}
body.single-works {
  /* SPだけ：グリッドに収まるようにする */
}
@media (max-width: 768px) {
  body.single-works .thumbs {
    padding: 0 16px;
  }
  body.single-works .thumbs__list {
    margin: 15px 0 30px;
  }
  body.single-works .thumbs__link {
    margin: 6px;
  }
  body.single-works .thumbs__figure {
    max-width: 200px;
    height: auto;
    aspect-ratio: 340/196;
    margin: 10px 16px;
  }
  body.single-works .thumbs__title {
    font-size: 0.875rem;
    line-height: 1.3;
  }
  body.single-works .slick-slide {
    box-sizing: border-box;
  }
  body.single-works .thumbs__nav {
    margin-top: 15px;
    padding-bottom: 30px;
  }
  body.single-works .thumbs__arrow {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 768px) {
  body.single-works .thumbs__list.is-sp-grid.is-static {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
  body.single-works .thumbs__list.is-sp-grid.is-static .thumbs__item {
    width: auto;
  }
}

/* Page scope: body.post-type-archive-works, body.tax-works-category */
body.post-type-archive-works #works-archive .section-header::before, body.tax-works-category #works-archive .section-header::before {
  background-image: url(../images/top/wave-orange.svg);
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 7/1;
  position: absolute;
  left: 0px;
  bottom: -1px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1100px) {
  body.post-type-archive-works #works-archive .section-header::before, body.tax-works-category #works-archive .section-header::before {
    aspect-ratio: 6/1;
  }
}
@media (max-width: 768px) {
  body.post-type-archive-works #works-archive .section-header::before, body.tax-works-category #works-archive .section-header::before {
    aspect-ratio: 5/1;
  }
}
body.post-type-archive-works .works-archive, body.tax-works-category .works-archive {
  background-image: url(../images/top/bg-orange-pattern.svg);
  padding: 2px 11.8% 220px;
  color: var(--color-sub);
  position: relative;
}
@media (max-width: 768px) {
  body.post-type-archive-works .works-archive, body.tax-works-category .works-archive {
    padding: 30px 7.6% 70px;
  }
}
body.post-type-archive-works .works-archive::before, body.tax-works-category .works-archive::before {
  background-image: url(../images/top/wave-beige-white.svg);
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 7/1;
  position: absolute;
  left: 0px;
  bottom: -5px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}
body.post-type-archive-works .works-filter, body.tax-works-category .works-filter {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0 0 52px;
  font-size: 0.938rem;
  line-height: 1.3;
}
body.post-type-archive-works .works-filter__list, body.tax-works-category .works-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.post-type-archive-works .works-filter__btn, body.tax-works-category .works-filter__btn {
  padding: 10px 30px;
  border-radius: 48px;
  border: 0.96px solid var(--color-sub);
  color: var(--color-sub);
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
body.post-type-archive-works .works-filter__btn.btn-all, body.tax-works-category .works-filter__btn.btn-all {
  padding: 10px 40px;
}
body.post-type-archive-works .works-filter__btn:hover, body.tax-works-category .works-filter__btn:hover {
  background-color: var(--color-sub);
  color: var(--color-main);
}
body.post-type-archive-works .works-filter__btn.is-active, body.tax-works-category .works-filter__btn.is-active {
  background-color: var(--color-sub);
  color: var(--color-main);
}
body.post-type-archive-works a.works-filter__btn, body.tax-works-category a.works-filter__btn {
  display: inline-block;
  text-decoration: none;
  line-height: 1.3;
}
@media (max-width: 768px) {
  body.post-type-archive-works .works-filter, body.tax-works-category .works-filter {
    gap: 8px;
    margin: 0 0 30px;
    font-size: 0.75rem;
    line-height: 1;
  }
  body.post-type-archive-works .works-filter__btn, body.tax-works-category .works-filter__btn {
    padding: 6px 15px;
    border-radius: 15px;
  }
  body.post-type-archive-works .works-filter__btn.btn-all, body.tax-works-category .works-filter__btn.btn-all {
    padding: 6px 20px;
  }
}
body.post-type-archive-works .works-archive-grid, body.tax-works-category .works-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 47px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  body.post-type-archive-works .works-archive-grid, body.tax-works-category .works-archive-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
body.post-type-archive-works .works-archive-card__link, body.tax-works-category .works-archive-card__link {
  display: block;
  max-width: 520px;
  width: 100%;
  height: auto;
  opacity: 1;
}
body.post-type-archive-works .works-archive-card__link:hover .works-archive-card__media img, body.tax-works-category .works-archive-card__link:hover .works-archive-card__media img {
  transform: scale(1.09);
}
body.post-type-archive-works .works-archive-card__media, body.tax-works-category .works-archive-card__media {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 520/300;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  body.post-type-archive-works .works-archive-card__media, body.tax-works-category .works-archive-card__media {
    border-radius: 10px;
    margin-bottom: 18px;
  }
}
body.post-type-archive-works .works-archive-card__media img, body.tax-works-category .works-archive-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
body.post-type-archive-works .works-archive-card__body, body.tax-works-category .works-archive-card__body {
  max-width: 520px;
  width: 100%;
  font-size: 0.938rem;
  font-weight: 400;
}
body.post-type-archive-works .works-archive-card__tags, body.tax-works-category .works-archive-card__tags {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px 5px;
  margin-bottom: 19px;
}
body.post-type-archive-works .works-archive-card__tag, body.tax-works-category .works-archive-card__tag {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 30px;
  background-color: var(--color-sub);
  color: var(--color-main);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 768px) {
  body.post-type-archive-works .works-archive-card__tags, body.tax-works-category .works-archive-card__tags {
    flex-wrap: wrap;
    gap: 10px 5px;
    margin-bottom: 13px;
  }
}
body.post-type-archive-works .works-archive-card__title, body.tax-works-category .works-archive-card__title {
  font-size: 1.5rem;
  font-family: var(--font-subtitle);
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 13px;
}
body.post-type-archive-works .works-archive-card__excerpt, body.tax-works-category .works-archive-card__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-family: var(--font-tag);
  line-height: 1.6;
}
@media (max-width: 768px) {
  body.post-type-archive-works .works-archive-card__title, body.tax-works-category .works-archive-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  body.post-type-archive-works .works-archive-card__excerpt, body.tax-works-category .works-archive-card__excerpt {
    -webkit-line-clamp: 2;
    line-height: 1.5;
  }
}
body.post-type-archive-works .pager-area, body.tax-works-category .pager-area {
  min-height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  body.post-type-archive-works .pager-area, body.tax-works-category .pager-area {
    min-height: 40px;
  }
}
body.post-type-archive-works .pager, body.tax-works-category .pager {
  margin: 60px 0 0;
}
body.post-type-archive-works .pager__list, body.tax-works-category .pager__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  z-index: 30;
}
body.post-type-archive-works .pager__link, body.tax-works-category .pager__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-sub);
  line-height: 1;
  padding: 6px 2px;
}
body.post-type-archive-works .pager__link:hover, body.tax-works-category .pager__link:hover {
  opacity: 0.7;
}
body.post-type-archive-works .pager__link.is-current, body.tax-works-category .pager__link.is-current {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-sub);
  color: var(--color-main);
  padding: 0;
  margin-right: -20px;
  pointer-events: none;
}
body.post-type-archive-works .pager__ellipsis, body.tax-works-category .pager__ellipsis {
  color: var(--color-sub);
  font-weight: 700;
  line-height: 1;
}
body.post-type-archive-works .section-header__breadcrumb, body.tax-works-category .section-header__breadcrumb {
  color: var(--color-sub);
}
body.post-type-archive-works .section-header__breadcrumb > a, body.tax-works-category .section-header__breadcrumb > a {
  color: var(--color-sub);
}
body.post-type-archive-works .section-header__breadcrumb > a::after, body.tax-works-category .section-header__breadcrumb > a::after {
  background-color: var(--color-sub);
}
@media (max-width: 768px) {
  body.post-type-archive-works .pager__list, body.tax-works-category .pager__list {
    gap: 20px;
  }
  body.post-type-archive-works .pager__link, body.tax-works-category .pager__link {
    font-size: 0.875rem;
  }
  body.post-type-archive-works .pager__link.is-current, body.tax-works-category .pager__link.is-current {
    width: 40px;
    height: 40px;
    margin-right: 0;
  }
}

/* Page scope: body.post-type-archive-faq, body.page-template-page-faq-php */
html {
  scroll-behavior: smooth;
}

body.post-type-archive-faq .faq-archive, body.page-template-page-faq .faq-archive, body.page-template-page-faq-php .faq-archive {
  position: relative;
  z-index: 1;
}
body.post-type-archive-faq .faq-archive .container, body.page-template-page-faq .faq-archive .container, body.page-template-page-faq-php .faq-archive .container {
  max-width: 1008px;
  width: 100%;
  margin: 0 auto;
}
body.post-type-archive-faq .faq-filter__list, body.page-template-page-faq .faq-filter__list, body.page-template-page-faq-php .faq-filter__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 7.901px + 2.16vw, 39px);
  margin: clamp(30px, 20.493px + 2.535vw, 57px) 0 0;
}
body.post-type-archive-faq .faq-filter__btn, body.page-template-page-faq .faq-filter__btn, body.page-template-page-faq-php .faq-filter__btn {
  font-size: 1rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(224px, 125.988px + 12.779vw, 310px);
  height: 62px;
  padding: 25px auto;
  text-align: center;
  border-radius: 50px;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
body.post-type-archive-faq .faq-filter__btn::after, body.page-template-page-faq .faq-filter__btn::after, body.page-template-page-faq-php .faq-filter__btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  transform: rotate(45deg);
  margin-left: 20px;
  transition: border-right 0.3s ease, border-bottom 0.3s ease;
}
body.post-type-archive-faq .faq-filter__btn:hover, body.page-template-page-faq .faq-filter__btn:hover, body.page-template-page-faq-php .faq-filter__btn:hover {
  background-color: var(--color-main);
  color: #fff;
}
body.post-type-archive-faq .faq-filter__btn:hover::after, body.page-template-page-faq .faq-filter__btn:hover::after, body.page-template-page-faq-php .faq-filter__btn:hover::after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
body.post-type-archive-faq .faq-archive > .container, body.page-template-page-faq .faq-archive > .container, body.page-template-page-faq-php .faq-archive > .container {
  padding-bottom: 268px;
}
body.post-type-archive-faq .faq-archive::after, body.page-template-page-faq .faq-archive::after, body.page-template-page-faq-php .faq-archive::after {
  background-image: url("../images/top/wave-beige-white.svg");
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 7/1;
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 5;
}
body.post-type-archive-faq .faq-block, body.page-template-page-faq .faq-block, body.page-template-page-faq-php .faq-block {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-top: 57px;
}
body.post-type-archive-faq .faq-title, body.page-template-page-faq .faq-title, body.page-template-page-faq-php .faq-title {
  position: relative;
}
body.post-type-archive-faq .faq-title h2, body.page-template-page-faq .faq-title h2, body.page-template-page-faq-php .faq-title h2 {
  font-size: clamp(20px, 18.592px + 0.376vw, 24px);
  font-weight: 700;
  margin-left: 30px;
}
body.post-type-archive-faq .faq-title::before, body.page-template-page-faq .faq-title::before, body.page-template-page-faq-php .faq-title::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 42px;
  background-color: var(--color-main);
  margin-right: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
body.post-type-archive-faq .faq-list, body.page-template-page-faq .faq-list, body.page-template-page-faq-php .faq-list {
  width: 100%;
  margin: 0 auto clamp(0px, -21.127px + 5.634vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.post-type-archive-faq .faq-question, body.page-template-page-faq .faq-question, body.page-template-page-faq-php .faq-question {
  width: 100%;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 22px;
  background: var(--color-main);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 10px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
}
body.post-type-archive-faq .faq-q, body.page-template-page-faq .faq-q, body.page-template-page-faq-php .faq-q {
  width: 46px;
  font-size: 1.6rem;
  font-family: var(--font-tag);
  border-radius: 50%;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.post-type-archive-faq .faq-text, body.page-template-page-faq .faq-text, body.page-template-page-faq-php .faq-text {
  flex: 1;
  line-height: 1.6;
}
body.post-type-archive-faq .faq-toggle, body.page-template-page-faq .faq-toggle, body.page-template-page-faq-php .faq-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  margin-left: auto;
  flex-shrink: 0;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.25);
}
body.post-type-archive-faq .faq-toggle::before, body.page-template-page-faq .faq-toggle::before, body.page-template-page-faq-php .faq-toggle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-main);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-50%, -50%) rotate(135deg);
  transition: transform 0.3s ease;
}
body.post-type-archive-faq .faq-item.is-open .faq-toggle::before, body.page-template-page-faq .faq-item.is-open .faq-toggle::before, body.page-template-page-faq-php .faq-item.is-open .faq-toggle::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
body.post-type-archive-faq .faq-question:hover .faq-toggle, body.page-template-page-faq .faq-question:hover .faq-toggle, body.page-template-page-faq-php .faq-question:hover .faq-toggle {
  filter: brightness(1.05);
}
body.post-type-archive-faq .faq-answer, body.page-template-page-faq .faq-answer, body.page-template-page-faq-php .faq-answer {
  padding: 0 22px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  border-radius: 10px;
  box-shadow: 0 0px 30px 0 rgba(0, 0, 0, 0.25);
}
body.post-type-archive-faq .faq-item.is-open .faq-answer, body.page-template-page-faq .faq-item.is-open .faq-answer, body.page-template-page-faq-php .faq-item.is-open .faq-answer {
  padding: 26px 37px 32px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}
body.post-type-archive-faq .faq-item.is-open .faq-question, body.page-template-page-faq .faq-item.is-open .faq-question, body.page-template-page-faq-php .faq-item.is-open .faq-question {
  filter: brightness(1.03);
}
@media (max-width: 1080px) {
  body.post-type-archive-faq .faq-archive .container, body.page-template-page-faq .faq-archive .container, body.page-template-page-faq-php .faq-archive .container {
    max-width: clamp(343px, -0.966px + 91.724vw, 1008px);
    padding-bottom: 180px;
  }
}
@media (max-width: 767px) {
  body.post-type-archive-faq .faq-filter__list, body.page-template-page-faq .faq-filter__list, body.page-template-page-faq-php .faq-filter__list {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }
  body.post-type-archive-faq .faq-filter__btn, body.page-template-page-faq .faq-filter__btn, body.page-template-page-faq-php .faq-filter__btn {
    width: 310px;
  }
  body.post-type-archive-faq .faq-archive, body.page-template-page-faq .faq-archive, body.page-template-page-faq-php .faq-archive {
    padding-bottom: 100px;
    padding-top: 20px;
  }
  body.post-type-archive-faq .faq-question, body.page-template-page-faq .faq-question, body.page-template-page-faq-php .faq-question {
    padding: 14px 16px;
  }
  body.post-type-archive-faq .faq-answer, body.page-template-page-faq .faq-answer, body.page-template-page-faq-php .faq-answer {
    font-size: 1rem;
  }
  body.post-type-archive-faq .faq-toggle, body.page-template-page-faq .faq-toggle, body.page-template-page-faq-php .faq-toggle {
    width: 30px;
    height: 30px;
  }
  body.post-type-archive-faq .faq-archive > .container, body.page-template-page-faq .faq-archive > .container, body.page-template-page-faq-php .faq-archive > .container {
    padding-bottom: 0;
  }
  body.post-type-archive-faq .faq-answer, body.page-template-page-faq .faq-answer, body.page-template-page-faq-php .faq-answer {
    padding: 0px;
  }
  body.post-type-archive-faq .faq-text, body.page-template-page-faq .faq-text, body.page-template-page-faq-php .faq-text {
    font-size: 1rem;
    line-height: 140%;
  }
  body.post-type-archive-faq .faq-question, body.page-template-page-faq .faq-question, body.page-template-page-faq-php .faq-question {
    gap: 10px;
    height: auto;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../js/slick/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../js/slick/fonts/slick.eot");
  src: url("../js/slick/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../js/slick/fonts/slick.woff") format("woff"), url("../js/slick/fonts/slick.ttf") format("truetype"), url("../js/slick/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}
