@charset "UTF-8";/* 文字コードを指定 */


a {
    color: #fff;           /* 好きな色 */
    text-decoration: none;
}
a:visited {
  color: #fff;           /* ← これ必須 */
}
img{
    width: 100%;
}

h2{
    color: #fff;
    font-family: "Goldman", sans-serif;
    font-size: 5rem;
    text-align: center;
}

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

@media screen and (max-width: 768px){
    h2{
        font-size: 2rem;
    }
}
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s ease, height .2s ease;
}

/* ホバー時に大きく */
.cursor.is-hover {
    width: 100px;
    height:  100px;
    opacity: .7;
}

@media (pointer: coarse) {
    .cursor {
        display: none;
    }
}


body{
    background-color: #202020;
    font-family: "Helvetica Neue","Segoe UI","游ゴシック","游ゴシック体","Yu Gothic",YuGothic,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','メイリオ',Meiryo,sans-serif;
    max-width: 100%;
    background-color: #050505;
    
}

button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}




/* ==== 背景ネオン ==== */
.neon-bg {
    position: fixed;
    inset: 0;
    z-index: -2; /* 明確に最背面 */
    pointer-events: none;
}

.neon-particle {
    position: absolute;
    width: 300px;
    height: 300px;
    filter: blur(50px);
    opacity: 0.35;
    mix-blend-mode: normal;
    animation: float infinite ease-in-out;
}

/* 色バリエーション */
.neon-blue {
    background: radial-gradient(circle, rgba(70,102,255,.9), rgba(0,255,255,0));
}
.neon-pink {
    background: radial-gradient(circle, rgba(254,52,126,.6), rgba(255,0,150,0));
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, -100px) scale(1.2);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}
/* ==== 背景ネオン ==== */



header{
    position: fixed;
    z-index: 101;
    padding: 20px 20px;
}


.header-icon img{
    width: 100px;
}

@media screen and (max-width: 768px){
    header{
    position: fixed;
    z-index: 101;
    padding: 15px 10px;
    }

    .header-icon img{
    width: 70px;
    }
}

/* ==== ハンバーガー ==== */
.menu-btn {
    position: fixed;
    top: 40px;
    right: 20px;
    width: 90px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    }

.menu-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.menu-btn span:nth-child(1) {
    top: 0;
}
.menu-btn span:nth-child(2) {
    bottom: 0;
}

/* × になる */
.menu-btn.is-open span:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
}
.menu-btn.is-open span:nth-child(2) {
    transform: rotate(-45deg);
    bottom: 14px;
}

/* ==== メニュー ==== */
.global-menu {
    position: fixed;
    inset: 0;

    background: rgba(13, 13, 13, 0.8); /* 80% */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari対策 */

    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 1000;
    font-family: "Goldman", sans-serif;
}

.global-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.menu-inner {
    width: 80%;
    margin: 0 auto;
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    color: #fff;
}


.menu-inner ul {
    list-style: none;
    padding: 0;
}
.menu-inner li{
    padding-bottom: 15px;
    font-size: 20px;
}
.menu-inner li :hover{
    opacity: .6;
}
.menu-inner a {
    color: #fff;
    text-decoration: none;
    letter-spacing: .05em;
}

.menu-right li:first-child {
    margin-bottom: 10px;
}

.nav_limited-store{
    width: 20%;
    margin: 0 auto;
    margin-top: 200px;
    transition: opacity .6s cubic-bezier(.4,0,.2,1);
}

.nav_limited-store:hover{
    opacity: .5 !important;
}

@media screen and (max-width: 768px){
    .menu-btn {
    position: fixed;
    top: 40px;
    right: 20px;
    width: 60px;
    height: 20px;
    }

    /* × になる */
    .menu-btn.is-open span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
        }
    .menu-btn.is-open span:nth-child(2) {
    transform: rotate(-45deg);
    bottom: 9px;
    }

    /* ==== メニュー ==== */
    .menu-inner {
        width: 100%;
        margin: 0 auto;
        padding: 100px 40px 20px 40px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        color: #fff;
    }

    .nav_limited-store{
        width: 80%;
        margin: 0 auto;
    }

    .menu-left{
        margin-bottom: 10px;
    }

    .menu-center{
        margin-bottom: 10px;
    }
}

