@charset "UTF-8";
.body{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight:400;
    font-style: normal;
    line-height:1.75;
    color: #4f4f4f;
}
@media (prefers-reduced-motion: no-preference) {
    :where(html:focus-within) {
    scroll-behavior: smooth;
    }
}
:root {
  --color-primary: #1987ca;
}
/* ▼▼common▼▼ */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background-color: #fff;
    transition: transform 0.4s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
header{
    transition: transform 0.4s ease-in-out;
}
header.is-hide {
    transform: translateY(-100%);
}
header.is-show {
    transform: translateY(0);
}
header.is-hide .menu-trigger {
    transition: 1s;
}

@media (max-width: 1023.98px) {
    header.is-hide {
        transform: translateY(0);
    }
}
.header-inner{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 17px 0px 17px 0px;
    padding-left: clamp(28px, 4vw, 96px);
    padding-right: clamp(20px, 2.5vw, 54px);
    height: 72px;
}
.site-logo{
    display: flex;
    align-items: center;
}
.site-logo a {
    display: flex;
    align-items: flex-end;
    text-decoration: none;
}
.site-logo img{
    width: clamp(120px, 9.9vw, 190px);
    height: auto;
    flex-shrink: 0;
    margin-bottom: 5px;
}
.logo-text {
    line-height: 2.5;
    padding-top: 1px;
    border-left: 1px solid #C7C7C7;
    margin-left: clamp(10px, 1.042vw, 20px);
    padding-left: clamp(10px, 1.042vw, 20px);
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(9px, 0.625vw, 12px);
    color: #acacac;
    font-weight: 700;
    white-space: nowrap;
}
.main-nav{
    display: flex;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight:700;
    font-style: normal;
    gap: clamp(24px, 1.875vw, 36px);
    color: #4f4f4f;
    justify-content: center;
    align-items: center;
}
.nav-menu{
    display: flex;
    gap: clamp(24px, 1.875vw, 36px);
    white-space: nowrap;
}
.nav-menu li a {
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
    padding-bottom: 10px;
    font-size: clamp(12px, 1.1433541342vw, 16px);
}
.nav-menu li a i {
    font-size: 60%;
    margin-left: 0.5em;
}
.nav-menu li a:hover {
    color: #1987ca;
}
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1987ca;

    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s;
}
.nav-menu li a:hover::after {
    transform: scaleX(1);
}
.nav-sns{
    display: flex;
    gap: clamp(3px, 1vw, 10px);
    padding-top: 2px;
    list-style: none;
    align-items: center;
}
.nav-sns li{
    flex-shrink: 0;
}
.sns-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
}
.sns-link img{
    transition: transform 0.3s ease;
    transform: scale(1) translateZ(0);
    backface-visibility: hidden;
}
.sns-link:hover {
    background-color: rgba(0, 0, 0, 0.08);
}
.nav-sns li:first-child img {
    width: clamp(15px, 1.042vw, 20px);
    height: clamp(15px, 1.042vw, 20px);
    object-fit: contain;
}

.nav-sns li:last-child img {
    width: clamp(20px, 1.198vw, 23px);
    height: clamp(14px, 0.833vw, 16px);
    object-fit: contain;
}
.sns-link:hover img {
    transform: scale(1.1) translateZ(0);
}
@media (max-width: 1023.98px){
    .logo-text{
    display:none;
    }
    .site-logo a{
    gap:0;
    }
.sns-link {
    width: 50px;
    height: 50px;
}
.sns-link img{
    transition: transform 0.3s ease;
}
.nav-sns li:first-child img {
    width: clamp(20px, 1.042vw, 25px);
    height: clamp(20px, 1.042vw, 25px);
}

.nav-sns li:last-child img {
    width: clamp(28px, 1.677vw, 32.2px);
    height: clamp(19.6px, 1.166vw, 22.4px);
}
}
/* ハンバーガーメニュー */
.menu-trigger {
    display: none;
}
@media (max-width: 1023.98px) {
    .header-wrapper {
        position: fixed;
        background-color: transparent;
        box-shadow: none;
        width: 100%;
        top: 0;
        z-index: 1100;
        pointer-events: none;
    }
    .main-nav {
        display: none;
    }
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 20px 11px 0 20px;
        background: transparent;
    }
    .site-logo {
        margin: 0;
        z-index: 1101;
        pointer-events: auto;
    }
    .site-logo img {
        width: clamp(140px, 40vw, 190px);
        height: auto;
    }
    .logo-text {
        display: none;
    }
    .menu-trigger {
        display: block;
        position: relative;
        width: 65px;
        height: 65px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        background: linear-gradient(135deg, #00619A 0%, #0391E5 100%) !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 0 15px rgba(3, 145, 229, 0.6);
        z-index: 1100;
        padding: 0;
        overflow: visible;
        transform: translateZ(0);
        pointer-events: auto;
    }
    .hamburger-lines {
        position: relative;
        width: 30px;
        height: 22px;
        margin: 0 auto;
    }

    .hamburger-lines span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #fff;
        border-radius: 2px;
        transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6),
                    width 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6),
                    top 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6),
                    bottom 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6),
                    opacity 0.4s ease;
    }
    .hamburger-lines span:nth-child(1) { top: 0; width: 80%; }
    .hamburger-lines span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .hamburger-lines span:nth-child(3) { bottom: 0; width: 60%; left: auto; right: 0; }

    @media (hover: hover) and (pointer: fine) {
        .menu-trigger:hover {
            transform: scale(1.05) translateZ(0);
            box-shadow: 0 0 25px rgba(3, 145, 229, 0.9);
        }
        .menu-trigger:hover .hamburger-lines span:nth-child(1) { width: 100%; }
        .menu-trigger:hover .hamburger-lines span:nth-child(3) { width: 100%; }
    }
    .menu-trigger.is-active .hamburger-lines span:nth-child(1) {
        top: 10px;
        transform: rotate(45deg);
        width: 100%;
    }
    .menu-trigger.is-active .hamburger-lines span:nth-child(2) {
        opacity: 0;
    }
    .menu-trigger.is-active .hamburger-lines span:nth-child(3) {
        bottom: 9px;
        transform: rotate(-45deg);
        width: 100%;
    }
}
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overscroll-behavior: contain;
    padding: 20px;
    box-sizing: border-box;
}
.nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.nav-container {
    background-color: #FAFAFA;
    width: 100%;
    max-width: 638px;
    height: fit-content;
    max-height: 100%;
    border-radius: 17px;
    padding: clamp(40px, 8vh, 80px) clamp(20px, 5vw, 40px);
    box-sizing: border-box;
    overflow-y: auto;
    transform: translate3d(0, 20px, 0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}
.nav-overlay.is-open .nav-container {
    transform: translate3d(0, 0, 0);
}
.nav-container::-webkit-scrollbar {
    width: 6px;
}
.nav-container::-webkit-scrollbar-track {
    background: transparent;
}
.nav-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.mobile-nav .nav-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}
.mobile-nav .nav-menu li {
    width: 100%;
    display: flex;
    justify-content: center;
}
.mobile-nav .nav-menu li a {
    display: inline-block;
    text-align: left;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.05em;
    font-family: "Noto Sans JP", sans-serif;
    color: #4f4f4f;
    text-decoration: none !important;
    position: relative;
    padding: 10px 25px 10px 25px;
    transition: color 0.3s ease;
}

.mobile-nav .nav-menu li a:hover {
    color: #1987ca;
}
.mobile-nav .nav-menu li a::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 55%;
    transform: translateY(-50%);
    width: 6px;
    height: 24px;
    background-color: #1987ca;
    border-radius: 2px;
    opacity: 0;
    transition: all 0.3s ease;
}
.mobile-nav .nav-menu li a:hover {
    color: #1987ca;
    text-decoration: none;
}
/* .mobile-nav .nav-menu li a.is-current {
    color: #007BC4;
}
.mobile-nav .nav-menu li a.is-current::before {
    opacity: 1;
    left: 5px;
} */
.mobile-nav .nav-sns {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
}
/* フッター */
footer {
    margin-top: auto;
    width: 100%;
    min-height: 270px;
    background: #3b3d47;
    padding: 4em 0 7em;
}

