/* ============================================================
   CSS Reset & Base
   ============================================================ */
   :root {
    --color-primary: #000000;
    --color-secondary: #ffffff;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-text-lighter: #888888;
    --color-border: #dadada;
    --color-border-light: #e8e8e8;
    --color-button-bg: #68696e;
    --color-red: #ce061a;
    --color-denim: #002a74;
    --color-gilet: #85c8e6;
    --color-onetone: #ccc8ad;
    --color-mini: #736f6d;
    --section-bg-alt: #e1e5e5;
    
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", "Meiryo", sans-serif;
    --font-mincho: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-en: "Montserrat", sans-serif;
    --font-ivy: "ivyora-display", serif;
    --font-ivyitalic: "ivyora-display", serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* === 追加: 横はみ出しの最終ガード === */
html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-secondary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

.sp { display: inline; }
.pc { display: none; }

/* ============================================================
   Header
   ============================================================ */
.header {
    position: static;
    background: var(--color-secondary);
}

.header__container {
    display: flex;
    padding: 1rem 1.25rem;
}

.header__logo {
    width: 6rem;
}

/* ============================================================
   Hero
   ============================================================ */
   .hero {
    position: relative;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: auto;
    position: relative;
}

.hero__slide {
    position: relative;
    width: 100%;
}

.hero__picture {
    display: block;
    overflow: hidden;
    width: 100%;
}

.hero__picture img {
    display: block;
    width: 100%;
    height: auto;
}

/* 固定テキストコンテナ */
.hero__text-container {
    position: absolute;
    top: calc(100vw*0.9);
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.hero__text-item {
}

.hero__text-image {
    height: auto;
    position:absolute;
}

/* 各テキストアイテムの個別調整（必要に応じて） */
.hero__text-item--1 {
    /* text1の位置調整 */
	position:absolute;
	width:60% !important;
	left:0;
}

.hero__text-item--2 {
    /* text2の位置調整 */
	position:absolute;
	width:59% !important;
	left:5.5%;
	top:calc(100vw*0.12);
}

.hero__text-item--3 {
    /* text3の位置調整 */
	position:absolute;
	left:14.7%;
	width:80% !important;
	top:calc(100vw*0.2);
	z-index:2;
}

.hero__text-item--4 {
    /* text4の位置調整 */
	position:absolute;
	width:64% !important;
	top:calc(100vw*0.283);
	right:0;
	z-index:1;
}

/* ============================================================
   Lead
   ============================================================ */
.lead {
    position: relative;
    padding: 0 1.25rem 3rem 1.25rem;
    margin-bottom: 2.5rem;
}

.lead__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lead__title-area {
    text-align: center;
}

.lead__title {
    margin-bottom: 1.25rem;
}

.lead__title-main {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    display: block;
}

.lead__subtitle {
    font-family: var(--font-mincho);
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.8;
    font-weight: var(--font-weight-normal);
}

/* lead */
.lead-text {
    text-align: center;
    padding: 8vw 0;
    font-size: 3.5vw;
    color: #333333;
    font-weight: 500;
    line-height: 2.2;
    letter-spacing: 1px;
	font-family: 'Shippori Mincho', serif;
}
@media screen and (min-width: 768px) {
	.lead-text{
		padding: 0;
		margin:100px auto;
		line-height: 2.3;
		font-size: 21px;
	}
}

/* ============================================================
   Keyword Navigation
   ============================================================ */
.keyword-nav {
    position: relative;
    margin-bottom: 4rem;
}

.keyword-nav__slider {
    position: relative;
}

.keyword-swiper {
    padding: 0 1rem 2.5rem 1rem !important;
    overflow: visible !important;
}

.keyword-nav__slide {
    width: 70vw !important;
}

.keyword-nav__item {
    display: block;
    transition: all 0.3s ease;
}

.keyword-nav__item:hover {
    opacity: 0.8;
}

.keyword-nav__image-wrapper {
    position: relative;
    margin-bottom: 0.5rem;
    overflow: hidden;
    border-radius: 0.25rem;
}

.keyword-nav__image {
    width: 100%;
    height: auto;
    display: block;
}

.keyword-nav__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.keyword-nav__keyword {
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
}

.keyword-nav__number {
    font-size: 0.75rem;
    font-weight: var(--font-weight-normal);
    color: var(--color-text-lighter);
}

.keyword-nav__pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.keyword-nav__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--color-text-lighter);
    opacity: 0.5;
    margin: 0 4px;
}


.keyword-nav__slider .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .
.keyword-nav__slider swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap,10px) !important;
}

.keyword-nav__pagination .swiper-pagination-bullet-active {
    background: var(--color-text);
    opacity: 1;
}

/* ============================================================
   Content Section
   ============================================================ */
.content-section {
    position: relative;
    padding: 4rem 0;
    margin-bottom: 2.5rem;
}

.content-section--red { --accent-color: var(--color-red); }
.content-section--denim { --accent-color: var(--color-denim); }
.content-section--green { --accent-color: var(--color-gilet); }
.content-section--beige { --accent-color: var(--color-onetone); }
.content-section--navy { --accent-color: var(--color-mini); }

.content-section__inner {
    position: relative;
    max-width: 100%;
}

.content-section__bg {
    position: absolute;
    top: 0;
    height: 0;
    z-index: -1;
    background: var(--section-bg-alt);

    left: 50%;
    right: auto;
    width: 100vw;
    transform: translateX(-50%);
}

.content-section__main {
    position: relative;
    margin-bottom: 5rem;
}