.first-view{
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.first-view h1 {
    margin-bottom: 12px;
}

.first-view .fv-subtitle {
    margin-top: 0;
    letter-spacing: .12em;
    line-height: 1.4;
}

.first-view::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0),
        rgba(0,0,0,100)
    );
    z-index: 2;
}

.first-view_back-ground{
    position: absolute;
    inset: 0;
    background-image: url(../img/img-top/top_firstview.jpg);
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.first-view_back-ground::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.first-view_box{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}



.first-viewlogo img{
    width: 200px;

}

.first-view_box h1{
    color: #fff;
    font-size: 4rem;
    padding-top: 55px;
    font-family: "Goldman", sans-serif;
}

@media screen and (max-width: 768px){

    .first-viewlogo img{
        display: block;        /* ← これが必須 */
        width: 50%;
        margin: 0 auto;  
    }
    .first-view h1{
        font-size: 1.6rem;
        z-index: 100;
    }

    .first-view::after{
        display: none;
    }
}


.footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;

    transition: 
        transform 0.6s ease,
        opacity 0.6s ease;

    z-index: 100;
}

.footer-menu.is-active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.footer-menu-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.9);
}

.footer-menu-box {
    display: flex;
    gap: 100px;               /* li同士の間隔 */
    list-style: none;
    padding: 45px 0px;
    justify-content: center;

    font-family:"Goldman", sans-serif ;
    
    background: linear-gradient(
    to bottom,
    rgba(0,0,0,0),
    rgba(0, 0, 0, 0.7)


);

}
.footer-menu-box a{
    text-decoration: none;
}

.footer-menu-box li :hover{
    opacity: .6;
}

@media screen and (max-width: 768px) {

    .footer-menu {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }
    .footer-menu-line{
        display: none;
    }

    /* MENUボタン */
    .footer-menu-trigger {
        display: block;
        width: 50%;
        margin: 16px auto;
        padding: 10px 0;
        background: rgba(179, 179, 179, 0.5);;
        color: #fff;
        border-radius: 5px;
        font-family:"Goldman", sans-serif;
        letter-spacing: .1em;
    }

    /* メニュー初期状態（閉じる） */
    .footer-menu-box {
        position: fixed;
        bottom: 70px;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        width: 80%;
        max-width: 300px;

        flex-direction: column;
        gap: 0;
        padding: 24px;

        background: rgba(0,0,0,.85);
        border-radius: 8px;

        opacity: 0;
        pointer-events: none;
        transition: .4s ease;
    }

    /* 開いた状態 */
    .footer-menu.is-open .footer-menu-box {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .footer-menu-box li {
        padding: 12px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,.2);
    }

    .footer-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.8);
        opacity: 0;
        pointer-events: none;
        transition: .4s ease;
        z-index: 1;
    }

    .footer-menu.is-open .footer-menu-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    /* 重なり順調整 */
    .footer-menu-box {
        z-index: 2;
    }

    .footer-menu-trigger {
        position: relative;
        z-index: 3;
    }
}

.top-main{
    width: 80%;
    margin: 0 auto;
}

@media screen and (max-width: 768px){
    .top-main{
    width: 95%;
    margin: 0 auto;
}
}

.event-info{
    margin-top: 145px;
}
.event-to-yokohama{
    margin-top: 100px;
    margin-bottom: 100px;
    transition: opacity .6s cubic-bezier(.4,0,.2,1);
}

.event-to-yokohama:hover{
    opacity: .5 !important;
}

@media screen and (max-width: 768px){
    .event-info{
    margin-top: 100px;
    }

    .event-to-yokohama{
    margin-top: 50px;
    margin-bottom: 50px;
    }
}


.hero {
    position: relative;
    margin-bottom: 50px;
    transition: opacity .6s cubic-bezier(.4,0,.2,1);
}
.hero:hover{
    opacity: .5 !important;
}

.hero-bg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    z-index: 2;
}

