﻿
/* ===================================================
   ヒーローセクション
=================================================== */
.hero-section{
    width: 100%;
    min-height: 580px; /* FVテキストが長い場合に下方向へ伸びる（固定高さだと背景外へはみ出すため） */
    background-repeat: no-repeat;
    background-position: center calc(100% - 30px);
    background-size: cover;
}
.hero-section .inner{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right top;
    gap: 10px;
    max-width: 1280px;
    min-height: 580px; /* 内容が収まる時は従来どおり580px（商品画像=背景auto 100%も従来サイズ）。長い時のみ伸びる */
    margin: auto;
    padding-bottom: 80px;
}
.hero-section h1{
    color: var(--color-white);
    font-size: 40px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-shadow: 0 0 8px rgba(0,0,0,.5);
}
.hero-section .page-en{
    margin: 10px 0;
    color: var(--color-accent);
    font-size: 45px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.05em;
    opacity: 0.3;
}
.hero-section .hero-read{
    width: 40%;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0,0,0,.5);
}

@media screen and ( max-width: 1200px ){
    .hero-section{
        min-height: 400px;
        background-position: center;
        background-size: auto 100%, auto;
    }
    .hero-section .inner{
        width: 100%;
        max-width: 1000px;
        min-height: 400px;
        background-size: auto 380px;
        background-position: 100% center;
        padding: 20px 2.5%;
    }
    .hero-section h1{
        font-size: 38px;
        line-height: 1.2em;
    }
    .hero-section .hero-read{
        width: auto;
        margin-right: 500px;
        font-size: 18px;
    }
}

@media screen and ( max-width: 810px ){
    .hero-section{
        height: auto;
        min-height: 400px;
        background-size: cover; /* SPは伸びたセクション全体を必ず覆う（下端の隙間対策） */
        background-position: center;
    }
    .hero-section .inner{
        max-width: 600px;
        min-height: 400px;
        background-size: auto 300px;
        background-position: 100% top;
        padding: 20px 2.5%;
    }
    .hero-section h1{
        font-size: 33px;
    }
    .hero-section .hero-read{
        width: 100%;
        margin: 0;
        font-size: 13px;
    }
}
@media screen and ( max-width: 480px ){
    .hero-section{
        height: auto;
        background-size: cover;
        background-position: center;
    }
    .hero-section .inner{
        background-size: auto 220px;
        background-position: center top;
        padding: 200px 2.5% 20px;
    }
    .hero-section h1{
        font-size: 28px;
    }
    .hero-section .hero-read{
        font-size: 13px;
    }
}


/* ===================================================
   選ばれる理由
=================================================== */
.reasons-section {
    padding: 50px 0 60px;
    position: relative;
}
.reasons-section .section-title span.small{
    display: block;
    font-size: 28px;
    font-weight: 500;
}
.reasons-section .section-title span.color{
    color: var(--color-accent);
}

.reasons-section .inner-container {
    max-width: 1280px;
    margin: auto;
}

