/* header-renew.css
 * 静的特設ページ用 共通ヘッダー・ナビゲーション・フッタースタイル
 * top-renew.css の #top-renew スコープを除去し、単体で動作するよう抽出
 */

/* メニュー開閉時のスクロール抑制 */
html.is-menu-open {
  overflow: hidden;
}

/* ============================================================
   PC ( min-width: 1025px )
   ============================================================ */
@media screen and (min-width: 1025px) {

  /* --- Responsive utility --- */
  .pc-none { display: none; }

  /* --- Header --- */
  .tr-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 90px;
    padding: 0 30px;
    box-sizing: border-box;
  }

  .tr-header--fv {
    background: transparent;
  }

  .tr-header--fixed {
    position: sticky;
    left: auto;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .tr-header__logo-img {
    display: block;
    width: 109px;
    height: 34px;
    object-fit: contain;
  }

  .tr-header__nav {
    display: flex;
    align-items: center;
  }

  .tr-header__link-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .tr-header__link-item {
    margin-left: 32px;
  }

  .tr-header__link {
    font-family: 'Yu Gothic', 'YuGothic', 'Noto Sans', 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
  }

  .tr-header__menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 33px;
    height: 33px;
    margin-left: 32px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
  }

  .tr-header__menu-btn .line {
    display: block;
    width: 100%;
    height: 2px;
    margin-bottom: 9px;
    background-color: #000;
  }

  .tr-header__menu-btn .line:last-child {
    margin-bottom: 0;
  }

  .tr-header--fv .tr-header__menu-btn .line {
    background-color: #fff;
  }

  /* --- Nav menu --- */
  .tr-nav-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    justify-content: center;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 90px 60px 30px;
    background-color: #6e6e6e;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0.4s;
  }

  .tr-nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .tr-nav-menu__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    padding: 0 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .tr-nav-menu__logo {
    display: block;
    width: 109px;
    height: 34px;
    object-fit: contain;
  }

  .tr-nav-menu__close {
    position: relative;
    width: 33px;
    height: 33px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
  }

  .tr-nav-menu__close .line {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }

  .tr-nav-menu__close .line:first-child {
    transform: rotate(45deg);
  }

  .tr-nav-menu__close .line:last-child {
    transform: rotate(-45deg);
  }

  .tr-nav-menu__inner {
    display: flex;
    width: 100%;
    max-width: 1100px;
    gap: 100px;
    margin: auto 0;
  }

  .tr-nav-menu__left {
    flex: 0 0 360px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
  }

  .tr-nav-menu__right {
    flex: 1;
  }

  .tr-nav-menu__catch-img {
    display: block;
    width: 360px;
    height: auto;
    margin: 20px 0 34px;
  }

  .tr-nav-menu__cta {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 320px;
    margin: auto;
  }

  .tr-nav-menu__cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 20px 24px;
    border: 1px solid #fff;
    border-radius: 40px;
    font-family: "Yu Gothic", "YuGothic", "Noto Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "Noto Serif JP", serif;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
  }

  .tr-nav-menu__cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #fff;
    color: #000;
    font-size: 12px;
  }

  .tr-nav-menu__lists {
    display: flex;
    gap: 60px;
    margin: 0 0 50px;
  }

  .tr-nav-menu__list {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 38px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .tr-nav-menu__link {
    display: block;
    text-decoration: none;
    color: #fff;
  }

  .tr-nav-menu__link-en {
    display: block;
    font-family: "Oswald", "Bebas Neue", sans-serif;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 1px;
  }

  .tr-nav-menu__link-ja {
    display: block;
    margin-top: 2px;
    font-family: "Yu Gothic", "YuGothic", "Noto Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "Noto Serif JP", serif;
    font-size: 12px;
    opacity: 0.85;
  }

  .tr-nav-menu__sublist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    line-height: 22px;
  }

  .tr-nav-menu__sublink {
    position: relative;
    padding-left: 20px;
    font-family: "Oswald", "Bebas Neue", sans-serif;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
  }

  .tr-nav-menu__sublink::before {
    content: "–";
    position: absolute;
    left: 0;
  }

  .tr-nav-menu__divider {
    margin: 30px 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .tr-nav-menu__sub-links {
    display: grid;
    grid-template-columns: repeat(3, auto);
    column-gap: 30px;
    row-gap: 20px;
    justify-content: stretch;
    margin: 60px 0 24px;
    padding: 0;
    list-style: none;
    font-family: "Yu Gothic", "YuGothic", "Noto Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "Noto Serif JP", serif;
    font-size: 14px;
  }

  .tr-nav-menu__sub-link {
    color: #fff;
    text-decoration: none;
  }

  .tr-nav-menu__sns {
    display: flex;
    gap: 22px;
    margin: 25px 0 0 0;
    padding: 0;
    list-style: none;
    align-items: center;
  }

  .tr-nav-menu__sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .tr-nav-menu__sns-link img {
    display: block;
    width: 22px;
    height: auto;
  }

  .tr-nav-menu a:visited {
    color: inherit;
  }

  /* --- Footer --- */
  .tr-footer {
    position: relative;
    z-index: 3;
    background-color: #fff;
    padding: 178px 100px 30px;
  }

  .tr-footer__inner {
    max-width: 1320px;
    margin: 0 auto;
    text-align: center;
  }

  .tr-footer__logo {
    display: block;
    width: 140px;
    margin: 0 auto 205px;
  }

  .tr-footer__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .tr-footer__link-list {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .tr-footer__link {
    font-family: "Yu Gothic", "YuGothic", "Noto Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "Noto Serif JP", serif;
    font-size: 15px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
  }

  .tr-footer__sns {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .tr-footer__sns-link {
    display: block;
  }

  .tr-footer__sns-link img {
    display: block;
    width: 36px;
    height: 36px;
  }

  .tr-footer__copyright {
    position: absolute;
    top: 150px;
    right: 24px;
    writing-mode: vertical-rl;
    font-family: "Yu Gothic", "YuGothic", "Noto Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "Noto Serif JP", serif;
    font-weight: bold;
    font-size: 11px;
    letter-spacing: 0;
    color: #000;
    margin: 0;
  }


  /* --- SP Fixed Footer CTA (hidden on PC) --- */
  .tr-fixed-cta-sp {
    display: none;
  }

} /* end PC */

/* ============================================================
   TB ( min-width: 560px ) and ( max-width: 1024px )
   ============================================================ */
@media screen and (min-width: 560px) and (max-width: 1024px) {

  /* --- Responsive utility --- */
  .tb-none { display: none; }

  /* --- Header --- */
  .tr-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .tr-header--fv {
    background: transparent;
  }

  .tr-header--fixed {
    position: sticky;
    left: auto;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .tr-header__logo-img {
    display: block;
    width: 100px;
    height: 32px;
    object-fit: contain;
  }

  .tr-header__nav {
    display: flex;
    align-items: center;
  }

  .tr-header__link-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .tr-header__link-item {
    margin-left: 14px;
    text-align: center;
  }

  .tr-header__link-item--pc-only {
    display: none;
  }

  .tr-header__link {
    font-family: 'Yu Gothic', 'YuGothic', 'Noto Sans', 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    text-decoration: none;
    white-space: nowrap;
  }

  .tr-header__menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 24px;
    height: 16px;
    margin-left: 16px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
  }

  .tr-header__menu-btn .line {
    display: block;
    width: 100%;
    height: 2px;
    margin-bottom: 4px;
    background-color: #000000;
  }

  .tr-header__menu-btn .line:last-child {
    margin-bottom: 0;
  }

  .tr-header--fv .tr-header__menu-btn .line {
    background-color: #fff;
  }

  /* --- Nav menu --- */
  .tr-nav-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 63px 25px 21px;
    background-color: #6e6e6e;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0.4s;
  }

  .tr-nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .tr-nav-menu__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    padding: 0 16px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .tr-nav-menu__logo {
    display: block;
    width: 100px;
    height: 32px;
    object-fit: contain;
  }

  .tr-nav-menu__close {
    position: relative;
    width: 22px;
    height: 22px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
  }

  .tr-nav-menu__close .line {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }

  .tr-nav-menu__close .line:first-child {
    transform: rotate(45deg);
  }

  .tr-nav-menu__close .line:last-child {
    transform: rotate(-45deg);
  }

  .tr-nav-menu__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px;
  }

  .tr-nav-menu__catch-img {
    display: block;
    width: 240px;
    height: auto;
    margin: 20px auto 40px;
  }

  .tr-nav-menu__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .tr-nav-menu__cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 17px 18px;
    border: 1px solid #fff;
    border-radius: 30px;
    font-family: 'Yu Gothic', 'YuGothic', 'Noto Sans', 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 'Noto Serif JP', serif;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
  }

  .tr-nav-menu__cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #fff;
    color: #000000;
    font-size: 12px;
  }

  .tr-nav-menu__lists {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
  }

  .tr-nav-menu__list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .tr-nav-menu__link {
    display: block;
    text-decoration: none;
    color: #fff;
  }

  .tr-nav-menu__link-en {
    display: block;
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: 500;
  }

  .tr-nav-menu__link-ja {
    display: block;
    margin-top: 2px;
    font-family: 'Yu Gothic', 'YuGothic', 'Noto Sans', 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 'Noto Serif JP', serif;
    font-size: 12px;
    opacity: 0.85;
  }

  .tr-nav-menu__sublist {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    line-height: 22px;
  }

  .tr-nav-menu__sublink {
    position: relative;
    padding-left: 14px;
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
  }

  .tr-nav-menu__sublink::before {
    content: "–";
    position: absolute;
    left: 0;
  }

  .tr-nav-menu__divider {
    margin: 40px 0 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .tr-nav-menu__sub-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    font-family: 'Yu Gothic', 'YuGothic', 'Noto Sans', 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 'Noto Serif JP', serif;
    font-size: 14px;
  }

  .tr-nav-menu__sub-link {
    color: #fff;
    text-decoration: none;
  }

  .tr-nav-menu__sns {
    display: flex;
    justify-content: space-between;
    width: 200px;
    margin: 30px auto 0;
    padding: 0;
    list-style: none;
    align-items: center;
  }

  .tr-nav-menu__sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .tr-nav-menu__sns-link img {
    display: block;
    width: 20px;
    height: auto;
  }

  .tr-nav-menu a:visited {
    color: inherit;
  }

  /* --- Footer --- */
  .tr-footer {
    position: relative;
    z-index: 3;
    background-color: #fff;
    padding: 125px 40px 21px;
  }

  .tr-footer__inner {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .tr-footer__logo {
    display: block;
    width: 110px;
    margin: 0 auto 144px;
  }

  .tr-footer__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .tr-footer__link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .tr-footer__link {
    font-family: 'Yu Gothic', 'YuGothic', 'Noto Sans', 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: bold;
    color: #231815;
    text-decoration: none;
  }

  .tr-footer__sns {
    display: flex;
    align-items: center;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .tr-footer__sns-link {
    display: block;
  }

  .tr-footer__sns-link img {
    display: block;
    width: 32px;
    height: 32px;
  }

  .tr-footer__copyright {
    position: absolute;
    top: 105px;
    right: 16px;
    writing-mode: vertical-rl;
    font-family: 'Yu Gothic', 'YuGothic', 'Noto Sans', 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 'Noto Serif JP', serif;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0;
    color: #231815;
    margin: 0;
  }


  /* --- SP Fixed Footer CTA (hidden on TB) --- */
  .tr-fixed-cta-sp {
    display: none;
  }

} /* end TB */

/* ============================================================
   SP ( max-width: 559px )
   ============================================================ */
@media screen and (max-width: 559px) {

  /* --- Responsive utility --- */
  .sp-none { display: none; }

  /* --- Header --- */
  .tr-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .tr-header--fv {
    background: transparent;
  }

  .tr-header--fixed {
    position: sticky;
    left: auto;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .tr-header__logo-img {
    display: block;
    width: 100px;
    height: 32px;
    object-fit: contain;
  }

  .tr-header__nav {
    display: flex;
    align-items: center;
  }

  .tr-header__link-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .tr-header__link-item {
    margin-left: 14px;
    text-align: center;
  }

  .tr-header__link-item--pc-only {
    display: none;
  }

  .tr-header__link {
    display: inline-block;
    text-align: center;
    font-family: 'Yu Gothic', 'YuGothic', 'Noto Sans', 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 'Noto Serif JP', serif;
    font-size: 10px;
    font-weight: bold;
    color: #000000;
    text-decoration: none;
    white-space: nowrap;
  }

  .tr-header__menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 24px;
    height: 16px;
    margin-left: 16px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
  }

  .tr-header__menu-btn .line {
    display: block;
    width: 100%;
    height: 2px;
    margin-bottom: 4px;
    background-color: #000000;
  }

  .tr-header__menu-btn .line:last-child {
    margin-bottom: 0;
  }

  .tr-header--fv .tr-header__menu-btn .line {
    background-color: #fff;
  }

  /* --- Nav menu --- */
  .tr-nav-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 70px 25px 60px;
    background-color: #6e6e6e;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0.4s;
  }

  .tr-nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .tr-nav-menu__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    padding: 0 16px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .tr-nav-menu__logo {
    display: block;
    width: 100px;
    height: 32px;
    object-fit: contain;
  }

  .tr-nav-menu__close {
    position: relative;
    width: 22px;
    height: 22px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
  }

  .tr-nav-menu__close .line {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }

  .tr-nav-menu__close .line:first-child {
    transform: rotate(45deg);
  }

  .tr-nav-menu__close .line:last-child {
    transform: rotate(-45deg);
  }

  .tr-nav-menu__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px;
  }

  .tr-nav-menu__catch-img {
    display: block;
    width: 240px;
    height: auto;
    margin: 20px auto 40px;
  }

  .tr-nav-menu__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .tr-nav-menu__cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 17px 18px;
    border: 1px solid #fff;
    border-radius: 30px;
    font-family: 'Yu Gothic', 'YuGothic', 'Noto Sans', 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 'Noto Serif JP', serif;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
  }

  .tr-nav-menu__cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #fff;
    color: #000000;
    font-size: 10px;
  }

  .tr-nav-menu__lists {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
  }

  .tr-nav-menu__list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .tr-nav-menu__link {
    display: block;
    text-decoration: none;
    color: #fff;
  }

  .tr-nav-menu__link-en {
    display: block;
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: 500;
  }

  .tr-nav-menu__link-ja {
    display: block;
    margin-top: 2px;
    font-family: 'Yu Gothic', 'YuGothic', 'Noto Sans', 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 'Noto Serif JP', serif;
    font-size: 10px;
    opacity: 0.85;
  }

  .tr-nav-menu__sublist {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
  }

  .tr-nav-menu__sublink {
    position: relative;
    padding-left: 14px;
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
  }

  .tr-nav-menu__sublink::before {
    content: "–";
    position: absolute;
    left: 0;
  }

  .tr-nav-menu__divider {
    margin: 40px 0 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .tr-nav-menu__sub-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    font-family: 'Yu Gothic', 'YuGothic', 'Noto Sans', 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 'Noto Serif JP', serif;
    font-size: 12px;
    font-weight: bold;
  }

  .tr-nav-menu__sub-link {
    color: #fff;
    text-decoration: none;
  }

  .tr-nav-menu__sns {
    display: flex;
    justify-content: space-between;
    width: 200px;
    margin: 30px auto 0;
    padding: 0;
    list-style: none;
    align-items: center;
  }

  .tr-nav-menu__sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .tr-nav-menu__sns-link img {
    display: block;
    width: 20px;
    height: auto;
  }

  .tr-nav-menu a:visited {
    color: inherit;
  }

  /* --- Footer --- */
  .tr-footer {
    position: relative;
    z-index: 3;
    background-color: #fff;
    padding: 85px 24px 30px;
  }

  .tr-footer__inner {
    text-align: center;
  }

  .tr-footer__logo {
    display: block;
    width: 71px;
    margin: 0 auto 60px;
  }

  .tr-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 85px;
  }

  .tr-footer__link-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 200px;
    text-align: left;
  }

  .tr-footer__link {
    font-family: 'Yu Gothic', 'YuGothic', 'Noto Sans', 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 'Noto Serif JP', serif;
    font-size: 12px;
    letter-spacing: 0;
    color: #000000;
    text-decoration: none;
  }

  .tr-footer__sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .tr-footer__sns-link {
    display: block;
  }

  .tr-footer__sns-link img {
    display: block;
    width: 30px;
    height: 30px;
  }

  .tr-footer__copyright {
    position: static;
    writing-mode: horizontal-tb;
    margin: 24px 0 0;
    font-family: 'Yu Gothic', 'YuGothic', 'Noto Sans', 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 'Noto Serif JP', serif;
    font-size: 10px;
    letter-spacing: 0;
    font-weight: bold;
    color: #000000;
  }


  /* --- SP Fixed Footer CTA --- */
  .tr-fixed-cta-sp {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    display: flex;
    background-color: #000000;
    height: 50px;
  }

  .tr-fixed-cta-sp__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Yu Gothic', 'YuGothic', 'Noto Sans', 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 'Noto Serif JP', serif;
    font-weight: bold;
    font-size: 13px;
    line-height: 15px;
    color: #fff !important;
    text-decoration: none;
  }

  .tr-fixed-cta-sp__btn--modelhouse {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }

} /* end SP */