.content-section__visual {
    position: relative;
    margin-bottom: 4.6rem;
}

.content-section__image-wrapper {
    position: relative;
}

.content-section__image-wrapper img {
    width: 100%;
    height: auto;
}

.content-section__image-title {
    position: absolute;
    left: 2.3rem;
    right: 1.25rem;
    bottom: 2rem;
    z-index: 5;
}
.content-section__title-overlay {
    font-family: var(--font-mincho);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
    color: var(--color-secondary);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.content-section__title-black {
	width:55% !important;
	margin-bottom:4%;
}
.content-section__title-black2 {
	width:45% !important;
}
.content-section__title-accent {
    padding: 0;
    margin-left: 0.2em;
    width: 20% !important;
    display: inherit;
    display: inline !important;
    position: absolute;
    margin-top: -1.1%;
}
#section02 .content-section__image-title {
        padding: 0;
    margin-left: 0;
    width: 90% !important;
    display: inherit;
    display: inline !important;
    position: absolute;
    bottom: 2.4rem;
    left: 1.3rem;
}
#section02 .content-section__title-black {
	width:82% !important;
	margin-left:3%;
	margin-bottom:2%;
}
#section02 .content-section__title-black2 {
	width:8% !important;
	margin-bottom:3%;
}
#section02 .content-section__title-black3 {
	    width: 88.5% !important;
    margin-left: 4%;
    margin-bottom: 0%;
}
#section03 .content-section__image-title{
	    left: 2rem;
}
#section03 .content-section__title-black {
    width: 64% !important;
    margin-bottom: 2%;
}
#section03 .content-section__title-black2 {
    width: 63.5% !important;
	margin-bottom: 2%;
}
#section03 .content-section__title-black4 {
    width: 8% !important;
	margin-bottom: 2.7%;
}
#section03 .content-section__title-black3 {
    width: 91% !important;
}
#section04 .content-section__image-title {
    padding: 0;
    margin-left: 0;
    width: 70% !important;
    display: inherit;
    display: inline !important;
    position: absolute;
    bottom: 2rem;
}
#section04 .content-section__title-black {
	width:67% !important;
	margin-left:5%;
	margin-bottom:2%;
}
#section04 .content-section__title-black2 {
	width:55% !important;
	margin-bottom:3%;
	margin-left:5%;
}
#section04 .content-section__title-black3 {
	width:82% !important;
	margin-left:5%;
	margin-bottom:3%;
}
#section05 .content-section__image-title{
	bottom: 1.3rem;
}
#section05 .content-section__title-black {
	width:88% !important;
	margin-left:0;
	margin-bottom:2%;
}
#section05 .content-section__title-black2 {
	width:87% !important;
	margin-bottom:0;
}
#section05 .content-section__title-black3 {
	width: 10% !important;
    margin-bottom: 2%;
    margin-left: -1%;
}
.content-section__keyword-vertical {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
	margin-top:-20%;
	width:27.7%;
}
.content-section__keyword-vertical.left{
	left:0;
}
.content-section__keyword-label {
	width:90%;
}
#section02 .content-section__keyword-label {
	width:90%;
	margin-left:10%;
}
#section04 .content-section__keyword-label {
	width:90%;
	margin-left:10%;
}
.content-section__keyword-label.leftlabel {
	width:90%;
	margin-left:10%;
}
.content-section__line{
	width:100%;
	height:1px;
	background-color:#000;
	margin:8% 0 13% 0;
}
.content-section__keyword-hash {
    width: 3.4rem;
    height: auto;
    display: block;
    margin-left: 32%;
}
#section03 .content-section__keyword-hash{
    width: 3.8rem;
	margin-left:21%;
}
#section04 .content-section__keyword-hash{
	margin-left:32%;
    width: 3.6rem;
}
.content-section__keyword-hash.lefthash {
    width: 3.8rem;
	margin-left:30%;
}
.content-section__keyword-hash img {
    width: 100%;
    height: auto;
    /*display: block;*/
}
.content-section__text-content {
    position: relative;
    padding-left: 2rem;
    padding-right: 2rem;
}

.content-section__comment {
    position: relative;
}

.content-section__comment-text {
    font-family: var(--font-mincho);
    font-size: 0.95rem;
    line-height: 2;
    margin-bottom: 2.5rem;
    color: var(--color-text);
}

.content-section__comment-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #a8a8a8;
    margin-bottom: 1rem;
}

.content-section__name {
    width: 30%;
    margin-left: 70%;
    margin-top: -6%;
}

.content-section__sub {
    position: relative;
    margin-bottom: 1.8rem;
}

.content-section__coordinate-block {
    background-color: transparent;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.content-section__sub-visual {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 0;
    z-index: 1;
    /* 追加: 横アニメのはみ出しを親でクリップ */
    overflow: hidden;
}

#section04 .content-section__sub-visual.pc .content-section__vertical-text,
    #section04 .content-section__sub-visual.pc .content-section__sub-image {
        display: none;
	}
#section04 .content-section__sub-visual.sp .content-section__vertical-text,
    #section04 .content-section__sub-visual.sp .content-section__sub-image {
        display: block !important;
	}
.content-section__vertical-text {
    position: relative;
    flex-shrink: 0;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.25rem;
}

.content-section__vertical-image {
    width: 0.7rem;
    height: auto;
    display: block;
}

.content-section__sub-image {
    flex: 1;
    min-width: 0;
}