.footermenu {
    width: 90%;
    margin: 0 auto;
    max-width: 1600px;
    color: #fff;
}
.footermenu .footer_top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footermenu a {
    color: #fff;
    font-size: clamp(13px, 1vw, 17px);
}
.footermenu a:hover {
    color: #a1a1a1;
}
.footermenu a img {
    filter: drop-shadow(0 0px 0px #fff);
    transition: 0.2s;
}
.footermenu a img:hover {
    filter: drop-shadow(0 0px 0px #fff);
    transform: translateY(0px);
    opacity: 0.6;
}
.footermenu .main_left {
    box-sizing: border-box;
    margin-bottom: 10px;
}
.footermenu .main_left i {
    font-size: 60%;
    margin-left: 0.5em;
}
.footermenu .main_left li {
    display: inline-block;
    font-size: 100%;
}
.footermenu .main_left li a {
    margin-right: 20px;
}
.footermenu .main_left .minimenu {
    display: flex;
}
.footermenu .sub1 {
    margin-bottom: 20px;
    display: inline-flex;
    gap: 1em;
}
.footermenu .sub1 a{
    font-size: clamp(11px, 1vw, 13px);
}
.footermenu .main_right {
    box-sizing: border-box;
    text-align: center;
}
.footermenu .main_right a {
    font-size: 11px;
}
.footermenu .main_right .logo {
    width: 15em;
    margin-bottom: 2em;
}
.footermenu .main_right i {
    margin-right: 1em;
}
.footermenu .footer_bottom {
    margin-top: 50px;
}
.footermenu .footer_bottom a {
    font-size: 11px;
}
.footermenu .footer_bottom p {
    margin-top: 5px;
    font-size: 11px;
}
@media screen and (min-width: 601px) {
    .pagetop {
    position: fixed;
    bottom: -9em;
    right: 2em;
    z-index: 800;
    transform: translateY(0em);
    transition: 0.2s;
    }
    .pagetop img {
    height: 8em;
    transition: 0.2s;
    }
    .pagetop a img:hover {
    filter: drop-shadow(0 0px 0px #fff);
    transform: translateY(0.5em);
    opacity: 1 !important;
    }
    .pagetop.is-show {
    bottom: -1em;
}
}
@media screen and (max-width: 600px) {
    .pagetop {
    position: fixed;
    bottom: -9em;
    right: 2em;
    z-index: 999;
    transform: translateY(0em);
    transition: 0.2s;
    }
    .pagetop img {
    height: 5em;
    transition: 0.2s;
    }
    .pagetop a img:hover {
    filter: drop-shadow(0 0px 0px #fff);
    transform: translateY(0.5em);
    opacity: 1 !important;
    }
    .pagetop.is-show {
    bottom: -1em;
}
}
.btn_wht {
    width: 100%;
    display: inline-block;
    font-size: 12px;
    padding: 5px 10px;
    color: #5e616e !important;
    background: #fff;
    text-decoration: none;
    border-radius: 5px;
    box-sizing: border-box;
    line-height: 20px;
    text-align: center;
    margin: 5px;
    position: relative;
    cursor: pointer;
}
.btn_wht:hover {
    color: #fff !important;
    background: #292929;
    text-decoration: none;
    border-radius: 5px;
}
@media screen and (max-width: 600px) {
    footer {
    margin-top: auto;
    width: 100%;
    min-height: 270px;
    background: #3b3d47;
    padding: 4em 0 7em;
    }
    .footermenu {
    width: 90%;
    margin: 0 auto;
    max-width: 1600px;
    color: #fff;
    }
    .footermenu .footer_top {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: column;
    }
    .footermenu .main_left {
    display: flex;
    flex-direction: column;
    gap: 1em;
    }
    .footermenu .main_left .minimenu {
    flex-wrap: wrap;
    flex-direction: column;
    }
    .footermenu .sub1 {
    margin-top: 2em;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1em;
    }
    .footermenu .main_right {
    width: 95%;
    margin: 2em auto 0;
    box-sizing: border-box;
    text-align: center;
    }
    .footermenu .main_right .btn_wht {
    padding: 1.2em;
    }
    .footermenu .main_right img {
    width: 15em;
    display: block;
    margin: 0 auto;
    }
}
/* ▲▲フッター▲▲ */
/* 全ページ共通タイトル */
.page-title{
    width: 100%;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    color: #FFF;
    display: flex;
    justify-content: center;
    margin: 0;
    margin-top: 72px;
    padding-top: 120px;
    padding-bottom: 62px;
}
.--company-banner{background-image: url(../img/common/company.jpg);}
.--brand-banner{background-image: url(../img/common/brand.webp);}
.--brand-banner span,
.--support span {
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 0, 0, 0.2);
}
.--support{background-image: url(../img/common/support.webp);}
.--plusmarket-banner{background-image: url(../img/common/plusmarket.webp);}
.mainContents .page-title{
    margin-top: 0px;
}
@media screen and (max-width: 1023.98px) {
  .page-title{
    margin-top: 0px;
  }
}
.page-title small{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    line-height:1;
    letter-spacing: 0em;
    color: #fff;
}
.page-title b{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight:300;
    font-style: normal;
    line-height:41px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.3em;
}
.page-title span{
    height: 61px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* ▲▲common▲▲ */
.visually-hidden{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
}
/* ▼▼ファーストビュー全体▼▼ */
.first-view {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.fv-background-blur {
    position: absolute;
    top: -5%; left: -5%;
    width: 110%; height: 110%;
    background-size: cover;
    background-position: center;
    filter: blur(30px) brightness(0.8);
    z-index: -1;
    transition: background-image 0.8s ease;
}
.main-slider {
    width: 100%;
    aspect-ratio: 3200 / 1156;
    height: auto;
    position: relative;
    z-index: 2;
    margin-top: 72px;
}

@media (max-width: 1023.98px) {
    .main-slider {
        margin-top: 0;
    }
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 767.98px) {
    .main-slider {
        aspect-ratio: 1 / 1;
    }
}
/* --- ナビゲーション --- */
.slider-nav {
    display: flex;
    gap: clamp(10px, 1.4vw, 40px);
    width: 100%;
    padding: clamp(18px, 1.823vw, 35px) clamp(10px, 2.083vw, 40px);
    box-sizing: border-box;
    position: relative;
    z-index: 3;
}
.nav-item {
    position: relative;
    flex: 1;
    height: clamp(58px, 6.094vw, 117px);
    display: flex;
    align-items: center;
    padding: 0 clamp(10px, 1.042vw, 20px);
    background: rgba(250, 250, 250, 0.9);
    border: 1px solid #eee;
    border-radius: 13px;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
    box-sizing: border-box;
}
.nav-item.current {
    opacity: 1;
    background: #fff;
}
@media (hover: hover) and (pointer: fine) {
    .nav-item:hover {
        opacity: 0.8;
        transform: translateY(-2px);
    }
}
.nav-item.current::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 18px;
    background: conic-gradient(#007bff var(--p, 0%), transparent 0%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
    pointer-events: none;
    z-index: -1;
}
.nav-item::after {
    content: "";
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border-radius: 18px;
    border: 1px solid #eee;
    z-index: -2;
}
.nav-item:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}
.nav-img {
    width: clamp(60px, 6.25vw, 120px);
    aspect-ratio: 120 / 80;
    height: auto;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}
.nav-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}
.nav-info {
    margin-left: clamp(10px, 1.042vw, 20px);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: clamp(1px, 0.417vw, 8px);
    white-space: nowrap;
    white-space: normal;
    overflow: hidden;
    min-width: 0;
}
.nav-title {
    font-size: clamp(12px, 1vw, 16px);
    font-weight: 700;
    color: #4f4f4f;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}
.nav-title .main-title {
    display: block;
}
.nav-title .sub-title {
    display: block;
    font-size: 0.8em;
    font-weight: 500;
    color: #777;
    margin-top: 2px;
}
.nav-brand {
    font-size: clamp(11px, 0.625vw, 12px);
    font-weight: 600;
    color: #888;
}
@media (max-width: 1023.98px) {
    .slider-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 12px;
        padding: 15px;
    }
    .nav-item {
        flex: none;
        width: 100%;
        height: 70px;
        padding: 0 8px;
    }
    .nav-item.current::before,
    .nav-item::after {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: 15px;
    }
    .nav-img {
        width: 60px;
        aspect-ratio: 1 / 1;
    }
    .nav-info {
        margin-left: 10px;
        gap: 2px;
        white-space: normal;
        overflow: hidden;
    }
    .nav-title {
        font-size: 11px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .nav-brand {
        font-size: 10px;
        margin-left: 0;
    }
    .nav-item:hover {
        transform: translateY(0px);
    }
}
@media (max-width: 479.98px) {
    .slider-nav {
        display: flex;
        gap: clamp(6px, 1.8vw, 10px);
        padding: 10px clamp(10px, 3vw, 15px);
    }
    .nav-item {
        flex: 0 0 clamp(52px, 14.5vw, 64px);
        width: clamp(52px, 14.5vw, 64px);
        height: clamp(52px, 14.5vw, 64px);
        padding: 2px;
        box-sizing: border-box;
        justify-content: flex-start;
        transition: flex 0.3s ease, width 0.3s ease;
        border: none;
        background: rgba(250, 250, 250, 0.9);
        border-radius: 9px;
    }
    .nav-item.current {
        flex: 1 1 auto;
    }
    .nav-img {
        height: 100%;
        width: auto;
        aspect-ratio: 1 / 1;
        border-radius: 7px;
        flex: 0 0 auto;
    }
    .nav-info {
        max-width: 0;
        opacity: 0;
        margin-left: 0;
        overflow: hidden;
        white-space: nowrap;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: max-width 0.3s ease, opacity 0.1s ease, margin-left 0.3s ease;
    }
    .nav-item.current .nav-info {
        max-width: clamp(110px, 38vw, 180px);
        opacity: 1;
        margin-left: 8px;
        transition: max-width 0.3s ease, opacity 0.2s ease 0.1s, margin-left 0.3s ease;
    }
    .nav-title {
        font-size: clamp(10px, 2.8vw, 13px);
        font-weight: 700;
        display: block;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .nav-brand {
        font-size: clamp(8px, 2.2vw, 10px);
        margin-left: 0;
        display: block;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .nav-item.current::before,
    .nav-item::after {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: 12px;
    }
}
@media (min-width: 1024px) {
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(11))) {
        display: flex !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: clamp(8px, 1vw, 15px) !important;
        padding: 15px !important;
    }
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(11))) .nav-item {
        flex: 0 0 auto !important;
        width: clamp(56px, 5.5vw, 84px) !important;
        height: clamp(56px, 5.5vw, 84px) !important;
        padding: 4px !important;
        justify-content: center !important;
        border-radius: 14px !important;
    }
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(11))) .nav-info {
        display: none !important;
    }
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(11))) .nav-img {
        margin: 0 !important;
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 10px !important;
    }
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(11))) .nav-item::before,
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(11))) .nav-item::after {
        border-radius: 18px !important;
    }
    .slider-nav:has(.nav-item:nth-child(11)) {
        display: flex !important;
        justify-content: center !important;
        gap: 15px !important;
    }
    .slider-nav:has(.nav-item:nth-child(11)) .nav-item {
        flex: 0 0 10px !important;
        width: 10px !important;
        height: 10px !important;
        padding: 0 !important;
        border-radius: 100px !important;
        background: #d1d5db !important;
        border: none !important;
        opacity: 0.5 !important;
        transform: none !important;
        transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), flex 0.3s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease, opacity 0.3s ease !important;
    }
    .slider-nav:has(.nav-item:nth-child(11)) .nav-item.current {
        flex: 0 0 20px !important;
        width: 20px !important;
        background: #1987ca !important;
        opacity: 1 !important;
    }
    .slider-nav:has(.nav-item:nth-child(11)) .nav-img,
    .slider-nav:has(.nav-item:nth-child(11)) .nav-info,
    .slider-nav:has(.nav-item:nth-child(11)) .nav-item::before,
    .slider-nav:has(.nav-item:nth-child(11)) .nav-item::after {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(9))) {
        display: flex !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
        padding: 15px !important;
    }
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(9))) .nav-item {
        flex: 0 0 auto !important;
        width: 56px !important;
        height: 56px !important;
        padding: 4px !important;
        justify-content: center !important;
        border-radius: 12px !important;
    }
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(9))) .nav-info {
        display: none !important;
    }
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(9))) .nav-img {
        margin: 0 !important;
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 8px !important;
    }
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(9))) .nav-item::before,
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(9))) .nav-item::after {
        border-radius: 16px !important;
    }
    .slider-nav:has(.nav-item:nth-child(9)) {
        display: flex !important;
        justify-content: center !important;
        gap: 12px !important;
    }
    .slider-nav:has(.nav-item:nth-child(9)) .nav-item {
        flex: 0 0 8px !important;
        width: 8px !important;
        height: 8px !important;
        padding: 0 !important;
        border-radius: 100px !important;
        background: #d1d5db !important;
        border: none !important;
        opacity: 0.5 !important;
        transform: none !important;
        transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), flex 0.3s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease, opacity 0.3s ease !important;
    }
    .slider-nav:has(.nav-item:nth-child(9)) .nav-item.current {
        flex: 0 0 16px !important;
        width: 16px !important;
        background: #1987ca !important;
        opacity: 1 !important;
    }
    .slider-nav:has(.nav-item:nth-child(9)) .nav-img,
    .slider-nav:has(.nav-item:nth-child(9)) .nav-info,
    .slider-nav:has(.nav-item:nth-child(9)) .nav-item::before,
    .slider-nav:has(.nav-item:nth-child(9)) .nav-item::after {
        display: none !important;
    }
}
@media (min-width: 480px) and (max-width: 767.98px) {
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(8))) {
        display: flex !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        padding: 10px !important;
    }
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(8))) .nav-item {
        flex: 0 0 auto !important;
        width: 44px !important;
        height: 44px !important;
        padding: 3px !important;
        justify-content: center !important;
        border-radius: 10px !important;
    }
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(8))) .nav-info {
        display: none !important;
    }
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(8))) .nav-img {
        margin: 0 !important;
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 7px !important;
    }
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(8))) .nav-item::before,
    .slider-nav:has(.nav-item:nth-child(5)):not(:has(.nav-item:nth-child(8))) .nav-item::after {
        border-radius: 13px !important;
    }
    .slider-nav:has(.nav-item:nth-child(8)) {
        display: flex !important;
        justify-content: center !important;
        gap: 10px !important;
    }
    .slider-nav:has(.nav-item:nth-child(8)) .nav-item {
        flex: 0 0 8px !important;
        width: 8px !important;
        height: 8px !important;
        padding: 0 !important;
        border-radius: 100px !important;
        background: #d1d5db !important;
        border: none !important;
        opacity: 0.5 !important;
        transform: none !important;
        transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), flex 0.3s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease, opacity 0.3s ease !important;
    }
    .slider-nav:has(.nav-item:nth-child(8)) .nav-item.current {
        flex: 0 0 16px !important;
        width: 16px !important;
        background: #1987ca !important;
        opacity: 1 !important;
    }
    .slider-nav:has(.nav-item:nth-child(8)) .nav-img,
    .slider-nav:has(.nav-item:nth-child(8)) .nav-info,
    .slider-nav:has(.nav-item:nth-child(8)) .nav-item::before,
    .slider-nav:has(.nav-item:nth-child(8)) .nav-item::after {
        display: none !important;
    }
}
@media (max-width: 479.98px) {
    .slider-nav:has(.nav-item:nth-child(5)) {
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 15px !important;
    }
    .slider-nav:has(.nav-item:nth-child(5)) .nav-item {
        flex: 0 0 6px !important;
        width: 6px !important;
        height: 6px !important;
        padding: 0 !important;
        border-radius: 100px !important;
        background: #d1d5db !important;
        border: none !important;
        opacity: 0.5 !important;
        transform: none !important;
        transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), flex 0.3s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease, opacity 0.3s ease !important;
    }
    .slider-nav:has(.nav-item:nth-child(5)) .nav-item.current {
        flex: 0 0 12px !important;
        width: 12px !important;
        background: #1987ca !important;
        opacity: 1 !important;
    }
    .slider-nav:has(.nav-item:nth-child(5)) .nav-img,
    .slider-nav:has(.nav-item:nth-child(5)) .nav-info,
    .slider-nav:has(.nav-item:nth-child(5)) .nav-item::before,
    .slider-nav:has(.nav-item:nth-child(5)) .nav-item::after {
        display: none !important;
    }
}
/* ▲▲ファーストビュー▲▲ */
/* 重要なお知らせセクション */
.important-news {
    display: flex;
    background-color: #E9EDF6;
    gap: clamp(15px, 3vw, 40px);
    padding: 20px clamp(15px, 5vw, 40px);
    justify-content: center;
    align-items: center;
}
.important-news .important-wrapper {
    display: block;
    flex: 1;
    max-width: 600px;
    text-decoration: none;
}
.important-box {
    width: 100%;
    min-height: 43px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    transition: background-color 0.3s ease;
}
.important-box:hover {
    background-color: #f8f9fa;
}
.important-news-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    color: #4f4f4f;
    font-size: clamp(14px, 1vw, 16px);
    white-space: nowrap;
}
.important-news-date {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: #4f4f4f;
    font-size: clamp(12px, 0.8vw, 14px);
    white-space: nowrap;
    flex-shrink: 0;
}
.important-news-text {
    border-left: 1px solid #C7C7C7;
    margin-left: 15px;
    padding-left: 15px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(12px, 0.8vw, 14px);
    color: #4f4f4f;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    line-height: 1.5;
}
.important-icon {
    margin-right: 8px;
    color: #1987ca;
    font-size: 1.1em;
}
@media (max-width: 768px) {
    .important-news {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        gap: 10px;
    }
    .important-news-title {
        width: 100%;
        max-width: 600px;
        text-align: left;
        display: flex;
        align-items: center;
    }
    .important-news .important-wrapper {
        width: 100%;
    }
    .important-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 15px;
        gap: 6px;
    }
    .important-news-text {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    .important-news-title {
        display: flex;
        align-items: center;
    }
    .important-news-title .important-icon { display: none; }
}
/* スケジュールセクション */
.schedule-section{
    overflow: hidden;
    padding-top: 86px;
}
.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
    gap: 20px;
    width: 100%;
    border-bottom: 1px solid #eaeaea;
}
.filter-controls {
    display: flex;
    gap: 24px;
    padding-right: clamp(20px, 15.79vw - 39px, 264px);
    padding-bottom: 4px;
}
.filter-btn {
    background: none;
    padding: 0 0 2px 0;
    position: relative;
    font-family: "Oswald", sans-serif;
    border: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #7c7c7c;
    letter-spacing: 0.06em;
}
.filter-btn:hover {
    color: #292929;
}
.filter-btn.active {
    color: #1987ca;
}
.filter-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1987ca;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.filter-btn.active::after {
    transform: scaleX(1);
}
.schedule-title {
    display: flex;
    justify-content: flex-start;
    padding-left: clamp(20px, 15.79vw - 39px, 264px);
    margin: 0;
}
.schedule-title span {
    display: flex;
    align-items: center;
    gap: clamp(16px, 0.73vw + 13.2px, 30px);
    line-height: 1;
}
.schedule-title span small {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: clamp(32px, 28.12px + 1.04vw, 48px);
    color: #4f4f4f;
    font-style: normal;
    margin-bottom: 5px;
}
.schedule-title span b {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: clamp(13px, 0.21vw + 12.2px, 16px);
    color: #696969;
    margin-bottom: clamp(-20px, -0.65vw - 7.6px, -10px);
}
.schedule-title span::before {
    content: "";
    display: block;
    background-color: #1987ca;
    width: 5px;
    height: clamp(34px, 1.61vw + 28px, 65px);
    flex-shrink: 0;
}
.schedule-contents {
    background-color: #ffffff;
    padding-top: 43px;
    padding-bottom: 157px;
    width: 100%;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    gap: 62px;
}
.schedule-slider {
    display: flex;
    overflow-x: auto;
    padding: 0 10vw 40px;
    padding-left: clamp(20px, 15.79vw - 39px, 264px);
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}
.schedule-slider::-webkit-scrollbar { display: none; }
.schedule-slider.is-dragging {
    cursor: grabbing;
}
.schedule-group {
    display: flex;
    flex-direction: column;
    padding: 0 clamp(0.75rem, 0.677rem + 0.258vw, 1rem);
    border-left: 1px solid #7C7C7C;
    flex-shrink: 0;
    transition: padding 0.4s ease, border-color 0.4s ease, opacity 0.4s ease;
}
.schedule-group:last-child {
    border-right: 1px solid #ddd;
}
.schedule-group.is-empty {
    padding-left: 0;
    padding-right: 0;
    border-left-color: transparent;
    opacity: 0;
    overflow: hidden;
}
.schedule-date-header {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: clamp(32px, 28.12px + 1.04vw, 48px);
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: #4f4f4f;
    max-width: 500px;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.4s ease, opacity 0.4s ease;

    position: sticky;
    left: clamp(20px, 15.79vw - 39px, 264px);
    z-index: 10;
    width: clamp(260px, 80vw, 340px);
}
.schedule-group.is-empty .schedule-date-header {
    max-width: 0px;
    opacity: 0;
}
.schedule-date-week{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 13.27px + 0.19vw, 17px);
    letter-spacing: 0.03em;
    line-height: 1.5;
    margin-left: 9px;
}
.schedule-date-week .infri{
    padding-right: 6px;
}
.cards-wrapper {
    display: flex;
    gap: clamp(12px, 2vw, 25px);
    padding-top: 10px;
    padding-bottom: 25px;
    margin-top: -10px;
    margin-bottom: -25px;
}
.schedule-card {
    flex: 0 0 clamp(260px, 80vw, 340px);
    width: clamp(260px, 80vw, 340px);
    height: auto;
    min-height: clamp(300px, 60vw, 375px);
    background: #F2F6F9;
    border-radius: 13px;
    overflow: hidden;
    padding: 0;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.4s ease, width 0.4s ease, flex-basis 0.4s ease, margin-right 0.4s ease;
    transform-origin: center;
    display: flex;
    flex-direction: column;
    user-select: none;
    -webkit-user-drag: none;
    cursor: grab;
    opacity: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    will-change: transform, box-shadow;
    transform: scale(1) translateZ(0);
}
.schedule-card:hover {
    transform: translateY(-5px) scale(1) translateZ(0);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}
