@charset "UTF-8";
/* ==========================================================================
   0. デザイントークン
   コンセプト: 文庫本の紙面 + ノートの余白メモ
   紙: 温かみのあるオフホワイト / インク: 濃紺寄りの黒
   差し色: 深いティール(見出し・リンク) / サブ差し色: くすんだ赤茶(強調・タグ)
   ========================================================================== */
:root {
  --color-paper: #FFF;
  --color-paper-raised: #F7F7F7;
  --color-ink: #262220;
  --color-ink-soft: #56504A;
  --color-rule: #C9BFA8;
  --color-accent: #2EB2FF;
  --color-accent-dark: #1d83be;
  --color-accent-soft: #E3EEE9;
  --color-accent2: #8C4A3B;
  --color-white: #FFF;
  --border-color: #eee;
  --font-display: "Source Serif 4", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --font-body: "IBM Plex Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;
  --fs-title: clamp(2rem, 1.4rem + 2.4vw, 3.4rem);
  --fs-lead: 1.15rem;
  --fs-base: 1.0625rem;
  --fs-small: 0.85rem;
  --fs-caption: 0.75rem;
  --bg-placeholder: #e5e5e5;
  --lh-title: 1.18;
  --lh-body: 1.85;
  --content-width: 1040px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-s: 3px;
}

html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  word-break: normal;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

hr {
  color: inherit;
  height: 0;
  overflow: visible;
}

details,
main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/* font family
====================================== */
/* colors 色管理
====================================== */
/* breakpoint ブレイクポイント
====================================== */
body {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  color: #3c3c3c;
  box-sizing: border-box;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  position: relative;
  z-index: -2;
  background-color: #fff;
  overflow-x: hidden;
}
@media screen and (min-width: 835px) {
  body {
    font-size: 16px;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  color: #333;
  text-decoration: none;
  transition: opacity 0.6s ease;
}

li {
  list-style: none;
}

.wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5%;
}
@media screen and (min-width: 835px) {
  .wrapper__pc_full {
    max-width: 100%;
  }
}

.sec-bottom {
  margin-bottom: 84px;
  margin-top: -200px;
  padding-top: 200px;
}
@media screen and (min-width: 431px) {
  .sec-bottom {
    margin-bottom: 200px;
  }
}

iframe {
  display: block;
  width: 100%;
  border: none;
  overflow: hidden;
  background-color: #f7f7f7;
}

section {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}
@media screen and (min-width: 835px) {
  section {
    padding: 80px 0;
  }
}
section.sec-top-np {
  padding-top: 0;
}
section.sec-bottom-np {
  padding-bottom: 0;
}

video {
  display: block;
  max-width: 100%;
  border: none;
  overflow: hidden;
  background-color: #f7f7f7;
}

.title-block {
  margin-bottom: 20px;
}

@media screen and (min-width: 835px) {
  .pc-none {
    display: none;
  }
}

@media screen and (max-width: 834px) {
  .sp-none {
    display: none;
  }
}

/* ==========================================================================
   1. リセット & ベース
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  /* 
  &:hover,
  &:focus-visible {
  	color: var(--color-accent2);
  }
     */
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
/* ==========================================================================
   7. サイトヘッダー(header.php)
   コンセプト: 文庫本の表紙 + 目次ナビゲーション
   ========================================================================== */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.skip-link.screen-reader-text:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  z-index: 1000;
  padding: 0.6rem 1.2rem;
  background-color: var(--color-ink);
  color: var(--color-paper-raised);
  border-radius: var(--radius-s);
  font-family: var(--font-mono);
  font-size: var(--fs-small);
}

.site-header {
  border-bottom: 1px solid var(--color-rule);
  /* background-color: var(--color-paper-raised); */
}
.site-header__inner {
  max-width: calc(var(--content-width) + 120px);
  margin-inline: auto;
  padding: 0.4rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 835px) {
  .site-header__inner {
    padding: 0 var(--gutter);
    height: 80px;
  }
}
.site-header .nav_footer {
  margin-top: 30px;
  text-align: center;
}
.site-header .nav_footer a {
  width: 80%;
  justify-content: center;
}
@media screen and (min-width: 835px) {
  .site-header .nav_footer a {
    width: 100%;
  }
}
@media screen and (min-width: 835px) {
  .site-header .nav_footer {
    margin-top: 0;
  }
}

.site-branding {
  flex-basis: 60%;
}
@media screen and (min-width: 835px) {
  .site-branding {
    flex-basis: 300px;
  }
}
.site-branding .site-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}
.site-branding .site-title a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  max-height: 80px;
}
.site-branding .site-title a:hover {
  color: var(--color-accent);
}
.site-branding .site-title .logo-symbol {
  display: inline-block;
  width: 20%;
  max-height: 80px;
  overflow: hidden;
}
.site-branding .site-title .logo-txt {
  display: inline-block;
  width: 80%;
}
.site-branding .site-description {
  margin: 0.15rem 0 0;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  font-style: italic;
  color: var(--color-ink-soft);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-s);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  color: var(--color-ink);
}
.menu-toggle__icon {
  display: block;
  width: 16px;
  height: 1px;
  background-color: currentColor;
  position: relative;
}
.menu-toggle__icon::before, .menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 1px;
  background-color: currentColor;
}
.menu-toggle__icon::before {
  top: -5px;
}
.menu-toggle__icon::after {
  top: 5px;
}
.menu-toggle:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.main-navigation {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: auto;
  /* ------------------------------------
      ハンバーガーボタン
   ------------------------------------ */
}
.main-navigation .hamburger-btn {
  position: relative;
  /* ------------------------------------
     ここを好きなサイズに変更できます
  ------------------------------------ */
  width: 20px;
  /* 幅 */
  height: 16px;
  /* 高さ */
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
}
@media screen and (min-width: 835px) {
  .main-navigation .hamburger-btn {
    display: none;
  }
}
.main-navigation .hamburger-btn__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  /* 線全体の太さ */
  background-color: #333333;
  border-radius: 2px;
  /* top と transform の変化をアニメーション化 */
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  /* 通常時（上・中・下に配置） */
}
.main-navigation .hamburger-btn__line:nth-child(1) {
  top: 0;
}
.main-navigation .hamburger-btn__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.main-navigation .hamburger-btn__line:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}
.main-navigation .hamburger-btn {
  /* 開いた時（中心 50% の位置に移動してから回転） */
}
.main-navigation .hamburger-btn.is-open .hamburger-btn__line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.main-navigation .hamburger-btn.is-open .hamburger-btn__line:nth-child(2) {
  opacity: 0;
}
.main-navigation .hamburger-btn.is-open .hamburger-btn__line:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.main-navigation {
  /* ------------------------------------
       ドロワー本体（SPはスライドイン、PCは通常表示）
    ------------------------------------ */
}
@media screen and (min-width: 835px) {
  .main-navigation__drawer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .main-navigation__drawer {
    position: fixed;
    top: 0;
    right: -100%;
    /* 初期表示は画面右外 */
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    padding: 80px 24px 24px;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 999;
    overflow-y: auto;
  }
  .main-navigation__drawer.is-open {
    right: 0;
    /* 開いたら画面内へ移動 */
  }
}
.main-navigation__label {
  display: block;
  font-size: 0.8rem;
  color: #888888;
  margin-bottom: 16px;
}
@media screen and (min-width: 835px) {
  .main-navigation__label {
    display: none;
  }
}
.main-navigation {
  /* ------------------------------------
       wp_nav_menu () のリスト表示
    ------------------------------------ */
}
.main-navigation .primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 835px) {
  .main-navigation .primary-menu {
    display: flex;
    gap: 24px;
    align-items: center;
  }
}
.main-navigation .primary-menu li {
  position: relative;
}
.main-navigation .primary-menu li a {
  display: block;
  padding: 10px 0;
  color: #333333;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.87rem;
  transition: color 0.3s ease;
}
.main-navigation .primary-menu li a:hover {
  color: #3bb2ea;
}
.main-navigation .primary-menu li {
  /* サブメニュー（階層2）の調整 */
}
.main-navigation .primary-menu li .sub-menu {
  list-style: none;
  padding-left: 16px;
}
@media screen and (max-width: 834px) {
  .main-navigation .primary-menu li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    display: none;
  }
}
@media screen and (max-width: 834px) {
  .main-navigation .primary-menu li:hover > .sub-menu {
    display: block;
  }
}

/* スクリーンリーダー用非表示クラス（未定義の場合） */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

@media screen and (max-width: 834px) {
  .menu-toggle {
    display: inline-flex;
  }
}
.sec-mv .mv-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 448px;
  border: 1px solid #ff0000;
  padding: 0 10px;
}
@media screen and (min-width: 835px) {
  .sec-mv .mv-wrap {
    height: 648px;
  }
}
.sec-mv .logo {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   8. サイトフッター(footer.php)
   コンセプト: 文庫本の奥付(発行情報を記す巻末ページ)
   ========================================================================== */
.site-footer {
  margin-top: 4rem;
  /* background-color: var(--color-ink); */
  /* color: var(--color-paper); */
  background-color: #e8f4fc;
  overflow: hidden;
}
.site-footer__inner {
  max-width: calc(var(--content-width) + 120px);
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--gutter) 3rem;
  position: relative;
}
.site-footer .footer-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.site-footer .info-list dl {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--fs-caption);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .info-list dl dt {
  min-width: 6em;
  text-align: right;
}
.site-footer .info-list dl dd {
  flex-basis: calc(100% - 6em - 1rem);
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(234, 227, 211, 0.2);
}
.footer-widgets__col {
  font-size: var(--fs-small);
}
.footer-widgets__col h2,
.footer-widgets__col h3 {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-paper);
  margin: 0 0 1rem;
}
.footer-widgets__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-widgets__col li {
  margin-bottom: 0.5rem;
}
.footer-widgets__col a {
  color: rgba(234, 227, 211, 0.75);
}
.footer-widgets__col a:hover {
  color: var(--color-paper);
}