.content-section__sub-image img {
    width: 100%;
    height: auto;
    display: block;
}
#section04 .content-section__sub-image img{
	display:inline;
}
.coordinate-point {
    position: relative;
}

.coordinate-point__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    padding-left: 0;
    padding-right: 1.25rem;
}

.coordinate-point__bar {
    width: 2rem;
    height: 7px;
    background-color: var(--accent-color);
    /*display: block;*/
    flex-shrink: 0;
}

.coordinate-point__title {
    flex-shrink: 0;
    height: auto;
}

.coordinate-point__title img {
    height: 1.5rem;
    width: auto;
    display: block;
}

.coordinate-point__icon {
    width: 1.25rem;
    height: auto;
    flex-shrink: 0;
}

.coordinate-point__text {
    font-size: 0.875rem;
    line-height: 1.9;
    margin-bottom: 4rem;
    color: var(--color-text);
    padding-left: 2.6rem;
    padding-right: 2.6rem;
}

.coordinate-point__lineup {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.lineup-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0;
}

.lineup-item:last-child {
    border-bottom: none;
}

.lineup-item__name {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    overflow: hidden;
    text-overflow: ellipsis;
}

.lineup-item__price {
    font-size: 0.813rem;
    font-weight: var(--font-weight-normal);
    color: var(--color-text);
    white-space: nowrap;
}

.lineup-item__button {
    display: inline-block;
    padding: 0.08rem 0.75rem;
    background: var(--color-button-bg);
    color: var(--color-secondary);
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
	font-family: 'Montserrat', sans-serif;
	font-weight:400;
}

.lineup-item__button:hover {
    opacity: 0.8;
}

.content-section__lineup {
    position: relative;
    padding-left: 4rem;
    padding-right: 4rem;
}

.lineup {
    position: relative;
}

.lineup__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.lineup__series-name {
    max-width: calc(100% - 11rem);
    height: auto;
    display: inline-block;
}
	#section02 .lineup__series-name{
		max-width: calc(100% - 12rem);
	}
#section03 .lineup__series-name{
    max-width: calc(100% - 4rem);	
}
#section04 .lineup__series-name{
    max-width: calc(100% - 3rem);	
}
#section05 .lineup__series-name{
    max-width: calc(100% - 5rem);	
}
.lineup__icon {
    width: 3rem;
    height: auto;
    position: absolute;
    right: 10%;
    top: 100%;
    transform: translateY(-50%);
    flex-shrink: 0;
    z-index: 10;
	
}
#section03 .lineup__icon{
	top:120%;
}
#section04 .lineup__icon{
	top:130%;
}
#section05 .lineup__icon{
	top:130%;
}
.lineup__slider {
    position: relative;
    padding-left: 1rem;
    padding-right: 1rem;
}

.lineup-swiper {
    padding: 0;
    overflow: hidden; /* 既存: スライダーのはみ出し防止 */
}

.lineup__slide {
    width: 100%;
}

.lineup__item {
    display: block;
    transition: all 0.3s ease;
}

.lineup__item:hover {
    opacity: 0.8;
}

.lineup__image {
    position: relative;
    overflow: hidden;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.lineup__image img {
    width: 80%;
    height: auto;
    display: block;
	margin:0 auto;
}

.lineup__info {
    text-align: center;
    padding: 0 0.75rem;
}

.lineup__name {
    font-size: 0.8rem;
    /*font-weight: var(--font-weight-medium);*/
    color: var(--color-text);
    margin-bottom: 0.25rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.lineup__price {
    font-size: 0.813rem;
    font-weight: var(--font-weight-normal);
    color: var(--color-text);
}

.lineup-next-01, .lineup-prev-01,
.lineup-next-02, .lineup-prev-02,
.lineup-next-03, .lineup-prev-03,
.lineup-next-04-1, .lineup-prev-04-1,
.lineup-next-04-2, .lineup-prev-04-2,
.lineup-next-05, .lineup-prev-05 {
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.lineup-next-01, .lineup-next-02, .lineup-next-03, .lineup-next-04-1, .lineup-next-04-2, .lineup-next-05 { right: 0; }
.lineup-prev-01, .lineup-prev-02, .lineup-prev-03, .lineup-prev-04-1, .lineup-prev-04-2 .lineup-prev-05 { left: 0; }

.lineup-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* ============================================================
   Profile
   ============================================================ */
.profile-section {
    padding: 5rem 2.5rem 0 2.5rem;
}

.profile {
    margin: 0 auto;
    border: var(--color-button-bg) 1px solid;
    padding: 3rem;
}

.profile__title {
    font-family: var(--font-ivy);
    font-size: 1.8rem;
    font-weight: var(--font-weight-normal);
    color: #5b5d60;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.profile__image-wrapper {
    margin-bottom: 1rem;
    overflow: hidden;
}

.profile__image-wrapper img {
    width: 50%;
    height: auto;
    display: block;
	margin:0 auto;
}

.profile__content {
    margin-bottom: 0;
}

.profile__header {
        text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0;
}

.profile__name {
	width:60%;
	margin:1.5rem auto 1rem auto;
}

.profile__name-ja {
    font-family: var(--font-ivy);
    font-size: 1rem;
    font-weight: var(--font-weight-normal);
    color: var(--color-text);
	letter-spacing:0.2rem;
}

.profile__bio {
    text-align: center;
}

.profile__text {
    font-size: 0.8rem;
    line-height: 1.9;
    color: var(--color-text);
	text-align:left;
}

/* ============================================================
   Pop Up Store
   ============================================================ */
.popup-store {
    padding: 5rem 2.5rem;
    background: var(--color-secondary);
}

.popup-store__inner {
    max-width: 670px;
    margin: 0 auto;
    text-align: center;
}

.popup-store__title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    padding-bottom: 1rem;
}

.popup-store__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.popup-store__info {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.popup-store__date {
    font-family: var(--font-en);
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    letter-spacing: 0.05em;
}

.popup-store__details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.popup-store__venue,
.popup-store__address,
.popup-store__hours {
    font-size: 0.8rem;
    color: var(--color-text);
    line-height: 1.5;
}

.popup-store__venue {
    font-weight: var(--font-weight-bold);
}

.popup-store__description {
    padding-top: 1.5rem;
    border-top: 1px solid #a8a8a8;
}

.popup-store__text {
    font-size: 0.8rem;
    line-height: 1.9;
    color: var(--color-text);
    text-align: left;
}
.popup-store__button-wrapper {
    margin-top: 2.5rem;
    text-align: center;
}

/* ============================================================
   Credits
   ============================================================ */
.credits-section {
    padding: 3rem 2.5rem;
}

.credits__title {
    font-family: var(--font-ivy);
    font-size: 1.8rem;
    font-weight: var(--font-weight-normal);
    color: #5b5d60;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.credits {
    max-width: 800px;
    margin: 0 auto;
}

.credits__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: var(--font-ivy);
}

.credits__item {
    font-size: 1rem;
    color: #5b5d60;
    line-height: 1.6;
    text-align: center;
}

/* ============================================================
   Button
   ============================================================ */
.btn {
    display: inline-block;
    padding: 0.4rem 2rem;
    background: var(--color-button-bg);
    color: var(--color-secondary);
    font-weight: var(--font-weight-bold);
    text-align: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    border: 1px solid var(--color-button-bg);
    cursor: pointer;
    font-size: 0.938rem;
    width: 100%;
    max-width: 20rem;
	border-radius: 9999px;
}

.btn:hover {
    opacity: 0.8;
}

.btn--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    padding: 4rem 1.25rem;
    text-align: center;
    color: var(--color-text-light);
    background: var(--color-secondary);
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.footer .onward-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer .onward-logo img {
    width: 7.5rem;
    height: auto;
    display: block;
}

.footer .copyright {
    font-size: 0.7rem;
    letter-spacing: 0.02em;
}

/* ============================================================
   Page Top Button
   ============================================================ */
.page-top {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.1);
}

.page-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-top:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.15);
}