.schedule-card:active {
    cursor: grabbing;
}
.schedule-card.is-hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    flex: 0 0 0px;
    width: 0px;
    margin-right: calc(-1 * clamp(18px, 16.3px + 0.45vw, 25px));
}
.schedule-card:last-child.is-hidden {
    margin-right: 0;
}
.schedule-card img {
    pointer-events: none;
}
.card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}
.card-content {
    padding-top: clamp(10px, 2vw, 15px);
    padding-left: clamp(12px, 3vw, 21px);
    padding-right: clamp(12px, 3vw, 21px);
    padding-bottom: clamp(12px, 3vw, 15px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-content-inner{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    flex-grow: 1;
}
.card-genre {
    width: 110px;
    height: 22px;
    background: #000;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
}
.card-title {
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 10px;
    margin-bottom: 3px;
    font-size: clamp(14px, 3.5vw, 17px);
    font-weight: 700;
    color: #4f4f4f;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    text-align: center;
}
.card-title .main-title {
    display: block;
}
.card-title .sub-title {
    display: block;
    font-size: 0.8em;
    font-weight: 500;
    color: #666;
    margin-top: 2px;
}
.card-brand {
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
    margin-bottom: 5px;
    color: #666;
}
.card-divider {
    border: none;
    border-top: 1px solid #7C7C7C;
    margin-bottom: 10px;
}
.card-link {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #4f4f4f;
    text-decoration: none;
    margin-left: auto;
    display: flex;
    gap: 5px;
    align-items: center;
    transition: color 0.3s ease;
}
.card-link:hover  {
    color: #1987ca;
}
.card-link img{
    width: 16px;
    height: 10px;
    margin-top: 2px;
}
.progress-container {
    width: 100%; display: flex; justify-content: center; margin-top: 30px; }
.progress-track { width: 60%; height: 8px; background: #eee; border-radius: 4px; position: relative; cursor: pointer; }
.progress-thumb {
    position: absolute;
    height: 100%;
    background: #007BC4;
    border-radius: 4px;
    left: 0;
    cursor: grab;
    transition: left 0.1s ease-out, width 0.3s ease;
}
.is-sp-only { display: none !important; }
.is-pc-only { display: flex !important; }

.sche-filter-mobile {
    position: relative;
    margin-right: clamp(20px, 15.79vw - 39px, 264px);
    margin-bottom: 5px;
}
.sche-filter-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    min-width: 140px;
    height: 38px;
    box-sizing: border-box;
    background-color: #fff;
    border: 2px solid #292929;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    color: #292929;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 12px;
}
.sche-filter-trigger.is-active {
    background-color: #292929;
    color: #fff;
}
.sche-filter-arrow {
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.sche-filter-trigger.is-active .sche-filter-arrow {
    transform: rotate(180deg);
}
.sche-filter-panel {
    display: block;
    position: absolute;
    top: 45px;
    right: 0;
    z-index: 1000;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 220px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.sche-filter-panel.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.sche-filter-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sche-filter-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #4f4f4f;
    text-align: left;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.sche-filter-item:hover,
.sche-filter-item.active {
    background-color: #f5f5f5;
    color: #1987ca;
    font-weight: 700;
}

.sche-filter-item::before {
    content: "✓";
    display: inline-block;
    width: 15px;
    margin-right: 8px;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
}
.sche-filter-item.active::before {
    opacity: 1;
    transform: translateX(0);
}
@media screen and (max-width: 767.98px) {
    .is-sp-only { display: block !important; }
    .is-pc-only { display: none !important; }
    .schedule-header {
        align-items: center;
        gap: clamp(10px, 3vw, 20px);
        padding-right: 30px;
    }

    .schedule-title span small {
        font-size: clamp(22px, 6.8vw, 32px);
    }

    .sche-filter-mobile {
        margin-right: 0;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .sche-filter-trigger {
        min-width: 40px;
        width: auto;
        height: 30px;
        padding: 0 10px;
        font-size: 12px;
    }
    .sche-filter-trigger span:first-child {
        padding-left: 0;
    }
    .sche-filter-trigger span:last-child {
        padding-right: 0;
    }
    .sche-filter-arrow {
        margin-left: 6px;
    }
    .sche-filter-panel {
        width: calc(100vw - 40px);
        max-width: 250px;
        right: -20px;
        top: 38px;
    }
    .schedule-slider {
        scroll-snap-type: x mandatory;
    }
    .schedule-card {
        scroll-snap-align: start;
        scroll-margin-left: clamp(20px, 15.79vw - 39px, 264px);
    }
    .schedule-slider.is-dragging {
        scroll-snap-type: none;
    }
}
/* ニュースセクション */
.news-section{
    padding-bottom: 157px;
}
.sub-sec-title {
    width: 100%;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: flex-start;
    padding-left: clamp(20px, 15.79vw - 39px, 264px);
    margin: 0;
}
.sub-sec-title span {
    display: flex;
    align-items: center;
    gap: clamp(16px, 0.73vw + 13.2px, 30px);
    line-height: 1;
}
.sub-sec-title span small {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: clamp(24px, 21.09px + 0.78vw, 36px);
    color: #4f4f4f;
    font-style: normal;
    letter-spacing: 0.04em;
}
.sub-sec-title span b {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: clamp(13px, 0.21vw + 12.2px, 16px);
    color: #696969;
    margin-bottom: -10px;
}
.sub-sec-title span::before {
    content: "";
    display: block;
    background-color: #1987ca;
    width: 5px;
    height: clamp(34px, 1.61vw + 28px, 65px);
    flex-shrink: 0;
}
.news-contents {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 70px clamp(24px, 1.36vw + 18.9px, 45px);
    padding: 61px clamp(20px, 5vw, 60px) 0;
    width: 100%;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
}
.news-contents > a:nth-child(n+7) {
        display: none;
    }
.news-contents > a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.news-item {
    width: 100%;
    max-width: 336px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}
@media (max-width: 1023.98px) {
    .news-contents {
        width: 80%;
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(30px, 5vw, 50px) clamp(10px, 3vw, 24px);
    }
    .news-contents > a:nth-child(n+5) {
        display: none;
    }
}
@media (max-width: 529.98px) {
    .news-contents {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 40px 20px 0;
    }
    .news-contents > a:nth-child(n+3) {
        display: none;
    }
    .news-item {
        max-width: 100%;
        aspect-ratio: auto;
    }
}
@media (max-width: 479.98px) {
    .sub-sec-title span b{
        display: none;
    }
    .schedule-title span b{
        display: none;
    }
}
.news-item-image-container{
    position: relative;
    width: 100%;
    aspect-ratio: 336 / 189;
    flex-shrink: 0;
    z-index: 1;
    border-radius: 13px;
    background-color: transparent;
}
.image-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 13px;
    overflow: hidden;
    z-index: 2;
    display: block;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background: inherit;
}
.image-inner::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(15px);
    z-index: 1;
    transform: translateZ(0);
}
.news-item-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 13px;
    transition: filter 0.3s ease;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
}
.news-item-image-container::after {
    content: "";
    position: absolute;
    top: clamp(8px, 4.4vw, 15px);
    left: 5%;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(15px) opacity(0.35);
    z-index: 0;
    border-radius: 20px;
    transform: translateZ(0);
}
.news-item:hover .news-item-image {
    filter: brightness(0.85);
}
.news-item__content {
    margin-top: clamp(8px, 3.5vw, 12px);
    display: flex;
    flex-direction: column;
    padding-left: clamp(5px, 3vw, 10px);
    z-index: 3;
}
.news-item__meta {
    display: flex;
    align-items: center;
    gap: clamp(15px, 10vw, 34px);
}
.news-item__date {
    font-size: clamp(13px, 4.7vw, 16px);
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
    color: #4f4f4f;
}
.news-item__brand {
    width: clamp(80px, 32vw, 110px);
    height: clamp(18px, 6.5vw, 22px);
    background: #1987ca;
    color: #fff;
    font-size: clamp(10px, 3.5vw, 12px);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0em;
    line-height: 1;
    border-radius: 4px;
}
.news-item__title {
    margin-top: clamp(8px, 4vw, 14px);
    font-size: clamp(13px, 3vw, 16px);
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.03em;
    color: #4f4f4f;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp:3;
    overflow: hidden;
}
.button-container {
    display: flex;
    justify-content: center;
    margin-top: clamp(40px, 33.68px + 1.69vw, 66px);
}
.btn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 291px;
    height: 70px;
    box-sizing: border-box;
    border: 3px solid #1987ca;
    border-radius: 40px;
    background: linear-gradient(to right, #1987ca 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    color: #1987ca;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.05em;
    position: relative;
    transition: all 0.25s ease-out;
    overflow: hidden;
}
.btn-text {
    position: relative;
    z-index: 2;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.02em;
}
.btn-arrow-icon {
    position: absolute;
    right: 30px;
    margin-top: 2px;
    width: 16px;
    height: 10px;
    z-index: 2;
    background-color: #1987ca;
    -webkit-mask-image: url('../img/common/Chevron.svg');
    mask-image: url('../img/common/Chevron.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: background-color 0.5s ease-out, transform 0.3s ease;
}
.btn-more:hover {
    background-position: left bottom;
    color: #fff;
}
.btn-more:hover .btn-arrow-icon {
    background-color: #fff;
    transform: translateX(5px);
}
/* ブランド */
.brand-wrapper {
    background-color: #F2F2F2;
}

.brand-contents {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 61px clamp(20px, 7.5vw - 19px, 265px) 0;
    box-sizing: border-box;
}
.brand-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 313px;
    margin: 0 auto;
    padding-bottom: 18px;
    overflow: hidden;
    background-color: transparent;
    container-type: inline-size;
}

.brand-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: #fff;
    border-radius: 17px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand-item:hover::before {
    transform: scale(0.95);
}

.brand-item:hover .logo-img {
    opacity: 0;
}

.brand-item:hover .hover-img {
    transform: translate(-50%, -48%) scale(0.85);
    opacity: 1;
}

.brand-img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 313 / 178;
    box-sizing: border-box;
    overflow: hidden;
    transform: translateZ(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand-img-box img {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    will-change: transform, opacity;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
                opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    user-select: none;
    -webkit-user-drag: none;
}
.logo-img {
    max-width: 200px;
}
.hover-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    border-radius: 17px;
    opacity: 0;
    transform-origin: 50% 50%;
    transform: translate(-50%, -50%) scale(1);
}
.brand-line {
    margin: 0 clamp(10px, 5.7vw, 18px);
    border: none;
    border-top: 1px solid #2A2929;
}
.brand-inner-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-start;
    width: 100%;
    padding: 0 clamp(14px, 8.9vw, 28px);
    padding-bottom: clamp(0px, 2.4vw, 3px);
    box-sizing: border-box;
}
.brand-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: clamp(6px, 3.2vw, 10px);
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(60px, 27vw, 87px);
    height: clamp(16px, 7vw, 22px);
    background-color: #1987ca;
    border-radius: 6px;
    color: #fff;
    font-size: clamp(10px, 4.4vw, 12px);
    font-weight: 500;
}
.x-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    color: #4f4f4f;
    transition: opacity 0.3s ease;
}