.colophon-plate {
  max-width: 420px;
  margin-inline: auto;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(234, 227, 211, 0.3);
  border-radius: var(--radius-s);
  text-align: center;
}
.colophon-plate__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.colophon-plate__facts {
  margin: 0 0 1.5rem;
  text-align: left;
}
.colophon-plate__fact {
  display: flex;
  align-items: flex-end;
  padding: 0.35rem 0;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
}
.colophon-plate__fact dt {
  display: flex;
  align-items: flex-end;
  flex: 0 1 auto;
  color: rgba(234, 227, 211, 0.55);
  white-space: nowrap;
}
.colophon-plate__fact dt::after {
  content: "";
  flex: 1 1 auto;
  min-width: 1.5rem;
  margin: 0 0.5rem 0.2rem;
  border-bottom: 1px dotted rgba(234, 227, 211, 0.35);
}
.colophon-plate__fact dd {
  flex: 0 0 auto;
  margin: 0;
  color: var(--color-paper);
}
.colophon-plate__fact--links {
  align-items: flex-start;
}
.colophon-plate__fact--links dt::after {
  align-self: flex-end;
}
.colophon-plate__fact--links dd {
  flex: 1 1 auto;
}
.colophon-plate .footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.colophon-plate .footer-menu li:not(:last-child)::after {
  content: "/";
  margin-left: 0.6rem;
  color: rgba(234, 227, 211, 0.4);
}
.colophon-plate .footer-menu a {
  color: rgba(234, 227, 211, 0.8);
}
.colophon-plate .footer-menu a:hover {
  color: var(--color-paper);
}
.colophon-plate__copyright {
  margin: 0 0 1rem;
  font-size: var(--fs-caption);
  color: rgba(234, 227, 211, 0.6);
}
.colophon-plate__copyright a {
  color: rgba(234, 227, 211, 0.8);
}
.colophon-plate__copyright a:hover {
  color: var(--color-paper);
}
.colophon-plate__totop {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: 0.06em;
  color: var(--color-paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(234, 227, 211, 0.4);
}
.colophon-plate__totop:hover {
  color: var(--color-accent-soft);
  border-color: var(--color-accent-soft);
}

.footer_ill {
  position: absolute;
  max-width: 120px;
  width: 120px;
  right: 0;
  bottom: -20px;
}

.copyright {
  display: block;
  margin-top: 2rem;
  font-size: var(--fs-caption);
  text-align: center;
  background-color: var(--color-accent);
  color: var(--color-white);
}
.copyright a {
  color: rgba(234, 227, 211, 0.8);
}
.copyright a:hover {
  color: var(--color-paper);
}

.top-middle-bnr {
  background-color: #000;
  background-image: url("../images/bg-top-middle-bnr.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.top-middle-bnr .middle_title {
  color: #ffbe00;
  text-align: center;
  margin: 0 0 1em;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 4/3;
}
@media screen and (min-width: 835px) {
  .video-wrapper {
    aspect-ratio: 16/9;
  }
}
.video-wrapper video {
  width: 100%;
  aspect-ratio: 4/3;
  position: absolute;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 835px) {
  .video-wrapper video {
    aspect-ratio: 16/9;
  }
}

/* ==========================================================================
   9. 投稿一覧(home.php)
   コンセプト: 文庫本の目次ページ。記事 = 章、日付 = ページ番号として扱う
   ========================================================================== */
.mv video {
  width: 100%;
}

.home-toc-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.home-toc-header__label {
  margin: 0 0 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.home-toc-header__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem);
  color: var(--color-ink);
}
.home-toc-header__desc {
  margin: 0.75rem auto 0;
  max-width: 46ch;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-rule);
}

.toc-entry {
  border-bottom: 1px solid var(--color-rule);
}
.toc-entry__link {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 3vw, 1.75rem);
  padding: 1.6rem 0.25rem;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease;
}
.toc-entry__link:hover {
  background-color: var(--color-accent-soft);
}
.toc-entry__link:hover .toc-entry__title {
  color: var(--color-accent2);
}
.toc-entry__link:hover .toc-entry__number {
  color: var(--color-accent);
}
.toc-entry__number {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-rule);
  min-width: 2.2rem;
}
.toc-entry__body {
  flex: 1 1 auto;
  min-width: 0;
}
.toc-entry__title-row {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-bottom: 0.5rem;
}
.toc-entry__title {
  flex: 0 1 auto;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-ink);
}
.toc-entry__leader {
  flex: 1 1 auto;
  min-width: 1.5rem;
  margin: 0 0.6rem 0.15rem;
  border-bottom: 1px dotted var(--color-rule);
}
.toc-entry__page {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}
.toc-entry__excerpt {
  display: block;
  margin-bottom: 0.6rem;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
  line-height: 1.7;
}
.toc-entry__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  color: var(--color-ink-soft);
}
.toc-entry__sep {
  opacity: 0.5;
}
.toc-entry__thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: var(--radius-s);
}
.toc-entry__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 640px) {
  .toc-entry__link {
    flex-wrap: wrap;
  }
  .toc-entry__thumb {
    order: -1;
    width: 48px;
    height: 48px;
  }
  .toc-entry__title-row {
    flex-wrap: wrap;
  }
  .toc-entry__leader {
    display: none;
  }
}
.home-toc-empty {
  padding: 3rem 1rem;
  text-align: center;
  color: var(--color-ink-soft);
  border: 1px dashed var(--color-rule);
  border-radius: var(--radius-s);
}

.home-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-rule);
  font-family: var(--font-mono);
  font-size: var(--fs-small);
}
.home-pagination .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1rem;
  flex-wrap: wrap;
}
.home-pagination a,
.home-pagination span {
  color: var(--color-ink-soft);
  text-decoration: none;
}
.home-pagination a:hover {
  color: var(--color-accent2);
}
.home-pagination .current {
  color: var(--color-accent);
  font-weight: 700;
}
.home-pagination .page-numbers.dots {
  color: var(--color-rule);
}

/* ==========================================================================
   2. レイアウト全体(single.php)
   ========================================================================== */
.single-article-wrap {
  max-width: calc(var(--content-width) + 120px);
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) 4rem;
}

.single-article {
  position: relative;
  background-color: var(--color-paper-raised);
  padding: clamp(1.75rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: var(--radius-s);
  box-shadow: 0 1px 0 var(--color-rule), 0 20px 40px -30px rgba(38, 34, 32, 0.35);
}

.article-tab {
  position: absolute;
  top: 2.5rem;
  left: -14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 0.55rem;
  background-color: var(--color-accent);
  color: var(--color-accent-soft);
  border-radius: var(--radius-s);
  box-shadow: 2px 3px 0 rgba(38, 34, 32, 0.18);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}
.article-tab__date {
  font-size: var(--fs-caption);
}
.article-tab__divider {
  width: 14px;
  height: 1px;
  background-color: rgba(243, 238, 225, 0.5);
}
.article-tab__cat {
  font-size: var(--fs-caption);
  font-weight: 600;
}
@media (max-width: 640px) {
  .article-tab {
    display: none;
  }
}

/* ==========================================================================
   3. 記事ヘッダー
   ========================================================================== */
.article-header {
  padding-bottom: 1.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-rule);
}

.article-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.article-eyebrow__link {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent2);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.article-title {
  font-family: var(--font-display);
  font-size: var(--fs-title);
  line-height: var(--lh-title);
  font-weight: 600;
  margin: 0 0 1.1rem;
  color: var(--color-ink);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}
.article-meta__sep {
  opacity: 0.5;
}

/* ==========================================================================
   4. アイキャッチ画像
   ========================================================================== */
.article-thumbnail {
  margin: 0 0 2.25rem;
}
.article-thumbnail img {
  border-radius: var(--radius-s);
}
.article-thumbnail__caption {
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  color: var(--color-ink-soft);
  text-align: center;
}

/* ==========================================================================
   5. 本文(article-content)
   ========================================================================== */
.article-content {
  font-size: var(--fs-lead);
}
.article-content > *:first-child {
  margin-top: 0;
}
.article-content p {
  margin: 0 0 1.5rem;
}
.article-content > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.6em;
  line-height: 0.85;
  font-weight: 600;
  float: left;
  padding: 0.05em 0.08em 0 0;
  color: var(--color-accent);
}
.article-content h2,
.article-content h3,
.article-content h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  line-height: 1.3;
  margin: 2.4rem 0 1rem;
}
.article-content h2 {
  font-size: 1.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-rule);
}
.article-content h3 {
  font-size: 1.3rem;
}
.article-content h4 {
  font-size: 1.1rem;
}
.article-content ul,
.article-content ol {
  margin: 0 0 1.5rem;
  padding-left: 1.4rem;
}
.article-content li {
  margin-bottom: 0.5rem;
}
.article-content a {
  text-decoration: underline;
}
.article-content blockquote {
  margin: 2rem 0;
  padding: 0.25rem 0 0.25rem 1.4rem;
  border-left: 3px solid var(--color-accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-ink-soft);
}
.article-content code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background-color: var(--color-accent-soft);
  padding: 0.15em 0.4em;
  border-radius: var(--radius-s);
}
.article-content pre {
  background-color: var(--color-ink);
  color: var(--color-paper-raised);
  padding: 1.25rem;
  border-radius: var(--radius-s);
  overflow-x: auto;
  margin: 0 0 1.5rem;
}
.article-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.article-content figure {
  margin: 2rem 0;
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.5rem;
  font-size: var(--fs-small);
}
.article-content th,
.article-content td {
  border: 1px solid var(--color-rule);
  padding: 0.6rem 0.75rem;
  text-align: left;
}
.article-content th {
  background-color: var(--color-accent-soft);
  font-family: var(--font-mono);
}

.article-pagination {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
}

/* ==========================================================================
   6. 記事フッター(タグ・著者・前後ナビ)
   ========================================================================== */
.article-footer {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-rule);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.article-tags__item {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  color: var(--color-ink-soft);
  background-color: var(--color-accent-soft);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  text-decoration: none;
}
.article-tags__item:hover {
  color: var(--color-accent2);
}

.article-author-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 2rem;
  background-color: var(--color-accent-soft);
  border-radius: var(--radius-s);
}
.article-author-box__avatar img {
  border-radius: 50%;
}
.article-author-box__name {
  margin: 0 0 0.25rem;
  font-weight: 700;
  color: var(--color-ink);
}
.article-author-box__bio {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.article-nav a {
  display: block;
  padding: 1rem;
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-s);
  text-decoration: none;
  height: 100%;
}
.article-nav a:hover {
  border-color: var(--color-accent);
}
.article-nav__next {
  text-align: right;
}
.article-nav__label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  color: var(--color-ink-soft);
  margin-bottom: 0.3rem;
}
.article-nav__title {
  display: block;
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: 1rem;
  line-height: 1.4;
}
@media (max-width: 560px) {
  .article-nav {
    grid-template-columns: 1fr;
  }
  .article-nav .article-nav__next {
    text-align: left;
  }
}

/* ==========================================================================
   10. 固定ページ(page.php)
   single.php の記事詳細と同じ .article-content 系スタイルを流用。
   ブログ要素(日付タブ・タグ・前後記事ナビ)がない分の見た目調整のみ追加。
   ========================================================================== */