.page-top__icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* ============================================================
   Swiper
   ============================================================ */
.swiper {
    position: relative;
    overflow: hidden;
    height: auto;
}

/* 追加: Swiper がページ幅を押し広げない保険 */
.swiper, .swiper-wrapper, .swiper-slide {
    max-width: 100%;
}

.swiper-wrapper {
    position: relative;
    height: auto;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 3rem;
  margin-top: -1.5rem;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 2本の線で矢印を構成 */
.swiper-button-next::before,
.swiper-button-next::after,
.swiper-button-prev::before,
.swiper-button-prev::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 2px;
  background-color: #5b5d60;
  transition: all 0.3s ease;
}

/* ▶ 右矢印（鈍角） */
.swiper-button-next::before {
  transform: rotate(60deg);
  right: 0.6rem;
	margin-top:-2%;

}
.swiper-button-next::after {
  transform: rotate(-60deg);
  right: 0.6rem;
	margin-top: 1.6rem;
}

/* ◀ 左矢印（鈍角） */
.swiper-button-prev::before {
  transform: rotate(60deg);
margin-top: 1.6rem;
  left: 0.6rem;
}
.swiper-button-prev::after {
  transform: rotate(-60deg);
  left: 0.6rem;
		
}

.swiper-button-next { right: 0; }
.swiper-button-prev { left: 0; }

.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

/* ============================================================
   Animations
   ============================================================ */