.x-link:hover {
    opacity: 0.6;
}
.brand-main-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding-top: 6px;
}
.brand-item-title {
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
    color: #4f4f4f;
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-align: center;
    word-break: auto-phrase;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.brand-item-title .main-title {
    display: block;
}
.brand-item-title .sub-title {
    display: block;
    font-size: 0.8em;
    font-weight: 500;
    color: #777777;
    margin-top: 4px;
}
.brand-name {
    margin-top: clamp(8px, 4vw, 13px);
    color: #666;
    font-size: clamp(14px, 2vw, 14px);
    font-weight: 700;
}
.brand-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: clamp(8px, 4vw, 12px);
    padding-right: clamp(12px, 7.3vw, 23px);
    color: #4f4f4f;
    font-size: clamp(10px, 4.4vw, 14px);
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
    position: relative;
}
.brand-link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.brand-link::after {
    content: "";
    display: inline-block;
    width: clamp(12px, 5vw, 16px);
    height: clamp(12px, 5vw, 16px);
    margin-left: 0.5em;
    background-image: url("../img/common/Chevron.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateY(1px);
}
.brand-link:hover {
    opacity: 0.7;
}
.brand-btn {
    display: flex;
    justify-content: center;
    margin: 0;
    padding-top: 80px;
    padding-bottom: 115px;
    background-color: #F2F2F2;
}
@media (max-width: 1249.98px) {
    .brand-contents {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1023.98px) {
    .brand-contents {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
        width: 80%;
        padding: 61px 4vw 0;
    }
    .brand-contents > .brand-item:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .brand-contents {
        gap: 40px 30px;
        width: 100%;
    }
}

@media (max-width: 579.98px) {
    .brand-contents {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
        padding: 40px 20px 0;
    }
    .brand-item {
        max-width: 350px;
    }
}
/* お問い合わせと修正パッチ */
.support-section{
    border-top: 1px solid #C7C7C7;
    border-bottom: 1px solid #C7C7C7;
    padding: 42px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 3.95vw + 9.2px, 85px);
}
.support-card{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 0.78vw + 15px, 30px);
}
.support-card .btn-arrow-icon {
    display: none;
    position: absolute;
    right: 30px;
    width: 16px;
    height: 10px;
    background-color: #4f4f4f;
    -webkit-mask-image: url('../img/common/Chevron.svg');
    mask-image: url('../img/common/Chevron.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.support-card__icon {
    width: clamp(48px, 1.75vw + 41.4px, 75px);
    max-width: 75px;
    aspect-ratio: 1 / 1;
    background-color: #007BC4;
    overflow: hidden;
    position: relative;
}
.support-card__icon::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
    backface-visibility: hidden;
}
.--patch::before { background-image: url(../img/contents/patch-icon.webp); }
.--game::before  { background-image: url(../img/contents/game-icon.webp);  }
.--mail::before  { background-image: url(../img/contents/mail-icon.webp);  }
.support-card__body {
    display: flex;
    flex-direction: column;
}
.support-card__body h4 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(12px, 0.32vw + 10.8px, 20px);
    color: #4f4f4f;
    font-weight: 700;
    transition: 0.2s;
}
.support-card:hover h4 {
    color: #1987ca;
}
.support-card:hover .support-card__icon::before {
    transform: scale(0.6);
}
@media (max-width: 834.98px) {
    .support-section {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 10%;
        gap: 32px;
    }
    .support-card .btn-arrow-icon {
        display: block;
        right: 5%;
    }
    .support-section a{
        display: block;
        width: 100%;
    }
    .support-card {
        width: 100%;
        justify-content: flex-start;
        padding: 20px 0;
    }
    .support-card__icon {
        width: 100px;
    }
    .support-card__body h4 {
        font-size: 18px;
    }
}
.support-card:hover .btn-arrow-icon {
    transform: translateX(5px);
    background-color: #1987ca;
}
/* リクルートと通販ページ */
.site-portal{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 77px 50px;
    gap: clamp(20px, 3.24vw, 70px);
}
.banners-box{
    width: 25.57vw;
    max-width: 587px;
    aspect-ratio: 587 / 207;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    border: 3px solid #007BC4;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
}
.banners-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 196, 0.1);
}
.--recruit { background-image: url('../img/contents/recruit-banner.jpg'); }
.--shop    { background-image: url('../img/contents/official-banner.png'); }
.--market { background-image: url('../img/contents/plusmarket.webp'); }