.hero-text span {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    padding-right: 80px;
    animation: slideText 15s linear infinite;
    font-family: "Goldman", sans-serif;
}

@keyframes slideText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media screen and (max-width: 768px){
    .hero-text span {
    font-size: 2rem;
    }
}

.special-movie{
    margin-top: 200px;
    line-height: 1.8;
}
.special-movie p + p {
    margin-top: 1em;
}

.special-movie h2{
    padding-bottom: 50px;
}


.special-movie_box{
    display: flex;
    justify-content: space-between;
    gap:25px;
    padding: 80px 0px;
}

.special-movie_box001 iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
}

.special-movie_box001{
    width: 50%;
}

.special-movie_box002{
    width: 50%;
    color: #fff;
    text-align: right;
}

.special-movie_box002 h3{
    font-size: 32px;
    padding-bottom: 20px;
    text-align: left;
}

.special-movie_box002_ttx{
    font-size: 20px;
    padding-bottom: 30px;
    color: #ccc;
    text-align: left;
}
.special-movie_box002_ttx02{
    font-size: 15px;
    line-height: 30px; 
    text-align: left; 
}

.special-movie-button{
    display: inline-block;
    margin-top: 24px;
    color: #fff;
    padding: 15px 50px;
    border: 0.21px solid #fff;
    letter-spacing: .08em;
    font-size: 14px;   

    overflow: hidden;
}
.news-topics-section{
    margin-top: 150px;
}

.news-topics-section h2{
    margin-bottom: 80px;
}






.special-movie-button::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );
    transition: .4s ease;
}

.special-movie-button:hover::before{
    left: 0;
}


.special-movie_box_underline{
    border: 0.1px solid #fff; 
    opacity: .8;
}



@media screen and (max-width: 768px){
    .special-movie h2{
    padding-bottom: 10px;
    }

    .special-movie_box{
    display: flex;
    flex-direction: column;
    gap:25px;
    padding: 40px 0px;
    }

    .special-movie-button{
        display: none;
    }

    .special-movie_box002 a{
        display: none;
    }

    .special-movie_box001{
    width: 100%;
    }

    .special-movie_box002{
    width: 100%;
    }

    .special-movie_box002 h3{
    font-size: 1.5rem;
    line-height: 1.8rem;
    padding-bottom: 10px;
    }

    .special-movie_box002_ttx{
    font-size: 1rem;
    padding-bottom: 10px;
    }
    .special-movie_box002_ttx02{
    font-size: .8rem;
    line-height: 1.6rem; 
    }
}