.reasons-section .reasons-list {
    display: flex;
    gap: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.reasons-section .reasons-list > li {
    background-color: #eaebf2;
    padding: 20px 20px 10%;
    border-radius: var(--radius-lg);
    transition: border-color .2s;
}
.reasons-section .reasons-list .reason-title {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}
.reasons-section .reasons-list .reason-desc  {
    color: var(--color-text-mid);
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

/* reasons-list 挿絵アイコン（strengthのanchor-listと統一。li.reason-* クラス付与時のみ適用＝本番静的reasons-listには影響なし） */
.reasons-section .reasons-list > li.reason-schedule,
.reasons-section .reasons-list > li.reason-staff,
.reasons-section .reasons-list > li.reason-cooperation,
.reasons-section .reasons-list > li.reason-lineup{
    padding-bottom: 200px;
    background-repeat: no-repeat;
    background-size: 250px auto;
}
.reasons-section .reasons-list > li.reason-schedule{
    background-image: url(../../_images/strength/schedule-icon.webp);
    background-position: center calc(100% + 30px);
}
.reasons-section .reasons-list > li.reason-staff{
    background-image: url(../../_images/strength/staff-icon.webp);
    background-position: center calc(100% + 55px);
}
.reasons-section .reasons-list > li.reason-cooperation{
    background-image: url(../../_images/strength/cooperation-icon.webp);
    background-position: center 100%;
}
.reasons-section .reasons-list > li.reason-lineup{
    background-image: url(../../_images/strength/lineup-icon.webp);
    background-position: center calc(100% + 30px);
}

@media screen and ( max-width: 810px ){
    .reasons-section {
        padding: 50px 0 80px;
    }
    .reasons-section .section-title span.small{
        font-size: 24px;
    }

    .reasons-section .reasons-list {
        overflow-x: auto;
        padding: 0 20px 10px;
    }
    .reasons-section .reasons-list > li {
        min-width: 250px;
        padding: 20px 3% 10%;
    }
    .reasons-section .reasons-list .reason-title {
        font-size: 17px;
    }
    .reasons-section .reasons-list .reason-desc  {
        font-size: 14px;
    }

    .reasons-section .reasons-list > li.reason-schedule,
    .reasons-section .reasons-list > li.reason-staff,
    .reasons-section .reasons-list > li.reason-cooperation,
    .reasons-section .reasons-list > li.reason-lineup{
        padding-bottom: 180px;
        background-size: 220px auto;
    }
}
@media screen and ( max-width: 480px ){
    .reasons-section .section-title span.small{
        font-size: 20px;
    }

    .reasons-section .reasons-list {
        overflow-x: auto;
        padding: 0 20px 10px;
    }
    .reasons-section .reasons-list > li {
        min-width: 250px;
        padding: 20px 3% 10%;
    }
    .reasons-section .reasons-list .reason-title {
        font-size: 17px;
    }
    .reasons-section .reasons-list .reason-desc  {
        font-size: 14px;
    }
    .reasons-section .reasons-list > li.reason-schedule,
    .reasons-section .reasons-list > li.reason-staff,
    .reasons-section .reasons-list > li.reason-cooperation,
    .reasons-section .reasons-list > li.reason-lineup{
        padding-bottom: 160px;
        background-size: 200px auto;
    }
}


/* ===================================================
   グッズを探す
=================================================== */
.search-section {
    background: #f4f7fb;
    position: relative;
    overflow: hidden;
}
.search-section .section-title {
    position: relative;
    z-index: 2;
}
.search-section .section-title span{
    display: inline-block;
    color: var(--color-accent);
}


/* 背景スクロールテキスト */
.search-marquee-bg {
  width: 100%;
  height: 220px;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.search-marquee-inner {
  display: inline-flex;
  height: 100%;
  white-space: nowrap;
  animation: relatedBgScroll 60s linear infinite;
  will-change: transform;
  align-items: center;
}
.search-marquee-content {
  display: flex;
  flex-shrink: 0;
}
.search-marquee-content span {
  color: rgba(14, 165, 233, .08);
  padding: 0 32px;
  font-size: 160px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  user-select: none;
  line-height: 1;
}
@keyframes relatedBgScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* タイトルを背景の上に確実に乗せる */
.explore-section .inner-container { position: relative; z-index: 1; }

/**/
.search-section > .inner-container{
    max-width: 1280px;
    margin: auto;
    padding: 100px 0 50px;
}

.search-section .trend-title{
    color: var(--color-primary);
    margin: 10px 20px;
    font-size: 28px;
    font-weight: 900;
}

@media screen and ( max-width: 810px ){
    /* 背景スクロールテキスト */
    .search-marquee-bg {
        height: 160px;
    }
    .search-marquee-content span {
        padding: 0 28px;
        font-size: 110px;
    }
    
    /**/
    .search-section > .inner-container{
        padding: 70px 0 50px;
    }

    .search-section .trend-title{
        margin: 10px 20px 0;
        font-size: 25px;
    }

}
@media screen and ( max-width: 480px ){
    /* 背景スクロールテキスト */
    .search-marquee-bg {
        height: 120px;
    }
    .search-marquee-content span {
        padding: 0 28px;
        font-size: 80px;
    }
    
    /**/
    .search-section > .inner-container{
        padding: 30px 0 50px;
    }

    .search-section .trend-title{
        font-size: 20px;
    }

}


/* ===================================================
   商品リスト
=================================================== */
.item-section {
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}
.item-section .section-title span{
    color: var(--color-accent);
}

/**/
.item-section > .inner-container{
    max-width: 1280px;
    margin: auto;
}

.index-list-box{
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
.index-list-box > .items-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding: 10px 20px 40px;
}
.index-list-box > .items-list > li{
	width: calc((100% - 90px) / 4);
}

.index-list-box > .items-list > li .item-card img{
    max-height: 325px;
}
.index-list-box > .center-box{
	display: block;
	width: fit-content;
	margin: auto;
	text-align: center;
}

@media screen and ( max-width: 810px ) {
	.index-list-box > .items-list{
		padding: 0 15px 40px;
		gap: 30px 20px;
	}
	.index-list-box > .items-list > li{
		width: calc((100% - 40px) / 3);
	}
	.index-list-box > .items-list > li .item-card{
		padding: 15px;
	}
}
@media screen and ( max-width: 480px ) {
	.index-list-box > .items-list{
		gap: 20px 20px;
	}
	.index-list-box > .items-list > li{
		width: calc((100% - 20px) / 2);
	}
	.index-list-box > .items-list > li .item-card{
		padding: 10px;
	}
}


/* ===================================================
   製作実績
=================================================== */
.works-section{
    background-image: linear-gradient(to bottom, #f3f3f5 0, #ffffff 100%);
    padding: 50px 0;
}
.works-section .works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1280px;
    margin: auto;
}
.works-section .works-grid > li {
    padding: 16px 40px 20px;
}
.works-section .works-grid > li:not(:last-child){
    border-right: 1px solid var(--color-gray);
}
.works-section .works-grid > li .work-job{
    display: inline-block;
    color: var(--color-blue);
    margin-bottom: 8px;
    padding: 3px 10px;
    font-size: 14px;
    border: 1px solid var(--color-accent);
    border-radius: 5px;
}
.works-section .works-grid > li .work-title {
    color: var(--color-primary);
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}
.works-section .works-grid > li .work-desc  {
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
}
.works-section .works-grid > li .btn-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 80%;
    background-color: var(--color-accent);
    color: var(--color-white);
    margin: auto;
    padding: 12px 10px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    transition: all .3s ease;
    overflow: hidden;
    position: relative;
}
.works-section .works-grid > li .btn-detail:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-color: var(--color-white);
    border-radius: 50%;
    position: absolute;
    right: 5px;
}
.works-section .works-grid > li .btn-detail:after{
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: url(../../_images/common/icon-arrow.webp) no-repeat center;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(73%) sepia(57%) saturate(1747%) hue-rotate(163deg) brightness(101%) contrast(89%);
    transition: transform 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045);
    position: absolute;
    right: 12px;
}