@media (max-width: 834.98px) {
    .site-portal {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }
    .site-portal a {
        display: flex;
        justify-content: center;
    }

    .banners-box {
        width: 90vw;
        border-radius: 12px;
        border-width: 3px;
    }
}
/* ニュースページ */
.news-page .news-item__title {
    display: block;
    -webkit-line-clamp: none;
    line-clamp: none;
    overflow: visible;
    height: auto;
}
.news-page .news-contents > a:nth-child(n) {
    display: block !important;
}
.news-page-section .news-contents > a {
    display: block !important;
}
/* ブランドページ */
.brand-page{
    padding-bottom: 60px;
    background-color: #F2F2F2;
}
@media (max-width: 1023.98px) {
.brand-page .brand-contents > .brand-item:nth-child(n+5) {
        display: flex;
    }
}
/* 製品サポートページ */
.patch-item { display: flex; border-bottom: 1px solid #ddd; padding: 15px 0; align-items: center; }
.date { width: 120px; color: #888; font-weight: bold; }
.patch-title { flex-grow: 1; }
.patch-title a { text-decoration: none; color: #4f4f4f; }
.patch-title a:hover { color: #1987ca; }
.news-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    border-top: 1px solid #e0e0e0;
    padding: 0 20px;
}
.patch-item {
    display: flex;
    justify-content: center;
    padding: 20px 10px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    cursor: pointer;
}

.patch-item:hover {
    background-color: #f9f9f9;
}
.patch-title a {
    text-decoration: none;
    color: #4f4f4f;
    font-size: 18px;
    font-weight: bold;
}
.patch-title a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.date {
    flex: 0 0 120px;
    font-family: 'Helvetica', sans-serif;
    color: #888;
    font-size: 14px;
    font-weight: bold;
}
.patch-info-row {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
}
.brand-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 20px;
    background-color: #1987ca;
    color: #ffffff;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}
.patch-title a {
    text-decoration: none;
    color: #4f4f4f;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    transition: color 0.2s;
}

.patch-title a:hover {
    color: #1987ca;
}
.patch-title {
    flex: 1;
}
.patch-title a {
    text-decoration: none;
    color: #4f4f4f;
    font-size: 16px;
    display: block;
    width: 100%;
}
.patch-title a:hover {
    color: #1987ca;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 50px 0;
    padding-bottom: 50px;
}

.page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: #4f4f4f;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.page-num.current {
    background-color: #1987ca;
    color: #ffffff;
    border-radius: 50%;
}
.btn-prev, .btn-next {
    display: block;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;
    transition: background-image 0.2s ease-in-out;
}
.btn-prev {
    background-image: url('../img/common/left-arrow-white.svg');
}
.btn-prev:hover {
    background-image: url('../img/common/left-arrow-blue.svg');
}
.btn-next {
    background-image: url('../img/common/right-arrow-white.svg');
}
.btn-next:hover {
    background-image: url('../img/common/right-arrow-blue.svg');
}
.detail-container {
    margin: 40px auto;
    padding: 0 20px;
    color: #4f4f4f;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}
.back-link {
    margin-bottom: 30px;
    padding-left: clamp(20px, 8.85vw, 170px);
}
.back-link a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #4f4f4f;
    font-size: 16px;
    font-weight: bold;
}
.back-link img {
    width: 20px;
    margin-right: 10px;
}
@media (max-width: 1023.98px) {
    .main-slider {
        margin-top: 0;
    }
    .back-link{
        display: none;
    }
}
@media screen and (max-width: 479.98px) {
    .pagination{
        padding-bottom: 0px;
        gap: 0px;
    }
}
.detail-header {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-x: hidden;
}
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}
.title-group {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    max-width: 100%;
    position: relative;
}
.detail-date {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}
.detail-title {
    width: 100%;
    position: relative;
}
.detail-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    border-bottom: 1px solid #e4e4e4;
    bottom: 4px;
    z-index: 5;
}
.detail-title p {
    position: relative;
    display: inline-block;
    padding: 0.3em 0;
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    z-index: 3;
}
.detail-title p::before {
    content: "";
    position: absolute;
    top: auto;
    left: 0;
    width: 100%;
    border-bottom: 5px solid var(--color-primary);
    bottom: -1px;
    z-index: 3;
}
.detail-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
}
.detail-body > * {
    width: 100%;
    max-width: 900px;
    text-align: left;
}
.separator {
    border: none;
    border-top: 1px solid #868686;
}
.disclaimer {
    font-size: 16px;
    margin-bottom: 45px;
    font-weight: 700;
}
.section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.content-section{
    margin-bottom: 20px;
}
.section-title {
    color: #7a9ccc;
    font-weight: 800;
    border-bottom: 1px solid #7a9ccc;
    line-height: 1.5;
    margin: 10px auto;
    padding-bottom: 6px;
}
.section-title.noborder {
    color: #7a9ccc;
    font-weight: 800;
    line-height: 1;
    border-bottom: 0px solid #fff;
    margin: 5px auto;
    padding-bottom: 6px;
}
.text-block {
    font-size: clamp(13px, 1vw, 17px);
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 175%;
}
.download-area {
    display: flex;
    gap: 40px;
}
.btn-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 60px;
    font-size: clamp(16px, 3.25vw, 20px);
    text-decoration: none;
    color: #4f4f4f;
    background-color: #fff;
    border: 2px solid #292929;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 700;
    line-height: 1.1;
}
.btn-download:hover {
    background-color: #292929;
    color: #fff;
}
.dl-sub {
    font-size: 0.7em;
    font-weight: 500;
    color: #888;
    margin-top: 2px;
    transition: color 0.3s ease;
}
.btn-download:hover .dl-sub {
    color: rgba(255, 255, 255, 0.7);
}.file-info {
    margin-top: 50px;
    font-size: 16px;
    color: #666;
}
.file-info p {
    margin: 0 0;
}
.support-controls-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.news-list-header {
    display: flex;
    justify-content: flex-end;
    position: relative;
    margin: 0 auto 25px auto;
    width: 90%;
    max-width: 1200px;
    padding-top: 80px;
}
.filter-container {
    position: relative;
}
.brand-filter-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 152px;
    height: 43px;
    box-sizing: border-box;
    background-color: #fff;
    border: 2px solid #292929;
    color: #292929;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 400;
    color: #4f4f4f;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}
