/* ==========================================================================
    Modern & Usable Reset CSS
    ========================================================================== */

    :root {
      --color-primary: #36ad7f;
      --color-primary-dark: #1a9d68;
      --color-secondary: #d7efe5;
      --color-yellow: #fdcd00;
      --color-yellow-dark: #be9d0a;
    }
    /* 1. ボックスモデルの共通化（サイズ計算を直感的にする） */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }
    
    /* 2. デフォルトの余白をリセット */
    body,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    ol,
    ul,
    li,
    figure,
    figcaption,
    blockquote,
    dl,
    dd {
      margin: 0;
      padding: 0;
    }
    
    /* 3. リストの箇条書きマークを消す */
    ol,
    ul {
      list-style: none;
    }
    
    /* 4. 基本的なフォント環境とフォントサイズのレスポンシブ化 */
    html {
      font-family: "Noto Sans JP", sans-serif;
      font-size: 16px;
      font-weight: 400;
      -webkit-text-size-adjust: 100%; /* iOSの横画面での文字サイズ自動変更を防止 */
    }
    
    .oswald {
      font-family: "Oswald", sans-serif;
      font-weight: 400;
    }
    
    /* 5. 画面全体のベースライン設定 */
    body {
      min-height: 100vh; /* フッターを最下部に固定しやすくする */
      line-height: 1.5; /* 読みやすい標準的な行間 */
      text-rendering: optimizeSpeed; /* 描画速度を優先 */
    }
    
    /* 6. 画像やメディア要素の扱いを扱いやすくする */
    img,
    picture,
    video,
    canvas,
    svg {
      display: block; /* 謎の下部余白（インラインの隙間）を消す */
      max-width: 100%; /* 親要素からはみ出さないようにする */
      height: auto; /* 比率を維持 */
    }
    
    /* 7. フォーム関連要素のブラウザ独自の見た目をリセット */
    input,
    button,
    textarea,
    select {
      font: inherit; /* 親要素のフォント（サイズや種類）を強制継承 */
      color: inherit;
      background-color: transparent;
      border: none;
      border-radius: 0;
      -webkit-appearance: none;
      appearance: none;
    }
    
    /* ボタンと選択ボックスにカーソルを合わせたらポインターにする */
    button,
    select,
    label[for] {
      cursor: pointer;
    }
    
    /* テキストエリアの縦方向のみのリサイズを許可 */
    textarea {
      resize: vertical;
    }
    
    /* 8. リンクのデフォルト装飾をリセット */
    a {
      color: inherit;
      text-decoration: none;
    }
    
    /* 9. テーブルの枠線が二重になるのを防ぐ */
    table {
      border-collapse: collapse;
      border-spacing: 0;
    }
    
    /* 10. アニメーションを減らす設定（アクセシビリティ対応） */
    @media (prefers-reduced-motion: reduce) {
      html:focus-within {
        scroll-behavior: auto;
      }
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }
    
    main {
      padding-bottom: 120px;
    }
    
    /* コンポーネント========================================================================== */
    
    .shoplink {
      background-color: var(--color-yellow);
      font-size: 14px;
      font-weight: 700;
      border: 1px solid #000;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 220px;
      transition: 0.2s background-color ease-out;
    }
    
    .shoplink::before {
      content: url("../img/common/icon_cart.svg");
      display: inline-block;
      line-height: 1em;
    }
    
    .shoplink:hover {
      background-color: var(--color-yellow-dark);
    }
    .contactlink {
      background-color: #fff;
      font-size: 14px;
      font-weight: 700;
      border: 1px solid #000;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 220px;
      transition: background-color 0.2s ease;
    }
    
    .contactlink::before {
      content: url("../img/common/icon_mail.svg");
      display: inline-block;
      line-height: 0em;
      width: 17px;
      height: 17px;
    }
    
    .contactlink:hover {
      background-color: #ddd;
    }
    
    .button {
      background-color: #fff;
      font-size: 14px;
      font-weight: 700;
      height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      min-width: 220px;
      padding-inline: 20px;
      transition:
        background-color 0.2s ease,
        color 0.2s ease;
    }
    
    .button.green {
      background-color: var(--color-primary);
      color: #fff;
    }
    .button::after {
      content: url("../img/common/arrow_green.svg");
      line-height: 0;
      width: 16px;
      transition: filter 0.2s ease;
    }
    
    .button.green::after {
      filter: brightness(0) invert(1);
    }
    .button.yellow:hover {
      background-color: var(--color-yellow-dark);
    }
    
    .button:not(.yellow):hover {
      background-color: var(--color-primary-dark);
      color: #fff;
    }
    
    .button.green:hover {
      background-color: var(--color-primary-dark);
    }
    .button.yellow:hover {
      background-color: var(--color-yellow);
    }
    
    .button:not(.yellow):hover::after {
      filter: brightness(0) invert(1);
    }
    
    .h2Title--jp {
      font-size: 20px;
      font-weight: 700;
      line-height: 1em;
      letter-spacing: 0.1em;
    }
    
    .h2Title--en {
      font-size: 96px;
      font-weight: 700;
      line-height: 1em;
      letter-spacing: 0.1em;
      color: var(--color-primary);
    }
    
    @media (width <= 1800px) {
      .h2Title--jp {
        font-size: 16px;
      }
      .h2Title--en {
        font-size: 72px;
      }
    }
    @media (width <= 480px) {
      .h2Title--jp {
        font-size: 14px;
      }
      .h2Title--en {
        font-size: 54px;
      }
    }
    
    /* アニメーション========================================================================== */
    
    /* ==========================================
          1. テキストアニメーション (.textanime)
           ========================================== */
    .textanime {
      overflow: hidden;
    }
    .textanime .char {
      display: inline-block;
      transform: translateX(var(--x, -110%));
      opacity: 0;
      transition:
        transform 0.4s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.4s ease-in-out;
      transition-delay: calc(0.04s * var(--char-index));
    }
    .textanime.is-active {
      --x: 0;
    }
    .textanime.is-active .char {
      opacity: 1;
    }
    
    /* ==========================================
            2. フェードアップ (.fadeupanime / 下からふわっと)
             ========================================== */
    [class*="fadeupanime"] {
      position: relative;
      opacity: 0;
      transform: translateY(40px);
      transition:
        opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    }
    [class*="fadeupanime"].is-active {
      opacity: var(--max-opacity, 1);
      transform: translateY(0);
    }
    /* ==========================================
            2. フェードスライド (.fadeslideanime / 横からふわっと)
             ========================================== */
    [class*="fadeslideanime"] {
      position: relative;
      opacity: 0;
      transform: translateX(-40px);
      transition:
        opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    }
    [class*="fadeslideanime"].is-active {
      opacity: var(--max-opacity, 1);
      transform: translateX(0);
    }
    
    /* ==========================================
            3. 【新規】フェードイン (.fadeinanime / 位置は動かず不透明度のみ)
             ========================================== */
    [class*="fadeinanime"] {
      position: relative;
      opacity: 0; /* スタートは 0 */
      transition: opacity 0.8s ease-in-out;
    }
    
    /* 画面内に入ってアクティブになった時の設定 */
    [class*="fadeinanime"].is-active {
      /* 
                CSS変数「--max-opacity」が設定されていればその値（0.3など）を使い、
                設定されていなければデフォルトの「1（不透明）」で着地します
              */
      opacity: var(--max-opacity, 1);
    }
    
    /* ==========================================
            4. 疑似要素のアニメーション例 (共通で使用可能)
             ========================================== */
    /* 例：afterがついている要素の下線を引く */
    .fadeupanime-after::after,
    .fadeinanime-after::after {
      content: "";
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 0%;
      height: 2px;
      background-color: #333;
      transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      /* data-delay-after が指定されていればその値、なければ従来通り0.4s（親フェードの後に伸びる） */
      transition-delay: var(--delay-after, 0.4s);
    }
    
    /* 例：beforeがついている要素側の遅延を個別に設定したい場合は同様の書き方で対応可能
      .fadeupanime-before::before,
      .fadeinanime-before::before {
        ...
        transition-delay: var(--delay-before, 0.4s);
      }
      */
    
    /* ヘッダー========================================================================== */
    
    .header {
      position: fixed;
      top: 40px;
      right: 40px;
      z-index: 50;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
    }
    
    .header__content {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
    }
    
    .header__logo {
      position: absolute;
      top: 40px;
      left: 40px;
    }
    
    .header__nav-list {
      background-color: rgba(255, 255, 255, 0.8);
      border-radius: 5px;
      padding: 0px 40px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }
    
    .header__nav-link:hover {
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }
    
    .header__menu-btn {
      width: 60px;
      height: 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: var(--color-primary);
      border-radius: 5px;
      gap: 6px;
      box-shadow: 0px 0px 0px 1px #fff;
    }
    
    .header__menu-btn-line {
      width: 30px;
      height: 3px;
      background-color: #fff;
      display: block;
    }
    
    /* サブトップ========================================================================== */
    
    body.subtop-open {
      overflow: hidden;
    }
    
    .subtop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100dvh;
      background: url("../img/common/subtop_bg.jpg") no-repeat center center / cover;
      z-index: 100;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 40px;
      opacity: 0;
      visibility: hidden;
      transition:
        opacity 0.3s ease-out,
        visibility 0.3s ease-out;
    }
    
    body.subtop-open .subtop {
      opacity: 1;
      visibility: visible;
    }
    
    .subtop::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
      background-color: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(10px);
      cursor: pointer;
    }
    
    .subtop__wrap {
      z-index: 2;
      max-width: 1840px;
      width: 100%;
      max-height: calc(100dvh - 80px);
      border-radius: 30px;
      overflow: hidden;
      transform: translateY(50px);
      transition:
        transform 0.4s ease-out 0.5s,
        opacity 0.4s ease-out 0.5s,
        visibility 0.4s ease-out 0.5s;
      opacity: 0;
      visibility: hidden;
      display: flex;
      flex-direction: column;
    }
    
    body.subtop-open .subtop__wrap {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
    
    .subtop__close {
      height: 60px;
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-shrink: 0;
      background-color: #b2b2b2;
      transition: background-color 0.2s ease;
    }
    .subtop__close::before {
      content: url(../img/common/icon_close.svg);
      display: block;
      width: 17px;
      line-height: 1em;
    }
    .subtop__close:hover {
      background-color: #999;
    }
    
    .subtop__close-text {
      font-size: 20px;
    }
    
    .subtop__inner {
      flex-grow: 1;
      overflow-y: scroll;
    }
    
    /* スクロールバー2 */
    .subtop__inner::-webkit-scrollbar {
      width: 12px;
      background-color: var(--color-primary);
    }
    
    .subtop__inner::-webkit-scrollbar-thumb {
      background: #276976;
      border-right: 2px solid transparent; /* 透明なボーダーをつける */
      border-left: 2px solid transparent; /* 透明なボーダーをつける */
      background-clip: padding-box; /* 背景を切り取る */
    }
    
    .subtop__inner::-webkit-scrollbar-track {
      /* 上下に余白を付ける */
      margin-top: 2px;
      margin-bottom: 2px;
    }
    
    .subtop__content {
      display: flex;
    }
    
    .subtop__left {
      display: grid;
      grid-template-columns: 280px 1fr;
      grid-template-rows: auto 1fr;
      gap: 30px 50px;
      background-color: rgba(255, 255, 255, 0.92);
      padding: 60px;
      flex-grow: 1;
    }
    
    .subtop__left-01 {
      grid-column: 1 / 2;
      grid-row: 1 / 2;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    
    .subtop__logo-link {
      display: block;
      width: 100%;
      transition: 0.2s opacity ease-out;
    }
    
    .subtop__logo-link:hover {
      opacity: 0.7;
    }
    
    .subtop__logo-img {
      width: 100%;
    }
    
    .subtop__btnlist-01 {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    
    .subtop__btnlist-01 a {
      width: 100%;
    }
    
    .subtop__left-02 {
      grid-column: 1 / 2;
      grid-row: 2 / 3;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    
    .subtop__btnlist-02 {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    
    .subtop__btnlist-02-item {
      width: 100%;
    }
    
    .subtop__btnlist-02-link {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 0px 20px;
      height: 80px;
      position: relative;
      overflow: hidden;
    }
    
    .subtop__btnlist-02-link::before {
      content: "";
      display: inline-block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      transition: transform 0.4s ease;
      will-change: transform;
    }
    
    .subtop__btnlist-02-link:hover::before {
      transform: scale(1.2);
    }
    
    .subtop__btnlist-02-link:after {
      content: url("../img/common/arrow_white.svg");
      display: inline-block;
      width: 16px;
      line-height: 0;
      position: relative;
      z-index: 2;
    }
    
    .subtop__btnlist-02-link.bookstore::before {
      background-image:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("../img/common/subtop_btn_01.jpg");
    }
    
    .subtop__btnlist-02-link.advertising::before {
      background-image:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("../img/common/subtop_btn_02.jpg");
    }
    
    .subtop__btnlist-02-dl {
      position: relative;
      z-index: 2;
    }
    
    .subtop__btnlist-02-dt {
      font-size: 20px;
      font-weight: 500;
      line-height: 1.6em;
      color: #fff;
    }
    .subtop__btnlist-02-dd {
      font-size: 12px;
      line-height: 1.6em;
      color: #fff;
    }
    
    .subtop__left-03 {
      grid-column: 2 / 3;
      grid-row: 1 / 3;
    }
    
    .subtop__btnlist-03 {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    
    .subtop__btnlist-03-link {
      font-size: 14px;
      letter-spacing: 0.2em;
      line-height: 1em;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .subtop__btnlist-03-link:after {
      content: url("../img/common/arrow_black.svg");
      display: inline-block;
      line-height: 0;
      width: 12px;
    }
    
    .subtop__left-03-title {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
    }
    .subtop__left-03-title::after {
      content: "";
      display: block;
      height: 3px;
      background-color: var(--color-primary);
      flex-grow: 1;
    }
    
    .subtop__left-03-title-text {
      font-size: 30px;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--color-primary);
    }
    
    .subtop__left-03-title:not(:first-child) {
      margin-top: 80px;
    }
    
    .subtop__left-03-content {
      margin-top: 30px;
    }
    
    .subtop__searchbtnlist {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    
    .subtop__searchbtnlist-link {
      width: 100%;
      height: 90px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      position: relative;
      overflow: hidden;
    }
    
    .subtop__searchbtnlist-link::after {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      background-color: rgba(0, 0, 0, 0.4);
    }
    
    .subtop__searchbtnlist-bg {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      transition: transform 0.4s ease;
      will-change: transform;
    }
    
    .subtop__searchbtnlist-link:hover .subtop__searchbtnlist-bg {
      transform: scale(1.2);
    }
    
    
    .subtop__searchbtnlist-link.others .subtop__searchbtnlist-bg {
      background-image: url("../img/common/subtop_search_05.jpg");
    }
    
    .subtop__searchbtnlist-link--en {
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.2em;
      line-height: 1em;
      color: #fff;
      text-align: center;
      position: relative;
      z-index: 3;
      text-indent: 0.2em;
    }
    
    .subtop__searchbtnlist-link--jp {
      font-size: 24px;
      font-weight: 500;
      letter-spacing: 0.2em;
      line-height: 1em;
      color: #fff;
      text-align: center;
      position: relative;
      z-index: 3;
      text-indent: 0.2em;
    }
    
    .subtop .selectlist {
      width: 100%;
      height: 70px;
      border: 1px solid #ccc;
      background:
        url(../img/common/arrow_down.svg) no-repeat center right 20px/ 17px auto,
        #fff;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: #7d7d7d;
      padding: 0px 20px;
      margin-top: 30px;
      max-width: 390px;
      width: 100%;
      height: 50px;
    }
    
    .subtop__booklist-item {
      border-bottom: 1px dashed #949494;
    }
    
    .subtop__booklist-title {
      padding: 20px 0px;
      font-size: 20px;
      font-weight: 500;
      letter-spacing: 0.2em;
      line-height: 1.4em;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-grow: 1;
      cursor: pointer;
    }
    
    .subtop__booklist-title-link {
      padding: 20px 0px;
      font-size: 20px;
      font-weight: 500;
      letter-spacing: 0.2em;
      line-height: 1.4em;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-grow: 1;
      cursor: pointer;
    }
    
    .subtop__booklist-title-link::after {
      content: url("../img/common/arrow_green.svg");
      display: inline-block;
      line-height: 0;
      width: 21px;
      flex-shrink: 0;
    }
    
    .subtop__booklist-title-link:hover {
      color: var(--color-primary);
    }
    
    .subtop__booklist-title::before {
      content: "";
      display: block;
      width: 12px;
      height: 12px;
      line-height: 0;
      border-radius: 50%;
      background-color: var(--color-primary);
      flex-shrink: 0;
    }
    
    .subtop__booklist-title::after {
      content: url("../img/common/arrow_down.svg");
      display: inline-block;
      line-height: 0;
      width: 21px;
      height: 16px;
      flex-shrink: 0;
    }
    
    .subtop__booklist-item.is-open .subtop__booklist-title::after {
      transform: rotate(180deg);
    }
    
    .subtop__booklist-item.is-open .subtop__booklist-title-text,
    .subtop__booklist-title:hover .subtop__booklist-title-text {
      color: var(--color-primary);
    }
    
    .subtop__booklist-title-text {
      flex-grow: 1;
    }
    
    .subtop__booksublist-wrap {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 0fr;
      transition:
        grid-template-rows 0.3s ease-out,
        visibility 0.3s ease-out,
        opacity 0.3s ease-out;
      opacity: 0;
      flex: 1;
      overflow: hidden;
      visibility: hidden;
    }
    
    .subtop__booklist-item.is-open .subtop__booksublist-wrap {
      grid-template-rows: 1fr;
      opacity: 1;
      visibility: visible;
    }
    
    .subtop__booksublist {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 30px;
      padding: 0px 20px;
      background-color: #ddd;
      border-radius: 10px;
      margin-left: 20px;
      margin-bottom: 0px;
      min-height: 0;
      overflow: hidden;
      transition:
        padding 0.3s ease-out,
        margin-bottom 0.3s ease-out;
    }
    
    .subtop__booklist-item.is-open .subtop__booksublist {
      padding: 15px 20px;
      margin-bottom: 20px;
    }
    
    .subtop__booksublist-link {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.1em;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .subtop__booksublist-link::after {
      content: url("../img/common/arrow_green.svg");
      display: inline-block;
      line-height: 0;
      width: 16px;
    }
    
    .subtop__booksublist-link:hover {
      color: var(--color-primary);
    }
    
    .subtop__right {
      width: 420px;
      background-color: var(--color-primary);
      padding: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .subtop__right-link {
      transition: 0.1s opacity ease-out;
    }
    .subtop__right-link:hover {
      opacity: 0.7;
    }
    
    .subtop__right-title {
      font-size: 30px;
      font-weight: 700;
      color: #fff;
      text-align: center;
      margin-bottom: 30px;
    }
    .subtop__right-img {
      width: 100%;
      max-width: 260px !important;
      margin: 0 auto 30px;
      display: block;
    }
    
    .subtop__right-dl {
      margin-bottom: 30px;
    }
    
    .subtop__right-dt {
      text-align: center;
      color: #fff;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    
    .subtop__right-dd {
      color: #fff;
      font-size: 14px;
      line-height: 1.6em;
    }
    
    @media (width <= 1400px) {
      .subtop__searchbtnlist {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (width > 1251px) {
      .subtop__btnlist-03-link:hover {
        text-decoration: underline;
        text-underline-offset: 2px;
      }
    }
    
    @media (width <= 1250px) {
      .subtop__left {
        display: block;
        padding: 40px;
      }
      .subtop__left-01 {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 10px;
        margin-bottom: 50px;
      }
      .subtop__logo-link {
        width: 110px;
      }
      .subtop__btnlist-01 {
        flex-grow: 1;
      }
      .subtop__left-03 {
        margin-bottom: 40px;
      }
      .subtop__left-03-title:not(:first-child) {
        margin-top: 40px;
      }
      .subtop__left-03-title-text {
        font-size: 24px;
      }
      .subtop__left-02 {
        gap: 20px;
      }
      .subtop__btnlist-02 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }
      .subtop__btnlist-02-link {
        padding: 0px 10px;
      }
      .subtop__btnlist-03 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }
      .subtop__btnlist-03-item {
        display: flex;
      }
      .subtop__btnlist-03-link {
        border: 1px solid #ccc;
        width: 100%;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: 0.2s background-color ease-out;
      }
      .subtop__btnlist-03-link:hover {
        background-color: var(--color-yellow);
      }
    }
    
    @media (width <= 850px) {
      .subtop__content {
        display: block;
      }
      .subtop__right {
        width: 100%;
      }
    }
    
    @media (width <= 767px) {
      .subtop {
        padding: 20px;
      }
      .subtop__wrap {
        max-height: calc(100dvh - 40px);
      }
      .subtop__left {
        padding: 20px;
      }
      .subtop__logo-link {
        width: 90px;
      }
      .subtop .shoplink,
      .subtop .contactlink {
        height: 40px;
      }
      .subtop__left-03-title-text {
        font-size: 20px;
      }
      .subtop__left-03-content {
        margin-top: 20px;
      }
      .subtop__searchbtnlist-link {
        height: 60px;
      }
      .subtop__searchbtnlist-link--en {
        font-size: 12px;
      }
      .subtop__searchbtnlist-link--jp {
        font-size: 16px;
      }
      .subtop__searchbtnlist {
        gap: 10px;
      }
      .subtop__booklist-title {
        font-size: 14px;
      }
      .subtop__booklist-title::before {
        width: 8px;
        height: 8px;
      }
      .subtop__booklist-title-text {
        font-size: 14px;
      }
      .subtop__booksublist-item:not(:first-child) {
        border-top: 1px dotted #949494;
      }
      .subtop__booklist-item.is-open .subtop__booksublist {
        padding: 5px 15px;
        display: block;
      }
      .subtop__booksublist-link {
        font-size: 14px;
        padding: 10px 0px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
      }
      .subtop__right-title {
        font-size: 20px;
        margin-bottom: 20pxs;
      }
      .subtop__right-img {
        max-width: 180px;
        margin-bottom: 20px;
      }
      .subtop__right-dt {
        font-size: 16px;
      }
      .subtop__right-dd {
        font-size: 12px;
      }
    }
    
    @media (width <= 520px) {
      .subtop__btnlist-02 {
        grid-template-columns: 1fr;
      }
      .subtop__btnlist-03 {
        grid-template-columns: 1fr;
      }
    }
    /* ========================================================================== */
    
    .hero {
      width: 100%;
      height: 100dvh;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      padding: 40px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    
    .hero__catch {
      display: flex;
      flex-direction: column;
      gap: 45px;
      position: relative;
      z-index: 2;
    }
    
    /* .hero__catch::before {
      content: "";
      position: absolute;
      top: -20px;
      left: -70px;
      width: 450px;
      height: 600px;
      background-color: var(--color-primary);
      opacity: 0;
      transform: skewX(-25deg) translateX(-40px);
      z-index: -1;
      transition:
        opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
      transition-delay: var(--delay-before, 0s);
    }
    .hero__catch::after {
      content: "";
      position: absolute;
      top: 50px;
      left: 310px;
      width: 300px;
      height: 600px;
      background-color: var(--color-primary);
      opacity: 0;
      transform: skewX(-25deg) translateX(-40px);
      z-index: -1;
      transition:
        opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
      transition-delay: var(--delay-after, 0s);
    }
    .hero__catch.is-active::before,
    .hero__catch.is-active::after {
      opacity: 0.5;
      transform: skewX(-25deg) translateX(0);
    } */
    
    .catch__main {
      color: #fff;
      font-size: 72px;
      font-weight: 900;
      line-height: 1.4em;
      letter-spacing: 0.2em;
      /* text-shadow: 0 0 25.5px rgba(0, 0, 0, 0.8); */
    }
    
    .catch__main-txt {
      display: inline-block;
      padding: 5px 60px 5px 20px;
      position: relative;
    }
    
    .catch__main-txt::after {
      content: "";
      display: block;
      position: absolute;
      left: 0px;
      top: 0px;
      width: 100%;
      height: 100%;
      background-color: var(--color-primary);
      z-index: -1;
      clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 0 100%);
    }
    
    .catch__main--large {
      font-size: 120px;
    }
    
    .catch__sub {
      color: #fff;
      font-size: 24px;
      font-weight: 700;
      line-height: 1.6em;
      letter-spacing: 0.2em;
      /* text-shadow: 0 0 6.8px rgba(0, 0, 0, 0.8); */
    }
    
    .hero__news {
      display: flex;
      position: absolute;
      bottom: 40px;
      left: 40px;
      z-index: 2;
      background-color: var(--color-primary);
      border-radius: 10px;
      padding: 20px;
    }
    
    .hero__news {
      width: 700px;
    }
    
    .hero__news-title {
      color: #fff;
      font-size: 20px;
      font-weight: 700;
      line-height: 1.6em;
      letter-spacing: 0.1em;
      padding-right: 30px;
      border-right: 1px solid #fff;
      margin-right: 30px;
    }
    
    .hero__news-body {
      display: flex;
      align-items: center;
      min-width: 0;
    }
    
    .hero__news-link {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      color: #fff;
      min-width: 0;
    }
    
    .hero__news-link:hover {
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    
    .hero__news-date {
      color: #fff;
      font-size: 16px;
      line-height: 22px;
      flex-shrink: 0;
    }
    
    .hero__news-category {
      font-size: 12px;
      line-height: 1em;
      background-color: #fff;
      color: var(--color-primary);
      padding: 0px 10px;
      display: inline-flex;
      height: 22px;
      align-items: center;
      flex-shrink: 0;
    }
    
    .hero__news-text {
      font-size: 16px;
      line-height: 1.5em;
      color: #fff;
      flex: 1 1 auto;
      min-width: 0;
    }
    
    .hero__btn-list {
      position: absolute;
      right: 70px;
      bottom: 60px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 60px;
      min-width: 420px;
    }
    
    .hero__btn-item {
      position: relative;
      transition: 0.2s transform ease-out;
    }
    
    .hero__btn-item::after {
      content: "";
      position: absolute;
      bottom: -20px;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--color-primary);
      z-index: -1;
      transform: skewX(-20deg);
    }
    
    .hero__btn-item:hover {
      transform: translateY(-10px);
    }
    
    .hero__btn-link {
      display: flex;
      gap: 20px;
      margin-right: 50px;
    }
    
    .hero__btn-img {
      width: 135px;
      box-shadow: 0px 4px 15px 2px rgba(0, 0, 0, 0.5);
    }
    
    .hero__btn-texts {
      color: #fff;
      font-weight: 900;
      letter-spacing: 0.1em;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      flex-grow: 1;
    }
    
    .hero__btn-text {
      display: inline-block;
      font-variant-numeric: tabular-nums;
      font-feature-settings: "palt";
    }
    
    .hero__btn-text--small {
      font-size: 16px;
    }
    .hero__btn-text--medium {
      font-size: 24px;
    }
    .hero__btn-text--large {
      font-size: 36px;
    }
    
    .hero__btn-text--left {
      text-align: left;
    }
    .hero__btn-text--center {
      text-align: center;
    }
    .hero__btn-text--right {
      text-align: right;
    }
    
    .hero__btn-detail {
      font-size: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: flex-end;
      margin-top: 20px;
    }
    
    .hero__btn-detail::after {
      content: url("../img/common/arrow_white.svg");
      display: inline-block;
      width: 16px;
    }
    
    @media (width <= 1800px) {
      .hero__catch {
        gap: 20px;
      }
      .hero__catch::before {
        width: 350px;
        height: 450px;
      }
      .hero__catch::after {
        left: 200px;
        width: 300px;
        height: 450px;
      }
      .catch__main {
        font-size: 54px;
      }
      .catch__main--large {
        font-size: 90px;
      }
      .catch__main-txt::after {
        clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
      }
      .catch__sub {
        font-size: 22px;
      }
    }
    
    @media (width <= 1400px) {
      .hero__catch::before {
        width: 300px;
        height: 400px;
      }
      .hero__catch::after {
        left: 150px;
        width: 250px;
        height: 350px;
      }
      .catch__main {
        font-size: 40px;
      }
      .catch__main--large {
        font-size: 70px;
      }
      .catch__main-txt::after {
        clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
      }
      .catch__sub {
        font-size: 18px;
      }
      .hero__btn-list {
        min-width: 320px;
      }
      .hero__btn-img {
        width: 100px;
      }
      .hero__btn-text--small {
        font-size: 13px;
      }
      .hero__btn-text--medium {
        font-size: 20px;
      }
      .hero__btn-text--large {
        font-size: 28px;
      }
      .hero__btn-detail {
        font-size: 16px;
        margin-top: 10px;
      }
    }
    
    @media (height <= 800px) {
      .hero {
        height: 800px;
      }
      .hero__catch::before {
        width: 300px;
        height: 400px;
      }
      .hero__catch::after {
        left: 150px;
        width: 250px;
        height: 350px;
      }
      .catch__main {
        font-size: 40px;
      }
      .catch__main--large {
        font-size: 70px;
      }
      .catch__sub {
        font-size: 20px;
      }
      .hero__btn-list {
        min-width: 320px;
      }
      .hero__btn-img {
        width: 100px;
      }
      .hero__btn-text--small {
        font-size: 13px;
      }
      .hero__btn-text--medium {
        font-size: 20px;
      }
      .hero__btn-text--large {
        font-size: 28px;
      }
      .hero__btn-detail {
        font-size: 16px;
        margin-top: 10px;
      }
    }
    
    @media (width <= 1200px) {
      .hero__btn-list {
        bottom: 160px;
      }
      .hero__news {
        width: calc(100% - 80px);
      }
      .hero__news-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
    }
    
    @media (width > 901px) {
      .catch__sub br:first-child {
        display: none;
      }
    }
    
    @media (width <= 900px) {
      .hero {
        padding: 20px;
      }
      .header {
        top: 20px;
        right: 20px;
      }
      .header__logo {
        top: 20px;
        left: 20px;
      }
      .header__logo-img {
        width: 100px;
      }
      .header__nav-list {
        padding: 0px 20px;
        gap: 20px;
      }
      header .shoplink {
        width: 150px;
      }
      .hero {
        align-items: center;
        justify-content: space-between;
        padding-top: 200px;
      }
      .hero__catch::before {
        width: 250px;
        height: 330px;
        left: -10px;
      }
      .hero__catch::after {
        left: 190px;
        width: 230px;
        height: 300px;
      }
      .catch__main {
        font-size: 42px;
      }
      .catch__main--large {
        font-size: 56px;
      }
      .catch__sub {
        text-align: center;
      }
      .hero__news {
        width: calc(100% - 40px);
        bottom: 20px;
        left: 20px;
      }
      .hero__btn-item::after {
        bottom: -2.127vw;
      }
      .hero__btn-list {
        flex-direction: row;
        right: 7.446vw;
        gap: 6.382vw;
      }
      .hero__btn-link {
        gap: 2.127vw;
        margin-right: 5.319vw;
      }
      .hero__btn-img {
        width: 10.638vw;
      }
      .hero__btn-text--small {
        font-size: 1.382vw;
      }
      .hero__btn-text--medium {
        font-size: 2.127vw;
      }
      .hero__btn-text--large {
        font-size: 2.978vw;
      }
      .hero__btn-detail {
        font-size: 1.702vw;
        margin-top: 1.063vw;
      }
    }
    
    @media (width <= 640px) {
      .header__content {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        gap: 10px;
      }
      .header__nav {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
      }
      .shoplink {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
      }
      .header__menu-btn {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
      }
      .hero {
        padding-bottom: 120px;
      }
      .catch__main {
        font-size: 6.5625vw;
      }
      .catch__main-txt {
        padding: 0.78vw 9.37vw 0.78vw 3.125vw;
      }
      .catch__main-txt::after {
        clip-path: polygon(0 0, 100% 0, calc(100% - 4.6875vw) 100%, 0 100%);
      }
      .hero__btn-item::after {
        content: none;
      }
      .hero__btn-list {
        /* position: static;
          width: 100%;
          gap: 5px;
          min-width: auto; */
        display: none;
      }
      .hero__btn-item {
        flex-grow: 1;
        display: flex;
      }
      .hero__btn-link {
        margin-right: 0px;
        background-color: var(--color-primary);
        padding: 10px;
        width: 100%;
        align-items: flex-start;
      }
      .hero__btn-text--small {
        font-size: 12px;
      }
      .hero__btn-text--medium {
        font-size: 16px;
      }
      .hero__btn-text--large {
        font-size: 18px;
      }
      .hero__btn-detail {
        font-size: 12px;
        margin-top: 10px;
      }
      .hero__btn-detail::after {
        width: 12px;
      }
      .hero__news {
        padding: 15px;
        overflow: hidden;
      }
      .hero__news-title {
        margin-right: 10px;
        padding-right: 10px;
      }
      .hero__news-link {
        flex-wrap: wrap;
        gap: 5px 15px;
      }
    }
    
    @media (width <= 480px) {
      .hero {
        padding-inline: 0px;
      }
      .header__nav {
        display: none;
      }
      .shoplink {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
      }
    
      .hero__catch::before {
        width: 212px;
        height: 296px;
        left: -44px;
      }
      .hero__catch::after {
        left: 120px;
        width: 190px;
        height: 246px;
      }
      .catch__sub {
        font-size: 14px;
      }
      .hero__btn-list {
        margin-inline: 20px;
        width: calc(100% - 40px);
      }
      .hero__btn-img {
        display: none;
      }
      .hero__btn-text--right,
      .hero__btn-text--center {
        text-align: left;
      }
    }
    
    /* オフィス・スペースとは ========================================================================== */
    
    .about {
      padding: 180px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 300px;
      position: relative;
      margin-bottom: 200px;
      overflow: hidden;
    }
    
    .about__content {
      width: 480px;
      position: relative;
      padding-left: 70px;
    }
    
    .about__content::after {
      content: "";
      position: absolute;
      top: 50px;
      left: 0;
      width: 600px;
      height: calc(100% + 30px);
      background-color: var(--color-primary);
      opacity: 0.3;
      z-index: -1;
      transform: skewY(-7deg);
    }
    
    .about__dl {
      margin-top: 70px;
      margin-bottom: 40px;
    }
    
    .about__title {
      font-size: 36px;
      font-weight: 700;
      line-height: 1.6em;
      letter-spacing: 0.1em;
    }
    
    .about__txt {
      font-size: 18px;
      line-height: 2em;
      margin-top: 20px;
    }
    
    .passing_the_future {
      position: absolute;
      bottom: -100px;
      right: -200px;
    }
    
    .aboutList {
      display: flex;
      flex-wrap: wrap;
      gap: 70px;
    }
    
    .aboutList__item {
      position: relative;
      width: 230px;
      height: 570px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }
    
    .aboutList__item:nth-child(2) {
      margin-top: 60px;
    }
    .aboutList__item:nth-child(3) {
      margin-top: 120px;
    }
    
    .aboutList__bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      transform: skewY(-7deg);
      overflow: hidden;
      box-shadow: 20px 20px 0px var(--color-primary);
    }
    
    .aboutList__bg::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    
      transform: skewY(7deg) scale(1.2);
      transform-origin: center;
    }
    
    .aboutList__item:nth-child(1) .aboutList__bg::before {
      background: url("../img/top/about_01.jpg") no-repeat center center / cover;
    }
    .aboutList__item:nth-child(2) .aboutList__bg::before {
      background: url("../img/top/about_02.jpg") no-repeat center center / cover;
    }
    .aboutList__item:nth-child(3) .aboutList__bg::before {
      background: url("../img/top/about_03.jpg") no-repeat center center / cover;
    }
    
    .aboutList__bg::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
    }
    
    .aboutList__number {
      position: absolute;
      top: 20px;
      right: 20px;
      color: #fff;
      font-size: 64px;
      font-weight: 700;
      line-height: 1em;
      text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }
    .aboutList__text {
      font-size: 40px;
      font-weight: 700;
      writing-mode: vertical-rl;
      text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      color: #fff;
      letter-spacing: 0.4em;
    }
    .about .button {
      position: relative;
      z-index: 2;
    }
    
    .about__elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      pointer-events: none;
    }
    
    .element-line {
      position: absolute;
      background-color: #36ad7f;
      height: 1px;
      transform: skewY(-7deg);
    }
    
    .element-chip {
      position: absolute;
      background-color: #36ad7f;
      transform: skewY(-7deg);
    }
    
    .element-line--1 {
      top: 24%;
      left: 9%;
      width: 280px;
    }
    
    .element-line--2 {
      bottom: 13%;
      left: 29%;
      width: 440px;
    }
    
    .element-chip--1 {
      top: 30%;
      left: 5%;
      width: 166px;
      height: 46px;
      filter: blur(4px);
    }
    
    .element-chip--2 {
      bottom: 8%;
      left: 8%;
      width: 40px;
      height: 40px;
      filter: blur(6px);
    }
    
    .element-chip--3 {
      top: 42%;
      left: 41%;
      width: 51px;
      height: 43px;
      filter: blur(8px);
    }
    
    .element-chip--4 {
      top: 15%;
      left: 49%;
      width: 35px;
      height: 35px;
      filter: blur(6px);
    }
    
    .element-chip--5 {
      bottom: 16%;
      left: 48%;
      width: 73px;
      height: 60px;
      filter: blur(15px);
    }
    
    .element-chip--6 {
      top: 25%;
      left: 71%;
      width: 307px;
      height: 129px;
      filter: blur(9px);
    }
    
    .element-chip--7 {
      bottom: 10%;
      left: 69%;
      width: 208px;
      height: 88px;
      filter: blur(15px);
    }
    
    .element-chip--8 {
      top: 22%;
      right: 6%;
      width: 139px;
      height: 225px;
      filter: blur(19px);
    }
    
    .element-chip--9 {
      bottom: 25%;
      right: 6%;
      width: 316px;
      height: 106px;
      filter: blur(7px);
    }
    
    @media (width <= 1800px) {
      .about {
        gap: 150px;
        margin-bottom: 100px;
      }
      .about__content {
        width: 400px;
        padding-left: 40px;
      }
      .about__content::after {
        width: 470px;
      }
      .about__dl {
        margin-top: 40px;
        margin-bottom: 20px;
      }
      .about__title {
        font-size: 28px;
      }
      .about__txt {
        font-size: 16px;
      }
      .passing_the_future {
        bottom: -65px;
        right: -100px;
        width: 250px;
      }
      .aboutList {
        gap: 50px;
      }
      .aboutList__item {
        width: 150px;
        height: 450px;
      }
      .aboutList__number {
        font-size: 48px;
      }
      .aboutList__text {
        font-size: 28px;
      }
    }
    
    @media (width <= 1200px) {
      .about {
        flex-direction: column;
        gap: 200px;
        padding-bottom: 100px;
      }
    }
    
    @media (width <= 767px) {
      .about {
        padding: 100px 0px;
        margin-bottom: 0px;
      }
      .aboutList {
        gap: 6.518vw;
      }
      .aboutList__item {
        width: 19.55vw;
        height: 58.67vw;
      }
      .aboutList__number {
        font-size: 6.258vw;
        top: 2.607vw;
        right: 2.607vw;
      }
      .aboutList__text {
        font-size: 3.65vw;
      }
      .aboutList__bg {
        box-shadow: 2.607vw 2.607vw 0px var(--color-primary);
      }
    }
    @media (width > 641px) {
      .about__btn-list {
        display: none;
      }
    }
    @media (width <= 640px) {
      .about {
        gap: 150px;
      }
      .about__content {
        width: 86%;
        padding-inline: 5%;
      }
      .about__content::after {
        width: 100%;
        height: 1105;
        top: 5%;
      }
      .passing_the_future {
        right: 2%;
      }
      .about__btn-list {
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 60px;
        min-width: 420px;
      }
    
      .about__btn-item {
        position: relative;
        transition: 0.2s transform ease-out;
      }
    
      .about__btn-item::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-primary);
        z-index: -1;
        transform: skewX(-20deg);
      }
    
      .about__btn-item:hover {
        transform: translateY(-10px);
      }
    
      .about__btn-link {
        display: flex;
        gap: 20px;
        margin-right: 50px;
      }
    
      .about__btn-img {
        width: 135px;
        box-shadow: 0px 4px 15px 2px rgba(0, 0, 0, 0.5);
      }
    
      .about__btn-texts {
        color: #fff;
        font-weight: 900;
        letter-spacing: 0.1em;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        flex-grow: 1;
      }
    
      .about__btn-text {
        display: inline-block;
        font-variant-numeric: tabular-nums;
        font-feature-settings: "palt";
      }
    
      .about__btn-text--small {
        font-size: 16px;
      }
      .about__btn-text--medium {
        font-size: 24px;
      }
      .about__btn-text--large {
        font-size: 36px;
      }
    
      .about__btn-text--left {
        text-align: left;
      }
      .about__btn-text--center {
        text-align: center;
      }
      .about__btn-text--right {
        text-align: right;
      }
    
      .about__btn-detail {
        font-size: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: flex-end;
        margin-top: 20px;
      }
    
      .about__btn-detail::after {
        content: url("../img/common/arrow_white.svg");
        display: inline-block;
        width: 16px;
      }
    }
    @media (width <= 540px) {
      .about__btn-list {
        min-width: 77.77vw;
        gap: 11.11vw;
      }
      .about__btn-item::after {
        bottom: -3.7vw;
      }
      .about__btn-link {
        margin-right: 9.25vw;
        gap: 3.7vw;
      }
      .about__btn-img {
        width: 25vw;
      }
      .about__btn-text--small {
        font-size: 2.96vw;
      }
      .about__btn-text--medium {
        font-size: 4.44vw;
      }
      .about__btn-text--large {
        font-size: 6.66vw;
      }
      .about__btn-detail {
        font-size: 3.7vw;
        margin-top: 3.7vw;
      }
    }
    @media (width <= 480px) {
      .aboutList__text {
        font-size: 5vw;
      }
      .about__dl {
        margin-top: 20px;
      }
      .about__title {
        font-size: 22px;
      }
      .passing_the_future {
        right: -2%;
        bottom: -100px;
        width: 200px;
      }
    }
    
    /* 土木施工========================================================================== */
    
    .dobokusekou {
      padding: 160px 0 80px;
      position: relative;
      z-index: 2;
    }
    
    .dobokusekou::before {
      content: "";
      background: url("../img/top/dobokusekou_bgline.svg") repeat-x;
      display: block;
      width: 100%;
      height: 43px;
      transform: skewY(7deg);
      position: absolute;
      left: 0%;
      bottom: -46px;
      z-index: 2;
    }
    
    .dobokusekou::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--color-secondary);
      z-index: -1;
      transform: skewY(7deg);
      /* 初期状態：左端で幅ゼロに潰れた状態 */
      clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
      transition: clip-path 1s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    /* スクロールで画面に入ると、左から右へスライドしながら全面を覆う */
    .dobokusekou.scrollanime-on::after {
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    
    .dobokusekou__content {
      max-width: 1600px;
      width: 92%;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
    }
    
    .dobokusekou__left {
      max-width: 480px;
    }
    
    .dobokusekou__title {
      margin-bottom: 50px;
    }
    
    .dobokusekou__title--small {
      font-size: 20px;
      font-weight: 900;
      color: var(--color-primary);
      display: block;
      line-height: 1em;
      margin-bottom: 20px;
    }
    .dobokusekou__title--large {
      font-size: 96px;
      font-weight: 900;
      letter-spacing: 0.1em;
      color: var(--color-primary);
      display: block;
      line-height: 1em;
    }
    
    .dobokusekou__disc {
      font-size: 16px;
      line-height: 1.6em;
      letter-spacing: 0.1em;
      margin-bottom: 30px;
    }
    
    .dobokusekou__price {
      font-size: 24px;
      font-weight: 700;
      line-height: 1em;
    }
    
    .dobokusekou__line {
      background-color: var(--color-primary);
      border: none;
      width: 1px;
      margin-inline: 40px;
    }
    
    .dobokusekou__right {
      display: flex;
      align-items: flex-start;
      gap: 60px;
      max-width: 800px;
    }
    
    .dobokusekou__link {
      width: 100%;
      max-width: 320px;
      display: block;
    }
    
    .dobokusekou__img {
      width: 100%;
      box-shadow: 0px 4px 45.7px rgba(0, 0, 0, 0.5);
    }
    
    .dobokusekou__latestissue-year {
      font-size: 20px;
      font-weight: 700;
      line-height: 1em;
      color: var(--color-primary);
    }
    .dobokusekou__latestissue-year--large {
      font-size: 30px;
      font-weight: 700;
      line-height: 1em;
      color: var(--color-primary);
    }
    
    .dobokusekou__latestissue-month {
      font-size: 36px;
      font-weight: 700;
      line-height: 1em;
      color: var(--color-primary);
      margin-bottom: 20px;
    }
    
    .dobokusekou__latestissue-month--large {
      font-size: 70px;
      font-weight: 700;
      line-height: 1em;
      color: var(--color-primary);
    }
    
    .dobokusekou__latestissue-tokusyu {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    
    .dobokusekou__latestissue-text {
      line-height: 1.4em;
      margin-bottom: 20px;
    }
    
    .dobokusekou__latestissue-release {
      font-size: 12px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      margin-bottom: 30px;
    }
    
    .dobokusekou__latestissue-release::before {
      content: "";
      display: block;
      width: 15px;
      height: 2px;
      background-color: var(--color-primary);
    }
    
    .backnumber {
      width: calc(100% - 80px);
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    
    .backnumber__inner {
      max-width: calc(50% + 800px);
      width: 100%;
    }
    
    .backnumber__title {
      border-left: 5px solid var(--color-primary);
      padding-left: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 40px;
    }
    .backnumber__title--jp {
      font-size: 16px;
      font-weight: 400;
      line-height: 1em;
      color: var(--color-primary);
    }
    .backnumber__title--en {
      font-size: 36px;
      font-weight: 500;
      letter-spacing: 0.1em;
      line-height: 1em;
      color: var(--color-primary);
    }
    
    .backnumber__list-wrap {
      overflow: hidden;
      /* box-shadowが見えるよう内側にpaddingを確保しつつ、
                 負のmarginで見た目の位置・外側の余白は元のまま保つ */
      padding: 20px;
      margin: -20px -20px 20px -20px;
      cursor: grab;
      touch-action: pan-y;
    }
    
    .backnumber__list-wrap.is-dragging {
      cursor: grabbing;
    }
    
    .backnumber__list {
      display: flex;
      flex-wrap: nowrap;
      justify-content: flex-start;
      gap: var(--backnumber-gap, 20px);
      transition: transform 0.4s ease;
      will-change: transform;
    }
    
    .backnumber__item {
      width: var(--backnumber-item-width, 190px);
      flex: 0 0 var(--backnumber-item-width, 190px);
      transition: 0.2s transform ease-out;
    }
    
    .backnumber__item:hover {
      transform: translateY(-10px);
    }
    
    .backnumber__link {
      -webkit-user-drag: none;
      user-select: none;
    }
    
    .backnumber__img {
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
      margin-bottom: 10px;
      -webkit-user-drag: none;
      user-select: none;
      transition: 0.2s box-shadow ease-out;
    }
    
    .backnumber__item:hover .backnumber__img {
      box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
    }
    
    .backnumber__text {
      text-align: center;
      font-size: 18px;
    }
    
    .backnumber__ui {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 40px;
    }
    
    .backnumber__ui .button {
      align-self: center;
    }
    .backnumber__line {
      background-color: var(--color-primary);
      border: none;
      width: 1px;
      margin: 0;
    }
    
    .bucknumber__pagerlist {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 20px;
      align-self: center;
    }
    
    .bucknumber__pagerlist-item {
      width: 60px;
      height: 60px;
      background-color: #fff;
      border: 1px solid var(--color-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition:
        background-color 0.2s ease,
        color 0.2s ease,
        filter 0.2s ease;
    }
    .bucknumber__pagerlist-item.prev::after {
      content: url("../img/common/arrow_green.svg");
      display: inline-block;
      line-height: 0;
      width: 16px;
      transform: rotate(180deg);
      transition: filter 0.2s ease;
    }
    .bucknumber__pagerlist-item.next::after {
      content: url("../img/common/arrow_green.svg");
      display: inline-block;
      line-height: 0;
      width: 16px;
      transition: filter 0.2s ease;
    }
    
    .bucknumber__pagerlist-item:hover {
      background-color: var(--color-primary);
      color: #fff;
    }
    .bucknumber__pagerlist-item:hover::after {
      filter: brightness(0) invert(1);
    }
    
    .bucknumber__pagerlist-item.is-disabled {
      opacity: 0.3;
      cursor: default;
      pointer-events: none;
    }
    
    @media (width <= 1800px) {
      .dobokusekou__title {
        margin-bottom: 30px;
      }
      .dobokusekou__title--small {
        font-size: 16px;
      }
      .dobokusekou__title--large {
        font-size: 72px;
      }
      .dobokusekou__link {
        max-width: 200px;
      }
    }
    
    @media (width <= 1200px) {
      .dobokusekou__content {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 70px;
      }
      .dobokusekou__line {
        width: 100%;
        height: 1px;
        margin: 40px 0px;
      }
    }
    
    @media (width <= 767px) {
      .dobokusekou__title--small {
        margin-bottom: 10px;
      }
      .dobokusekou__title--large {
        font-size: 54px;
      }
    }
    
    @media (width <= 640px) {
      .dobokusekou {
        padding: 80px 0 80px;
      }
      .dobokusekou__right {
        flex-direction: column;
        align-items: center;
        gap: 30px;
      }
      .dobokusekou__img {
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
      }
      .dobokusekou__latestissue {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        justify-content: center;
      }
      .dobokusekou__latestissue-year {
        line-height: 70px;
        margin-right: 10px;
      }
      .dobokusekou__latestissue-release {
        width: 100%;
      }
    }
    
    /* 書籍のご案内========================================================================== */
    
    .bookinfo {
      padding: 500px 0 300px;
      position: relative;
      margin-top: -300px;
    }
    
    .bookinfo__bg-anime {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      overflow: hidden;
      pointer-events: none;
    }
    
    .bookinfo__bg-anime::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--color-primary);
      /* 初期状態：左端で幅ゼロの斜めライン状に潰れた状態 */
      clip-path: polygon(0% 0%, 0% 0%, -15% 100%, -15% 100%);
      transition: clip-path 1s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    /* スクロールで画面に入ると、斜めのラインに沿って左から右へスライドしながら全面を覆う */
    .bookinfo__bg-anime.scrollanime-on::before {
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    
    .bookinfo__title {
      max-width: 1600px;
      width: calc(100% - 140px);
      margin: 0 auto 80px;
      position: relative;
      line-height: 1em;
    }
    
    .bookinfo__title--en {
      font-size: 150px;
      font-weight: 700;
      line-height: 1em;
      color: var(--color-primary-dark);
      position: relative;
      left: -90px;
      padding-left: 20px;
    }
    
    .bookinfo__title--jp {
      font-size: 32px;
      font-weight: 700;
      line-height: 150px;
      letter-spacing: 0.1em;
      color: #fff;
      position: absolute;
      left: 0px;
      top: 0px;
    }
    
    .bookinfo__content {
      display: flex;
      justify-content: center;
      gap: 90px;
      width: 92%;
      margin: 0 auto;
    }
    
    .bookinfo__nav-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
      position: relative;
      z-index: 2;
    }
    
    .bookinfo__nav-item {
      width: 340px;
      min-height: 90px;
      position: relative;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 10px 30px;
      cursor: pointer;
    }
    
    .bookinfo__nav-item::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background-color: #fff;
      position: absolute;
      left: 0;
      top: 0;
      transform: skewX(-15deg);
      z-index: -1;
      box-shadow: 7px 7px 0px var(--color-primary-dark);
      transition:
        background-color 0.2s ease,
        width 0.2s ease;
    }
    
    .bookinfo__nav-item.current::before {
      background-color: var(--color-yellow);
      width: 110%;
    }
    
    .bookinfo__nav-item::after {
      content: url("../img/common/arrow_green.svg");
      display: inline-block;
      line-height: 0;
      width: 23px;
      transition: filter 0.2s ease;
    }
    
    .bookinfo__nav-item-text {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.4em;
      letter-spacing: 0.1em;
      color: var(--color-primary);
    }
    
    .bookinfo__detail-list {
      max-width: 1100px;
      display: grid;
    }
    
    .bookinfo__detail-item {
      grid-area: 1 / 1;
      display: grid;
      grid-template-columns: auto auto;
      grid-template-rows: auto auto;
      align-items: center;
      gap: 20px 90px;
      opacity: 0;
    }
    
    .bookinfo__detail-item.current {
      opacity: 1;
      pointer-events: auto;
      animation: bookinfoDetailArcIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    
    @media (width > 1001px) {
      .bookinfo__detail-item {
        transform: translate(-40px, 40px);
        transition:
          opacity 0.35s ease,
          transform 0.35s ease;
        pointer-events: none;
      }
      @keyframes bookinfoDetailArcIn {
        0% {
          opacity: 0;
          transform: translate(-70px, 50px) scale(0.92);
        }
        60% {
          opacity: 1;
          transform: translate(18px, -14px) scale(1.02);
        }
        100% {
          opacity: 1;
          transform: translate(0, 0) scale(1);
        }
      }
    }
    
    .bookinfo__detail-title {
      font-size: 48px;
      font-weight: 900;
      line-height: 1.4em;
      letter-spacing: 0.2em;
      color: #fff;
      grid-column: 2 / 3;
      grid-row: 1 / 2;
      align-self: flex-end;
    }
    .bookinfo__detail-img {
      max-width: 400px;
      width: 100%;
      grid-column: 1 / 2;
      grid-row: 1 / 3;
    }
    
    .bookinfo__detail-content {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      gap: 40px;
      grid-column: 2 / 3;
      grid-row: 2 / 3;
      align-self: flex-start;
    }
    
    .bookinfo__detail-text {
      font-size: 16px;
      line-height: 1.6em;
      color: #fff;
    }
    
    .bookinfo_detail-btnlist {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 30px;
    }
    
    @media (width <= 1800px) {
      .bookinfo__title--en {
        font-size: 110px;
      }
      .bookinfo__title--jp {
        font-size: 26px;
        line-height: 110px;
      }
      .bookinfo__nav-item {
        width: 300px;
      }
      .bookinfo__detail-item {
        gap: 40px;
      }
      .bookinfo__detail-title {
        font-size: 36px;
      }
    }
    
    @media (width <= 1200px) {
      .bookinfo__title {
        margin-bottom: 40px;
      }
      .bookinfo__title--en {
        font-size: 90px;
      }
      .bookinfo__title--jp {
        font-size: 22px;
        line-height: 90px;
      }
      .bookinfo__detail-item {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
      }
      .bookinfo__detail-title {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        align-self: flex-end;
      }
      .bookinfo__detail-title br {
        display: none;
      }
      .bookinfo__detail-img {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
      }
      .bookinfo_detail-btnlist {
        justify-content: center;
      }
      .bookinfo__detail-content {
        align-self: center;
      }
    }
    
    @media (width <= 1000px) {
      .bookinfo {
        padding: 450px 0 200px;
      }
      .bookinfo__title {
        width: calc(100% - 7vw);
      }
      .bookinfo__title--en {
        font-size: 9vw;
        width: 95vw;
        display: block;
        left: -4vw;
        top: -5vw;
      }
      .bookinfo__title--jp {
        font-size: 22px;
        line-height: 9vw;
      }
      .bookinfo__nav {
        display: none;
      }
      .bookinfo__detail-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 100px;
      }
      .bookinfo__detail-item {
        opacity: 1;
        align-items: flex-start;
      }
      .bookinfo__detail-item:nth-of-type(odd) {
        flex-direction: row;
      }
      .bookinfo__detail-item:nth-of-type(even) {
        flex-direction: row-reverse;
      }
      .bookinfo__detail-content {
        gap: 20px;
      }
      .bookinfo__detail-title {
        font-size: 24px;
      }
      .bookinfo_detail-btnlist {
        justify-content: flex-start;
      }
    }
    
    @media (width <= 640px) {
      .bookinfo__detail-item {
        gap: 20px;
      }
      .bookinfo__detail-content {
        gap: 10px;
      }
      .bookinfo__detail-title {
        font-size: 20px;
      }
      .bookinfo_detail-btnlist .button {
        width: 100%;
        min-width: none;
      }
      .bookinfo__detail-img {
        min-width: 120px;
      }
    }
    
    @media (width <= 480px) {
      .bookinfo__detail-item:nth-of-type(odd),
      .bookinfo__detail-item:nth-of-type(even) {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .bookinfo__detail-title {
        align-self: center;
      }
      .bookinfo__detail-img {
        width: 80%;
      }
    }
    
    /* トップ検索========================================================================== */
    
    .topSearch {
      position: relative;
      background: url("../img/top/topsearch_bg.jpg") no-repeat center center / cover;
      z-index: 2;
    }
    
    .topSearch::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(10px);
      z-index: -1;
    }
    
    .topSearch__content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      gap: 20px 90px;
      position: relative;
      top: -100px;
      z-index: 2;
      width: 92%;
      margin: 0 auto;
      max-width: 1600px;
      background-color: var(--color-secondary);
      border-radius: 30px;
      padding: 80px 40px;
    }
    
    .topSearch__left .h2Title {
      margin-bottom: 50px;
    }
    
    .topSearch__subTitle {
      font-size: 24px;
      font-weight: 700;
      line-height: 1em;
      letter-spacing: 0.2em;
      border-left: 5px solid var(--color-primary);
      padding-left: 10px;
      margin-bottom: 20px;
    }
    
    .topSearch .selectlist {
      width: 100%;
      height: 70px;
      border: 1px solid #ccc;
      background:
        url(../img/common/arrow_down.svg) no-repeat center right 20px/ 17px auto,
        #fff;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: #7d7d7d;
      padding: 0px 20px;
    }
    
    .topSearch__right {
      max-width: 770px;
      width: 100%;
    }
    
    .topSearch__list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 770px;
      width: 100%;
    }
    
    .topSearch__link {
      border: 1px solid #ccc;
      background-color: #fff;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 10px;
      height: 100px;
      font-size: 24px;
      font-weight: 700;
      letter-spacing: 0.2em;
      transition:
        background-color 0.2s ease,
        color 0.2s ease,
        filter 0.2s ease;
    }
    
    .topSearch__link:hover {
      background-color: var(--color-primary);
      color: #fff;
    }
    .topSearch__link:hover .topSearch__img {
      filter: brightness(0) invert(1);
    }
    
    @media (width <= 767px) {
      .topSearch__content {
        padding: 40px 20px;
      }
      .topSearch__left .h2Title {
        margin-bottom: 20px;
      }
      .topSearch__list {
        gap: 10px;
      }
      .topSearch__link {
        font-size: 18px;
        gap: 10px;
        height: 60px;
      }
    }
    
    @media (width <= 480px) {
      .topSearch__list {
        grid-template-columns: 1fr;
      }
      .topSearch__subTitle {
        font-size: 18px;
      }
    }
    
    /* トップリンクタイル========================================================================== */
    
    .topLinkTile {
      height: 400px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 180px;
    }
    
    .topLinkTile__item {
      width: 50%;
      display: flex;
      height: 100%;
    }
    
    .topLinkTile__link {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      position: relative;
      overflow: hidden;
    }
    
    .topLinkTile__link::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      transition: transform 0.5s ease-out;
    }
    
    .topLinkTile__link:hover::before {
      transform: scale(1.2);
      transition: transform 3s ease-out;
    }
    .topLinkTile__link.advertising::before {
      background: url("../img/top/toptile_01.jpg") no-repeat center center / cover;
    }
    .topLinkTile__link.booksellers::before {
      background: url("../img/top/toptile_02.jpg") no-repeat center center / cover;
    }
    
    .topLinkTile__dl {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      width: 100%;
      position: relative;
    }
    
    .topLinkTile__dl::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 1;
      transition: 0.5s background-color ease-out, 0.2s width ease-out, 0.2s height ease-out, 0.2s top ease-out, 0.2s left ease-out;
    }
    .topLinkTile__link:hover .topLinkTile__dl::before {
      background-color: rgba(255, 255, 255, 0.7);
      width: calc(100% - 40px);
      height: calc(100% - 40px);
      top: 20px;
      left: 20px;
    }
    
    .topLinkTile__dl::after {
      content: "";
      position: absolute;
      top: 20px;
      left: 20px;
      width: calc(100% - 40px);
      height: calc(100% - 40px);
      background-color: rgba(255, 255, 255, 0.2);
      z-index: 2;
      transition:
        opacity 0.2s ease-out,
        transform 0.2s ease-out;
    }
    
    .topLinkTile__link:hover .topLinkTile__dl::after {
      opacity: 0;
      transform: scale(1.2);
    }
    
    .topLinkTile__dt {
      position: relative;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    .topLinkTile__dt-en {
      font-size: 16px;
      letter-spacing: 0.1em;
      color: var(--color-primary);
      margin-bottom: 5px;
    }
    
    .topLinkTile__dt-jp {
      font-size: 32px;
      font-weight: 700;
      color: #fff;
      transition: 0.2s color ease-out;
    }
    
    .topLinkTile__link:hover .topLinkTile__dt-jp {
      color: #000;
    }
    
    .topLinkTile__text {
      color: #fff;
      position: relative;
      z-index: 3;
    }
    
    .topLinkTile__link:hover .topLinkTile__text {
      color: #000;
    }
    
    @media (width <= 767px) {
      .topLinkTile {
        height: 300px;
        margin-bottom: 100px;
      }
      .topLinkTile__dt-jp {
        font-size: 24px;
      }
    }
    
    @media (width <= 640px) {
      .topLinkTile {
        display: block;
        height: auto;
      }
      .topLinkTile__item {
        width: 100%;
        height: 300px;
      }
    }
    
    @media (width <= 480px) {
      .topLinkTile__item {
        height: 200px;
      }
      .topLinkTile__dl {
        gap: 10px;
      }
    }
    
    /* トップお知らせ========================================================================== */
    
    .topnews {
      max-width: 1100px;
      width: 92%;
      margin: 0 auto 100px;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 60px;
    }
    
    .topnews__content {
      display: flex;
      gap: 90px;
      width: 100%;
    }
    
    .topnews .h2Title--en {
      font-size: 48px;
      margin-top: 10px;
    }
    
    .topnews__list {
      flex-grow: 1;
      border-top: 1px solid #ccc;
    }
    .topnews__item {
      border-bottom: 1px solid #ccc;
    }
    
    .topnews__link {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 30px;
      transition: background-color 0.1s ease;
    }
    
    .topnews__link::after {
      content: url("../img/common/arrow_green2.svg");
      display: inline-block;
      width: 10px;
    }
    
    .topnews__link:hover {
      background-color: var(--color-secondary);
    }
    
    .topnews__date {
      font-size: 20px;
      line-height: 1em;
      flex-shrink: 0;
    }
    .topnews__category {
      font-size: 14px;
      font-weight: 700;
      line-height: 1em;
      color: #fff;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      background-color: var(--color-primary);
      width: 80px;
      height: 25px;
      flex-shrink: 0;
    }
    
    .topnews__text {
      font-size: 20px;
      line-height: 1.6em;
      flex-grow: 1;
    }
    
    .topnews .button {
      max-width: 200px;
    }
    
    @media (width <= 1200px) {
      .topnews__content {
        gap: 40px;
      }
    }
    
    @media (width <= 1000px) {
      .topnews__content {
        flex-direction: column;
        align-items: center;
      }
      .topnews__list {
        width: 100%;
      }
    }
    
    @media (width <= 767px) {
      .topnews__link {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        gap: 5px 20px;
        padding: 15px 0px;
      }
      .topnews__date {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        font-size: 16px;
      }
      .topnews__category {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        font-size: 12px;
        height: 20px;
      }
      .topnews__text {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        font-size: 16px;
      }
      .topnews__link::after {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
      }
    }
    
    /* トップリンクタイル２========================================================================== */
    
    .toplinktile2 {
      display: flex;
      flex-wrap: wrap;
      max-width: 1100px;
      width: 92%;
      margin: 0 auto;
      gap: 20px;
    }
    
    .toplinktile2__item {
      flex-grow: 1;
    }
    
    .toplinktile2__link {
      position: relative;
      width: 100%;
      height: 200px;
      padding-right: 50px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
      gap: 5px;
      border: 1px solid #ccc;
      z-index: 2;
    }
    .toplinktile2__link::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.33) 36%,
        rgba(255, 255, 255, 1) 64%,
        rgba(255, 255, 255, 1) 100%
      );
    }
    
    .toplinktile2__link:hover {
      opacity: 0.7;
    }
    
    .toplinktile2__link.company {
      background: url("../img/top/toptile2_01.jpg") no-repeat center center / cover;
    }
    .toplinktile2__link.recruit {
      background: url("../img/top/toptile2_02.jpg") no-repeat center center / cover;
    }
    
    .toplinktile2--en {
      font-size: 16px;
      letter-spacing: 0.1em;
      line-height: 1em;
      color: var(--color-primary);
      position: relative;
      z-index: 2;
    }
    .toplinktile2--jp {
      font-size: 32px;
      font-weight: 500;
      line-height: 1em;
      position: relative;
      z-index: 2;
    }
    
    @media (width <= 1000px) {
      .toplinktile2__link {
        height: 150px;
        padding-right: 20px;
      }
      .toplinktile2--jp {
        font-size: 24px;
      }
    }
    @media (width <= 640px) {
      .toplinktile2 {
        flex-direction: column;
      }
    }
    
    /* フッター========================================================================== */
    
    .foot__contact {
      background-color: var(--color-primary);
      padding: 70px 0;
      display: flex;
      flex-direction: column;
      gap: 70px;
    }
    
    .foot__contact-content {
      max-width: 1600px;
      width: 92%;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
    }
    
    .foot__contact .h2Title--jp,
    .foot__contact .h2Title--en {
      color: #fff;
    }
    
    .foot__contact-disc {
      font-size: 20px;
      letter-spacing: 0.1em;
      line-height: 1.6em;
      color: #fff;
    }
    
    .contactlink.foot__contact-link {
      border: none;
      width: 500px;
      height: 100px;
      font-size: 24px;
    }
    
    .contactlink.foot__contact-link::before {
      width: 30px;
      height: 30px;
    }
    
    .foot__contact-dl {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .foot__contact-dt {
      font-size: 24px;
      font-weight: 700;
      line-height: 1em;
      color: #fff;
      border-left: 5px solid #fff;
      padding-left: 10px;
    }
    
    .foot__contact-dd {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
    
    .foot__contact-dd-number {
      font-size: 64px;
      font-weight: 700;
      line-height: 1em;
      color: #fff;
      letter-spacing: 0.1em;
    }
    .foot__contact-dd-time {
      font-size: 16px;
      font-weight: 400;
      line-height: 1em;
      color: #fff;
    }
    
    .foot__contact-dd-time {
      display: inline-block;
      font-size: 16px;
      letter-spacing: 0.1em;
      line-height: 1em;
      color: #fff;
      border: 1px solid #fff;
      border-radius: 30px;
      padding: 8px 15px;
    }
    
    .foot__sitemap {
      padding: 120px 0px;
      background-color: var(--color-secondary);
    }
    
    .foot__sitemap-content {
      max-width: 1600px;
      width: 92%;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
    }
    
    .foot__logo {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
      margin-bottom: 30px;
    }
    
    .foot__logo-img {
      width: 130px;
    }
    
    .foot__logo-catch {
      font-size: 48px;
      font-weight: 900;
      letter-spacing: 0.2em;
      line-height: 1.4em;
      color: var(--color-primary);
    }
    
    .foot__address {
      font-size: 14px;
      line-height: 1.6em;
    }
    
    .foot__sitemap-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 40px;
    }
    
    .foot__sitemap-linkbox {
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
      width: 100%;
      justify-content: center;
    }
    
    .foot__sitemap-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }
    
    @media (width > 581px) {
      .foot__sitemap-list {
        max-width: 250px;
      }
    }
    
    .foot__sitemap-item {
      line-height: 1em;
    }
    
    .foot__sitemap-link {
      border-left: 5px solid var(--color-primary);
      padding-left: 10px;
      font-size: 16px;
      font-weight: 500;
      line-height: 1em;
    }
    
    .foot__sitemap-link:hover {
      color: var(--color-primary);
    }
    
    .foot__sitemap-sublist {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
      margin-left: 20px;
    }
    
    .foot__sitemap-subitem {
      line-height: 1em;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .foot__sitemap-subitem::before {
      content: "";
      display: block;
      width: 15px;
      height: 3px;
      background-color: var(--color-primary);
      flex-shrink: 0;
    }
    
    .foot__sitemap-sublink {
      font-size: 16px;
      line-height: 1.4em;
    }
    
    .foot__sitemap-sublink:hover {
      color: var(--color-primary);
    }
    
    .foot__sitemap-linkbox-inner {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    
    .foot__sitemap-list2 {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 30px;
    }
    
    .foot__sitemap-item2 {
      line-height: 1em;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
    }
    
    .foot__sitemap-item2::before {
      content: "";
      display: block;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background-color: var(--color-primary);
    }
    
    .foot__sitemap-link2 {
      font-size: 16px;
      line-height: 1em;
    }
    
    .foot__sitemap-link2:hover {
      color: var(--color-primary);
    }
    
    @media (width <= 1800px) {
      .foot__contact-content {
        max-width: 1100px;
      }
      .contactlink.foot__contact-link {
        width: 300px;
      }
      .foot__contact-dl {
        gap: 10px;
      }
      .foot__contact-dd-number {
        font-size: 48px;
      }
    }
    
    @media (width <= 1600px) {
      .foot__sitemap {
        padding: 60px 0;
      }
      .foot__sitemap-content {
        flex-direction: column;
        max-width: 850px;
        gap: 40px;
      }
      .foot__sitemap-left {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .foot__logo {
        gap: 20px;
        margin-bottom: 0px;
      }
      .foot__logo-img {
        width: 90px;
      }
      .foot__logo-catch {
        font-size: 32px;
      }
    }
    
    @media (width <= 1200px) {
      .foot__contact-content .h2Title {
        width: 100%;
      }
      .foot__contact-disc {
        width: 100%;
      }
      .foot__contact-disc br {
        display: none;
      }
      .foot__contact {
        position: relative;
      }
      .foot__contact-content {
        justify-content: center;
        gap: 20px 40px;
      }
      .contactlink.foot__contact-link {
        position: absolute;
        top: 90px;
        right: 50px;
        height: 70px;
        font-size: 18px;
      }
    }
    @media (width <= 900px) {
      .foot__sitemap-left {
        flex-direction: column;
        gap: 20px;
      }
      .foot__sitemap-linkbox-inner {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 20px;
      }
      .foot__sitemap-right {
        align-items: center;
      }
      .foot__sitemap-list2 {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        margin-top: 0px;
      }
    }
    @media (width <= 767px) {
      .foot__contact {
        gap: 40px;
      }
      .foot__contact-content {
        flex-direction: column;
        align-items: center;
      }
      .contactlink.foot__contact-link {
        position: static;
      }
    }
    
    @media (width <= 580px) {
      .foot__sitemap-content {
        width: 100%;
      }
      .foot__sitemap-linkbox {
        flex-direction: column;
        gap: 0;
      }
      .foot__sitemap-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0px;
      }
      .foot__sitemap-item {
        width: 50%;
        border-bottom: 1px solid #ccc;
      }
      .foot__sitemap-item:nth-of-type(even) {
        border-left: 1px solid #ccc;
      }
      .foot__sitemap-link {
        height: 50px;
        padding: 10px;
        background-color: #fff;
        display: flex;
        border-left: 0px;
        align-items: center;
        line-height: 1.4em;
      }
      .foot__sitemap-link::before {
        content: "";
        background-color: var(--color-primary);
        display: block;
        width: 5px;
        height: 1em;
        margin-right: 10px;
      }
      .foot__sitemap-list:has(.foot__sitemap-sublist) {
        background-color: #fff;
      }
      .foot__sitemap-list:has(.foot__sitemap-sublist) .foot__sitemap-item {
        width: 100%;
      }
      .foot__sitemap-sublist {
        margin: 0px 0px 15px 15px;
        background-color: var(--color-secondary);
        border-radius: 10px 0px 0px 10px;
        padding: 15px;
        gap: 0;
      }
      .foot__sitemap-subitem:not(:first-child) {
        border-top: 1px dotted var(--color-primary);
      }
      .foot__sitemap-sublink {
        display: block;
        flex-grow: 1;
        padding: 10px 0px;
      }
      .foot__sitemap-linkbox-inner {
        margin-top: 30px;
      }
      .foot__sitemap-list2 {
        flex-direction: column;
        align-items: center;
      }
    }
    
    @media (width <= 480px) {
      .foot__contact-disc {
        font-size: 14px;
      }
      .contactlink.foot__contact-link {
        width: 260px;
        height: 60px;
        font-size: 14px;
      }
      .contactlink.foot__contact-link::before {
        width: 17px;
        height: 17px;
      }
      .foot__contact-dt {
        font-size: 18px;
      }
      .foot__contact-dd-number {
        font-size: 36px;
      }
      .foot__logo {
        gap: 4.16vw;
      }
      .foot__logo-img {
        width: 18.75vw;
      }
      .foot__logo-catch {
        font-size: 6.66vw;
      }
      .foot__address {
        margin-inline: 20px;
      }
      .foot__sitemap-item {
        width: 100%;
      }
      .foot__sitemap-item:nth-of-type(even) {
        border-left: none;
      }
    }
    
    /* 直取引のご案内========================================================================== */
    
    .direct-main {
      margin-top: 80px;
      display: flex;
      height: 800px;
    }
    
    .direct-main__title {
      flex-grow: 1;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row-reverse;
      align-items: center;
      justify-content: center;
      gap: 50px;
      min-width: 300px;
      flex-shrink: 0;
    }
    
    .direct-main__title--small {
      font-size: 26px;
      font-weight: 300;
      letter-spacing: 1.2em;
      writing-mode: vertical-rl;
      position: relative;
      top: -130px;
    }
    
    .direct-main__title--large {
      font-size: 38px;
      font-weight: 300;
      writing-mode: vertical-rl;
      border-left: 1px solid #000;
      border-right: 1px solid #000;
      padding: 20px 40px;
      letter-spacing: 0.4em;
      line-height: 1em;
    }
    
    .direct-main__img {
      width: calc(50% + 540px);
      border-top-left-radius: 80px;
      background: url(../img/direct/main.jpg) no-repeat center/cover;
      position: relative;
      overflow: hidden;
      display: flex;
    }
    .direct-main__img::after {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      background-color: rgba(0, 0, 0, 0.5);
    }
    
    .direct-main__inner {
      max-width: 1080px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
      gap: 50px;
    }
    
    .direct-main__catch {
      display: inline-block;
      background-color: rgba(54, 173, 127, 0.5);
      font-size: 38px;
      font-weight: 400;
      color: #fff;
      letter-spacing: 0.2em;
      line-height: 1em;
      padding: 40px 70px;
      text-align: center;
    }
    
    .direct-main__company {
      border-top: 1px solid #fff;
      border-bottom: 1px solid #fff;
      color: #fff;
      font-size: 24px;
      font-weight: 400;
      letter-spacing: 0.2em;
      padding: 20px;
      line-height: 1.8em;
      text-align: center;
    }
    
    .direct-main__company--large {
      font-size: 38px;
    }
    
    .direct-about {
      max-width: 1080px;
      width: 92%;
      margin: -80px auto 0;
      padding: 100px 0px;
      background-color: #fff;
      border-top-right-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }
    
    .direct-about__title {
      writing-mode: vertical-rl;
      font-size: 36px;
      font-weight: 300;
      letter-spacing: 0.2em;
      text-align: center;
      margin-bottom: 70px;
      line-height: 2em;
    }
    
    .direct-about__txt {
      font-size: 16px;
      font-weight: 300;
      letter-spacing: 0.2em;
      line-height: 1.8em;
      text-align: center;
    }
    
    .direct-about__img-01 {
      width: 363px;
      height: 537px !important;
      object-fit: cover;
      object-position: 80% center;
      position: absolute;
      left: -190px;
      top: 20%;
    }
    
    .direct-about__img-02 {
      width: 220px;
      position: absolute;
      right: -40px;
      top: 25%;
    }
    .direct-about__img-03 {
      width: 316px;
      position: absolute;
      right: -420px;
      top: 34%;
    }
    .direct-about__img-04 {
      width: 316px;
      position: absolute;
      right: -290px;
      top: 63%;
    }
    
    .direct-deai {
      position: relative;
      padding: 200px 0px 50px;
    }
    
    .direct-deai::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #e5eeea;
      z-index: -1;
    
      /* X軸 Y軸 のパーセンテージで各頂点の位置を指定します */
      clip-path: polygon(0 0, 100% 16%, 100% 85%, 0% 100%);
    }
    
    .direct-deai__title {
      font-size: 36px;
      font-weight: 300;
      letter-spacing: 0.2em;
      width: 80%;
      margin: 0 auto 90px;
      display: flex;
      align-items: flex-start;
    }
    
    .direct-deai__title::before {
      content: "";
      display: block;
      width: 250px;
      height: 1px;
      background-color: #000;
      margin-right: 20px;
      margin-top: 0.8em;
    }
    
    .direct-deai__content {
      max-width: 1080px;
      width: 92%;
      margin: 0 auto;
    }
    
    .direct-deai__img {
      width: 680px;
      height: 515px !important;
      object-fit: cover;
      object-position: 60% center;
      position: relative;
      left: -200px;
      display: flex;
      flex-wrap: wrap;
    }
    
    .direct-deai__txt {
      width: 650px;
      padding: 50px;
      background-color: #fff;
      font-size: 16px;
      font-weight: 300;
      line-height: 1.8em;
      letter-spacing: 0.2em;
      position: relative;
      top: -210px;
      z-index: 2;
      justify-self: flex-end;
    }
    
    .order {
      max-width: 830px;
      width: 92%;
      margin: 100px auto 240px;
    }
    
    .direct__h2title {
      font-size: 48px;
      font-weight: 300;
      letter-spacing: 0.2em;
      margin-bottom: 50px;
      text-align: center;
    }
    
    .direct-order__disc {
      text-align: center;
      font-size: 16px;
      margin-bottom: 70px;
    }
    
    .direct-order__subtitle {
      font-size: 40px;
      font-weight: 300;
      letter-spacing: 0.2em;
      display: flex;
      align-items: center;
      gap: 50px;
      margin-bottom: 40px;
    }
    
    .direct-order__subtitle::before,
    .direct-order__subtitle::after {
      content: "";
      display: block;
      height: 1px;
      background-color: #000;
      flex-grow: 1;
    }
    
    .direct-order__txt {
      font-size: 16px;
      width: fit-content;
      margin: 0 auto 40px;
    }
    
    .direct-order__table {
      width: 100%;
      max-width: 580px;
      margin: 0 auto 140px;
      border-collapse: separate;
      border-spacing: 5px;
    }
    
    .direct-order__table th {
      background-color: #000;
      color: #fff;
      font-size: 16px;
      padding: 15px;
    }
    
    .direct-order__table td {
      padding: 30px 10px;
      border-bottom: 1px solid #000;
      vertical-align: middle;
      font-size: 16px;
    }
    
    .direct-order__list-link {
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    
    .direct-order__list-content {
      display: flex;
    }
    
    .direct-order__list-content::before {
      content: "";
      display: block;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background:
        url(../img/common/arrow_white.svg) no-repeat center/60% auto,
        var(--color-primary);
      margin-right: 5px;
      margin-top: 7px;
      line-height: 24px;
      flex-shrink: 0;
    }
    
    .direct-order__list-link:hover {
      color: var(--color-primary);
    }
    
    .direct-faq {
      max-width: 1080px;
      width: 92%;
      margin: 0 auto 150px;
    }
    
    .direct-faq__list {
      border-top: 1px solid #000;
      border-bottom: 1px solid #000;
      padding: 30px 0px;
    }
    
    .direct-faq__list:not(:first-child) {
      margin-top: 20px;
    }
    
    .direct-faq__q {
      padding: 0px 20px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      cursor: pointer;
    }
    
    .direct-faq__q:not(:first-child) {
      margin-top: 20px;
    }
    
    .direct-faq__q::before {
      content: "Q";
      /* font-family: "Oswald", sans-serif; */
      font-size: 20px;
      font-weight: 700;
      flex-shrink: 0;
      line-height: 26px;
    }
    
    .direct-faq__q::after {
      content: url(../img/common/plus.svg);
      display: block;
      width: 20px;
      line-height: 26px;
      margin-top: 4px;
      flex-shrink: 0;
      margin-left: auto;
    }
    
    .direct-faq__list[open] .direct-faq__q::after {
      content: url(../img/common/minus.svg);
      line-height: 12px;
    }
    
    .direct-faq__q-txt {      
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.2em;
      border-left: 1px solid #ccc;
      padding-left: 20px;
    }
    .direct-faq__a {
      padding: 20px 20px 0px;
      margin-top: 20px;
      border-top: 1px dashed #ccc;
      display: grid;
      overflow: hidden;
      grid-template-rows: 0fr;
      grid-template-columns: auto 1fr;
      visibility: hidden;
      opacity: 0;
      gap: 23px;
    }
    
    .direct-faq__list[open] .direct-faq__a {
      grid-template-rows: 1fr;
      opacity: 1;
      visibility: visible;
    }
    
    .direct-faq__a::before {
      content: "A";
      /* font-family: "Oswald", sans-serif; */
      font-size: 20px;
      font-weight: 700;
      flex-shrink: 0;
      line-height: 26px;
      color: #c10d06;
    }
    .direct-faq__a-txt {
      font-size: 16px;
      letter-spacing: 0.2em;
      overflow: hidden;
      min-height: 0;
      border-left: 1px solid #ccc;
      padding-left: 20px;
    }
    
    
    .direct-order__bnr {
      display: block;
      max-width: 510px;
      width: 92%;
      margin: 0 auto 30px;
    }
    
    .direct-order__bnr-img {
      width: 100%;
    }
    
    .direct-order__attend-list {
      margin-bottom: 30px;
    }
    
    .direct-order__attend-content {
      list-style:disc;
      list-style-position: inside;
      font-size: 16px;
    }
    
    .direct-order__attend-content::marker {
      margin-right: 10px;
    }
    
    .direct-order__aside {
      font-size: 16px;
      margin-bottom: 140px;
    }
    
    .direct-order__toritsugi-list {
      border-top: 1px dotted #ccc;
      margin-bottom: 30px;
    }
    
    .direct-order__toritsugi-content {
      border-bottom: 1px dotted #ccc;
    }
    
    .direct-order__toritsugi-link {
      font-size: 16px;
      display: flex;
      padding: 10px;
    
    }
    
    .direct-order__toritsugi-link::before {
      content: "";
      display: block;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--color-primary);
      margin-right: 15px;
      margin-top: 10px;
      flex-shrink: 0;
    }
    
    .direct-order__toritsugi-link:hover {
      color: var(--color-primary);
    }
    
    @media (width <= 2000px) {
      .direct-about__img-01 {
        width: 292px;
        height: 372px !important;
        left: -13px;
        top: 20%;
      }
      
      .direct-about__img-02 {
        width: 160px;
        right: 135px;
        top: 25%;
      }
      .direct-about__img-03 {
        width: 240px;
        right: -146px;
        top: 34%;
      }
      .direct-about__img-04 {
        width: 198px;
        right: -14px;
        top: 53%;
      }
    }
    
    @media (width <= 1500px) {
      .direct-main {
        height: 600px;
      }
      .direct-main__title {
        min-width: 250px;
        gap: 30px;
      }
      .direct-main__title--small {
        font-size: 20px;
        top: -90px;
      }
      .direct-main__title--large {
        font-size: 28px;
        padding: 10px 20px;
      }
      .direct-main__catch {
        font-size: 28px;
        padding: 20px 30px;
      }
      .direct-main__company {
        font-size: 20px;
        padding: 10px;
      }
      .direct-main__company--large {
        font-size: 34px;
      }
      .direct-about__title {
        font-size: 30px;
      }
      .direct-about__img-01 {
        width: 220px;
        height: 333px !important;
        left: 85px;
        top: 14%;
      }
      
      .direct-about__img-02 {
        width: 140px;
        right: 220px;
        top: 15%;
      }
      .direct-about__img-03 {
        width: 204px;
        right: -28px;
        top: 22%;
      }
      .direct-about__img-04 {
        width: 168px;
        right: 105px;
        top: 39%;
      }
      .direct-deai {
        padding-bottom: 200px;
      }
      .direct-deai__title {
        width: auto;
        margin-left: 30px;
        font-size: 28px;
        margin-bottom: 40px;
      }
      .direct-deai__title::before {
        width: 120px;
      }
      .direct-deai__img {
        width: 60%;
        left: 0px;
      }
      .direct-deai__txt {
        top: -100px;
      }
    }
    
    
    @media (width <= 1000px) {
      .direct-main {
        height: 500px;
      }
      .direct-main__title {
        min-width: 200px;
        gap: 20px;
      }
      .direct-main__title--small {
        font-size: 16px;
        top: -70px;
      }
      .direct-main__title--large {
        font-size: 24px;
        padding: 5px 10px;
      }
      .direct-main__catch {
        font-size: 22px;
        padding: 10px 20px;
      }
      .direct-main__company {
        font-size: 16px;
        padding: 10px;
      }
      .direct-main__company--large {
        font-size: 30px;
      }
      .direct-about__img {
        display: grid;
        grid-template-columns: 50% 20% 30%;
        grid-template-rows: auto auto;
        margin-top: 50px;
        width: 100%;
        gap: 20px 0px;
      }
      .direct-about__img-01 {
        position: static;
        grid-column: 1/2;
        grid-row: 1/3;
        width: 100%;
        height: 100% !important;
      }
      
      .direct-about__img-02 {
        position: static;
        grid-column: 2/3;
        grid-row: 1/2;
        width: 90%;
        align-self: center;
        justify-self: center;
      }
      .direct-about__img-03 {
        position: static;
        grid-column: 3/4;
        grid-row: 1/2;
        width: 90%;
        justify-self: center;
        align-self: center;
      }
      .direct-about__img-04 {
        position: static;
        grid-column: 2/4;
        grid-row: 2/3;
        width: 80%;
        justify-self: center;
      }
      
    }
    
    @media (width <= 767px) {
      .direct-main {
        height: auto;
        display: block;
      }
      .direct-main__title {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 50px 0px;
      }
      .direct-main__title--small {
        writing-mode: horizontal-tb;
        top: 0px;
        padding-left: 0.2em;
      }
      .direct-main__title--large {
        writing-mode: horizontal-tb;
        border-left: none;
        border-right: none;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
      }
      .direct-main__img {
        height: 350px;
        width: calc(100% - 30px);
        margin-left: 30px;
        border-top-left-radius: 40px;
      }
      .direct-main__inner {
        gap: 20px;
        padding-bottom: 40px;
      }
    
      .direct-about {
        margin-top: -40px;
      }
      .direct-deai__title {
        font-size: 24px;
      }
      .direct-deai__title::before {
        content: none;
      }
      .direct-deai__title::after {
        content: "";
        display: block;
        width: 100px;
        height: 1px;
        background-color: #000;
        margin-left: 10px;
        display: none;
      }
      .direct-deai__img {
        width: 80%;
        height: 60vw !important;
      }
      .direct-deai__txt {
        top: -50px;
        width: 95%;
        padding: 30px;
      }
      .direct__h2title {
        font-size: 36px;
        margin-bottom: 30px;
      }
      .order {
        margin: 50px auto 120px;
      }
      .direct-order__disc {
        font-size: 14px;
        margin-bottom: 40px;
      }
      .direct-order__subtitle {
        font-size: 28px;
        gap: 20px;
        margin-bottom: 30px;
      }
      .direct-order__txt {
        font-size: 14px;
      }
      .direct-order__table {
        margin-bottom: 70px;
      }
      .direct-order__aside {
        margin-bottom: 70px;
      }
      .direct-deai {
        padding: 100px 0px;
      }
      .direct-deai::after {
        clip-path: polygon(0 0, 100% 8%, 100% 93%, 0% 100%);
      }
      .direct-faq {
        margin-bottom: 80px;
      }
      .direct-faq__list:not(:first-child) {
        margin-top: 10px;
      }
      .direct-faq__q {
        font-size: 16px;
      }
      .direct-faq__q::before {
        font-size: 18px;
      }
      .direct-faq__q::after {
        width: 15px;
        line-height: 20px;
      }
      .direct-faq__q-txt {
        font-size: 16px;
      }
      .direct-faq__a-txt {
        font-size: 14px;
      }
      .direct-faq__a-txt::before {
        font-size: 18px;
      }
      .direct-faq__list {
        padding: 15px 0px;
      }
    }
    
    @media (width > 541px) {
      .direct-main__catch br {
        display: none;
      }
      .direct-deai__title--is-sp {
        display: none;
      }
    }
    
    @media (width <= 540px) {
      .direct-main__catch {
        line-height: 1.4em;
        font-size: 18px;
      }
      .direct-main__company {
        font-size: 14px;
      }
      .direct-main__company--large {
        font-size: 24px;
      }
      .direct-about {
        padding-top: 70px;
        padding-bottom: 50px;
      }
      .direct-about__title {
        font-size: 24px;
        margin-bottom: 40px;
      }
      .direct-about__txt {
        text-align: left;
        font-size: 14px;
      }
      .direct-about__txt--is-pc {
        display: none;
      }
    
      .direct-deai__title::after {
        display: none;
      }
      .direct-deai__txt {
        font-size: 14px;
        top: -30px;
        padding: 20px;
      }
      .direct-deai__txt--is-pc {
        display: none;
      }
      .direct__h2title {
        font-size: 28px;
      }
      .direct-order__subtitle {
        font-size: 22px;
      }
    }
    
    @media (width <= 420px) {
      .direct-main {
        margin-top: 0px;
      }
      .direct-main__img {
        width: calc(100% - 20px);
        margin-left: 20px;
      }
    }
    
    .post-drop .custom-select {
      position: relative;
    }
    .post-drop .custom-select:after {
      content: url(../img/icons/arrow.png);
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      font-size: 60%;
      line-height: 49px;
      padding: 0 23px;
      background: #36ad7f;
      pointer-events: none;
    }
    
    
    .post-drop .selectlist {
      width: 100%;
      display: inline-block;
      border: none;
      margin: 0;
      font: inherit;
      outline: none;
      -webkit-appearance: none;
      height: 32px;
      padding-left: 20px;
      background-color: #d6e7e5;
      height: 50px;
    }
    
    .post-drop .selectlist option {
      background: #fff;
    }
    
    @media screen and (-webkit-min-device-pixel-ratio: 0) {
      .post-drop .selectlist {
        padding-right: 30px;
      }
    }
    
    
    .post-drop .selectlist:after {
      content: none;
    }

    .contact-recruit__toggle-btn {
      padding: 20px;
      border: 1px solid #a0a0a0;
      font-size: 20px;
      font-weight: 500;
      letter-spacing: 0.2em;
      line-height: 1.4em;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-grow: 1;
      cursor: pointer;
      background-color: #eee;
      margin-bottom: 10px;
    }
    .contact-recruit__toggle-btn::after {
      content: url(../img/common/arrow_down.svg);
      display: inline-block;
      line-height: 0;
      width: 21px;
      height: 16px;
      flex-shrink: 0;
    }

    .contact-recruit.is-open .contact-recruit__toggle-btn::after {
      transform: rotate(180deg);
    }

    .contact-recruit__inner {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.3s ease-out, visibility 0.3s ease-out, opacity 0.3s ease-out;
      opacity: 0;
      flex: 1;
      overflow: hidden;
      visibility: hidden;
  }

  .contact-recruit.is-open .contact-recruit__inner {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
}

.global_table {
  min-height: 0;
  overflow: hidden;
  transition: padding 0.3s ease-out, margin-bottom 0.3s ease-out;
}