/* 追加: 描画安定化（iOSのチラつき/はみ出し軽減） */
.wow {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.fadeIN.wow.animated {
    animation: fadeIN 1s ease-in-out 0.4s forwards;
}

.fadeIN { opacity: 0; }

@keyframes fadeIN {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.fadeZoomOutTFix.wow.animated {
    animation: fadeZoomOutTFix 6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}

/* 変更: 初期スケールを 1.1 → 1.05（親 overflow:hidden と併用） */
.fadeZoomOutTFix {
    opacity: 0;
    transform-origin: top;
    transform: scale(1.05);
}

@keyframes fadeZoomOutTFix {
    0% { opacity: 0; transform: scale(1.05); }
    20% { opacity: 1; }
    100% { opacity: 1; transform: scale(1); }
}

.fadeLeftRight.wow.animated {
    animation: fadeLeftRight 1.8s ease 0.4s forwards;
}

.fadeLeftRight { opacity: 0; }

/* 変更: -10% → -6% に緩和してはみ出し低減 */
@keyframes fadeLeftRight {
    0% { opacity: 0; transform: translateX(-6%); }
    100% { opacity: 1; transform: translateX(0); }
}

.clippathLeftRightNBlur.wow.animated {
    animation: clippathLeftRightNBlur 1.6s linear 0.4s forwards;
}

.clippathLeftRightNBlur { opacity: 0; }

@keyframes clippathLeftRightNBlur {
    0% { opacity: 0; clip-path: inset(0 100% 0 0); }
    100% { opacity: 1; clip-path: inset(0); }
}

.fadeBottomTop.wow.animated {
    animation: fadeBottomTop 1.8s ease 0.4s forwards;
}

.fadeBottomTop { opacity: 0; }

@keyframes fadeBottomTop {
    0% { opacity: 0; filter: blur(2px); transform: translateY(10%); }
    100% { opacity: 1; filter: blur(0); transform: translateY(0); }
}

/* ============================================================
   PC (min-width: 768px)
   ============================================================ */
@media screen and (min-width: 768px) {
    .pc { display: inline; }
    .sp { display: none; }

    .header__container {
        padding: 1.25rem 3rem;
    }

    .header__logo {
        width: 8rem;
    }

    .hero {
        margin-bottom: 5rem;
		position:relative;
    }

    .hero__text-container {
        width: 100%;
        gap: 1.5rem;
        padding: 0;
		position:absolute;
		top:0;
    }

    .hero__text-item {
        max-width: 70%;
    }
	.hero__text-item--1 {
		position: absolute;
    width: 33% !important;
    left: 0;
    top: calc(100vw * 0.314);
	}

	.hero__text-item--2 {
		position: absolute;
        width: 29% !important;
        left: 5%;
        top: calc(100vw * 0.378);
	}

	.hero__text-item--3 {
		position: absolute;
        width: 41% !important;
        left: 9.6%;
        top: calc(100vw * 0.405);
	}

	.hero__text-item--4 {
		position: absolute;
    width: 33% !important;
    top: calc(100vw * 0.454);
    left: 24%;
    z-index: 1;
	}
    .lead {
        padding: 0 2rem 5rem;
        margin-bottom: 5rem;
    }

    .lead__container {
        max-width: 50rem;
        margin: 0 auto;
    }

    .lead__title-main {
        font-size: 48px;
    }

    .lead__subtitle {
        font-size: 15px;
    }

    .keyword-nav {
        margin-bottom: 5rem;
    }

    .keyword-swiper {
        padding: 0 6.7rem;
    }

    .keyword-swiper .swiper-wrapper {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: nowrap;
    }

    /* PCでは従来ルールを適用 */
    .keyword-nav__slide {
        width: calc(20% - 1.2rem) !important;
        flex-shrink: 0;
    }

    .keyword-nav__keyword {
        font-size: 14px;
    }

    .keyword-nav__number {
        font-size: 12px;
    }

    .keyword-nav__pagination {
        display: none;
    }
    
    .content-section {
        padding: 5rem 0;
    }

    .content-section__main {
        margin-bottom: 5rem;
    }

    .content-section__visual {
        margin: 0 0 4rem;
        gap: 0;
        padding: 0;
		position:relative;
    }

    .content-section__image-wrapper {
        width:50%;
		left:25%;
    }
	.content-section__image-wrapper img {
		width: 100%;
		height: auto;
	}
	#section02 .content-section__image-wrapper {
        width:60%;
		left:0%;
    }
	#section03 .content-section__image-wrapper{
		width:50%;
		left: 40%;
	}
	#section04 .content-section__image-wrapper{
		left:0;
		width:53%;
	}
    .content-section__image-title {
        left: 0;
        right: auto;
        bottom: 5rem;
		margin-left:-8%;
    }
    .content-section__title-overlay {
        
    }
	.content-section__title-black {
		width:43% !important;
		margin-bottom:2%;
	}
	.content-section__title-black2pc {
		width:35% !important;
		display: block;
	}
	.content-section__title-accent {
		  position: absolute;
  left: 44%;
  transform: translateX(-50%);
  width: 15%;
  margin-top: -7%;
  display: block;
		margin-left:0;
		width: 14.2% !important;
	}
	#section02 .content-section__image-title {
        left: 0;
        right: auto;
        bottom: -12.6%;
        margin-left: 20%;
    }
	#section02 .content-section__title-black {
		width: 7.3% !important;
        margin-left: 0;
        margin-bottom: 7.2%;
	}
	#section02 .content-section__title-black2 {
		width: 6.5% !important;
    margin-bottom: 0;
		margin-right:2%;
	}
	#section02 .content-section__title-black3 {
		width: 6.5% !important;
    margin-bottom: 0;
		margin-left:-8%;
	}
	#section03 .content-section__image-title{
		margin-left: -64%;
		left:0;
	}
	#section03 .content-section__title-black {
		width: 34% !important;
        margin-left: 0;
        margin-bottom: 1%;
	}
	#section03 .content-section__title-black2 {
		width: 49% !important;
    margin-bottom: 1.5%;
		margin-right:10%;
	}
	#section03 .content-section__title-black3 {
			width: 47.5% !important;
		margin-bottom: 0;
		}
	#section03 .content-section__title-black4 {
		width: 5% !important;
        margin-left: -0.5%;
        margin-bottom: 1.2%;
		margin-right:10%;
		}
	#section04 .content-section__image-title{
		    bottom: -16%;
		margin-left:4rem;
	}
	#section04 .content-section__title-black {
		width: 9.8% !important;
    margin-left: 3%;
    margin-bottom: 0;
	}
	#section04 .content-section__title-black2 {
		width:11% !important;
		margin-bottom:38%;
		margin-left:3%;
	}
	#section05 .content-section__image-title{
		    bottom:0;
		margin-left:-12%;
		width:100%;
	}
	#section05 .content-section__title-black {
		width: 73% !important;
    margin-left: 0;
    margin-bottom: 3%;
	}
	#section05 .content-section__title-black2 {
		width:83% !important;
		margin-bottom:9%;
		margin-left:0;
	}
	#section05 .content-section__title-black3 {
		        width: 9% !important;
        margin-bottom: 3.3%;
		margin-left:0;
	}
    .content-section__keyword-vertical {
        position: static;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0;
		width:21%;
		margin:0;
		position:absolute;
    }
	.content-section__keyword-vertical.left{
	left:auto;
		right:0;
	}
	.content-section__keyword-label.leftlabel {
		width:60%;
		margin-left:0;
	}
	#section02 .content-section__keyword-vertical{
		top:3rem;
		width:21%;
	}
	#section04 .content-section__keyword-vertical{
		top:-3rem;
		width:21%;
	}
	#section02 .content-section__keyword-label,
	#section04 .content-section__keyword-label{
		width:60%;
		margin-left:0;
	}
	#section03 .content-section__keyword-vertical{
		left:0 !important;
	}
    .content-section__keyword-label {
        width:60%;
    }
	#section03 .content-section__keyword-label {
        width:60%;
		margin-left:40%;
    }
	.content-section__line{
		width:100%;
		height:1px;
		background-color:#000;
		margin:5% 0 10% 0;
	}
    .content-section__keyword-hash {
        width: 5.5rem;
		margin-left:0;
    }
	#section02 .content-section__keyword-hash{
			width: 22rem;
			margin-left: -10.5rem;
	}
	#section03 .content-section__keyword-hash{
			width: 5.6rem;
		margin-left:11rem;
	}
	#section04 .content-section__keyword-hash{
		        width: 30.5rem;
        margin-left: -110%;
	}
    .content-section__text-content {
        max-width: 52rem;
        margin: 0 auto;
        padding: 0;
    }
	#section02 .content-section__text-content {
        max-width: 33rem;
        margin: -36rem 3rem 14rem auto;
        padding: 0 2rem;
    }
	#section04 .content-section__text-content {
        max-width: 44rem;
        margin: 0 4rem 0 auto;
    }
	#section05 .content-section__text-content {
        max-width: 48rem;
    }
    .content-section__comment-text {
        font-size: 19px;
        line-height: 2.5;
    }

    .content-section__name {
    width: 20%;
    margin-left: 80%;
    margin-top: -3%;
    }
	#section02 .content-section__name {
    width: 36%;
    margin-left: 64%;
    margin-top: -5.5%;
    }

    .content-section__sub {
        display: grid;
        grid-template-columns: 7fr 6fr;
        gap: 7rem;
        /*align-items: center;*/
        margin: 0 0 5rem;
        padding: 0 0;
    }
	#section02 .content-section__sub{
		gap: 5rem;
		grid-template-columns: 6fr 6.5fr;
	}
    .content-section__coordinate-block {
        order: 1;
        margin-bottom: 0;
        padding: 0;
		width:100%;
		top:6rem;
    }
	.content-section__coordinate-block {
		top:-2rem;
	}
	#section01 .content-section__coordinate-block{
		top:8rem;
	}
	#section02 .content-section__coordinate-block {
		top:8rem;
	}
	#section03 .content-section__coordinate-block {
		top:5rem;
	}
	#section05 .content-section__coordinate-block {
		top:8rem;
	}
    .content-section__sub-visual {
        order: 1;
        margin: 0;
        overflow: hidden; /* 追加 */
    }
	#section04 .content-section__sub-visual{
        width: 45%;
		position:absolute;
		right: 0;
        bottom: 0;
		display: flex;
		align-items: flex-end;
	}
	#section04 .content-section__sub-visual.sp .content-section__vertical-text,
    #section04 .content-section__sub-visual.sp .content-section__sub-image {
        display: none !important;
	}
	#section04 .content-section__sub-visual.pc .content-section__vertical-text,
    #section04 .content-section__sub-visual.pc .content-section__sub-image {
        display: block !important;
		margin-bottom:0;
		margin-left:0.5rem;
	}
	#section04 .content-section__sub-image img {
    display: block;
}
    .content-section__vertical-text {
        width: 2.5rem;
        padding: 0;
		order:2;
		    align-items: baseline;
    }
	#section03 .content-section__vertical-text{
		order:1;
	}
	#section03 .content-section__sub-image{
		order:2;
	}
	#section04 .content-section__vertical-text{
		order:2 !important;
	}
	#section04 .content-section__sub-image{
		order:1 !important;
	}
    .coordinate-point__header {
        padding-left: 0;
        padding-right: 0;
		text-align:right !important;
    }

    .coordinate-point__text {
        font-size: 16px;
        line-height: 2;
        padding-left: 0;
        padding-right: 0;
		width:88%;
    }
	#section02 .coordinate-point__text{
		padding-left:4.3rem;
		width:95%;
	}
	#section04 .coordinate-point__text{
		padding-left:4.3rem;
		width:118%;
	}
    .coordinate-point__lineup {
        padding-left: 0;
        padding-right: 0;
		gap:1rem;
		width:87%;
    }
	#section02 .coordinate-point__lineup{
		width:95%;
	}
	.coordinate-point__title {
		padding-left: 12rem;
	}
	.coordinate-point__title img {
    height: 2.3rem;
	}
	#section02 .coordinate-point__title,
	#section04 .coordinate-point__title{
		padding-left:0;
	}
	.coordinate-point__bar {
    width: 3.5rem;
    height: 10px;
	}
	.coordinate-point__icon {
    width: 1.9rem;
    height: auto;
    flex-shrink: 0;
    margin-top: -0.4rem;
	}
	#section02 .lineup-item{
		padding-left: 4.3rem;
	}
	#section04 .lineup-item{
		padding-left: 4.3rem;
	}
    .lineup-item__name {
        font-size: 16px;
    }

    .lineup-item__price {
        font-size: 14px;
    }

    .lineup-item__button {
        font-size: 13px;
        padding: 0.1rem 1.25rem;
    }

    .content-section__lineup {
        padding: 0;
        max-width: 400px;
        margin: 0 auto 5rem;
    }

    .lineup__header {
        margin-bottom: 2.5rem;
    }

    .lineup__series-name {
        max-width: calc(100% - 13rem);
    }
	#section02 .lineup__series-name{
		max-width: calc(100% - 16rem);
	}
	#section03 .lineup__series-name{
		max-width: calc(100% - 3rem);
	}
	#section04 .lineup__series-name.lineup2{
		max-width: calc(100% - 4.3rem);
	}
	#section05 .lineup__series-name.lineup2{
		max-width: calc(100% - 8.5rem);
	}
	#section05 .lineup__series-name{
		max-width: calc(100% - 7rem);
	}
    .lineup__icon {
               width: 4.5rem;
        height: auto;
        position: absolute;
        right: 5%;
        top: 122%;
        transform: translateY(-50%);
        flex-shrink: 0;
        z-index: 10;
    }

    .lineup__slider {
        padding: 0 1rem;
    }

    .lineup__image {
        margin-bottom: 1.5rem;
    }
	.lineup__image img {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
	}
    .lineup__info {
        padding: 0 1.5rem;
    }

    .lineup__name {
        font-size: 16px;
        margin-bottom: 0.5rem;
    }

    .lineup__price {
        font-size: 15px;
    }

    .lineup-next-01, .lineup-prev-01,
    .lineup-next-02, .lineup-prev-02,
    .lineup-next-03, .lineup-prev-03,
    .lineup-next-04-1, .lineup-prev-04-1,
    .lineup-next-04-2, .lineup-prev-04-2,
    .lineup-next-05, .lineup-prev-05 {
        width: 2rem;
        height: 2rem;
    }

    .lineup-grid {
        flex-direction: row;
        gap: 2rem;
        align-items: flex-start;
		justify-content:center;
    }
    
    .lineup-grid .lineup {
        flex: 1;
        min-width: 0;
		max-width:400px;
    }
    
    /* Section 04 の lineup 専用スタイル */
    #section04 .content-section__lineup {
        padding: 0 2rem;
        max-width: 1200px;
        margin: 0 auto 5rem;
    }

    .profile-section {
        padding: 7rem 2rem;
    }

    .profile {
        max-width: 515px;
    }
	
    .profile__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
	
    .profile__image-wrapper {
        margin-bottom: 0;
    }

    .profile__header {
        text間: left;
    }

    .profile__bio {
        text-align: left;
    }

    .profile__name {
        
    }

    .profile__name-ja {
        font-size: 20px;
    }

    .profile__text {
        font-size: 15px;
        line-height: 2;
    }

    .popup-store {
        padding: 7rem 2rem;
    }

    .popup-store__title {
        font-size: 25px;
        margin-bottom: 0.3rem;
    }

    .popup-store__content {
        gap: 2rem;
    }

    .popup-store__date {
        font-size: 24px;
    }

    .popup-store__venue,
    .popup-store__address,
    .popup-store__hours {
        font-size: 16px;
    }

    .popup-store__text {
        font-size: 15px;
        line-height: 2;
        text-align: center;
    }

    .popup-store__button-wrapper {
        margin-top: 3rem;
    }

    .credits-section {
        padding: 4rem 2rem;
    }

    .credits__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .credits__item {
        font-size: 14px;
    }

    .btn {
        font-size: 16px;
        width:315px;
    }

    .footer__buttons {
        justify-content: center;
        gap: 2rem;
    }

    .footer .onward-logo img {
        width: 9.375rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 2rem;
        height: 2rem;
        margin-top: -1rem;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.5rem;
    }
}