.brand-filter-trigger:hover {
    background-color: #292929;
    color: #fff;
}
.brand-filter-trigger.is-active {
    background-color: #292929;
    color: #fff;
}
#brandPanel {
    display: none;
}
#brandPanel.is-active {
    display: block;
}
.brand-filter-trigger span:first-child {
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 10px;
}
.brand-filter-trigger span:last-child{
    padding-right: 10px;
}
.arrow-icon {
    margin-left: 8px;
    font-size: 10px;
    transform: translateY(1px);
}
.arrow-icon:hover {
    color: #fff;
}
.arrow-icon.is-active {
    color: #fff;
}
.brand-selector-panel {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 1000;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: clamp(300px, 70vw, 850px);
    border-radius: 10px;
}
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}
.brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    height: 80px;
    transition: 0.3s;
    background: transparent;
}
.brand-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s;
}
.brand-selector-panel.is-filtering .brand-card img {
    filter: grayscale(100%);
}
.brand-selector-panel.is-filtering .brand-card.active img,
.brand-selector-panel.is-filtering .brand-card:hover img {
    filter: grayscale(0%);
}
.brand-card, .brand-card.active {
    background-color: transparent !important;
    border: 1px solid transparent;
}
@media screen and (max-width: 767.98px) {
    .brand-selector-panel {
        width: calc(100vw - 40px);
        max-height: 60vh;
        overflow-y: auto;
        padding: 15px;
        top: 55px;
    }

    .brand-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 10px;
    }

    .brand-card {
        height: 55px;
        padding: 5px;
    }
    .brand-selector-panel::-webkit-scrollbar {
        width: 6px;
    }
    .brand-selector-panel::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 3px;
    }
}
.attention-center {
    max-width: 1200px;
    margin-top: 60px;
    margin-bottom: 50px;
    width: 100%;
}
.attention-trigger {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: var(--color-primary);
    font-size: calc(20px + 0.15vw);
    font-weight: bold;
    padding: 18px 15px;
    position: relative;
    border-top: 1px solid #7a9ccc;
    border-bottom: 1px solid #7a9ccc;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    list-style: none;
}
.attention-trigger::-webkit-details-marker { display: none; }