.single-article--page {
  padding-top: clamp(1.5rem, 4vw, 2.75rem);
}

.article-header--page {
  text-align: center;
  padding-bottom: 1.5rem;
}
.article-header--page .article-title {
  margin-bottom: 0;
}

/* ==========================================================================
   11. 404ページ(404.php)
   コンセプト: 本の中の「白紙のページ」
   ========================================================================== */
.error-404-wrap {
  max-width: calc(var(--content-width) + 120px);
  margin-inline: auto;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
}

.error-404 {
  max-width: 440px;
  margin-inline: auto;
  text-align: center;
}
.error-404__number {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-rule);
}
.error-404__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-ink);
}
.error-404__desc {
  margin: 0 0 2rem;
  font-size: var(--fs-small);
  line-height: 1.8;
  color: var(--color-ink-soft);
}
.error-404__search {
  margin-bottom: 2.5rem;
}
.error-404__search .search-form {
  display: flex;
  gap: 0.5rem;
}
.error-404__search .search-field {
  flex: 1 1 auto;
  padding: 0.65rem 1rem;
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-s);
  background-color: var(--color-paper-raised);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--fs-small);
}
.error-404__search .search-field:focus-visible {
  border-color: var(--color-accent);
}
.error-404__search .search-submit {
  flex: 0 0 auto;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--color-ink);
  border-radius: var(--radius-s);
  background-color: var(--color-ink);
  color: var(--color-paper-raised);
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  cursor: pointer;
}
.error-404__search .search-submit:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}
.error-404__categories {
  margin-bottom: 2.5rem;
}
.error-404__categories-label {
  margin: 0 0 0.75rem;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}
.error-404__categories-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.error-404__categories-list a {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  color: var(--color-ink-soft);
  background-color: var(--color-accent-soft);
  border-radius: 999px;
  text-decoration: none;
}
.error-404__categories-list a:hover {
  color: var(--color-accent2);
}
.error-404__home {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-s);
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--color-ink);
  text-decoration: none;
}
.error-404__home:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.member-card.card-01 {
  background: #FFC401;
}
.member-card.card-02 {
  background: #F2F2F2;
}
.member-card.card-03 {
  background: #7ACDF4;
}

.recruit-link-section .member-info {
  padding: 0 10px 10px;
}
.recruit-link-section .message-btn {
  background-color: #FFF;
}

.lower-page {
  /* =========================================
      共通・汎用パーツ
   ========================================= */
}
.lower-page .section-title,
.lower-page .greeting-title,
.lower-page .history-title,
.lower-page .summary-title {
  font-size: 1.8rem;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.lower-page .greeting-title,
.lower-page .history-title,
.lower-page .summary-title {
  color: var(--color-accent);
}
.lower-page {
  /* 共通キャッチフレーズ */
}
.lower-page .catchphrase {
  writing-mode: horizontal-tb;
  text-orientation: unset;
  text-align: center;
  padding-top: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  letter-spacing: 0.1em;
}
.lower-page .catchphrase br {
  display: none;
}
@media (min-width: 768px) {
  .lower-page .catchphrase {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-feature-settings: "vert";
    text-align: left;
    font-size: 1.6rem;
    line-height: 2.2;
    letter-spacing: 0.2em;
    padding-top: 10px;
    padding-bottom: 0;
    border-bottom: none;
    margin-left: 30px;
  }
  .lower-page .catchphrase br {
    display: inline;
  }
}
.lower-page {
  /* 共通サイドメニュー */
}
.lower-page .side-menu {
  width: 100%;
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}
@media (min-width: 768px) {
  .lower-page .side-menu {
    width: 160px;
    text-align: left;
    border-top: none;
    padding-top: 0;
  }
}
.lower-page .side-menu .en-title {
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-top: 0;
  margin-bottom: 24px;
}
.lower-page .side-menu .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lower-page .side-menu .menu-list a {
  font-size: 0.95rem;
  font-weight: bold;
  display: block;
  padding: 8px 0;
  transition: color 0.3s;
}
.lower-page .side-menu .menu-list a:hover {
  color: var(--color-accent);
}
.lower-page {
  /* 共通ボタン (MORE) */
}
.lower-page .btn-wrapper {
  text-align: center;
  margin-top: 50px;
}
.lower-page .more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 48px;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  cursor: pointer;
}
.lower-page .more-btn span {
  margin-left: 12px;
  transition: transform 0.3s ease;
}
.lower-page .more-btn:hover {
  background-color: var(--color-accent);
  color: #ffffff;
}
.lower-page .more-btn:hover span {
  transform: translateX(4px);
}
.lower-page {
  /* =========================================
      Top Section (お知らせ領域)
   ========================================= */
}
.lower-page .top-section {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .lower-page .top-section {
    padding: 80px 0;
  }
}
.lower-page .top-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.lower-page .top-layout .catchphrase {
  order: 2;
}
.lower-page .top-layout .main-content {
  order: 3;
}
.lower-page .top-layout .side-menu {
  order: 1;
}
@media screen and (min-width: 835px) {
  .lower-page .top-layout {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}
@media (min-width: 901px) {
  .lower-page .top-layout {
    gap: 60px;
  }
}
@media screen and (min-width: 835px) {
  .lower-page .top-layout .catchphrase {
    order: 1;
  }
  .lower-page .top-layout .main-content {
    order: 2;
  }
  .lower-page .top-layout .side-menu {
    order: 3;
  }
}
.lower-page .text-body p {
  font-size: 1rem;
  line-height: 2.2;
  color: var(--text-light);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.lower-page {
  /* =========================================
      Greeting Section (ご挨拶領域)
   ========================================= */
}
.lower-page .greeting-section {
  padding: 0 0 60px 0;
}
@media (min-width: 768px) {
  .lower-page .greeting-section {
    padding: 0 0 100px 0;
  }
}
.lower-page .members-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .lower-page .members-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.lower-page .member-card {
  display: flex;
  flex-direction: column;
  border-radius: 0 40px 0 0;
}
.lower-page .member-image-wrapper {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 20px;
  aspect-ratio: 1/1;
  border-radius: var(--image-radius);
  background-color: var(--bg-placeholder);
  overflow: hidden;
  border-radius: 0 40px 0 0;
}
@media (min-width: 768px) {
  .lower-page .member-image-wrapper {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}
.lower-page .member-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lower-page .member-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .lower-page .member-info {
    max-width: none;
    margin: 0;
  }
}
.lower-page .member-name {
  font-size: 1rem;
  font-weight: bold;
  margin: 0 0 8px 0;
}
.lower-page .member-role {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0 0 24px 0;
}
.lower-page .message-btn {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.lower-page .message-btn span {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.lower-page .message-btn:hover {
  background-color: var(--color-accent);
  color: #ffffff;
}
.lower-page .message-btn:hover span {
  transform: translateX(4px);
}
.lower-page {
  /* =========================================
      History Section (沿革)
   ========================================= */
}
.lower-page .history-section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .lower-page .history-section {
    padding: 100px 0;
  }
}
.lower-page .history-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-color);
}
.lower-page .history-row {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}
@media (min-width: 768px) {
  .lower-page .history-row {
    flex-direction: row;
    padding: 24px 0;
  }
}
.lower-page .history-row dt {
  width: 100%;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--text-main);
}
@media (min-width: 768px) {
  .lower-page .history-row dt {
    width: 160px;
    flex-shrink: 0;
    margin-bottom: 0;
    font-weight: normal;
  }
}
.lower-page .history-row dd {
  margin: 0;
  flex: 1;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}
.lower-page .history-row dd p {
  margin: 0 0 8px 0;
}
.lower-page .history-row dd p:last-child {
  margin-bottom: 0;
}
.lower-page {
  /* =========================================
      Company Summary Section (概要)
   ========================================= */
}
.lower-page .summary-section {
  background-color: var(--bg-gray);
  padding: 60px 0;
}
@media (min-width: 768px) {
  .lower-page .summary-section {
    padding: 100px 0;
  }
}
@media screen and (min-width: 835px) {
  .lower-page .summary-row {
    display: flex;
    width: 100%;
  }
}
.lower-page .summary-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 835px) {
  .lower-page .summary-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.lower-page .summary-list dt {
  width: 100%;
  margin-bottom: 6px;
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--text-main);
  padding: 16px 0 4px;
}
@media screen and (min-width: 835px) {
  .lower-page .summary-list dt {
    flex-basis: min(264px, 18.3vw);
    flex-shrink: 0;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-color);
    padding: 32px 0;
  }
}
.lower-page .summary-list dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  flex-basis: calc(100% - min(264px, 18.3vw));
  padding: 4px 0 16px;
  border-bottom: 1px solid var(--border-color);
}
@media screen and (min-width: 835px) {
  .lower-page .summary-list dd {
    padding: 32px 0;
  }
}
.lower-page .business-list {
  margin: 0;
  padding-left: 1.2em;
}
.lower-page .business-list li {
  margin-bottom: 6px;
}
.lower-page .business-list li:last-child {
  margin-bottom: 0;
}
.lower-page {
  /* =========================================
      Greeting Detail Section (ご挨拶詳細)
   ========================================= */
}
.lower-page .greeting-detail-section {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .lower-page .greeting-detail-section {
    padding: 80px 0 100px 0;
  }
}
.lower-page .layout-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .lower-page .layout-wrapper {
    flex-direction: row;
    gap: 50px;
    justify-content: space-between;
  }
}
.lower-page .main-content {
  flex: 1;
  max-width: 100%;
}
@media (min-width: 768px) {
  .lower-page .main-content {
    max-width: 680px;
  }
}
.lower-page .lead-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 50px;
}
.lower-page .member-list {
  display: flex;
  flex-direction: column;
}
.lower-page .member-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
}
.lower-page .member-item.hide {
  display: none;
}
@media (min-width: 768px) {
  .lower-page .member-item {
    flex-direction: row;
    gap: 24px;
  }
}
.lower-page .member-photo {
  width: 100%;
  max-width: 260px;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 auto;
  flex-shrink: 0;
  /* background-color: var(--bg-placeholder); */
}
@media (min-width: 768px) {
  .lower-page .member-photo {
    width: 200px;
    height: 200px;
    max-width: none;
    margin: 0;
  }
}
.lower-page .member-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lower-page .member-detail {
  flex: 1;
}
.lower-page .member-heading,
.lower-page .message-heading {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--text-main);
}
.lower-page .member-meta,
.lower-page .message-meta {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 20px;
}
.lower-page .member-meta .name,
.lower-page .message-meta .name {
  font-weight: bold;
  margin-right: 12px;
}
.lower-page .member-meta .title,
.lower-page .message-meta .title {
  color: var(--text-sub);
}
.lower-page .member-body p,
.lower-page .message-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-top: 0;
  margin-bottom: 12px;
}
.lower-page .member-body p:last-child,
.lower-page .message-body p:last-child {
  margin-bottom: 0;
}