/* ============================================================
   Tablet Specific Adjustments (768px - 1024px)
   ============================================================ */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    
    /* 全体のはみ出し防止 */
    .container {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .content-section {
        padding: 5rem 0 !important;
    }
    
    .content-section__inner {
        max-width: 100% !important;
        overflow: hidden !important;
        padding: 0 2rem !important;
    }
    
    .content-section__main {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    /* content-section__sub の調整 */
    .content-section__sub {
        grid-template-columns: 5fr 6fr !important;
        gap: 2.5rem !important;
        align-items: start !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    #section02 .content-section__sub {
        gap: 0.5rem !important;
        grid-template-columns: 1fr 1fr !important;
    }

    #section04 .content-section__sub {
        gap: 0.5rem !important;
        grid-template-columns: 4fr 1fr !important;
    }
    
    /* coordinate-block の位置調整とはみ出し防止 */
    .content-section__coordinate-block {
        top: 0rem !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        padding: 3rem 1rem !important;
    }
    
    #section01 .content-section__coordinate-block {
        top: -3rem !important;
    }
    
    #section02 .content-section__coordinate-block {
        top: -2rem !important;
    }
    
    #section03 .content-section__coordinate-block {
        top: -3rem !important;
    }
    
    #section05 .content-section__coordinate-block {
        top: -1rem !important;
    }
    
    /* 画像wrapper の調整 */
    .content-section__image-wrapper {
        width: 55% !important;
        left: 22% !important;
    }
    
    #section02 .content-section__image-wrapper {
        width: 65% !important;
        left: 0% !important;
    }
    
    #section03 .content-section__image-wrapper {
        width: 55% !important;
        left: 35% !important;
    }
    
    #section04 .content-section__image-wrapper {
        width: 50% !important;
        left: 0% !important;
    }
    #section02 .content-section__keyword-hash {
        width: 19rem;
        margin-left: -12rem;
    }
    #section03 .content-section__keyword-hash {
        margin-left: 4rem;
    }
    #section04 .content-section__keyword-hash {
        width: 20rem;
        margin-left: -110%;
    }

    /* sub-visual の調整 */
    .content-section__sub-visual {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .content-section__sub-image img {
        width: 100% !important;
        height: auto !important;
    }
    
    /* テキストコンテンツの調整 */
    .content-section__text-content {
        padding: 0 !important;
        max-width: 50rem !important;
        margin: 0 auto !important;
    }
    
    #section02 .content-section__text-content {
        max-width: 18rem !important;
        margin: -34rem 0 0 auto !important;
        padding: 0 !important;
    }
    
    #section04 .content-section__text-content {
        max-width: 46rem !important;
        margin: 6rem 0 auto !important;
        padding: 0 !important;
    }
    
    #section05 .content-section__text-content {
        max-width: 50rem !important;
        margin: 0 auto !important;
    }
    
    /* coordinate-point の調整 */
    .coordinate-point {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .coordinate-point__header {
        padding-left: 0 !important;
        padding-right: 0 !important;
        gap: 0.6rem !important;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
    }
    
    .coordinate-point__bar {
        width: 3rem !important;
        height: 9px !important;
        flex-shrink: 0 !important;
    }
    
    .coordinate-point__title {
        padding-left: 0 !important;
        flex-shrink: 0 !important;
    }
    
    .coordinate-point__title img {
        height: 2rem !important;
        width: auto !important;
    }
    
    .coordinate-point__icon {
        width: 1.7rem !important;
        flex-shrink: 0 !important;
    }
    
    .coordinate-point__text {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        font-size: 15px !important;
        margin-bottom: 3rem !important;
    }
    
    #section02 .coordinate-point__text {
        padding-left: 0 !important;
        width: 100% !important;
    }
    
    #section04 .coordinate-point__text {
        padding-left: 0 !important;
        width: 100% !important;
    }
    
    /* coordinate-point__lineup の調整 */
    .coordinate-point__lineup {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    #section02 .coordinate-point__lineup {
        width: 100% !important;
    }
    
    /* lineup-item の調整 */
    .lineup-item {
        padding-left: 0 !important;
        padding-right: 0 !important;
        gap: 0.5rem !important;
        grid-template-columns: 1fr auto auto !important;
    }
    
    #section02 .lineup-item,
    #section04 .lineup-item {
        padding-left: 0 !important;
    }
    
    .lineup-item__name {
        font-size: 14px !important;
        grid-column: 1 / 2 !important;
    }
    
    .lineup-item__price {
        display: inline-block !important;
        font-size: 14px !important;
        grid-column: 2 / 3 !important;
    }
    
    .lineup-item__button {
        font-size: 11px !important;
        padding: 0.08rem 0.6rem !important;
        grid-column: 3 / 4 !important;
    }
    
    /* Section04 の特別な調整 */
    #section04 .content-section__sub-visual {
        width: 45% !important;
        position: absolute !important;
        right: 0 !important;
        bottom: 0 !important;
    }

    #section04 .content-section__vertical-image {
            width: 0.6rem !important
    }
    
    #section04 .content-section__sub-visual.pc .content-section__vertical-text,
    #section04 .content-section__sub-visual.pc .content-section__sub-image {
        display: block !important;
    }
    
    #section04 .content-section__coordinate-block {
        top: 0 !important;
    }
    
    /* keyword-vertical の調整 */
    .content-section__keyword-vertical {
        width: 23% !important;
        padding-left: 1rem;
    }
    
    #section02 .content-section__keyword-vertical,
    #section04 .content-section__keyword-vertical {
        width: 23% !important;
        top: 0.5rem !important;
    }

    #section04 .content-section__keyword-vertical {
        right: 2rem !important;
    }

    #section05 .content-section__keyword-hash {
        width: 4.4rem !important;
    }
    
    /* image-title の位置調整 */
    .content-section__image-title {
        bottom: 4rem !important;
        margin-left: -6% !important;
    }
    
    #section02 .content-section__image-title {
        bottom: -11% !important;
        margin-left: 17% !important;
    }
    
    #section03 .content-section__image-title {
        margin-left: -55% !important;
    }
    
    #section04 .content-section__image-title {
        bottom: -14% !important;
        margin-left: 3.5rem !important;
    }
    
    #section05 .content-section__image-title {
        bottom: 0.5rem !important;
        margin-left: -10% !important;
    }
    
    /* lineup の調整 */
    .content-section__lineup {
        max-width: 450px !important;
        margin: 0 auto 5rem !important;
    }
    
    #section04 .content-section__lineup {
        max-width: 900px !important;
        padding: 0 1rem !important;
    }
    
    .lineup-grid {
        gap: 3rem !important;
    }
    
    .lineup-grid .lineup {
        max-width: 400px !important;
    }
    
    /* profile の調整 */
    .profile {
        max-width: 600px !important;
        padding: 2.5rem !important;
    }
    
    /* popup-store の調整 */
    .popup-store__inner {
        max-width: 700px !important;
    }

}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media screen and (max-width: 767px) {
#section02 .content-section__sub {
    display: flex;
    flex-direction: column-reverse;
}
}