.title-icon {
    width: 24px;
    height: auto;
    margin-right: 12px;
    z-index: 2;
}
.attention-trigger:hover {
    background-color: #ecf4ff;
}
.attention-container[open] .attention-trigger {
    background: #ecf4ff;
}
.i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 2%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    transform: rotate(45deg);
    transition: transform 0.4s ease;
}
.one_i {
    display: block;
    width: 18px;
    height: 18px;
    position: relative;
    transform: rotate(45deg);
}
.one_i::before, .one_i::after {
    content: "";
    display: block;
    background-color: var(--color-primary);
    border-radius: 10px;
    position: absolute;
    transition: all 0.3s;
}
.one_i::after {
    width: 18px;
    height: 4px;
    top: 7px;
    left: 0;
}
.one_i::before {
    width: 4px;
    height: 18px;
    top: 0;
    left: 7px;
}
.attention-container[open] .i_box {
    transform: rotate(-360deg);
}
.attention-container[open] .one_i::before {
    opacity: 0;
    height: 0;
}
.attention-container[open] .one_i::after {
    transform: rotate(-45deg);
}
.attention-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease, padding 0.4s ease;
    overflow: hidden;
    padding: 0 25px;
}
.attention-container.is-opened .attention-content {
    grid-template-rows: 1fr;
    padding-top: 30px;
    padding-bottom: 30px;
}
.attention-inner {
    min-height: 0;
}
.text-red-bold {
    color: #d93025;
    font-weight: bold;
    background: linear-gradient(transparent 75%, #ffdfdf 75%);
    padding: 0 2px;
}
.attention-image {
    margin-top: 25px;
    text-align: center;
}
.attention-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
@media screen and (max-width: 1023.98px) {
    .i_box { width: 30px; height: 30px; margin-top: -15px; }
}
@media screen and (max-width: 767.98px) {
    .attention-trigger { padding-right: 60px; }
    .attention-inner { padding: 20px 15px; }
}
@media screen and (max-width:479.98px) {
    .attention-trigger {
    font-size: calc(18px + 0.15vw);}
}
.contact-section {
    width: 100%;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif;
    color: #4f4f4f;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-lead {
    text-align: center;
    font-size: clamp(19px, 1.45vw, 30px);
    font-weight: 600;
    margin-bottom: 60px;
    margin-top: 50px;
    width: 100%;
    border-bottom: 1px solid #e4e4e4;
    text-align: center;
}
.contact-lead span {
    position: relative;
    padding: 0.3em;
    display: inline-block;
    font-size: 120%;
    font-weight: 800;
}
.contact-lead span::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    border-bottom: 5px solid var(--color-primary);
    width: 100%;
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    margin: auto;
}
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    gap: clamp(20px, 3.75vw, 72px);
}
.contact-card {
    width: clamp(320px, 21.92vw, 421px);
    height: clamp(340px, 23.33vw, 448px);
    background-color: transparent;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 40px 20px;
    cursor: pointer;
}
.contact-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 1);
    z-index: -1;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card-icon {
    width: clamp(150px, 11.97vw, 230px);
    margin-bottom: 40px;
}
.contact-card:nth-child(4) .card-icon {
    margin-left: 25px;
}
.card-icon img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card-text {
    font-size: clamp(18px, 1.45vw, 28px);
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.03em;
    margin: 0;
}
.contact-card:hover::before {
    transform: scale(0.95);
}
.contact-card:hover .card-icon img {
    transform: scale(0.85);
}
.contact-info {
    width: 85%;
    max-width: 1600px;
    margin-top: 96px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 6em;
}
.info-block {
    margin-bottom: 63px;
    width: 100%;
}
.info-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 5px;
}
.info-title {
    color: #7a9ccc;
    font-weight: 800;
    border-bottom: 1px solid #7a9ccc;
    line-height: 1.5;
    margin: 10px auto;
    padding-bottom: 6px;
}

.info-title.noborder {
    font-size: 120%;
    color: #7a9ccc;
    font-weight: 800;
    line-height: 1;
    border-bottom: 0px solid #fff;
    margin: 5px auto;
    padding-bottom: 6px;
}
.info-body {
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.6;
    margin-bottom: 10px;
}
.info-block:last-child {
    margin-bottom: 0;
}
.contact-page-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}
.contact-visual-side, .contact-form-side {
    width: 50%;
    box-sizing: border-box;
}
.contact-visual-side {
    display: flex;
    justify-content: flex-end;
    padding-top: 100px;
}
.mail-warning-box {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    font-size: 13px;
    line-height: 1.6;
    color: #4f4f4f;
    width: 85%;
    margin-top: 10px;
}