footer{
    padding-top: 200px;
}
.footer_limited-store{
    width: 20%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.footer-menu_page-end{
    display: flex;
    justify-content: space-between; /* 左右ブロックを両端に配置 */
    align-items: flex-start; /* 必要に応じ center に変更 */
    margin-top: 150px;
    padding-top: 30px;
    position: relative; /* 必要ならそのまま */
    width: 80%;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "Goldman", sans-serif;
}


.footer-menu_left{
    display: flex;
    gap: 48px; /* ul 同士の間隔（任意で調整） */
    align-items: flex-start;
}


.footer-menu_left ul,
.footer-menu_right ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ロゴ画像サイズ */
.footer-menu-01 img{
    width: 60px;
    display: block;
}

.footer-menu-02,
.footer-menu-03,
.footer-menu-04 {
    display: grid; 
    gap: 12px; 
}


.footer-menu-04 {
    color: #fff; /* a じゃない文字用 */
}

.footer-menu-04 a {
    color: #fff;
    text-decoration: none;
}

.footer-menu-03 li,
.footer-menu-04 li{
    padding-bottom: 5px;
}

/* 右ブロックは横並びのアイコン */
.footer-menu_right{
    display: flex;
}

.footer-menu_right ul{
    display: flex;
    gap: 25px; /* SNSアイコン間の余白 */
    margin: 0;
    padding: 0;
}
.footer-menu-icon img{
    width: 30px;
}
.footer-menu-01 li:hover,
.footer-menu-02 li:hover,
.footer-menu-03 li:hover,
.footer-menu-04 li:hover {
    opacity: .6;
}

.footer-copyright{
    font-family: "Goldman", sans-serif;
    font-size: 128px;
    color: #d9d9d9;
    opacity: .2;

    text-align: center;
    margin-top: 150px;
    padding-bottom: 50px;
}

.footer-menu.is-hidden {
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
}

@media screen and (max-width: 768px) {

    footer{
    padding-top: 50px;
    }

    /* 全体：縦並び */
    .footer-menu_page-end{
        flex-direction: column;
        width: 100%;
        margin-top: 50px;
        padding: 0 20px;
        gap: 48px;
    }

    /* 左ブロック：縦並び */
    .footer-menu_left{
        flex-direction: column;
        align-items: left;
        gap: 32px;
        text-align: left;
    }

    .footer-menu-02,
    .footer-menu-03,
    .footer-menu-04{
        gap: 16px;
    }

    /* ロゴサイズ縮小 */
    .footer-menu-01 img{
        width: 48px;
    }

    /* 右：SNSアイコン中央配置 */
    .footer-menu_right{
        display: flex;
        justify-content: center; /* 横方向センター */
        width: 100%;
    }

    .footer-menu_right ul{
        gap: 20px;
    }

    .footer-menu-icon img{
        width: 28px;
    }

    /* コピーライト調整 */
    .footer-copyright{
        font-size: 30px;
        margin-top: 80px;
        padding-bottom: 32px;
    }

    .footer_limited-store{
    width: 50%;
    margin: 0 auto;
}

    
}



/* 共通：出現前 */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示状態 */
.fade-up.is-show {
    opacity: 1;
    transform: translateY(0);
}

/* ここからNEW PRODUCTS */

.first-view02_back-ground{
    position: absolute;
    inset: 0;
    background-image: url(../img/img-products/new-product-main-2160x1050.jpg);
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.first-view02_back-ground::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.first-view_box02{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
}

.first-view_box02 h1{
    color: #fff;
    font-size: 4rem;
    font-family: "Goldman", sans-serif;
}

.first-view_box02 p{
    font-size: 2rem;
    font-weight: 700;
    margin-top: 20px;
}

@media screen and (max-width: 768px){

    .first-view_box02 h1{
        font-size: 1.6rem;
        z-index: 100;
    }

    .first-view_box02 p{
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 10px;
}

}
.products-main{
    width: min(1200px, 90%);
    margin: 100px auto 0;
}
.new-products-box_flex{
    margin-top: 75px;
}

.new-products-box{
    color: #fff;
}

.products-title{
    font-size: 4.5rem;
    letter-spacing: 0.1em;
    font-family: "Goldman", sans-serif;
    margin-top: 100px;
    margin-bottom: 50px;
}
@media (max-width: 768px){
    .products-title{
        font-size: 2rem;
}
}

.new-products-box ul{
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px){
    .new-products-box ul{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px){
    .new-products-box ul{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px){
    .new-products-box ul{
        grid-template-columns: 1fr;
    }
}

.new-products-box_img img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.new-products-box_group_en{
    margin-top: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.new-products-box_group_ja{
    margin-top: 6px;
    font-size: 0.95rem;
    color: #ccc;
}
.new-products-box_group_button{
    font-family:"Goldman", sans-serif ;
    margin-top: 20px;
    margin-bottom: 60px;
    border: 1px solid #fff;
    padding: 10px 0;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .3s ease;
    letter-spacing: 0.1em;
}
.new-products-box_group_button::before{
    content:"";
    position:absolute;
    inset:0;
    background:#fff;
    transform: scaleX(0);
    transform-origin:left;
    transition: transform .3s ease;
    z-index:-1;
}
.new-products-box_group_button:hover{
    color:#000;
}
.new-products-box_group_button:hover::before{
    transform: scaleX(1);
}

.new-products-box_group_en,
.new-products-box_group_ja {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.new-products-box_group_en {
    -webkit-line-clamp: 2; 
}

.new-products-box_group_ja {
    -webkit-line-clamp: 2; 
}


.modal{
    position: fixed;
    inset: 0;
    visibility: hidden;
    z-index: 1000;
}

.modal.active{
    visibility: visible;
}

.modal-overlay{
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    cursor: pointer;
    inset: 0;
    background: rgba(0,0,0,0.4); /* 完全に暗くしない */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    z-index: 1;
}

.modal-content{
    position: relative;
    max-width: 900px;
    width: 90%;
    margin: 5vh auto;
    background: rgba(0,0,0,0.75); /* 半透明 */
    backdrop-filter: blur(6px);  /* 中身にうっすらガラス感 */
    -webkit-backdrop-filter: blur(6px);
    padding: 30px;
    color: #fff;

    max-height: 90vh;
    overflow-y: auto;

    opacity: 0;
    transform: translateY(12px) scale(.98);
    transition:
        opacity .4s ease,
        transform .4s cubic-bezier(.22,.61,.36,1);

    z-index: 2;
}

.modal.active .modal-content{
    opacity: 1;
    transform: translateY(0) scale(1);
}

.modal-close{
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition:
        background .2s ease,
        transform .2s ease,
        border .2s ease;
}

.modal-close:hover{
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
    transform: scale(1.1);
}

.modal-img{
    position: relative;
    padding-top: 40px; /* 閉じるボタン分の逃げ */
}

.modal-img img{
    width: 100%;
    display: block;
    object-fit: cover;
    margin-bottom: 20px;
}

.modal-en{
    font-size: 2rem;
    letter-spacing: 0.1em;
}

.modal-ja{
    color: #aaa;
    margin-top: 5px;
}

.modal-size{
    margin-top: 15px;
    font-size: 0.9rem;
    color: #ccc;
}

.modal-catchword{
    margin-top: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
}

.modal-text{
    margin-top: 10px;
    line-height: 1.8;
    font-size: 0.95rem;
}


.modal-content{
    -webkit-overflow-scrolling: touch;
}

.new-products-box_group {
    display: flex;
    flex-direction: column;
}

.new-products-box_group_button {
    margin-top: auto;
}

/* 文字ブロックとボタンの“常に一定”な距離 */
.new-products-box_group_ja {
    margin-bottom: 20px;
}

@media screen and (max-width: 768px){

    .modal-content{
        width: 92%;
        max-height: 90vh;
        margin: 7vh auto;
        padding: 20px;
    }

    .modal-en{
        font-size: 1.4rem;
        letter-spacing: 0.08em;
    }

    .modal-catchword{
        font-size: 1.1rem;
        margin-top: 16px;
    }

    .modal-text{
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .modal-close{
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

    .modal-img{
        padding-top: 30px;
    }
}

.news-topics-section-box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-topics-section-group img{
    transition: opacity .6s cubic-bezier(.4,0,.2,1);
}
.news-topics-section-group img:hover{
    opacity: .5 !important;
}


.news-topics-section-group ul{
    color: #fff;
    list-style: none;
    display: flex;
    gap: 10px;

    margin-top: 15px;
}

.news-topics-section-group li{
    border: 1px solid #fff; 
    padding: 5px 15px;
    font-size: 0.9rem;
}
.news-topics-section-group p{
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 45px;
    line-height: 1.8rem;
    
}

@media screen and (max-width: 768px){
    .news-topics-section-box{
        grid-template-columns: 1fr;
    }
    .news-topics-section-group p{
        margin-bottom: 10px;
    }
}
.news-topics-section-box_category-text{
    color: #fff;
    font-size: 1rem;
    text-align: center;
    margin-top: 45px;
    margin-bottom: 20px;
}

.news-topics-section-box_category{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.news-topics-section-box_category img{
    transition: opacity .6s cubic-bezier(.4,0,.2,1);
}
.news-topics-section-box_category img:hover{
    opacity: .5 !important;
}

@media screen and (max-width: 768px){
    .news-topics-section-box_category-text{
        font-size: 0.8rem;
    }
    .news-topics-section-box_category{
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ここまでNEW PRODUCTS */



/* ここから釣りフェス2026概要サイト */

/* .first-view03_back-ground{
    position: absolute;
    inset: 0;
    background-image: url(../img/img-yokohama/yokohama_fv01.jpg);
    background-size: cover;
    background-position: center;
    z-index: 0;
} */
.first-view03_back-ground::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.first-view_box02 span{
    font-size: 1.2rem;
    padding-left: 4px;
}

.yokohama-main{
    color: #fff;
    width: 70%;
    margin: 0 auto;
}

.yokohama-group{
    margin-top: 150px;
}

.yokohama-heading p{
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2rem;

    text-align: center;
    margin-top: 20px;
    
}

.over-view{
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.over-view li{  
    display: flex;
    align-items: flex-start;
    gap: 30px; /* ← 間隔はここで管理 */
    padding: 20px 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.over-view-box01{
    width: 120px;         /* ラベル幅を固定 */
    flex-shrink: 0;       /* 文字が増えても潰れない */
}

.over-view-box02{
    flex: 1;              /* 残り幅を全部使う */
    line-height: 2;
}

.over-view-box01,
.over-over-view-box02{
    line-height: 1.8;
}

.paragraph{
    padding-bottom: 20px;
}

@media (max-width: 768px){
    .yokohama-main{
    color: #fff;
    width: 90%;
    margin: 0 auto;
    }

    .over-view li{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
}

.yokohama-map_img{
    margin-top: 50px;
}

.yokohama_staff{
    display: flex;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}


.yokohama_staff_img img{
    width: 100%;            /* 親の幅に合わせる（例：親が正方形） */
    height: auto;
    display: block;
    object-fit: cover;      /* 画像を枠いっぱいに切り出す */
    border-radius: 50%;
}
.yokohama_staff li{
    text-align: center;
}
.yokohama_staff_name_tag{
    border-radius: 100px;
    font-size: .8rem;
    width: 80%;
    margin: 0 auto;
    line-height: 20px;

    margin-top: 10px;
    margin-bottom: 10px;
}
.tag-bass{
    border: 1px solid #AF0400;
    color: #AF0400;
}

.tag-ss{
    border: 1px solid #2673A8;
    color: #2673A8;
}

.tag-os{
    border: 1px solid #2673A8;
    color: #2673A8;
}

.tag-tr{
    border: 1px solid #1C6E34;
    color: #1C6E34;
}


.yokohama_staff_name_ja{
    font-size: 2rem;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 5px;
}

.yokohama_staff_name_p_en{
    color: #aaa;
}

@media (max-width: 768px){
    .yokohama_staff{
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        padding: 0;
    }

    .yokohama_staff-member{
        width: calc(50% - 12px);
        list-style: none;
    }

    .yokohama_staff_name_ja{
    font-size: 1.5rem;
    }
    .yokohama_staff_name_p_en{
        font-size: .8rem;
    }
}

.limited-store-box{
    width: 90%;
    margin: 0 auto;
    display: flex;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 100px;
    color: #fff;
}

.limited-store_group_img{
    position: relative;
    overflow: hidden;
}

.limited-store_group_img img{
    width: 100%;
    display: block;
}

.limited-store_group_img .hover-img{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* PCホバー */
@media (hover: hover){
    .limited-store_group_img:hover .hover-img{
        opacity: 1;
    }
}

/* スマホタップ時 */
.limited-store_group_img.is-active .hover-img{
    opacity: 1;
}

.limited-store_group_img.is-tap-guide::after{
    content: "TAP";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.12em;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    animation: tap-guide 1.5s ease 2;
}

/* 一度タップされたら消す */
.limited-store_group_img.is-active::after{
    display: none;
}

/* PCでは表示しない */
@media (hover: hover){
    .limited-store_group_img.is-tap-guide::after{
        display: none;
    }
}

@keyframes tap-guide{
    0%{ opacity: 0; }
    30%{ opacity: 1; }
    70%{ opacity: 1; }
    100%{ opacity: 0; }
}

.limited-store_name{
    font-size: 1.2rem;
    font-weight: 700;

    margin-top: 10px;
}

.limited-store_color-size{
    margin-top: 5px;
}

.limited-store_price{
    margin-top: 10px;
    text-align: right;
}

@media (max-width: 768px){
    .limited-store-box{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
}

@media screen and (max-width: 768px){

    .yokohama-map_img{
        display: flex;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;

        /* スクロール領域として明確に */
        padding-bottom: 8px;
    }

    .yokohama-map_img img{
        flex-shrink: 0;              /* ← これが最重要 */
        width: auto;
        height: auto;
        max-width: none;
        
        /* 基準サイズを決める（好みで調整） */
        height: 70vh;               /* 画面に対して大きく見せる */
        object-fit: contain;
    }
}

/* ここまでが横浜概要 */

/* ここからコラム関連 */
.column-head{
    height: 145px;
}
.column{
    background-color: #fff;
    color: #333333;
    width: 80%;
    margin: 0 auto;   
    padding: 60px 0px;
}
.column-tag{
    display: flex;
    justify-content: space-between;
    align-items: center; /* ← 必須 */
    padding: 0 30px;
    margin-bottom: 50px;
}
.column-tag ul{
    display: flex;
    gap: 15px;
}
.column-tag li{
    list-style: none;
    padding: 5px 15px;
    font-size: .9rem;
    border: #000 solid 0.5px;
}
.column-tag{
    font-size: .9rem;
    color: #606060;
}

.column-main-text{
    width: 80%;
    margin: 0 auto;
}
.column-main-text h2{
    font-family: "Helvetica Neue","Segoe UI","游ゴシック","游ゴシック体","Yu Gothic",YuGothic,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','メイリオ',Meiryo,sans-serif;
    color: #000;
    font-size: 3rem;
    font-weight: 700;

    margin-bottom: 50px;
}
.column-main-text h3{
    font-size: 2rem;
    letter-spacing: .01rem;
    padding-bottom: 10px;
    border-bottom: #000 solid 0.5px;
    margin-bottom: 25px;
}
.column-p{
    font-size: 1rem;
    line-height: 2rem;
    margin-bottom: 50px;
    letter-spacing: .03rem;
}

.column-main-text img{
    margin-bottom: 50px;
}
.column-jump{
    display: block;
    margin: 0 auto;
    color: #fff;
    background-image: linear-gradient(to right, #868f96 0%, #596164 100%);   
    padding: 10px 30px; 
    border-radius: 100px;
    margin-bottom: 10px;
}
.back-to-top{
    width: 30%;
    margin: 0 auto;
    margin-top: 100px;

    padding: 35px 70px;
    background-color: #aaa;
    color: #fff;
    text-align: center;
    font-family: "Goldman", sans-serif;
    font-size: 2rem;
    border-radius: 5px;
}

@media screen and (max-width: 768px){
    .column{
    width: 95%;
    padding: 30px 0px;
    }

    .column-tag{ 
    padding: 0 15px;
    }

    .column-main-text{
    width: 90%;
    }

    .column-main-text h2{
    font-size: 2rem;
    margin-bottom: 30px;
    }

    .column-main-text h3{
    font-size: 1.2rem;
    }
    .column-p{
    font-size: .9rem;
    line-height: 1.8rem;
    letter-spacing: 0rem;
    margin-bottom: 20px;
    }
    .back-to-top{
    width: 60%;
    margin-top: 50px;
    padding: 10px 10px;
    font-size: 1rem;
    }
    .column-main-text img{
    margin-bottom: 20px;
    }   
}

.category-button-box{
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    list-style: none;
}

.category-button-box li{
    border-radius: 50px;
    padding: 10px 30px;
    font-family: "Goldman", sans-serif;
}
.button-bass{
    background-image: linear-gradient(to left, #ff0844 0%, #f76848 100%);
}
.button-shore{
    background-image: linear-gradient(to right, #0acffe 0%, #495aff 100%);
}
.button-offshore{
    background-image: linear-gradient(to left, #4481eb 0%, #04befe 100%);
}
.button-trout{
    background-image: linear-gradient(to left, #0ba360 0%, #3cba92 100%);
}

@media screen and (max-width: 768px){
    .category-button-box{
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}