/* =========================================
   Message Section
========================================= */
.message-section {
  background-color: #e8f4fc;
  /* 淡い水色の背景 */
  padding: 60px 0;
}
@media (min-width: 768px) {
  .message-section {
    padding: 100px 0;
  }
}
.message-section .message-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .message-section .message-layout {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
  }
}
.message-section {
  /* 左側: テキストエリア */
}
.message-section .message-content {
  flex: 1;
}
.message-section .message-content .en-title {
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-top: 0;
  margin-bottom: 32px;
  color: var(--text-main);
}
.message-section .message-content .message-body p {
  font-size: 1rem;
  line-height: 2.2;
  color: var(--text-light);
  margin-bottom: 24px;
}
.message-section .message-content .message-body p:last-child {
  margin-bottom: 0;
}
.message-section {
  /* 右側: 3枚ギャラリー */
}
.message-section .message-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .message-section .message-gallery {
    width: 320px;
    /* PCでの右カラム固定幅 */
    flex-shrink: 0;
  }
}
.message-section .message-gallery .gallery-item {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.message-section .message-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =========================================
   Interview Section
========================================= */
.interview-section {
  background-color: #ffffff;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .interview-section {
    padding: 100px 0;
  }
}
.interview-section .interview-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  /* PC表示時は左右逆配置（左：ギャラリー、右：テキスト） */
}
@media (min-width: 768px) {
  .interview-section .interview-layout {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
  }
}
.interview-section {
  /* テキストエリア */
}
.interview-section .interview-content {
  flex: 1;
}
.interview-section .interview-content .en-title {
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-top: 0;
  margin-bottom: 32px;
  color: var(--text-main);
}
.interview-section .interview-content .interview-body p {
  font-size: 1rem;
  line-height: 2.2;
  color: var(--text-light);
  margin-bottom: 24px;
}
.interview-section .interview-content .interview-body p:last-child {
  margin-bottom: 0;
}
.interview-section {
  /* 3枚ギャラリー */
}
.interview-section .interview-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .interview-section .interview-gallery {
    width: 320px;
    /* PCでの幅指定 */
    flex-shrink: 0;
  }
}
.interview-section .interview-gallery .gallery-item {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.interview-section .interview-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.faq dt {
  font-weight: 600;
  margin-bottom: 1em;
}
.faq dd {
  padding: 2em 1.5em;
  border-radius: 40px;
  background: #d7edf7;
  margin-bottom: 2rem;
}

.recruit-link-section .member-info {
  padding: 0 10px 10px;
}
.recruit-link-section .message-btn {
  background-color: #FFF;
}

.product-detail-section {
  background: #FFF;
  padding: 40px 0 0;
}
@media screen and (min-width: 835px) {
  .product-detail-section {
    padding: 100px 0 0;
  }
}
.product-detail-section .message-gallery p {
  font-size: 0.85rem;
}

.product-banner {
  margin: 80px 0 40px;
}

.interview-mid-section .message-gallery .gallery-item {
  aspect-ratio: 3/2;
}

.effect-img {
  max-width: 400px;
  position: absolute;
  width: 40%;
  bottom: -5%;
  transform: rotate(-20deg);
  opacity: 0.4;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 835px) {
  .effect-img {
    bottom: -20%;
  }
}

/* 隠れているリストのアニメーション設定 */
.summary-list-accordion {
  display: grid;
  grid-template-rows: 0fr;
  /* 初期状態：高さ0 */
  transition: grid-template-rows 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  /* ラッパーの直下要素（.summary-list）をあふれさせない設定 */
}
.summary-list-accordion > * {
  overflow: hidden;
}
.summary-list-accordion {
  /* 開いた状態 */
}
.summary-list-accordion.is-open {
  grid-template-rows: 1fr;
  /* 中身の高さ分全開 */
}

/* ボタンが開いた時の矢印アニメーション（下向き回転） */
.more-btn span {
  display: inline-block;
  transition: transform 0.3s ease;
}
.more-btn.is-open span {
  transform: rotate(90deg);
  /* 開いたときに矢印を下に回す */
}

@media screen and (min-width: 835px) {
  .office_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .office_list li {
    flex-basis: 48%;
    margin: 0 0 30px;
  }
}

.product-detail-section-01 .product-banner {
  background-color: #7ed957;
}

.product-detail-section-02 .product-banner {
  background-color: #000;
}

.product-detail-section-03 .product-banner {
  background-color: #ff8405;
}

.product-detail-section .message-gallery .gallery-item {
  aspect-ratio: 3/2;
}

.works-movie-section .video-wrapper video,
.company-movie-section .video-wrapper video {
  aspect-ratio: 2560/1000;
}

.btnWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  padding: 20px 0;
}
.btnWrap.right {
  justify-content: flex-end;
}
.btnWrap.left {
  justify-content: flex-start;
}

.c-button {
  display: inline-flex;
  padding: 6px;
  background-color: var(--color-accent);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.85rem;
  line-height: 1;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-button:hover {
  color: #ffffff;
  background-color: var(--color-accent-dark);
}
.c-button__secondary {
  background-color: #FFBB00;
  border-radius: 200px;
}
.c-button__secondary:hover {
  background-color: rgb(250, 169, 18);
}
@media screen and (min-width: 835px) {
  .c-button {
    padding: 0.5rem 1rem;
  }
}
@media screen and (min-width: 835px) {
  .c-button .icon.left {
    margin-right: 0.5rem;
  }
  .c-button .icon.right {
    margin-left: 0.5rem;
  }
}
.c-button svg.icon__mail {
  width: 20px;
  height: 20px;
}
.c-button svg.icon__mail * {
  stroke: var(--color-white);
}

.c-img-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  height: 280px;
  margin: 0 auto;
  text-decoration: none;
  color: #ffffff;
  /* 背景画像に半透明の黒を重ねて文字を見やすくする */
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  padding: 20px;
  transition: opacity 0.3s ease;
  background-blend-mode: normal;
  background-color: #6e6e6e;
  border: solid 1px #ffffff;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  /* 上部英語タイトル */
}
.c-img-banner .en-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.c-img-banner {
  /* 白枠のボタン領域 */
}
.c-img-banner .btn-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  max-width: 600px;
  padding: 16px 24px;
  border: 1px solid #ffffff;
  box-sizing: border-box;
  z-index: 1;
  transition: all 0.3s ease;
}
.c-img-banner {
  /* 中央配置の日本語テキスト */
}
.c-img-banner .ja-title {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 1;
}
.c-img-banner {
  /* 右端に固定する矢印 */
}
.c-img-banner .arrow {
  position: absolute;
  right: 24px;
  font-size: 1.2rem;
}
.c-img-banner .banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: all 0.3s ease;
  background-size: cover;
}
.c-img-banner:hover .banner-img {
  transform: scale(1.05);
}
.c-img-banner:hover .btn-box {
  background-color: #222;
}