.mail-warning-box .warning-title {
    font-size: 15px;
    font-weight: 700;
    color: #E60012;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mail-warning-box p {
    margin-bottom: 12px;
}
.mail-warning-box strong {
    font-weight: 700;
    color: #333;
}
.mail-warning-box .warning-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}
.mail-warning-box .warning-list li {
    margin-bottom: 6px;
}
.mail-warning-box .carrier-links {
    background-color: #fff;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #dee2e6;
}
.mail-warning-box .carrier-links p {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}
.mail-warning-box .carrier-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mail-warning-box .carrier-links li {
    margin-bottom: 5px;
}
.mail-warning-box .carrier-links li:last-child {
    margin-bottom: 0;
}
.mail-warning-box .carrier-links a {
    color: #0056b3;
    text-decoration: underline;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.2s;
}
.mail-warning-box .carrier-links a:hover {
    opacity: 0.7;
}
.mail-warning-box .carrier-links i {
    font-size: 11px;
}
.mail-warning-box .warning-note {
    margin-bottom: 0;
    font-size: 12px;
    color: #666;
}
.visual-sticky-content {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}
.visual-sticky-content .card-text{
    font-size: clamp(18px, 1.2vw, 22px);
}
.contact-instruction {
    font-size: 14px;
    line-height: 1.8;
    color: #4f4f4f;
    text-align: center;
}
.contact-instruction a{
    color: #1987ca;
}
.contact-form-side {
    padding-left: clamp(40px, 5vw, 100px);
    padding-top: 100px;
    padding-bottom: 200px;
}
.main-form {
    width: clamp(320px, 40.1vw, 770px);
}
.form-item {
    margin-bottom: 40px;
}
.label-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.item-label {
    font-size: 18px;
    font-weight: 600;
    margin-right: 20px;
    flex-shrink: 0;
    line-height: 1.2;
}
.badge {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 12px;
    font-size: clamp(13px, 0.833vw, 16px);
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
}
.badge.required { background-color: #E60012; }
.badge.optional { background-color: #999999; }

.input-field {
    width: 100%;
    height: 60px;
    border: 2px solid #3C3C3C;
    border-radius: 10px;
    padding: 0 20px;
    font-size: 18px;
    box-sizing: border-box;
}
.input-field.textarea {
    height: 180px;
    padding-top: 20px;
    resize: none;
}
.input-field::placeholder {
    color: #838282;
    opacity: 1;
    font-weight: 400;
}
.email-confirm-row {
    margin-top: 5px;
}
.sub-text {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}
.blue-text{
    color: #1987ca;
    margin-right: 10px;
}
.policy-info-box {
    background-color: #F2F2F2;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    font-size: clamp(14px, 0.83vw, 16px);
    border-radius: 10px 10px 0 0;
    color: #666;
    border: 1px solid #9b9a9a;
    border-bottom: none;
}
.sv-br {
    display: none;
}
.checkbox-container {
    border: 1px solid #9b9a9a;
    height: 60px;
    padding: 0 20px;
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: center;
    background-color: #fff;
}
.checkbox-text {
    font-size: clamp(16px, 1.04vw, 18px);
    font-weight: 600;
}
.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}
.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 6px;
    margin-right: 15px;
    position: relative;
    background-color: #fff;
    transition: all 0.2s ease;
}
.custom-checkbox input:checked + .checkmark {
    background-color: #4f4f4f;
    border-color: #4f4f4f;
}
.checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.custom-checkbox input:checked + .checkmark::after {
    display: block;
}
.form-submit-row {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.confirm-btn {
    width: 300px;
    height: 70px;
    background-color: #4f4f4f;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    background-color: transparent;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.confirm-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4f4f4f;
    border-radius: 35px;
    z-index: -1;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s ease;
}
.confirm-btn:hover::after {
    transform: scale(0.93);
}
select.input-field {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    line-height: 60px;
    padding-top: 0;
    padding-bottom: 0;
    padding: 0 40px 0 20px;
}
select.input-field:invalid {
    color: #bbbbbb;
}
select.input-field option {
    color: #4f4f4f;
}
.security-flex-container {
    width: 100%;
}

.radio-group {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    padding: 10px 0;
}
.custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}
.custom-radio input { display: none; }
.radio-mark {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    background-color: #fff;
}
.custom-radio input:checked + .radio-mark {
    background-color: #4f4f4f;
    border-color: #4f4f4f;
}
.radio-mark::after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
}
.custom-radio input:checked + .radio-mark::after {
    display: block;
}
.security-name-box {
    width: 100%;
}
.input-error {
    border-color: #E60012 !important;
    background-color: #fffafa !important;
}
.error-message {
    color: #E60012;
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
    display: none;
}
@media screen and (max-width: 767.98px) {
    .contact-page-container {
        display: block;
        padding: 20px 55px;
        padding-bottom: 50px;
    }
    .contact-visual-side {
        width: 100%;
        height: auto;
        padding-right: 0;
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
        padding-top: 40px;
    }
    .visual-sticky-content {
        position: static;
        padding: 0;
    }
    .contact-lead {
        font-size: clamp(13px, 4vw, 16px);
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .contact-lead span {
        font-size: 110%;
    }
    .contact-lead span::before {
        border-bottom-width: 3px;
        bottom: -3px;
    }
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(10px, 3vw, 20px);
        padding: 0 10px;
        box-sizing: border-box;
        width: 100%;
    }
    .contact-grid > a {
        width: 100%;
        max-width: none;
        display: block;
        text-decoration: none;
    }
    .contact-card {
        max-width: 400px;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
        box-sizing: border-box;
        border-radius: 15px;
    }
    .mail-warning-box {
        margin-top: 0px;
        margin-bottom: 30px;
    }
    .card-icon {
        width: 48%;
        margin-bottom: clamp(10px, 3vw, 20px);
    }
    .contact-card .card-icon,
    .contact-grid > a .card-icon {
        margin-left: 0 !important;
    }
    .card-text {
        font-size: clamp(10px, 3vw, 14px);
        line-height: 1.4;
        text-align: center;
        font-weight: 700;
    }
    .contact-instruction {
        margin-top: 15px;
        font-size: 13px;
        text-align: left;
    }
    .contact-info{
        margin-top: clamp(40px, 5.152vw + 23.51px, 96px);
    }
    .contact-form-side {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .input-field {
        font-size: 16px;
        padding: 12px;
    }
    .confirm-btn {
        width: 100%;
        height: 55px;
        font-size: 16px;
    }
    .form-submit-row {
        margin-top: 40px;
        flex-direction: column-reverse;
        gap: 15px;
    }
    .checkbox-text {
        font-size: 14px;
    }
    .main-form {
        width: 100%;
        max-width: 770px;
        margin: 0 auto;
    }
    .label-row {
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }
    .item-label {
        margin-right: 0;
        font-size: clamp(16px, 4vw, 20px);
    }
    .policy-info-box, .checkbox-container {
        width: 100%;
        box-sizing: border-box;
    }
}
@media screen and (max-width:479.98px) {
    .contact-page-container {
        padding: 15px 10px;
        padding-bottom: 50px;
    }
}
@media screen and (max-width: 374.98px) {
    .input-field {
        height: 50px;
        font-size: 16px;
    }
    select.input-field {
        padding-right: 30px;
        background-position: right 10px center;
    }
}
@media screen and (max-width: 339.98px) {
    .sv-br{
        display: inline;
    }
}
.confirm-wrapper {
    max-width: 700px;
}
.confirm-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.confirm-item label {
    font-size: 14px;
    color: #888;
    display: block;
    margin-bottom: 5px;
}
.confirm-item p {
    font-size: 18px;
    font-weight: 600;
    color: #4f4f4f;
    line-height: 1.6;
}
.back-btn {
    text-align: center;
    width: 200px;
    height: 60px;
    background: #f4f4f4;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.back-btn:hover { background: #e0e0e0; }
.btn {
    display: inline-block;
    padding: 0.5em 2em 0.5em 1em;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    color: #292929;
    text-decoration: none;
    border: 2px solid #292929;
    border-radius: 5px;
    line-height: 20px;
    text-align: center;
    margin: 0.3em;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn.none {
    pointer-events: none;
    display: inline-block;
    color: #b6b6b6;
    background: #f0f0f0;
    text-decoration: none;
    border: 2px solid #e2e2e2;
}
.btn.none::after {
    color: #aaaaaa !important;
}
.btn:hover {
    color: #ffffff;
    text-decoration: none;
    background: #292929;
}

.btn:after {
    font-family: "Font Awesome 5 Free";
    content: "\f101";
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 900;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60%;
}
.midbtn, .bigbtn {
    background-color: #fff;
    width: 70%;
    max-width: 1000px;
    padding: 1em;
    margin-left: -20px;
    display: block;
    margin: 2em auto;
    font-size: 120%;
    font-family: "Noto Sans JP";
    font-weight: 500;
}
.midbtn, .topbtn {
    background-color: #fff;
    width: 70%;
    max-width: 400px;
    padding: 1em;
    display: block;
    margin: 2em auto;
    margin-top: 1em;
    font-size: 100%;
    font-family: "Noto Sans JP";
    font-weight: 500;
}
.midbtn.none, .bigbtn.none {
    pointer-events: none;
    display: inline-block;
    color: #b6b6b6;
    background: #e4e4e4;
    text-decoration: none;
    border: 2px solid #dadada;
}
.midbtn.none::after, .bigbtn.none::after {
    color: #aaaaaa !important;
}
.r18-modal-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 9999;
    background-color: rgba(10, 15, 25, 0.85);
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overscroll-behavior: contain;
}
.r18-modal-content {
    position: relative;
    background-color: #ffffff;
    padding: clamp(40px, 6vw, 50px) clamp(30px, 6vw, 60px);
    border-radius: 16px;
    text-align: center;
    width: 90%;
    max-width: 600px;
    box-sizing: border-box;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.1);
    animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.r18-modal-header {
    margin-bottom: 20px;
}
.r18-modal-header-en {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: #94a3b8;
    margin-bottom: 4px;
}
.r18-modal-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 900;
    color: #1a202c;
    margin: 0;
    letter-spacing: 0.02em;
}
.r18-modal-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #1987ca, #38bdf8);
    margin: 15px auto 0;
    border-radius: 2px;
}
.r18-modal-text {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.7;
    margin-bottom: 40px;
    color: #475569;
    font-weight: 500;
    white-space: normal;
}
.r18-modal-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.r18-btn-yes, .r18-btn-no {
    box-sizing: border-box;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
}
.r18-btn-yes {
    background: linear-gradient(135deg, #1987ca 0%, #0ea5e9 100%);
    color: #fff;
    border: none;
    width: 320px;
    height: 64px;
    box-shadow: 0 10px 20px -5px rgba(25, 135, 202, 0.4);
}
.yes-main {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.yes-sub {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
    margin-left: 8px;
}
.r18-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(25, 135, 202, 0.5);
    background: linear-gradient(135deg, #1e92d6 0%, #14b4fb 100%);
}
.r18-btn-no {
    background-color: transparent;
    color: #64748b;
    border: 1px solid #cbd5e1;
    width: 120px;
    height: 64px;
    font-size: 0.95rem;
    font-weight: 500;
}
.r18-btn-no:hover {
    background-color: #f8fafc;
    color: #334155;
    border-color: #94a3b8;
}
@media screen and (max-width: 767.98px) {
    .r18-modal-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .r18-btn-yes {
        width: 100%;
    }
    .r18-btn-no {
        width: 100%;
        border: none;
        background-color: #f1f5f9;
        height: 48px;
    }
    .confirm-btn, .back-btn {
        width: 100%;
        max-width: 320px;
    }
}
html.is-agreed .r18-modal-overlay {
    display: none !important;
}
html:has(#js-r18-modal):not(.is-agreed) body {
    overflow: hidden;
}
.thanks-message {
    padding-top: 50px;
    max-width: 600px;
    width: 100%;
}

.thanks-message .thanks-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}
.thanks-message .thanks-title.--error {
    color: #E60012;
}

.thanks-message .thanks-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4f4f4f;
    margin-bottom: 24px;
}
.thanks-message .thanks-caution {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #4f4f4f;
    margin-top: 30px;
}
@media screen and (max-width: 767.98px) {
    .thanks-message {
        padding-top: 20px;
        padding-inline: 15px;
    }
    .thanks-message .thanks-title {
        font-size: 20px;
    }
    .thanks-message .thanks-text {
        font-size: 15px;
    }
}
.contact-card.no-hover {
    cursor: default !important;
    transform: none !important;
}
.contact-card.no-hover:hover {
    transform: none !important;
}
.contact-card.no-hover:hover::before,
.contact-card.no-hover:hover::after {
    transform: none !important;
}
.contact-card.no-hover:hover .card-icon img {
    transform: none !important;
}