/* ============================================================
   Cookie Agreement Banner
   ============================================================ */
#cookie-agreement {
  display: none;
  width: 100%;
  padding: 30px 5%;
  box-sizing: border-box;
  background: #313131;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 15000;
}
#cookie-agreement .cookie-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#cookie-agreement .cookie-wrap .close-btn {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #cccccc;
  position: relative;
  cursor: pointer;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
#cookie-agreement .cookie-wrap .close-btn::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transform: translateY(2px) rotate(45deg);
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: 50%;
  margin-left: -15px;
}
#cookie-agreement .cookie-wrap .close-btn::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transform: rotate(135deg);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
}
#cookie-agreement .cookie-wrap .text {
  color: #fff;
  font-size: 13px;
  line-height: 1.8em;
  width: 70%;
}
#cookie-agreement .cookie-wrap .text .link {
  color: #fff;
  text-decoration: underline;
  transition: all 0.15s;
}
#cookie-agreement .cookie-wrap .text .link:hover {
  opacity: 0.6;
  text-decoration: none;
}
#cookie-agreement .cookie-wrap .btn {
  display: block;
  min-width: 180px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 10px 32px;
  border-radius: 4px;
  background-color: #ffffff;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
}
#cookie-agreement .cookie-wrap .btn:hover {
  color: #fff;
  background-color: #000;
}

@media (min-width: 560px) and (max-width: 1024px) {
  #cookie-agreement {
    padding: 30px 5%;
  }
  #cookie-agreement .cookie-wrap {
    align-items: center;
  }
  #cookie-agreement .cookie-wrap .close-btn {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #cccccc;
  }
  #cookie-agreement .cookie-wrap .text {
    width: 60%;
  }
  #cookie-agreement .cookie-wrap .btn {
    min-width: 180px;
  }
}

@media (max-width: 559px) {
  #cookie-agreement {
    padding: 15px 5%;
  }
  #cookie-agreement .cookie-wrap {
    flex-wrap: wrap;
    position: relative;
  }
  #cookie-agreement .cookie-wrap .close-btn {
    background: #313131;
    background-color: #313131;
    border-radius: 0;
    position: absolute;
    top: -40px;
    right: 0;
  }
  #cookie-agreement .cookie-wrap .text {
    width: 100%;
  }
  #cookie-agreement .cookie-wrap .btn {
    display: block;
    width: 100%;
    margin-top: 10px;
  }
}