.c-row-6, .c-row-5, .c-row-4, .c-row-3, .c-row-2, .c-row-1, .c-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.c-row {
  /* PCサイズ（768px以上）で指定数に分割 */
}
@media screen and (min-width: 835px) {
  .c-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-row-1 {
  /* PCサイズ（768px以上）で指定数に分割 */
}
@media screen and (min-width: 835px) {
  .c-row-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-row-2 {
  /* PCサイズ（768px以上）で指定数に分割 */
}
@media screen and (min-width: 835px) {
  .c-row-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-row-3 {
  /* PCサイズ（768px以上）で指定数に分割 */
}
@media screen and (min-width: 835px) {
  .c-row-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-row-4 {
  /* PCサイズ（768px以上）で指定数に分割 */
}
@media screen and (min-width: 835px) {
  .c-row-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-row-5 {
  /* PCサイズ（768px以上）で指定数に分割 */
}
@media screen and (min-width: 835px) {
  .c-row-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.c-row-6 {
  /* PCサイズ（768px以上）で指定数に分割 */
}
@media screen and (min-width: 835px) {
  .c-row-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ヒーローエリア全体 */
.hero {
  position: relative;
  width: 100%;
  min-height: 480px;
  background-color: #2da3fb;
  /* 青色の背景 */
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-family: "Helvetica Neue", Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, sans-serif;
  /* 1. 上部の黄色の英字テキスト */
}
.hero .hero-bg-text {
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 3;
  /* 画像・テキストの上に配置 */
  font-size: 3.8rem;
  font-weight: 800;
  color: #ffbe00;
  /* 黄色 */
  white-space: nowrap;
  pointer-events: none;
  /* マウスイベントを透過 */
}
.hero {
  /* 2. 右側の斜め画像エリア */
}
.hero .hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  /* 画像エリアの幅 */
  height: 100%;
  z-index: 1;
  /* polygon(左上, 右上, 右下, 左下) で斜めに切り抜く */
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}
.hero .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero {
  /* 3. 左側のテキストコンテンツ */
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 40px 60px;
  max-width: 820px;
}
.hero .en-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-top: 30px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero .en-title span {
  display: block;
  font-size: 0.5em;
}
@media screen and (min-width: 835px) {
  .hero .en-title span {
    display: inline-block;
    margin-left: 1em;
  }
}
.hero .ja-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}
.hero .description {
  font-size: 0.8rem;
  line-height: 1.9;
  margin-bottom: 30px;
  opacity: 0.9;
}
.hero {
  /* ボタン */
}
.hero .btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 160px;
  padding: 10px 20px;
  background-color: #ffbe00;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}
.hero .btn-more:hover {
  opacity: 0.85;
}

/* モバイル対応（768px以下で縦並び化） */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }
  .hero .hero-bg-text {
    font-size: 1.8rem;
    top: 10px;
  }
  .hero .hero-image {
    position: relative;
    width: 100%;
    height: 250px;
    clip-path: none;
    /* スマホでは斜めカットを解除 */
  }
  .hero .hero-content {
    padding: 30px 20px;
    max-width: 100%;
  }
  .hero .en-title {
    font-size: 2.2rem;
  }
  .hero .ja-title {
    font-size: 1.2rem;
  }
}
/* --- カードパーツの定義 --- */
.card {
  background-color: #ffffff;
  border: 1px solid #333333; /* 外枠の線 */
  border-radius: 12px; /* 角丸 */
  overflow: hidden; /* 角丸から画像がはみ出すのを防止 */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 1px;
}
.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.card__img-wrapper {
  width: 100%;
  aspect-ratio: 16/10; /* 画像の縦横比を固定 */
  overflow: hidden;
}
.card__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__body {
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.card__category {
  background-color: #38b6ff; /* 水色バッジ */
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 20px;
}
.card__date {
  font-size: 0.85rem;
  color: #888888;
  letter-spacing: 0.05em;
}
.card__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  color: #222222;
  margin: 0;
  min-height: 3em;
}

.factory-section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-family: sans-serif;
  overflow: hidden;
  /* --- 上部エリア --- */
}
.factory-section .factory-top {
  position: relative;
  width: 100%;
  display: flex;
}
.factory-section .factory-img-wrapper {
  width: 72%;
  height: 380px;
  max-width: 1020px;
  overflow: hidden;
}
@media screen and (min-width: 835px) {
  .factory-section .factory-img-wrapper {
    height: 440px;
  }
}
.factory-section .factory-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.factory-section {
  /* 右端のテキストバッジ群 */
}
.factory-section .factory-badges {
  position: absolute;
  top: 30px;
  left: min(64%, 1000px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  z-index: 2;
}
.factory-section .badge {
  background-color: #ffffff;
  color: #222222;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.factory-section .badge--small {
  font-size: 1rem;
  width: 90%;
  max-width: 670px;
  padding: 16px;
}
.factory-section {
  /* --- 下部エリア（黄色背景） --- */
}
.factory-section .factory-bottom {
  /* background-color: #fcb900; */
  /* キャプチャ写真の黄色 */
  padding: 60px 40px;
  min-height: 180px;
  display: flex;
  align-items: center;
}
.factory-section .factory-title-group {
  color: #ffffff;
  display: none;
}
@media screen and (min-width: 835px) {
  .factory-section .factory-title-group {
    display: block;
  }
}
.factory-section .factory-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.factory-section .factory-subtitle {
  font-size: 1rem;
  margin-top: 6px;
  opacity: 0.95;
}
.factory-section {
  /* --- 重なる動画カード --- */
}
.factory-section .factory-video-card {
  position: absolute;
  width: 460px;
  max-width: calc(100% - 20px);
  bottom: 10px;
  right: 10px;
  aspect-ratio: 800/449;
  /* border-radius: 16px; */
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 3;
  background-color: #222;
}
.factory-section .factory-video-card::after {
  content: "coming soon";
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  transform: translate(-50%, -50%);
  font-weight: bold;
}
@media screen and (min-width: 835px) {
  .factory-section .factory-video-card {
    right: 5%;
    bottom: 110px;
  }
}
.factory-section .video-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px;
  pointer-events: none;
}
.factory-section .video-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.factory-section .video-overlay {
  position: absolute;
  inset: 0;
  /* background-color: rgba(0, 0, 0, 0.35); */
  /* 暗いフィルター */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.factory-section {
  /* 再生ボタンアイコン */
}
.factory-section .play-btn {
  width: 54px;
  height: 54px;
  background-color: #ff0000;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.factory-section .play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #ffffff;
}
.factory-section .video-label {
  position: absolute;
  bottom: 12px;
  right: 16px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* --- レスポンシブ対応（スマホ向け） --- */
@media (max-width: 768px) {
  .factory-top {
    flex-direction: column;
  }
  .factory-top .factory-img-wrapper {
    width: 100%;
    height: 240px;
  }
  .factory-top .factory-badges {
    position: static;
    padding: 16px;
    background-color: #ffffff;
    width: 100%;
  }
  .factory-top .factory-bottom {
    padding: 30px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .factory-top .factory-title {
    font-size: 2.2rem;
  }
  .factory-top {
    /* スマホでは動画カードを絶対配置から通常の流れに戻す */
  }
  .factory-top .factory-video-card {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
  }
}
.news_slider {
  position: relative;
}

.swiper-horizontal.swiper-rtl .swiper-button-prev, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev, .swiper-horizontal ~ .swiper-button-next,
.swiper-horizontal .swiper-button-next {
  left: auto;
  right: -30px !important;
}

.swiper-horizontal.swiper-rtl .swiper-button-next, .swiper-horizontal.swiper-rtl ~ .swiper-button-next, .swiper-horizontal ~ .swiper-button-prev,
.swiper-horizontal .swiper-button-prev {
  left: -30px !important;
  right: auto;
}

.newsSwiper {
  padding-bottom: 60px !important;
}

body.home .card__img {
  cursor: zoom-in;
}

/* ===== NEWS画像拡大表示 ===== */
/* 背景 */
.news-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.news-image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

/* 拡大画像 */
.news-image-lightbox img {
  display: block;
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: default;
}

/* 閉じるボタン */
.news-image-lightbox__close {
  position: fixed;
  top: 20px;
  right: 25px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

/* 拡大表示中はページをスクロールさせない */
body.news-lightbox-open {
  overflow: hidden;
}

@media screen and (max-width: 550px) {
  .news-image-lightbox {
    padding: 15px;
  }
  .news-image-lightbox img {
    max-width: 95vw;
    max-height: 82vh;
  }
  .news-image-lightbox__close {
    top: 10px;
    right: 10px;
  }
}
/* セクション全体 */
.works-section {
  background-color: #f4f5f7;
  /* 明るいグレー背景 */
  padding: 80px 20px;
  font-family: sans-serif;
  min-height: 600px;
  overflow: hidden;
}
.works-section .works-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.works-section {
  /* --- 左側：重ね画像エリア --- */
}
.works-section .works-images {
  flex: 1;
  position: relative;
  /* サブ画像が下に食い込むスペースを考慮した余白 */
  padding-bottom: 50px;
}
.works-section {
  /* メイン画像（右上寄り） */
}
.works-section .img-main {
  width: 50%;
  margin-left: auto;
  /* 右に寄せる */
  border-radius: 4px;
  overflow: hidden;
}
.works-section .img-main img {
  width: 100%;
  height: auto;
  display: block;
}
.works-section {
  /* サブ画像（左下重ね） */
}
.works-section .img-sub {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48%;
  /* メイン画像に対する比率 */
  z-index: 2;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  /* 重なりを強調する影 */
}
.works-section .img-sub__02 {
  bottom: -141px;
  left: 64%;
  width: 30%;
}
.works-section .img-sub__03 {
  bottom: -70px;
  left: 20%;
}
.works-section .img-sub img {
  width: 100%;
  height: auto;
  display: block;
}
.works-section {
  /* --- 右側：テキストエリア --- */
}
.works-section .works-content {
  flex: 1;
  margin-top: 87px;
}
@media screen and (min-width: 835px) {
  .works-section .works-content {
    margin-top: 0;
  }
}
.works-section .en-title {
  display: block;
  font-size: 3.5rem;
  font-weight: 400;
  color: #38b6ff;
  /* 水色 */
  margin-bottom: 24px;
  line-height: 1;
}
.works-section .ja-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.works-section .description {
  font-size: 0.85rem;
  line-height: 1.9;
  color: #444444;
  margin-bottom: 36px;
}
.works-section {
  /* ボタン */
}
.works-section .btn-works {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background-color: #ffbe00;
  /* 黄色 */
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}
.works-section .btn-works:hover {
  opacity: 0.85;
}

/* --- レスポンシブ対応（スマホ向け） --- */
@media (max-width: 768px) {
  .works-section {
    padding: 50px 20px;
  }
  .works-section .works-container {
    flex-direction: column;
    gap: 40px;
  }
  .works-section .works-images,
  .works-section .works-content {
    width: 100%;
  }
  .works-section .en-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }
  .works-section .ja-title {
    font-size: 1.4rem;
  }
}
.c-intro_catch {
  text-align: center;
  padding: 20px 0;
}
@media screen and (min-width: 835px) {
  .c-intro_catch {
    padding: 80px 0;
  }
}
.c-intro_catch .intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #FFBB00;
}
@media screen and (min-width: 835px) {
  .c-intro_catch .intro-title {
    font-size: 7.5rem;
  }
}
.c-intro_catch .intro-description {
  font-size: 1.25rem;
  color: var(--color-ink-soft);
  font-weight: 500;
}
@media screen and (min-width: 835px) {
  .c-intro_catch .intro-description {
    font-size: 2.2rem;
  }
}

.c-deco_txt {
  display: none;
  position: absolute;
  font-size: 5.5rem;
  font-weight: bold;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  left: 0;
  writing-mode: vertical-rl;
  line-height: 1;
}
@media screen and (min-width: 835px) {
  .c-deco_txt {
    font-size: 5.5rem;
    display: block;
  }
}

.c-section_title .ja_title {
  font-size: 2.4rem;
  color: #222222;
  font-weight: 100;
}
.c-section_title .en_title {
  font-size: 0.95rem;
  font-weight: 100;
  background-color: #FFBB00;
  color: #222222;
  padding: 0 1em;
  margin-left: 0.5em;
}
.c-page_header {
  background-size: cover;
  background-position: center;
  min-height: calc(70vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
}
.c-page_header .page_header__title {
  margin-left: 10%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  color: #FFF;
  font-weight: 300;
}
.c-page_header .page_header__title .en-title {
  font-size: 3.6rem;
}
.c-page_header .page_header__title .ja-title {
  font-size: 2.2rem;
}

.c-plx_bg {
  min-height: 50vh;
  background-size: 100%;
  background-attachment: fixed;
  position: relative;
}

.noise_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.6;
  background-color: rgba(49, 88, 160, 0.6);
  background-repeat: repeat;
}

.marquee {
  overflow: hidden;
  width: 100%;
  padding: 16px 0;
}
.marquee .marquee-track {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  /* linearで等速、infiniteで無限ループ */
  animation: marquee-scroll 40s linear infinite;
}
.marquee .marquee-content {
  display: flex;
  gap: 40px;
  /* テキスト間の余白 */
  padding-right: 40px;
  /* 複製テキストとの間の余白 */
  white-space: nowrap;
  /* テキストの改行を防ぐ */
}
.marquee .marquee-content span {
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* 軌道全体の半分（-50%）移動した瞬間に0%の位置に戻ることで無限ループさせる */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* =========================================
   Animation Base
========================================= */
/* レンダリングコストの低いプロパティのみを共通適用 */
[data-animate=zoom-out], [data-animate=fade-right], [data-animate=fade-left], [data-animate=fade-down], [data-animate=fade-up] {
  opacity: 0;
  will-change: opacity, transform;
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

/* 発火（is-animated 付与時）の共通復帰 */
[data-animate].is-animated {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* =========================================
   Animation Variants
========================================= */
[data-animate=fade-up] {
  transform: translateY(30px);
}

/* 上から下へフェードイン */
[data-animate=fade-down] {
  transform: translateY(-30px);
}

/* 右から左へフェードイン */
[data-animate=fade-left] {
  transform: translateX(30px);
}

/* 左から右へフェードイン */
[data-animate=fade-right] {
  transform: translateX(-30px);
}

[data-animate=zoom-out] {
  transform: scale(1.15);
  transition-duration: 1s;
}

[data-animate=curtain] {
  position: relative;
  overflow: hidden;
}
[data-animate=curtain]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--accent-bg, #fcb900);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
[data-animate=curtain] {
  /* 子要素 */
}
[data-animate=curtain] > * {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease 0.4s;
}
[data-animate=curtain].is-animated::before {
  transform: scaleX(1);
}
[data-animate=curtain].is-animated > * {
  opacity: 1;
}

[data-animate=pop-bottom-right] {
  opacity: 0;
  transform: translate(40px, 40px) scale(1);
  will-change: opacity, transform;
  /* 3つ目の引数（1.56）が1を超えていることで「行き過ぎて戻る」動きになります */
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pagination {
  margin: 60px 0;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
}
.pagination .page-numbers {
  display: block;
  margin: 0 10px;
  padding: 10px 8px;
  text-decoration: none;
  color: #3a3a3a;
  transition: all 0.3s ease;
  border: 1px solid #000;
}
.pagination .page-numbers:hover {
  background-color: #3a3a3a;
  color: #fff;
  border-color: #3a3a3a;
}
.pagination .page-numbers.current {
  pointer-events: none;
  background-color: #3a3a3a;
  color: #fff;
}
.pagination .page-numbers.dots {
  pointer-events: none;
  border: none;
  color: #999;
  background: transparent;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  border: none;
}

.content-body {
  margin-top: 32px;
}
.content-body p {
  line-height: 1.8;
  margin-bottom: 24px;
}
.content-body p:last-child {
  margin-bottom: 48px;
}
.content-body .wp-block-column .wp-block-heading {
  font-size: 24px;
  line-height: 1.4;
}
.content-body .wp-block-column h3.wp-block-heading,
.content-body .wp-block-column h4.wp-block-heading {
  margin-bottom: 12px;
}
.content-body .wp-block-column p {
  font-size: 14px;
}
.content-body .wp-block-column p a {
  text-decoration: underline;
}
.content-body .wp-block-column .wp-block-image {
  aspect-ratio: 1/1;
}
.content-body .wp-block-column .wp-block-image img {
  width: 100%;
  height: 100%;
}

.breadcrumb {
  font-size: 10px;
  margin: 120px 0 0;
}
.breadcrumb .breadcrumb__list {
  display: flex;
  gap: 8px;
  line-height: 1.6;
  letter-spacing: 0.2em;
  text-align: justify;
  padding: 10px 0;
}
.breadcrumb .breadcrumb__list .current-item {
  color: #0da0a0;
}

.s-contact__01 {
  color: #000;
  font-size: clamp(14px, 2vw, 16px);
  text-align: left;
  line-height: 1.6;
}
.s-contact__01 .sec-ttl {
  font-weight: 700;
  margin-bottom: clamp(30px, 5vw, 60px);
}
.s-contact__01 .sec-ttl h2 {
  font-size: clamp(30px, 5vw, 48px);
}
.s-contact__01 .sec-ttl h2 span {
  font-size: clamp(12px, 2vw, 16px);
  display: block;
  margin-top: 8px;
}
.s-contact__01 .sec-ttl p {
  color: #747474;
  font-size: clamp(12px, 2vw, 16px);
  margin-top: 5px;
}
.s-contact__01 .content-ttl {
  padding: 80px 0;
  border-bottom: 1px solid #000;
  margin-bottom: 80px;
}
.s-contact__01 .content-ttl:first-of-type {
  padding-top: 0;
}
.s-contact__01 .content-ttl:last-of-type {
  margin-bottom: 0;
}
.s-contact__01 .content-form,
.s-contact__01 .content-policy {
  margin-bottom: 80px;
}
.s-contact__01 .content-form:last-of-type,
.s-contact__01 .content-policy:last-of-type {
  margin-bottom: 0;
}
.s-contact__01 .container-form {
  max-width: 980px;
}
@media screen and (min-width: 835px) {
  .s-contact__01 .container-form form .form-container {
    padding-bottom: 45px;
    display: flex;
  }
}
.s-contact__01 .container-form form table {
  width: 100%;
  border-collapse: collapse;
}
.s-contact__01 .container-form form table th,
.s-contact__01 .container-form form table td {
  display: block;
  width: 100%;
}
.s-contact__01 .container-form form table td {
  margin-bottom: 20px;
}
@media screen and (min-width: 835px) {
  .s-contact__01 .container-form form table td {
    padding: 0 0 25px;
    width: calc(100% - 290px);
  }
}
.s-contact__01 .container-form form table .form-ttl {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: bold;
  text-align: left;
}
@media screen and (min-width: 835px) {
  .s-contact__01 .container-form form table .form-ttl {
    vertical-align: top;
    width: 290px;
  }
}
.s-contact__01 .container-form form table .form-ttl span {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 8px;
  border-radius: 2px;
  margin-right: 20px;
}
@media screen and (min-width: 431px) {
  .s-contact__01 .container-form form table .form-ttl span {
    padding: 6px;
    margin-right: 10px;
    font-size: 10px;
  }
}
.s-contact__01 .container-form form table .form-ttl span.required {
  color: #a6a6a6;
}
.s-contact__01 .container-form form table .form-ttl span:not(.required) {
  background: #525252;
}
.s-contact__01 .container-form form .select-container {
  position: relative;
}
.s-contact__01 .container-form form .select-container::after {
  position: absolute;
  top: 50%;
  right: 2em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid rgba(79, 70, 70, 0.8);
  pointer-events: none;
}
.s-contact__01 .container-form form input[type=text],
.s-contact__01 .container-form form input[type=email],
.s-contact__01 .container-form form input[type=tel],
.s-contact__01 .container-form form textarea,
.s-contact__01 .container-form form select {
  padding: 12px 20px;
  background: #e8eaec;
  border-radius: 2px;
  width: 100%;
  /* margin-top: -13px; */
}
.s-contact__01 .container-form form input::-moz-placeholder, .s-contact__01 .container-form form textarea::-moz-placeholder {
  color: #21121e;
  font-size: clamp(14px, 2vw, 16px);
}
.s-contact__01 .container-form form input::placeholder,
.s-contact__01 .container-form form textarea::placeholder,
.s-contact__01 .container-form form option {
  color: #21121e;
  font-size: clamp(14px, 2vw, 16px);
}
.s-contact__01 .container-form form input[type=submit] {
  /* 
  width: 50%;
  font-size: clamp(14px, 2vw, 16px);
  text-align: center;
  background: #d9d9d9;
  border: 1px solid #00114d;
  padding: 10px 0;
  margin-top: 10px;
  max-width: 400px;
  display: block;
  */
  font-size: 1.2rem;
  padding: 0.6em 2em;
}
.s-contact__01 .content-policy .list {
  margin-bottom: 40px;
}
.s-contact__01 .content-policy .list .ttl {
  margin-bottom: 20px;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #eff8f6;
  text-align: center;
  display: flex;
  gap: 10px;
  margin-top: 46px;
  align-items: center;
  padding: 10px;
  border-color: transparent;
}
.wpcf7 form.sent .wpcf7-response-output::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: #000000;
  mask-image: url("../images/icon-check.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../images/icon-check.svg"); /* Safari対応 */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: transparent;
  background: rgb(250, 234, 240);
}

.thank-you {
  text-align: center;
  line-height: 1.6;
  margin: 60px 0;
}

.privacy_content {
  border: solid 2px #222;
  padding: 20px;
  height: 200px;
  overflow: auto;
  margin: 30px 0;
}

.privacy_content p {
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 0.7em;
}

.privacy_content span {
  display: block;
}

.privacy_check_wrap {
  text-align: center;
  margin: 20px 0;
}

/* ==========================================================================
   WordPress Admin Bar
   ========================================================================== */
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: absolute;
    top: -46px;
  }
}
.a-title__01 {
  text-align: center;
  margin: 30px auto;
}
@media screen and (min-width: 835px) {
  .a-title__01 {
    margin: 50px 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
}
.a-title__01 h2 {
  font-size: clamp(30px, 3.5vw, 60px);
  align-items: center;
}
@media screen and (min-width: 835px) {
  .a-title__01 h2 {
    display: flex;
  }
}
.a-title__01 h2 .title_sub {
  display: block;
  width: 31px;
  height: 4px;
  margin: 8px auto 20px;
  background: #0da0a0;
  border-radius: 5px;
}
@media screen and (min-width: 835px) {
  .a-title__01 h2 .title_sub {
    width: 9px;
    height: 31px;
    margin: 0 20px 0px;
  }
}
.a-title__01 p {
  font-size: 12px;
  font-weight: 700;
  width: 95%;
  margin: 0 auto;
  line-height: 1.2;
}
@media screen and (min-width: 835px) {
  .a-title__01 p {
    text-align: left;
    width: 100%;
    line-height: 1.6;
    font-size: 15px;
    white-space: normal;
  }
}

.a-title__02 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (min-width: 835px) {
  .a-title__02 {
    display: block;
    writing-mode: vertical-rl;
  }
}
.a-title__02 h2 {
  writing-mode: vertical-rl;
}
.a-title__02 h2 span {
  display: block;
}
.a-title__02 h2 span.en {
  font-size: 12px;
  font-weight: 600;
}
.a-title__02 h2 span.ja {
  margin: 0 clamp(18px, 5vw, 30px) 0 0;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.3;
}
@media screen and (min-width: 835px) {
  .a-title__02 h2 span .pc {
    display: none;
  }
}
.a-title__02 .catch {
  line-height: 2;
  font-weight: 600;
}
.a-title__02 .catch .pc {
  display: none;
}
@media screen and (min-width: 835px) {
  .a-title__02 .catch {
    font-size: 18px;
    margin: 0 36px 0 -9px;
  }
  .a-title__02 .catch .pc {
    display: block;
  }
}

.a-title__03 {
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-position: 50% 50%;
  background: #aeaeae;
}
@media screen and (min-width: 835px) {
  .a-title__03 .pc {
    height: 480px;
  }
}
.a-title__03 h2 {
  width: 1000px;
  padding: 0 10px 50px;
}
@media screen and (min-width: 835px) {
  .a-title__03 h2 .pc {
    padding: 0 0 120px;
  }
}
.a-title__03 h2 span {
  display: block;
}
.a-title__03 h2 span.en {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.a-title__03 h2 span.ja {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.3;
}
@media screen and (min-width: 835px) {
  .a-title__03 h2 span.ja {
    margin-top: 26px;
  }
}
@media screen and (min-width: 835px) {
  .a-title__03 h2 span .pc {
    display: none;
  }
}

.a-title__04 h2 {
  font-size: clamp(48px, 5vw, 80px);
}
.a-title__04 h2 .en span {
  color: #ff0101;
}
.a-title__04 h2 .ja {
  margin-top: clamp(12px, 2vw, 20px);
  font-size: clamp(12px, 2vw, 24px);
  line-height: 1.4;
}

.a-title__05 h2 .en {
  background: #aeaeae;
  padding: 4px 2px 4px;
  letter-spacing: 0.1rem;
  display: inline-block;
  font-size: 12px;
}
.a-title__05 h2 .ja {
  margin-top: 12px;
  line-height: 1.4;
  padding-left: 3%;
}

.a-title__06 h2 .flex-box {
  display: flex;
  gap: 14px;
  align-items: center;
}
.a-title__06 h2 .flex-box .icon {
  width: 20px;
  height: 20px;
  background: #454545;
}
.a-title__06 h2 .ja {
  font-size: 12px;
  margin-top: 10px;
  line-height: 1.4;
}

.a-title__07 [data-title-heading] {
  font-size: 63px;
  transition: font-size 0.08s linear;
}

.a-title__08 {
  padding-top: 20px;
  border-top: 1px solid #000;
}
@media screen and (min-width: 835px) {
  .a-title__08 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.a-title__08 h2 {
  font-size: clamp(17px, 4vw, 22px);
  line-height: 1.4;
  margin-bottom: 10px;
}
.a-title__08 .en {
  font-size: clamp(13px, 4vw, 17px);
}

.a-title__09 {
  position: relative;
  margin-bottom: 48px;
  padding-left: 16px;
}
@media screen and (min-width: 835px) {
  .a-title__09 {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
.a-title__09::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 4px;
  height: 1.6em;
  background: #ff8c00;
  border-radius: 2px;
}
.a-title__09 h2 {
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
}
.a-title__09 .sub {
  font-size: clamp(16px, 3vw, 20px);
}
.a-title__09 .en {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #f08200;
  opacity: 0.8;
  text-transform: uppercase;
  margin-top: 10px;
}
@media screen and (min-width: 835px) {
  .a-title__09 .en {
    margin-top: 0;
  }
}

.a-title__10 {
  background: rgba(255, 245, 235, 0.6);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 835px) {
  .a-title__10 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1% 5%;
  }
}
.a-title__10 h2 {
  font-size: clamp(20px, 3.5vw, 40px);
  letter-spacing: 0.2em;
  align-items: center;
  display: flex;
  line-height: 1.4;
}
.a-title__10 .titlesub-cont {
  display: flex;
  align-items: center;
  color: #f08200;
  font-weight: bold;
}
.a-title__10 .titlesub-cont .title_icon {
  background: #f08200;
  border-radius: 5px;
  width: 9px;
  height: 31px;
  margin: 0 8px 0px;
}
@media screen and (min-width: 835px) {
  .a-title__10 .titlesub-cont .title_icon {
    margin: 0 20px 0px;
  }
}

.a-title__11 {
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.a-title__11 p {
  text-transform: uppercase;
  font-weight: 700;
  color: #bf41d8;
}
.a-title__11 h2 {
  font-size: 20px;
}
@media screen and (min-width: 835px) {
  .a-title__11 h2 {
    font-size: 32px;
  }
}
.a-title__11 h2 .head {
  position: relative;
  display: inline-block;
  background: linear-gradient(transparent 70%, #ffef6b 70%, #ffef6b 90%, transparent 90%);
}
.a-title__11 h2 .head::before, .a-title__11 h2 .head::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
}
@media screen and (min-width: 835px) {
  .a-title__11 h2 .head::before, .a-title__11 h2 .head::after {
    width: 18px;
    height: 18px;
  }
}
.a-title__11 h2 .head::before {
  top: 4px;
  left: -12px;
  border-top: 1px solid #52545c;
  border-left: 1px solid #52545c;
}
@media screen and (min-width: 835px) {
  .a-title__11 h2 .head::before {
    top: 0px;
    left: -35px;
    border-top: 2px solid #52545c;
    border-left: 2px solid #52545c;
  }
}
.a-title__11 h2 .head::after {
  bottom: 3px;
  right: -15px;
  border-bottom: 1px solid #52545c;
  border-right: 1px solid #52545c;
}
@media screen and (min-width: 835px) {
  .a-title__11 h2 .head::after {
    right: -33px;
    border-bottom: 2px solid #52545c;
    border-right: 2px solid #52545c;
  }
}

.a-title__12 .title-head {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  font-size: 42px;
}
@media screen and (min-width: 835px) {
  .a-title__12 .title-head {
    font-size: 96px;
  }
}
.a-title__12 .img {
  margin: 20px auto 0;
  width: 80%;
}
@media screen and (min-width: 835px) {
  .a-title__12 .img {
    margin: 80px auto 0;
  }
}
.a-title__12 .img img {
  max-height: 100px;
  width: 100%;
}
@media screen and (min-width: 835px) {
  .a-title__12 .img img {
    max-height: 300px;
  }
}

.a-title__13 {
  max-width: 1000px;
  margin: 0 auto;
}
.a-title__13 .title-head .ja {
  display: block;
  line-height: 1.4;
  text-align: left;
  font-size: 14px;
}
.a-title__13 .title-head {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  font-size: 42px;
}
@media screen and (min-width: 835px) {
  .a-title__13 .title-head {
    font-size: 96px;
  }
}
.a-title__13 .bread-block {
  margin-top: 60px;
}
.a-title__13 .bread-block .blead-list {
  display: flex;
  justify-content: end;
  font-size: 12px;
}
.a-title__13 .bread-block .blead-list .blead-top {
  color: #5b5b5b;
}
.a-title__13 .bread-block .blead-list li {
  position: relative;
  padding-right: 15px;
  margin-right: 10px;
}
.a-title__13 .bread-block .blead-list li::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 0.5px;
  background: #5b5b5b;
}
.a-title__13 .bread-block .blead-list li:last-child {
  padding-right: 0px;
  margin-right: 0px;
}
.a-title__13 .bread-block .blead-list li:last-child::after {
  content: none;
}
.a-title__13 .img {
  margin: 20px auto 0;
}
@media screen and (min-width: 835px) {
  .a-title__13 .img {
    margin: 80px auto 0;
  }
}
.a-title__13 .img img {
  max-height: 100px;
  width: 100%;
}
@media screen and (min-width: 835px) {
  .a-title__13 .img img {
    max-height: 300px;
  }
}

@media screen and (min-width: 835px) {
  .a-title__14 {
    display: grid;
    grid-template-columns: 35% 65%;
  }
}
.a-title__14 .title-head {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 12px;
}
@media screen and (min-width: 835px) {
  .a-title__14 .title-head {
    font-size: 70px;
  }
}
.a-title__14 .title-head .ja {
  display: block;
  line-height: 1.4;
  font-size: 14px;
  margin-top: 10px;
}
.a-title__14 .bread-block {
  margin-top: 60px;
}
.a-title__14 .bread-block .blead-list {
  display: flex;
  font-size: 12px;
}
.a-title__14 .bread-block .blead-list .blead-top {
  color: #5b5b5b;
}
.a-title__14 .bread-block .blead-list li {
  position: relative;
  padding-right: 15px;
  margin-right: 10px;
}
.a-title__14 .bread-block .blead-list li::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 0.5px;
  background: #5b5b5b;
}
.a-title__14 .bread-block .blead-list li:last-child {
  padding-right: 0px;
  margin-right: 0px;
}
.a-title__14 .bread-block .blead-list li:last-child::after {
  content: none;
}

.a-btn__01 .btn {
  padding: 6px 42px 6px 16px;
  background: #000;
  color: #fff;
  position: relative;
}
.a-btn__01 .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: #fff;
  mask-image: url("../images/arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../images/arrow.svg"); /* Safari対応 */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.a-btn__02 .btn {
  padding: 6px 16px 6px 42px;
  background: #000;
  color: #fff;
  position: relative;
}
.a-btn__02 .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%) rotate(180deg);
  width: 14px;
  height: 14px;
  background-color: #fff;
  mask-image: url("../images/arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../images/arrow.svg"); /* Safari対応 */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.a-btn__03 .btn {
  padding: 6px 42px 6px 16px;
  position: relative;
}
.a-btn__03 .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: #000000;
  mask-image: url("../images/arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../images/arrow.svg"); /* Safari対応 */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.a-btn__04 .btn {
  display: inline-block;
  background: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 25px;
  padding: 10px 38px 10px 20px;
  position: relative;
  transition: all 0.5s ease 0s;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}
.a-btn__04 .btn::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: #000;
  font-size: 14px;
}
.a-btn__04 .btn:hover {
  transform: scale(1.025);
}

.a-btn__05 {
  font-weight: 600;
  border: solid 2px #fff;
  box-shadow: 0 0 10px #999;
  border-radius: 50px;
  text-align: center;
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 835px) {
  .a-btn__05 {
    width: 250px;
  }
}
.a-btn__05 .btn {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 16px 0;
  background-color: #909090;
  overflow: hidden;
  position: relative;
  border-radius: 50px;
  z-index: 1;
}
.a-btn__05 .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  border-radius: 50px;
}
.a-btn__05 .btn:hover::before {
  transform: scale(1, 1);
  transform-origin: left top;
}

.a-btn__06 .btn {
  display: flex;
  align-items: center;
  font-weight: bold;
  width: 250px;
  position: relative;
}
.a-btn__06 .btn:hover .circle {
  width: 100%;
}
.a-btn__06 .btn:hover .btn-txt {
  color: #fff;
}
.a-btn__06 .btn .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: #000;
  border-radius: 50px;
}
.a-btn__06 .btn .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.a-btn__06 .btn .circle .icon::before {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.15rem solid #fff;
  border-right: 0.15rem solid #fff;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  left: 18px;
}
.a-btn__06 .btn .btn-txt {
  position: absolute;
  top: 50%;
  left: 68px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.a-btn__07 .btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 146px;
}
.a-btn__07 .btn .arrow {
  background: #313131;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 18px;
  border-radius: 35%;
}
.a-btn__07 .btn .arrow::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  mask-image: url("../images/arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../images/arrow.svg"); /* Safari対応 */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.a-btn__08 .btn {
  display: block;
  background: #000;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 25px;
  border-radius: 5px;
  border: 1px solid #000;
  letter-spacing: 0.02rem;
  overflow: hidden;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 835px) {
  .a-btn__08 .btn {
    padding: 15px 40px;
  }
}
.a-btn__08 .btn span {
  transition: transform 0.5s;
  color: #fff;
  line-height: 1.3;
}
.a-btn__08 .btn:hover {
  background: #fff;
}
.a-btn__08 .btn:hover span {
  color: #000;
}

.a-btn__09 .btn {
  display: block;
  background: #000;
  height: 60px;
  width: 60px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #000;
  letter-spacing: 0.02rem;
  overflow: hidden;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.a-btn__09 .btn span {
  transition: transform 0.5s;
  color: #fff;
}
.a-btn__09 .btn:hover {
  background: #fff;
}
.a-btn__09 .btn:hover span {
  color: #000;
}

.a-btn__10 .btn {
  display: inline-block;
  position: relative;
  width: 200px;
  padding: 20px 25px;
  border: 2px solid #000;
  border-radius: 100vh;
  color: #000;
  font-weight: bold;
  font-size: clamp(0.8125rem, 0.793rem + 0.0781vw, 0.875rem);
}
.a-btn__10 .btn:hover::before {
  opacity: 1;
  transform: scale(1);
}
.a-btn__10 .btn:hover::after {
  background-color: #ffffff;
}
.a-btn__10 .btn:hover span {
  transform: translateX(8px);
}
.a-btn__10 .btn::before {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  transform: scale(0.7);
  transform-origin: center;
  border-radius: 100%;
  background-color: #000;
  content: "";
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.a-btn__10 .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background-color: #000000;
  mask-image: url("../images/arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 50%;
  -webkit-mask-image: url("../images/arrow.svg"); /* Safari対応 */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 50%;
  transition-duration: 0.3s;
  transition-property: background;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.a-btn__10 .btn span {
  display: inline-block;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.pagetop.is-show {
  opacity: 1;
  pointer-events: auto;
}
.pagetop a {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #393939;
  background-position: center;
  position: relative;
}
.pagetop a::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #fff;
  -webkit-mask-image: url(../images/pagetop.svg);
          mask-image: url(../images/pagetop.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.a-table-01 .table-body .table-btn {
  position: relative;
  padding: clamp(8px, 1.6vw, 26px);
}
.a-table-01 .table-body .table-btn__question {
  background: #e5e5e5;
}
.a-table-01 .table-body .table-btn__other {
  background: #a8a8a8;
  margin-left: 40px;
}
.a-table-01 .table-body .table-btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.a-table-01 .table-body .table-btn .table-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.a-table-01 .table-body .table-btn .table-container .table-item {
  width: 71%;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.6vw, 36px);
}
.a-table-01 .table-body .table-btn .table-container .table-item .circle {
  --size: 20px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1f1f1f;
  border: 3px solid #1f1f1f;
  color: #1f1f1f;
  position: relative;
}
@media screen and (min-width: 835px) {
  .a-table-01 .table-body .table-btn .table-container .table-item .circle {
    --size: 46px;
  }
}
.a-table-01 .table-body .table-btn .table-container .table-item .circle::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #fff;
  mask-image: url("../images/arrow-atom.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../images/arrow-atom.svg"); /* Safari対応 */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
@media screen and (min-width: 835px) {
  .a-table-01 .table-body .table-btn .table-container .table-item .circle::after {
    width: 26px;
    height: 26px;
  }
}
.a-table-01 .table-body .table-btn .table-container .table-item .text {
  flex: 1;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.4;
}
.a-table-01 .table-body .table-btn .table-container .table-item .text span {
  display: block;
  font-weight: 900;
  margin-right: 20px;
}
@media screen and (min-width: 835px) {
  .a-table-01 .table-body .table-btn .table-container .table-item .text span {
    display: inline-block;
  }
}
.a-table-01 .table-body .table-btn .table-container .tag-item {
  width: 76px;
  color: #3c3c3c;
}
@media screen and (min-width: 835px) {
  .a-table-01 .table-body .table-btn .table-container .tag-item {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.a-table-01 .table-body .table-btn .table-container .tag-item .tag {
  border-radius: 30px;
  border: 2px solid #d8d8d8;
  color: #d8d8d8;
  position: relative;
  padding: 2px 4px 2px 24px;
  font-size: 12px;
  font-weight: 900;
  z-index: 2;
}
@media screen and (min-width: 835px) {
  .a-table-01 .table-body .table-btn .table-container .tag-item .tag {
    font-size: 14px;
    padding: 8px 10px 8px 40px;
  }
}
.a-table-01 .table-body .table-btn .table-container .tag-item .tag::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #d8d8d8;
  mask-image: url("../images/check-atom.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../images/check-atom.svg"); /* Safari対応 */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
@media screen and (min-width: 835px) {
  .a-table-01 .table-body .table-btn .table-container .tag-item .tag::before {
    left: 10px;
    width: 24px;
    height: 24px;
  }
}
.a-table-01 .table-body .table-btn .table-container .tag-item.active .tag {
  border-color: #000;
  color: #000;
}
.a-table-01 .table-body .table-btn .table-container .tag-item.active .tag::before {
  background-color: #000;
}
.a-table-01 .table-body li + li {
  margin-top: 20px;
}

.a-table-02 {
  max-width: 100%;
  margin: 0 auto 80px;
}
.a-table-02:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 835px) {
  .a-table-02 {
    max-width: 960px;
  }
}
.a-table-02 .list-title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.a-table-02 .list-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #c0392b;
  margin: 12px auto 0;
}
@media screen and (min-width: 835px) {
  .a-table-02 .list-title {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .a-table-02 .list-title::after {
    width: 64px;
  }
}
.a-table-02 .lists {
  list-style: none;
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 20px;
}
@media screen and (min-width: 835px) {
  .a-table-02 .lists {
    padding: 32px;
  }
}
.a-table-02 .lists li {
  margin-bottom: 60px;
}
.a-table-02 .lists li:last-child {
  margin-bottom: 0;
}
.a-table-02 .lists li h4 {
  font-size: 17px;
  margin-bottom: 16px;
}
@media screen and (min-width: 835px) {
  .a-table-02 .lists li h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.a-table-02 .lists li .price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 12px;
  text-align: center;
}
.a-table-02 .lists li .price-table th,
.a-table-02 .lists li .price-table td {
  padding: 10px 6px;
  border: 1px solid #ddd;
  line-height: 1.4;
}
.a-table-02 .lists li .price-table thead {
  background: #f7f7f7;
}
.a-table-02 .lists li .price-table thead th {
  font-weight: 600;
}
.a-table-02 .lists li .price-table tbody td {
  font-weight: 500;
  font-size: 12px;
}
@media screen and (min-width: 835px) {
  .a-table-02 .lists li .price-table tbody td {
    font-size: 16px;
  }
}
.a-table-02 .lists li .price-table tbody td:first-child {
  font-size: 16px;
}
@media screen and (min-width: 835px) {
  .a-table-02 .lists li .price-table {
    font-size: 15px;
  }
  .a-table-02 .lists li .price-table th,
  .a-table-02 .lists li .price-table td {
    padding: 16px 12px;
  }
}
.a-table-02 .lists li .common-cont {
  background: #fafafa;
  border-left: 3px solid #c0392b;
  padding: 16px;
  margin-top: 20px;
}
@media screen and (min-width: 835px) {
  .a-table-02 .lists li .common-cont {
    padding: 20px 24px;
  }
}
.a-table-02 .lists li .common-cont .risc-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #c0392b;
}
@media screen and (min-width: 835px) {
  .a-table-02 .lists li .common-cont .risc-title {
    font-size: 16px;
  }
}
.a-table-02 .lists li .common-cont p {
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}
@media screen and (min-width: 835px) {
  .a-table-02 .lists li .common-cont p {
    font-size: 14px;
  }
}

.a-table-03 {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.a-table-03 th,
.a-table-03 td {
  padding: 16px 20px;
  border: 1px solid #ccc;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.a-table-03 th {
  width: 70%;
  font-weight: 500;
  text-align: left;
  background: #fafafa;
}
.a-table-03 td {
  width: 30%;
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (min-width: 835px) {
  .a-table-03 {
    width: 80%;
  }
  .a-table-03 th,
  .a-table-03 td {
    font-size: 15px;
    padding: 18px 24px;
  }
}

.a-table-04 {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.a-table-04 th,
.a-table-04 td {
  padding: 12px 8px;
  line-height: 1.6;
  font-size: 14px;
  color: #333;
}
.a-table-04 th {
  font-weight: bold;
  text-align: left;
  background: #f5f7f8;
}
.a-table-04 td {
  background: #fff;
}
.a-table-04 tbody tr {
  display: block;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.a-table-04 tbody th,
.a-table-04 tbody td {
  display: block;
  width: 100%;
  border: none;
}
.a-table-04 tbody th {
  background: #f5f7f8;
}
.a-table-04 tbody td {
  padding-top: 8px;
}
.a-table-04 {
  /* ===== tablet / pc ===== */
}
@media screen and (min-width: 835px) {
  .a-table-04 {
    text-align: center;
  }
  .a-table-04 tbody tr {
    display: table-row;
    margin-bottom: 0;
    border: none;
    border-radius: 0;
  }
  .a-table-04 tbody th,
  .a-table-04 tbody td {
    display: table-cell;
    border: 1px solid #ccc;
  }
  .a-table-04 tbody th {
    width: 30%;
    background: #f5f7f8;
    text-align: left;
  }
  .a-table-04 tbody td {
    text-align: center;
  }
}

.a-table-05--types {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 24px 0;
}
@media screen and (min-width: 835px) {
  .a-table-05--types {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.a-table-05--card {
  border-left: 3px solid #c0392b;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
@media screen and (min-width: 835px) {
  .a-table-05--card {
    padding: 28px 32px;
  }
}
.a-table-05--title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media screen and (min-width: 835px) {
  .a-table-05--title {
    font-size: 20px;
  }
}
.a-table-05--lead {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.a-table-05--data div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid #e0e0e0;
}
.a-table-05--data div:first-child {
  border-top: none;
}
.a-table-05--data dt {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}
.a-table-05--data dd {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.a-table-05--data__price dd {
  font-size: 15px;
  font-weight: 600;
}/*# sourceMappingURL=style.css.map */