/* 1. ボタンホバー時に矢印を右側へ消し去る */
.btn-detail:hover::after {
  transform: translateX(20px);
  animation: arrow-return 0.5s forwards;
}
@keyframes arrow-return {
  0% {
    transform: translateX(0);
    opacity: 1; /* 最初は見えている */
  }
  30% {
    transform: translateX(20px);
    opacity: 0; /* ここで完全に透明にする */
  }
  50% {
    transform: translateX(-20px); /* テキストの後ろにワープ */
    opacity: 0; /* まだ透明のまま */
  }
  70% {
    transform: translateX(-20px);
    opacity: 1; /* ここで透明度を戻し、再登場の準備をする */
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media screen and ( max-width: 810px ){
    .works-section{
        padding: 40px 0;
    }
    .works-section .works-grid {
        justify-content: flex-start;
        gap: 0;
        margin: 0;
        padding: 0 20px 10px;
        overflow-x: auto;
    }
    .works-section .works-grid > li {
        min-width: 235px;
        padding: 10px 15px 10px;
    }
    .works-section .works-grid > li .work-title {
        font-size: 18px;
    }
    .works-section .works-grid > li .btn-detail {
        width: 95%;
        padding-right: 30px;
        font-size: 15px;
    }
}

/* ===================================================
   大ロット激安
=================================================== */
.discount-section{
    background-color: #74839d;
    padding: 90px 0
}

.discount-section .section-title{
    color: #fff;
}
.discount-section .section-title > span{
    display: block;
    font-size: 28px;
    font-weight: 500;
}

.discount-section .inner-container{
    max-width: 1280px;
    margin: auto;
    text-align: center;
}

.discount-section .inner-container img{
    height: auto;
}

@media screen and ( max-width: 810px ){
    .discount-section{
        padding: 5% 0
    }
    .discount-section .section-title > span{
        font-size: 24px;
    }

    .discount-section .inner-container{
        margin: 0 20px;
    }
}
@media screen and ( max-width: 480px ){
    .discount-section .section-title > span{
        font-size: 22px;
    }
}


/* ===================================================
   トピックス
=================================================== */
.topicks-section{
    background-image: url(../../_images/common/bg-dot-circle.webp);
    background-repeat: no-repeat;
    background-position: 5% 30%;
    padding: 90px 0 100px;
}

.topicks-section .section-title{
    max-width: 1080px;
    margin: 0 auto 30px;
    font-size: 32px;
    text-align: left;
}
.topicks-section .section-title > span{
    display: block;
    font-size: 28px;
    font-weight: 500;
}

.topicks-section .inner-container{
    display: flex;
    align-items: flex-start;
    gap: 50px;
    max-width: 1080px;
    margin: auto;
}

.topicks-section .inner-container > img{
    flex-shrink: 0;
    width: 400px;
    height: auto;
    border-radius: 20px;
}
.topicks-section .inner-container > div{
    padding: 20px 0;
}

.topicks-section .inner-container .topicks-title{
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}
.topicks-section .inner-container p{
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8em;
}
.topicks-section .inner-container p:last-child{
    margin: 0;
}

@media screen and ( max-width: 810px ){
    .topicks-section{
        padding: 8% 0 10%;
    }
    .topicks-section .section-title{
        margin: 0 20px 20px;
        font-size: 28px;
    }
    .topicks-section .section-title > span{
        font-size: 25px;
    }

    .topicks-section .inner-container{
        gap: 30px;
        margin: 0 20px;
    }

    .topicks-section .inner-container > img{
        width: 50%;
        height: auto;
    }
    .topicks-section .inner-container > div{
        padding: 0;
    }

    .topicks-section .inner-container .topicks-title{
        font-size: 22px;
    }
}

@media screen and ( max-width: 480px ){
    .topicks-section{
        padding: 8% 0 10%;
    }
    .topicks-section .section-title{
        width: 95%;
        margin: 0 auto 20px;
        font-size: 25px;
    }
    .topicks-section .section-title > span{
        font-size: 22px;
    }

    .topicks-section .inner-container{
        flex-direction: column;
        gap: 20px;
    }

    .topicks-section .inner-container > img{
        width: 100%;
        height: auto;
    }
    .topicks-section .inner-container > div{
        padding: 0;
    }

    .topicks-section .inner-container .topicks-title{
        font-size: 22px;
    }
}


/* ===================================================
   下部エリア
=================================================== */

.type-section{
    padding: 50px 0;
}
.type-section .section-title{
    color: #fff;
    font-size: 28px;
}

.type-section .type-list{
    display: flex;
    gap: 30px;
    max-width: 1280px;
    margin: auto;
}
.type-section .type-list > li{
    width: calc((100% - 90px) / 4);
}
.type-section .type-list > li a{
    display: block;
    border-radius: 30px;
    overflow: hidden;
    transition: all .3s ease;
    position: relative;
}
.type-section .type-list > li img{
    width: 100%;
    height: auto;
    border-radius: 30px;
    transition: all .3s ease;
}
.type-section .type-list > li p{
    width: 100%;
    backdrop-filter: blur(15px);
    padding: 10px 25px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    position: absolute;
    bottom: 0;
}

.type-section .type-list > li a:hover{
    transform: translateY(-5px);
    box-shadow: 0 0 5px rgba(0,0,0,.02);
}
.type-section .type-list > li a:hover img{
    filter: blur(2px);
}

@media screen and ( max-width: 810px ){
    .type-section{
        padding: 30px 0;
    }
    .type-section .section-title{
        font-size: 26px;
    }

    .type-section .type-list{
        gap: 20px;
        padding: 0 20px 10px;
        overflow-x: auto;
    }
    .type-section .type-list > li{
        width: auto;
        min-width: 210px;
    }
    .type-section .type-list > li img{
        height: auto;
    }
    .type-section .type-list > li p{
        padding: 5px 20px 10px;
        font-size: 22px;
    }
}

@media screen and ( max-width: 480px ){
    .type-section{
        padding: 30px 0;
    }
    .type-section .section-title{
        font-size: 22px;
    }

    .type-section .type-list{
        overflow-x: auto;
    }
    .type-section .type-list > li{
        width: auto;
        min-width: 210px;
    }
    .type-section .type-list > li p{
        padding: 5px 20px 10px;
        font-size: 20px;
    }
}


/* ===================================================
   下部エリア
=================================================== */
.under-content{
    background-image: linear-gradient(to bottom, #fff 0, #f3f3f5 100%);
    padding: 60px 0 50px;
}
.under-content > section{
    max-width: 1280px;
    margin: 0 auto 80px;
}
.under-content > section > .inner-container{
    margin-left: 200px;
}


@media screen and ( max-width: 810px ){
    .under-content{
        padding: 50px 0 30px;
    }
    .under-content > section{
        margin: 0 0 50px;
    }
    .under-content > section > .inner-container{
        margin: 0 20px;
    }
}
@media screen and ( max-width: 480px ){
    .under-content > section{
        margin: 0 0 50px;
    }
    .under-content > section > .inner-container{
        margin: 0 20px;
    }
}


/* ====================
   ピックアップ特集
==================== */
.pickup-section .pickup-list {
    display: flex;
    gap: 40px;
}
.pickup-section .pickup-list > li{
    width: calc((100% - 80px) / 3);
}
.pickup-section .pickup-list > li p{
    font-size: 18px;
}
.pickup-section .pickup-list img{
    width: 100%;
    height: auto;
    max-height: 390px;
}

@media screen and ( max-width: 810px ){
    .under-content > .pickup-section > .inner-container{
        margin: 0;
    }

    .pickup-section .pickup-list {
        padding: 0 20px;
        gap: 20px 20px;
        padding-bottom: 5px;
        overflow-x: auto;
    }

    .pickup-section .pickup-list > li{
        width: calc((100% - 40px) / 3);
    }
    .pickup-section .pickup-list > li p{
        font-size: 16px;
    }
}
@media screen and ( max-width: 480px ){
    .pickup-section .pickup-list > li{
        min-width: 250px;
    }
    .pickup-section .pickup-list > li p{
        font-size: 15px;
    }
}

/* ====================
   納品までの流れ
==================== */
.flow-section .flow-list{
    display: flex;
    gap: 20px;
    margin: 50px auto 0;
}
.flow-section .flow-list > li{
    display: block;
    width: calc((100% - 90px) / 4);
    background-color: var(--color-white);
    background-repeat: no-repeat;
    background-position: center 60px;
    background-size: 70px auto;
    padding: 140px 15px 20px;
    text-align: center;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    position: relative;
}
.flow-section .flow-list > li:before{
    content: "";
    display: block;
    width: 80px;
    height: 30px;
    transform: translateX(-50%);
    position: absolute;
    top: 15px;
    left: 50%;
}
.flow-section .flow-list > li:not(:last-of-type):after{
    content: "";
    display: block;
    width: 22px;
    height: 1px;
    background-color: #c3cfe0;
    transform: translateX(-50%);
    position: absolute;
    right: -33px;
    top: 50%;
}

.flow-section .flow-list > li p{
    color: var(--color-primary);
}

.flow-section .flow-list > li:nth-of-type(1){
    background-image: url(../../_images/common/icon-flow01.webp);
}
.flow-section .flow-list > li:nth-of-type(1):before{
    background-image: url(../../_images/common/flow-step1.gif);
}
.flow-section .flow-list > li:nth-of-type(2){
    background-image: url(../../_images/common/icon-flow02.webp);
}
.flow-section .flow-list > li:nth-of-type(2):before{
    background-image: url(../../_images/common/flow-step2.gif);
}
.flow-section .flow-list > li:nth-of-type(3){
    background-image: url(../../_images/common/icon-flow03.webp);
}
.flow-section .flow-list > li:nth-of-type(3):before{
    background-image: url(../../_images/common/flow-step3.gif);
}
.flow-section .flow-list > li:nth-of-type(4){
    background-image: url(../../_images/common/icon-flow04.webp);
}
.flow-section .flow-list > li:nth-of-type(4):before{
    background-image: url(../../_images/common/flow-step4.gif);
}
.flow-section .flow-list > li:nth-of-type(5){
    background-image: url(../../_images/common/icon-flow05.webp);
}
.flow-section .flow-list > li:nth-of-type(5):before{
    background-image: url(../../_images/common/flow-step5.gif);
}


@media screen and ( max-width: 810px ){
    .under-content > .flow-section > .inner-container{
        margin: 0;
    }
    .flow-section .flow-list{
        gap: 20px;
        padding: 0 20px;
        padding-bottom: 5px;
        overflow-x: auto;
    }
    .flow-section .flow-list > li{
        min-width: 180px;
        background-position: center 50px;
        background-size: 65px auto;
        padding: 120px 15px 20px;
    }
    .flow-section .flow-list > li:before{
        content: "";
        display: block;
        width: 80px;
        height: 30px;
        transform: translateX(-50%);
        position: absolute;
        top: 10px;
        left: 50%;
    }
}

/* ====================
   よくある質問
==================== */
.faq-section .faq-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 60px;
}
.faq-section .faq-list > div{
    background-color: var(--color-white);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,.02);
}
.faq-section .faq-list dt{
    color: var(--color-primary);
    font-size: 20px;
    position: relative;
}
.faq-section .faq-list dd{
    max-height: 0;
    padding: 0 40px 0 90px;
    font-size: 16px;
    line-height: 1.8em;
    transition: all .3s ease;
    overflow: hidden;
    position: relative;
}

.faq-section .faq-list dt:before,
.faq-section .faq-list dd:before{
    display: block;
    width: fit-content;
    height: fit-content;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1em;
    position: absolute;
    left: 40px;
}
.faq-section .faq-list dt:before{
    content: "Q.";
    color: var(--color-blue);
    font-size: 26px;
    transform: translateY(-50%);
    top: 50%;
}
.faq-section .faq-list dd:before{
    content: "A.";
    color: var(--color-primary);
    font-size: 20px;
    top: 5px;
}
/**/
.faq-section .faq-list dt label{
    display: block;
    padding: 30px 60px 30px 90px;
    position: relative;
}
.faq-section .faq-list dt label:before,
.faq-section .faq-list dt label:after{
    content: "";
    display: block;
    width: 19px;
    height: 3px;
    background-color: #0084e0;
    transition: all .3s ease;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
}
.faq-section .faq-list dt label:after{
    transform: rotate(90deg);
    top: calc(50% + -2px);
}


/**/
.faq-section .faq-list dt:has(input:checked) label:after{
    transform: rotate(180deg);
    opacity: 0;
}

.faq-section .faq-list dt:has(input:checked) + dd{
    padding-bottom: 30px;
    max-height: 200px;
}

.faq-section .faq-list + p{
    display: block;
    width: fit-content;
    margin: 20px 60px 0 auto;
}
.faq-section .faq-list + p a{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #4e6b82;
}
.faq-section .faq-list + p a:after{
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: url(../../_images/common/icon-arrow.webp) no-repeat right;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(35%) sepia(50%) saturate(298%) hue-rotate(164deg) brightness(99%) contrast(89%);
    transition: all .3s ease;
}
.faq-section .faq-list + p a:hover:after{
    transform: translateX(5px);
}

@media screen and ( max-width: 810px ){
    .faq-section .faq-list{
        padding-right: 0;
    }
    .faq-section .faq-list dt{
        font-size: 18px;
    }
    .faq-section .faq-list dd{
        padding: 0 30px 0 60px;
        font-size: 16px;
    }
    .faq-section .faq-list dt:before,
    .faq-section .faq-list dd:before{
        left: 20px;
    }
    .faq-section .faq-list dt:before{
        font-size: 24px;
    }
    .faq-section .faq-list dd:before{
        font-size: 20px;
    }

    .faq-section .faq-list dt label{
        padding: 25px 50px 25px 60px;
    }


    /**/
    .faq-section .faq-list + p{
        font-size: 15px;
        margin: 10px 0 0 auto;
    }
    .faq-section .faq-list + p a{
        color: var(--color-text-mid);
    }
}
@media screen and ( max-width: 480px ){
    .faq-section .faq-list dt{
        font-size: 16px;
    }
    .faq-section .faq-list dd{
        padding: 0 30px 0 60px;
        font-size: 16px;
    }
    /**/
    .faq-section .faq-list dt:before,
    .faq-section .faq-list dd:before{
        left: 20px;
    }
    .faq-section .faq-list dt:before{
        font-size: 20px;
        top: 30px;
    }
    .faq-section .faq-list dd:before{
        font-size: 20px;
    }

    /**/
    .faq-section .faq-list dt label{
        padding: 20px 50px 20px 55px;
    }
    
    .faq-section .faq-list dt label:before,
    .faq-section .faq-list dt label:after{
        width: 16px;
        height: 2px;
        transform: translateY(-50%);
        position: absolute;
        top: 32px;
        right: 20px;
    }
    .faq-section .faq-list dt label:after{
        transform: rotate(90deg);
        top: 31px;
    }

}


/* ===================================================
   最近見た商品
=================================================== */
.recent-section{
    max-width: 1280px;
	margin: 50px auto;
	background-color: var(--color-white);
}
.recent-section .section-title{
    margin-bottom: 20px;
    font-size: 28px;
}

@media screen and ( max-width: 810px ) {
	.items-carousel .swiper-button-prev{
		left: 5px;
	}
	.items-carousel .swiper-button-next{
		right: 5px;
	}
}

/* ===================================================
   シーンセクション（共通）
=================================================== */
.scene-section {
    background: #263d5e;
    margin-top: 80px;
    padding: 50px 0;
}
.scene-section .section-title{
    color: var(--color-white);
    font-size: 28px;
}
.scene-section > .inner-container{
    max-width: 1280px;
    margin: auto;
}
.scene-section ul.scene-list{
    display: flex;
    gap: 25px;
}
.scene-section ul.scene-list > li{
    width: calc((100% - 75px) / 4);
    overflow: hidden;
    transition: all .3s ease;
    position: relative;
}
.scene-section ul.scene-list > li a{
    display: block;
    min-height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: overlay;
    padding: 20px;
    border: 1px solid #838383;
    border-radius: 30px;
    transition: all .2s ease;
    overflow: hidden;
    position: relative;
}
.scene-section ul.scene-list > li a:before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.scene-section ul.scene-list > li .scene-name{
    color: var(--color-white);
    font-size: 28px;
    font-weight: 700;
    position: absolute;
    left: 20px;
    bottom: 15px;
    z-index: 5;
}

/*hover*/
.scene-section ul.scene-list > li:hover{
    transform: translate(0, -5px);
}


@media screen and ( max-width: 810px ){
    .scene-section {
        padding: 30px 0;
    }
    .scene-section .section-title{
        font-size: 25px;
    }
    .scene-section > .inner-container{
        margin: 0 20px;
    }
    .scene-section ul.scene-list{
        flex-wrap: wrap;
        gap: 20px;
    }
    .scene-section ul.scene-list > li{
        width: calc((100% - 20px) / 2);
    }
    .scene-section ul.scene-list > li a{
        min-height: 160px;
        padding: 20px;
    }
    .scene-section ul.scene-list > li .scene-name{
        font-size: 26px;
    }
}
@media screen and ( max-width: 480px ){
    .scene-section .section-title{
        padding: 0;
        font-size: 20px;
    }
    .scene-section ul.scene-list{
        gap: 15px;
    }
    .scene-section ul.scene-list > li{
        width: calc((100% - 15px) / 2);
    }
    .scene-section ul.scene-list > li a{
        min-height: 120px;
        padding: 5px;
    }
    .scene-section ul.scene-list > li .scene-name{
        font-size: 20px;
        left: 10px;
    }
}


/* ===================================================
   live
=================================================== */
.scene-live .section-title span.color{
    display: inline-block;
    color: #eb4dcb;
}

/* ===ヒーローセクション=== */
.scene-live .hero-section{
    background-color: #f9f0fa;
    background-image: url(../../_images/scene/live/hero-bg-img.webp);
}
.scene-live .hero-section .inner{
    background-image: url(../../_images/scene/live/hero-img.webp);
}

/* === 選ばれる理由 === */
.scene-live .reasons-section{
    background-image: linear-gradient(to bottom, #f9f0fa 0, #fff 100%);
}
.scene-live .reasons-section .reasons-list > li{
    background-color: #f4e9f1;
}

/* === グッズを探す === */
.scene-live .search-section {
    background: #faf4fb;
}
/*流れる文字*/
.scene-live .search-marquee-content span {
    color: #ead8f1;
    opacity: 0.38;
}

/* === 用途別 === */
.scene-live .type-section{
    background-image: linear-gradient(to bottom, #c96fdc 0, #d97ae8 100%);
}

/* ===================================================
   sports
=================================================== */
.scene-sports .section-title span.color{
    display: inline-block;
    color: #2B8FFF;
}

/* ===ヒーローセクション=== */
.scene-sports .hero-section{
    background-color: #F0F7FF;
    background-image: url(../../_images/scene/sports/hero-bg-img.webp);
}
.scene-sports .hero-section .inner{
    background-image: url(../../_images/scene/sports/hero-img.webp);
}

/* === 選ばれる理由 === */
.scene-sports .reasons-section{
    background-image: linear-gradient(to bottom, #F0F7FF 0, #fff 100%);
}
.scene-sports .reasons-section .reasons-list > li{
    background-color: #E8F2FF;
}

/* === グッズを探す === */
.scene-sports .search-section {
    background: #F5FAFF;
}
/*流れる文字*/
.scene-sports .search-marquee-content span {
    color: #C9DCFF;
    opacity: 0.38;
}

/* === 用途別 === */
.scene-sports .type-section{
    background-image: linear-gradient(to bottom, #7AB5FF 0, #5D9BFF 100%);
}


/* ===================================================
   festival
=================================================== */
.scene-festival .section-title span.color{
    display: inline-block;
    color: #F59A00;
}

/* ===ヒーローセクション=== */
.scene-festival .hero-section{
    background-color: #FFF8EE;
    background-image: url(../../_images/scene/festival/hero-bg-img.webp);
}
.scene-festival .hero-section .inner{
    background-image: url(../../_images/scene/festival/hero-img.webp);
}

/* === 選ばれる理由 === */
.scene-festival .reasons-section{
    background-image: linear-gradient(to bottom, #FFF8EE 0, #fff 100%);
}
.scene-festival .reasons-section .reasons-list > li{
    background-color: #FFF1DA;
}

/* === グッズを探す === */
.scene-festival .search-section {
    background: #FFFBF5;
}
/*流れる文字*/
.scene-festival .search-marquee-content span {
    color: #F8E2B5;
    opacity: 0.38;
}

/* === 用途別 === */
.scene-festival .type-section{
    background-image: linear-gradient(to bottom, #F5C14A 0, #F0A335 100%);
}


/* ===================================================
   arts
=================================================== */
.scene-arts .section-title span.color{
    display: inline-block;
    color: #6A63FF;
}

/* ===ヒーローセクション=== */
.scene-arts .hero-section{
    background-color: #F3F4FD;
    background-image: url(../../_images/scene/arts/hero-bg-img.webp);
}
.scene-arts .hero-section .inner{
    background-image: url(../../_images/scene/arts/hero-img.webp);
}

/* === 選ばれる理由 === */
.scene-arts .reasons-section{
    background-image: linear-gradient(to bottom, #F3F4FD 0, #fff 100%);
}
.scene-arts .reasons-section .reasons-list > li{
    background-color: #ECECFA;
}

/* === グッズを探す === */
.scene-arts .search-section {
    background: #F7F7FD;
}
/*流れる文字*/
.scene-arts .search-marquee-content span {
    color: #D4D6F2;
    opacity: 0.38;
}

/* === 用途別 === */
.scene-arts .type-section{
    background-image: linear-gradient(to bottom, #8978E8 0, #6B79E6 100%);
}






/* ===================================================
   子シーン 固有ファーストビュー（自動追記 2026-06-26）
   ※親ルールより後に配置し hero を上書き
=================================================== */
.scene-live-music .hero-section{
    background-image: url(../../_images/scene/live/music/hero-bg-img.webp);
}
.scene-live-music .hero-section .inner{
    background-image: url(../../_images/scene/live/music/hero-img.webp);
}
.scene-live-comedy .hero-section{
    background-image: url(../../_images/scene/live/comedy/hero-bg-img.webp);
}
.scene-live-comedy .hero-section .inner{
    background-image: url(../../_images/scene/live/comedy/hero-img.webp);
}
.scene-festival-music .hero-section{
    background-image: url(../../_images/scene/festival/music/hero-bg-img.webp);
}
.scene-festival-music .hero-section .inner{
    background-image: url(../../_images/scene/festival/music/hero-img.webp);
}
.scene-festival-gourmet .hero-section{
    background-image: url(../../_images/scene/festival/gourmet/hero-bg-img.webp);
}
.scene-festival-gourmet .hero-section .inner{
    background-image: url(../../_images/scene/festival/gourmet/hero-img.webp);
}
.scene-festival-art .hero-section{
    background-image: url(../../_images/scene/festival/art/hero-bg-img.webp);
}
.scene-festival-art .hero-section .inner{
    background-image: url(../../_images/scene/festival/art/hero-img.webp);
}
.scene-sports-baseball .hero-section{
    background-image: url(../../_images/scene/sports/baseball/hero-bg-img.webp);
}
.scene-sports-baseball .hero-section .inner{
    background-image: url(../../_images/scene/sports/baseball/hero-img.webp);
}
.scene-sports-soccer .hero-section{
    background-image: url(../../_images/scene/sports/soccer/hero-bg-img.webp);
}
.scene-sports-soccer .hero-section .inner{
    background-image: url(../../_images/scene/sports/soccer/hero-img.webp);
}
.scene-sports-basketball .hero-section{
    background-image: url(../../_images/scene/sports/basketball/hero-bg-img.webp);
}
.scene-sports-basketball .hero-section .inner{
    background-image: url(../../_images/scene/sports/basketball/hero-img.webp);
}
.scene-sports-volleyball .hero-section{
    background-image: url(../../_images/scene/sports/volleyball/hero-bg-img.webp);
}
.scene-sports-volleyball .hero-section .inner{
    background-image: url(../../_images/scene/sports/volleyball/hero-img.webp);
}
.scene-sports-martial-arts .hero-section{
    background-image: url(../../_images/scene/sports/martial-arts/hero-bg-img.webp);
}
.scene-sports-martial-arts .hero-section .inner{
    background-image: url(../../_images/scene/sports/martial-arts/hero-img.webp);
}
.scene-arts-movie .hero-section{
    background-image: url(../../_images/scene/arts/movie/hero-bg-img.webp);
}
.scene-arts-movie .hero-section .inner{
    background-image: url(../../_images/scene/arts/movie/hero-img.webp);
}
.scene-arts-stage .hero-section{
    background-image: url(../../_images/scene/arts/stage/hero-bg-img.webp);
}
.scene-arts-stage .hero-section .inner{
    background-image: url(../../_images/scene/arts/stage/hero-img.webp);
}
.scene-arts-drama .hero-section{
    background-image: url(../../_images/scene/arts/drama/hero-bg-img.webp);
}
.scene-arts-drama .hero-section .inner{
    background-image: url(../../_images/scene/arts/drama/hero-img.webp);
}
.scene-arts-traditional .hero-section{
    background-image: url(../../_images/scene/arts/traditional/hero-bg-img.webp);
}
.scene-arts-traditional .hero-section .inner{
    background-image: url(../../_images/scene/arts/traditional/hero-img.webp);
}
