﻿/* =========================================
   SHARED UTILITIES
========================================= */
#top-page {
    overflow-x: hidden;
}

/* SP限定の改行 */
.br-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .br-sp {
        display: block;
    }
}

.sec-en {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.sec-ja {
    font-family: var(--font-ja);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #B0B0B0;
    position: relative;
    padding-top: 10px;
}

.sec-ja::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: #E6CFB2;
    margin: 0 auto 10px;
}

.sec-heading {
    text-align: center;
    margin-bottom: 48px;
}

.more-btn,
.more-btn-right {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #000000 !important;
    text-decoration: none !important;
    transition: opacity 0.25s ease;
}

.more-btn:hover,
.more-btn-right:hover {
    opacity: 0.6;
}

.more-arrow {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 1px;
    background: #000000;
    vertical-align: middle;
    margin-left: 10px;
}

/* 薄いグレーの丸 */
.more-arrow::before {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    z-index: -1;
}

/* _\ 型 */
.more-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 9px;
    background: #555;
    border: none;
    transform: rotate(140deg);
    transform-origin: top center;
}

.sec-more {
    text-align: center;
    margin-top: 40px;
}

.sec-more a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #000;
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    transition: opacity 0.25s ease;
}

.sec-more a:hover {
    opacity: 0.6;
}

.slider-outer {
    overflow: hidden;
}

/* Swiper custom pagination */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 32px;
    height: 2px;
    border-radius: 0;
}

.swiper-pagination-bullet-active {
    background: var(--color-black);
}

.swiper-pagination {
    bottom: 0 !important;
    position: relative !important;
    margin-top: 24px;
}


/* Swiper custom arrows */
.swiper-button-prev,
.swiper-button-next {
    display: none;
    /* hidden by default, shown per section in overrides */
}

/* =========================================
   HERO
========================================= */
#hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #111;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.4s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide.is-active img {
    animation: kenburns 8s ease-out forwards;
}

@keyframes kenburns {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.12);
    }
}

/* =========================================
   SCROLL REVEAL
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.32s;
}

.reveal-delay-3 {
    transition-delay: 0.48s;
}

.reveal-delay-4 {
    transition-delay: 0.65s;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
}

.hero-ja {
    font-family: var(--font-ja);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--color-white);
    margin-bottom: 14px;
}

.hero-en {
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.8);
}

.hero-scroll {
    position: absolute;
    z-index: 2;
    right: 40px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll span {
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.5);
}

.hero-news {
    position: relative;
    z-index: 2;
    background: #E8E8E8;
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 40px 40px;
    font-family: var(--font-ja);
    font-size: 12px;
}

.news-label {
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #A79A7880;
    flex-shrink: 0;
}

.news-sep {
    color: #ccc;
    flex-shrink: 0;
}

.news-date {
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: #909090;
    flex-shrink: 0;
}

.news-title {
    color: var(--color-black);
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.news-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #909090;
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
    transition: opacity 0.25s ease;
}

.news-more:hover {
    opacity: 0.6;
}

.news-arrow {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: #909090;
    position: relative;
    vertical-align: middle;
}

.news-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 6px;
    background: #909090;
    transform: rotate(135deg);
    transform-origin: top center;
}

/* =========================================
   STORY
========================================= */
#story-section {
    padding: 100px 0;
    background: var(--color-white);
    position: relative;
}

.story-tagline {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.25em;
    background: linear-gradient(to right, rgba(236, 225, 196, 0.01) 0%, rgba(236, 225, 196, 0.0007) 65%, #ECE1C4 70%, #413C2F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: right;
    padding-right: 10vw;
    margin-bottom: 0px;
}

.story-inner {
    display: grid;
    grid-template-columns: 3.5fr 6.5fr;
    gap: 100px;
    width: 80%;
    margin: 0 auto;
    align-items: center;
}

.story-body {
    font-family: var(--font-ja);
    font-size: 14px;
    font-weight: 400;
    line-height: 2.2;
    letter-spacing: 0.06em;
    color: var(--color-black);
    margin-bottom: 48px;
}

.story-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.story-links li {
    border-bottom: 1px solid #ddd;
}


.story-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 4px;
    text-decoration: none;
    color: var(--color-black);
    font-family: var(--font-ja);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.2em;
    transition: opacity 0.2s ease;
}

.story-links li a:hover {
    opacity: 0.6;
}

.sl-num {
    font-family: var(--font-en);
    font-size: 12px;
    color: var(--color-black);
    flex-shrink: 0;
}

.sl-dash {
    color: var(--color-black);
    flex-shrink: 0;
}

.sl-text {
    flex: 1;
}

.sl-arrow {
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 10px;
    color: #999;
    position: relative;
}

.sl-arrow::after {
    content: '→';
    font-family: var(--font-en);
    font-size: 9px;
    color: #888;
    line-height: 1;
    display: block;
}

.sl-arrow.is-active {
    background: var(--color-black);
    border-color: var(--color-black);
}

.sl-arrow.is-active::after {
    color: var(--color-white);
}

.story-photos {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    width: 100%;
}

.story-photo-main {
    flex: 8 1 0;
    min-width: 0;
    height: 680px;
}

.story-photo-main img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    display: block;
}

.story-photo-sub {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 7 1 0;
    min-width: 0;
    overflow: hidden;
}

.story-photo-sub-item {
    width: 100%;
    height: 335px;
    overflow: hidden;
}

.story-photo-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-photo-sub-item--1 img {
    transform: scale(1.2) translate(10px);
    object-position: 0% center;
}

.story-photo-sub-item--2 img {
    transform: scale(1.0);
    object-position: center 60%;
}

/* =========================================
   WORKS
========================================= */
#works-section {
    padding: 80px 0;
    background: var(--color-white);
}

.works-swiper,
.event-swiper {
    overflow: visible !important;
    padding: 0 40px;
}

/* SP用2行スワイパー: PCでは非表示 */
.works-sp-rows {
    display: none;
}

.swiper-wrapper {
    align-items: stretch;
}

.works-card {
    display: block;
    text-decoration: none;
    color: var(--color-black);
    background: var(--color-white);
    transition: opacity 0.25s ease;
}

.works-img {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.works-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.works-card:hover .works-img img {
    transform: scale(1.03);
}

.works-info {
    padding: 14px 0 4px;
}

.works-title {
    font-family: var(--font-ja);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.works-meta {
    font-family: var(--font-ja);
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
    letter-spacing: 0.25em;
}

.works-loc {
    font-family: var(--font-ja);
    font-size: 13px;
    color: #666;
    letter-spacing: 0.25em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.loc-icon img {
    width: 13px;
    height: 13px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

/* WORKS more arrow: gray circle */
#works-section .sec-more .more-arrow::before {
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

/* =========================================
   EVENT
========================================= */
#event-section {
    padding: 80px 0;
    background: #F2F2F2;
}

/* PC: ページネーション非表示 */
#event-section .swiper-pagination {
    display: none;
}

/* EVENT more arrow: matches Instagram style */
#event-section .sec-more a {
    isolation: isolate;
}

#event-section .sec-more .more-arrow {
    background: #555;
}

#event-section .sec-more .more-arrow::before {
    background: rgba(255, 255, 255, 1);
}

#event-section .sec-more .more-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: auto;
    bottom: 50%;
    width: 1px;
    height: 9px;
    background: #555;
    border: none;
    transform: rotate(-45deg);
    transform-origin: bottom center;
}

.event-card {
    display: block;
    text-decoration: none;
    color: var(--color-black);
    background: transparent;
    transition: opacity 0.25s ease;
}

.event-status-bar {
    font-family: var(--font-ja);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 6px 0;
}

.status-open {
    background: #eae6da;
    color: var(--color-black);
}

.status-full {
    background: var(--color-black);
    color: var(--color-white);
}

.event-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
}

.event-img.is-full::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.03);
}

.event-info {
    padding: 12px 0 4px;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.event-tag {
    font-family: var(--font-ja);
    font-size: 10px;
    padding: 2px 8px;
    letter-spacing: 0.04em;
}

.event-tag--reserv {
    background: #A79A78;
    color: #fff;
    border: 1px solid #A79A78;
}

.event-tag--type {
    background: #fff;
    color: #867B60;
    border: 1px solid #867B60;
}

.event-title {
    font-family: var(--font-ja);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #B0B0B0;
}

.event-date {
    font-family: var(--font-ja);
    font-size: 12px;
    color: #444;
    margin-bottom: 4px;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-ja);
    font-size: 11px;
    color: #666;
    margin-bottom: 2px;
}

.event-meta-icon {
    width: 12px;
    height: 12px;
    object-fit: contain;
    flex-shrink: 0;
}

/* =========================================
   CONCEPT
========================================= */
#concept-section {
    position: relative;
    min-height: 900px;
    overflow: hidden;
}

.concept-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% 80%;
}

.concept-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.concept-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 32% 1fr;
    min-height: 900px;
    padding-left: 5%;
    align-items: start;
}

/* PC: concept-inner image width */
.concept-inner-img {
    width: 80%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
}

/* サークル＋アイコンのコンテナ */
.concept-inner {
    position: relative;
    width: 100%;
    margin-top: 32px;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.concept-left {
    position: relative;
    background: rgba(255, 255, 255, 0.97);
    padding: 80px 48px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.concept-corner-icon {
    position: absolute;
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.4;
}

.concept-corner-house {
    top: 12px;
    left: 12px;
}

.concept-corner-tool {
    bottom: 12px;
    right: 12px;
}

.concept-left .sec-en {
    color: var(--color-black);
}

.concept-left .sec-ja {
    color: #B0B0B0;
}

.concept-left .sec-ja::before {
    background: #E6CFB2;
}

.concept-circles {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.concept-circle {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.cc-ja {
    font-family: var(--font-ja);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.6;
    color: var(--color-black);
    margin-bottom: 6px;
}

.cc-en {
    font-family: var(--font-en);
    font-size: 9px;
    letter-spacing: 0.12em;
    color: #888;
}

.concept-plus {
    font-family: var(--font-en);
    font-size: 20px;
    color: #aaa;
}

/* concept-img-wrap: absolute full cover on desktop */
.concept-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* concept-right positioned within concept-img-wrap */
.concept-right {
    position: absolute;
    left: 37%;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 120px 60px 80px 60px;
    z-index: 2;
}

.concept-right p {
    font-family: var(--font-ja);
    font-size: 16px;
    font-weight: 400;
    line-height: 2.0;
    letter-spacing: 0.08em;
    color: var(--color-white);
    margin-bottom: 24px;
}

/* SP-only elements hidden on desktop */
.concept-sp-header {
    display: none;
}

.concept-sp-inner {
    display: none;
}

/* Column more (SP only) */
.column-sec-more {
    display: none;
}

/* =========================================
   OUR STANDARDS
========================================= */
#standards-section {
    position: relative;
    padding: 90px 0 80px;
    background: var(--color-white);
    overflow: hidden;
}

.standards-bg-text {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-family: var(--font-en);
    font-size: 96px;
    font-weight: 600;
    letter-spacing: 0.25em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    background: linear-gradient(to right, rgba(240, 227, 196, 0.2), rgba(121, 94, 24, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 1.2s ease;
}

/* PC: 常時表示（SP は JS アニメーション維持のため min-width で限定） */
@media screen and (min-width: 769px) {
    .standards-bg-text {
        opacity: 1;
    }
}

.standards-bg-text.is-visible {
    opacity: 1;
}

.standards-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.standards-panel {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 3 / 5;
}

.standards-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s ease;
    filter: none !important;
}

/* 各パネルのトリミング位置 */
.standards-inner .standards-panel:nth-child(1) img {
    object-position: 15% 40%;
    transform: scale(1.4);
}

/* DESIGN: 右寄り */
.standards-inner .standards-panel:nth-child(2) img {
    object-position: 20% 30%;
    transform: scale(1.4) translateY(-15%);
}

/* SPEC: 上寄り＋拡大 */
.standards-inner .standards-panel:nth-child(3) img {
    object-position: center center;
}

/* COST */
.standards-inner .standards-panel:nth-child(4) img {
    object-position: 70% 20%;
    transform: scale(1.4);
}

/* SUPPORT: 右上、本はみ出し */
.standards-inner .standards-panel:nth-child(5) img {
    object-position: 20% 60%;
}

/* FLOW: 右寄り */

/* 各パネルホバー時スケール調整（base transformがある1・2・4は個別指定が必要） */
.standards-inner .standards-panel:nth-child(1):hover img {
    transform: scale(1.45);
}

.standards-inner .standards-panel:nth-child(2):hover img {
    transform: scale(1.45) translateY(-15%);
}

.standards-inner .standards-panel:nth-child(4):hover img {
    transform: scale(1.45);
}

.standards-panel:hover img {
    transform: scale(1.05);
}

.standards-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}


.panel-label {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 8px;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
}

.panel-content {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.panel-desc {
    font-family: var(--font-ja);
    font-size: 10px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
    text-align: left;
}

.panel-name {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    font-family: var(--font-ja);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--color-white);
    white-space: nowrap;
}

.panel-name::before {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

/* =========================================
   MODEL HOUSE
========================================= */
#modelhouse-section {
    padding: 80px 0;
    background: #F2F2F2;
}

.mh-feature {
    width: 80%;
    margin: 20px auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 0;
}

.mh-img-main {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.mh-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: 10% 10%;
    transform: scale(1.25);
}

.mh-col-right {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
}

.mh-col-right-up,
.mh-col-right-down {
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

.mh-col-right-up img,
.mh-col-right-down img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 右列画像のトリミング調整 */
.mh-col-right-up img {
    object-position: center 90%;
    transform: scale(1.4);
}

.mh-col-right-down img {
    object-position: 0% center;
    transform: scale(1.27);
}

.mh-text {
    grid-column: 1;
    grid-row: 2;
    margin: 0 20px;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mh-text h3 {
    font-family: var(--font-ja);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* PC: SP用要素を非表示 */
.mh-text-sp {
    display: none;
}

.mh-sp-images {
    display: none;
}

.mh-text-body {
    border-left: 2px solid #A79A7880;
    margin-left: 10px;
    padding-left: 14px;
    margin-bottom: 20px;
}

.mh-text p {
    font-family: var(--font-ja);
    font-size: 14px;
    font-weight: 400;
    line-height: 2.0;
    color: var(--color-black);
    margin-bottom: 0;
}

.mh-text .more-btn {
    margin-top: 40px;
}

.mh-text .more-arrow {
    background: #555;
    width: 40px;
}

.mh-text .more-arrow::before {
    background: rgba(255, 255, 255, 0.7);
}

.mh-text .more-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: auto;
    bottom: 50%;
    width: 1px;
    height: 9px;
    background: #555;
    border: none;
    transform: rotate(-45deg);
    transform-origin: bottom center;
}

.mh-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 80%;
    margin: 40px auto;
}

.mh-card {
    display: block;
    text-decoration: none;
    color: var(--color-black);
    transition: opacity 0.25s ease;
}

.mh-card:hover {
    opacity: 0.85;
}

.mh-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.mh-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: none !important;
}

.mh-card:hover .mh-card-img img {
    transform: scale(1.04);
}

.mh-more-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--color-white);
    z-index: 1;
    white-space: nowrap;
}

/* MH内のmore-arrowを白色に上書き */
.mh-more-btn .more-arrow {
    background: rgba(255, 255, 255, 0.8);
}

.mh-more-btn .more-arrow::before {
    background: rgba(255, 255, 255, 0.15);
}

.mh-more-btn .more-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 9px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    transform: rotate(140deg);
    transform-origin: top center;
}

.mh-name {
    font-family: var(--font-ja);
    font-size: 13px;
    font-weight: 500;
    margin: 12px 0 4px;
    text-align: center;
}

.mh-tags {
    font-family: var(--font-ja);
    font-size: 11px;
    color: #888;
    text-align: center;
}

/* =========================================
   COLUMN
========================================= */
#column-section {
    padding: 80px 0;
    background: var(--color-white);
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
}

.column-header {
    width: 240px;
    flex-shrink: 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.column-header .more-btn {
    margin-top: 20px;
}

.column-slider-outer {
    flex: 1;
    min-width: 0;
}

.column-swiper {
    overflow: visible !important;
    padding: 0 40px 0 40px;
}

.col-card {
    display: block;
    text-decoration: none;
    color: var(--color-black);
    transition: opacity 0.25s ease;
}

.col-card:hover {
    opacity: 0.85;
}

.col-img {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 12px;
}

.col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.col-card:hover .col-img img {
    transform: scale(1.03);
}

.col-date {
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 6px;
}

.col-cat {
    display: inline-block;
    font-family: var(--font-ja);
    font-size: 10px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 3px 10px;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.col-title {
    font-family: var(--font-ja);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.col-tags {
    font-family: var(--font-ja);
    font-size: 10px;
    color: #888;
    line-height: 1.8;
}

/* =========================================
   INSTAGRAM
========================================= */
#instagram-section {
    padding: 80px 0 60px;
    background: #F2F2F2;
    overflow: hidden;
}

@media screen and (min-width: 769px) {
    .insta-more-sp {
        display: none;
    }
}

.insta-header {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    padding: 0 40px;
    margin-bottom: 32px;
}

.insta-title {
    text-align: center;
}

.insta-title .sec-en {
    text-align: center;
}

.insta-header .more-btn-right {
    position: absolute;
    right: 40px;
    bottom: 4px;
    isolation: isolate;
}

.insta-header .more-arrow {
    background: #555;
    width: 40px;
}

.insta-header .more-arrow::before {
    background: rgba(255, 255, 255, 1);
}

.insta-header .more-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: auto;
    bottom: 50%;
    width: 1px;
    height: 9px;
    background: #555;
    border: none;
    transform: rotate(-45deg);
    transform-origin: bottom center;
}

.more-btn-right {
    padding-bottom: 4px;
}

.insta-scroll-wrap {
    overflow: hidden;
}

.insta-scroll-track {
    display: flex;
    gap: 12px;
    animation: insta-scroll 30s linear infinite;
    width: max-content;
}

.insta-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes insta-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ---- PC: story-links 文字と矢印の間を詰める ---- */
@media screen and (min-width: 769px) {
    .story-links li a {
        gap: 4px;
    }

    .story-links {
        max-width: 410px;
    }
}

/* =========================================
   SP (max-width: 768px)
========================================= */
@media screen and (max-width: 768px) {

    /* Shared */
    .sec-en {
        font-size: 22px;
    }

    .sec-heading {
        margin-bottom: 32px;
    }

    .sec-more {
        margin-top: 28px;
    }

    .sec-ja {
        padding-top: 16px;
    }

    .sec-ja::before {
        margin: 0 auto 16px;
    }

    /* Hero */
    #hero-section {
        height: calc(100vh - 65px);
        height: calc(100svh - 65px);
        min-height: unset;
        aspect-ratio: unset;
    }

    .hero-content {
        width: 90%;
        white-space: normal;
        text-align: center;
        left: 50%;
        top: auto;
        bottom: 160px;
        transform: translateX(-50%);
    }

    .hero-ja {
        font-size: 18px;
        letter-spacing: 0.2em;
    }

    .hero-en {
        font-size: 8px;
    }

    .hero-scroll {
        right: auto;
        left: 50%;
        bottom: 20px;
        transform: translateX(-50%);
        flex-direction: column;
        white-space: nowrap;
    }

    .hero-scroll span {
        writing-mode: horizontal-tb;
        letter-spacing: 0.35em;
        color: rgba(255, 255, 255, 0.65);
    }

    .hero-scroll::after {
        height: 28px;
        margin: 8px auto 0;
    }

    /* NEWS帯: グリッドレイアウト */
    .hero-news {
        display: grid;
        grid-template-columns: auto auto 1fr auto;
        grid-template-rows: auto auto;
        column-gap: 6px;
        row-gap: 6px;
        padding: 14px 20px;
        align-items: center;
    }

    .news-label {
        grid-column: 1;
        grid-row: 1;
        order: 0;
    }

    .news-sep {
        grid-column: 2;
        grid-row: 1;
        order: 0;
    }

    .news-date {
        grid-column: 3;
        grid-row: 1;
        order: 0;
    }

    .news-title {
        grid-column: 1 / 4;
        grid-row: 2;
        order: 0;
        width: auto;
        margin-top: 0;
    }

    .news-more {
        grid-column: 4;
        grid-row: 1 / 3;
        align-self: center;
        order: 0;
        margin-left: 0;
    }

    /* Hero slide SP トリミング調整用（object-positionで各スライドを個別調整） */
    .hero-slide--1 img {
        object-position: 60% center;
    }

    .hero-slide--2 img {
        object-position: 30% center;
    }

    .hero-slide--3 img {
        object-position: center 40%;
    }

    .hero-slide--4 img {
        object-position: center center;
    }

    /* Story */
    #story-section {
        padding-top: 80px;
        background:
            linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.75) 100%),
            url('../images/story-main.jpg') center top / cover no-repeat;
        position: relative;
        overflow: hidden;
        min-height: calc(100vw * 1.8);
    }

    /* 白グラデーション（上部の白エリア） */
    #story-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom,
                rgba(255, 255, 255, 1) 0%,
                rgba(255, 255, 255, 1) 25%,
                rgba(255, 255, 255, 0) 75%);
        z-index: 0;
    }

    .story-tagline {
        writing-mode: vertical-lr;
        text-orientation: mixed;
        transform: rotate(-180deg);
        position: absolute;
        left: 40px;
        top: 60px;
        padding-right: 0;
        margin-bottom: 0;
        font-family: var(--font-en);
        font-size: 18px;
        font-weight: 400;
        line-height: 1.4;
        letter-spacing: 0.2em;
        text-align: center;
        background: linear-gradient(to bottom, #ECE1C4 0%, #413C2F 100%) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        color: transparent !important;
        z-index: 1;
    }

    /* SP: revealをrotateと合成してふわっと表示 */
    .story-tagline.reveal {
        opacity: 0;
        transform: rotate(-180deg);
    }

    .story-tagline.reveal.is-visible {
        opacity: 1;
        transform: rotate(-180deg);
    }

    .story-inner {
        display: flex;
        flex-direction: column;
        min-height: calc(100vw * 1.8 + 120px);
        width: auto;
        max-width: none;
        margin: 0;
        padding: 0 20px;
        gap: 0;
        position: relative;
        z-index: 1;
    }

    .story-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
    }

    .story-body {
        color: var(--color-black);
        width: fit-content;
        margin-top: 50px;
        margin-bottom: 0;
        margin-left: 10px;
        text-align: start;
    }

    .story-links {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        margin-top: auto;
        /* padding-top: 12px; */
        padding-bottom: 48px;
    }

    .story-links li {
        border-bottom-color: rgba(255, 255, 255, 0.4);
    }

    .story-links li a {
        color: var(--color-white);
        padding: 22px 36px;
        font-family: var(--font-ja);
        font-size: 16px;
        font-weight: 400;
        line-height: 2;
        letter-spacing: 0.2em;
    }

    .sl-num,
    .sl-dash,
    .sl-text {
        color: var(--color-white);
    }

    .sl-arrow {
        background: transparent;
        border-color: rgba(255, 255, 255, 0.4);
    }

    .sl-arrow::after {
        color: rgba(255, 255, 255, 0.6);
    }

    .sl-arrow.is-active {
        background: var(--color-white);
        border-color: var(--color-white);
    }

    .sl-arrow.is-active::after {
        color: var(--color-black);
    }

    .story-right {
        display: none;
    }

    /* Works */
    #works-section {
        padding: 60px 0;
    }

    .works-pc-only {
        display: none;
    }

    .works-sp-rows {
        display: block;
        padding: 0 0 0 20px;
    }

    .works-sp-row {
        margin-bottom: 8px;
    }

    .works-swiper-sp1,
    .works-swiper-sp2 {
        overflow: visible !important;
        padding: 0 20px;
    }

    .works-swiper .swiper-pagination,
    .works-swiper-sp1 .swiper-pagination,
    .works-swiper-sp2 .swiper-pagination {
        position: relative !important;
        margin-top: 8px;
        margin-bottom: 24px;
        text-align: center;
        max-width: 70%;
        margin-left: 0;
        margin-right: auto;
    }

    /* Works: 黄金比、カードを幅広に */
    .works-img {
        aspect-ratio: 8 / 5;
    }

    .works-swiper,
    .works-swiper-sp1,
    .works-swiper-sp2 {
        padding: 0;
        width: 100%;
    }

    /* Event */
    #event-section {
        padding: 60px 0;
    }

    #event-section .swiper-pagination {
        display: block;
        margin-top: 16px;
    }

    .event-swiper {
        padding: 0 8px;
    }

    .event-status-bar {
        width: 100%;
        margin: 0;
    }

    .event-img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin: 0;
    }

    .event-img img {
        object-fit: cover;
    }

    .event-info {
        width: 100%;
        margin: 0;
    }

    .status-open {
        background: #fff;
    }

    /* Concept */
    #concept-section {
        min-height: auto;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background: var(--color-white);
    }

    /* CONCEPT: タイトルをセクション上部に中央寄せで表示（他セクションと統一） */
    .concept-sp-header {
        display: block;
        position: static;
        background: var(--color-white);
        padding: 48px 24px 32px;
        text-align: center;
    }

    .concept-sp-header .sec-en {
        color: var(--color-black);
        font-size: 22px;
        letter-spacing: 0.3em;
        margin: 0;
    }

    .concept-sp-header .sec-ja {
        color: #B0B0B0;
        font-size: 14px;
        padding-top: 16px;
    }

    .concept-sp-header .sec-ja::before {
        background: #E6CFB2;
        margin: 0 auto 16px;
    }

    .concept-img-wrap {
        position: relative;
        width: 100%;
        aspect-ratio: 4 / 3;
        overflow: hidden;
    }

    .concept-overlay {
        background: linear-gradient(to right,
                rgba(0, 0, 0, 0.65) 0%,
                rgba(0, 0, 0, 0.5) 45%,
                rgba(0, 0, 0, 0.1) 100%);
    }

    .concept-right {
        position: absolute;
        left: 16px;
        right: auto;
        top: 28px;
        bottom: auto;
        width: 58%;
        padding: 0;
        justify-content: flex-start;
    }

    .concept-right p {
        font-size: 12px;
        line-height: 1.8;
        margin-bottom: 8px;
        color: rgba(255, 255, 255, 0.9);
        text-align: left;
    }

    .concept-right p:last-child {
        display: none;
    }

    /* concept-inner-sp.png のみ表示 */
    .concept-sp-inner {
        display: block;
        width: 80%;
        max-width: 100%;
        margin: -20px auto 0;
        position: relative;
        z-index: 3;
    }

    .concept-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .concept-left {
        order: 1;
        padding: 0;
        min-height: auto;
        align-items: center;
        background: transparent;
    }

    .concept-left .sec-en,
    .concept-left .sec-ja {
        display: none;
    }

    /* concept-inner.png は SP で非表示 */
    .concept-inner {
        display: none;
    }

    .concept-circles {
        display: none;
    }

    .concept-plus {
        display: none;
    }

    /* OUR STANDARDS */
    #standards-section {
        padding: 28px 0 16px;
        overflow: hidden;
    }

    .standards-bg-text {
        font-size: 36px;
        font-weight: 600;
        top: -35px;
        bottom: auto;
        left: auto;
        right: -20px;
        /* ← 右端からのはみ出し量（大きいほど右にはみ出す） */
        transform: none;
        letter-spacing: 0.25em;
        z-index: 0;
        opacity: 1;
    }

    .standards-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        /* width: 80%; */
        width: 100%;
    }

    /* SP: カードを flex 化して label/name + desc のレイアウトに */
    .standards-panel {
        aspect-ratio: auto;
        min-height: 155px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        position: relative;
        padding: 16px 50px 16px 16px;
        overflow: hidden;
    }

    /* 矢印を ::before で表示（::after はグラデーションオーバーレイ） */
    .standards-panel::before {
        content: '→';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 26px;
        height: 26px;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
    }

    /* panel-content を透明化して子要素を flex に参加させる */
    .panel-content {
        display: contents;
        position: static;
        padding: 0;
    }

    .panel-content::after {
        display: none;
    }

    /* label: flex 内 2番目（name の後） */
    .panel-label {
        order: 1;
        position: static;
        writing-mode: horizontal-tb;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.12em;
        color: rgba(255, 255, 255, 0.8);
        z-index: 2;
        flex-shrink: 0;
        align-self: flex-end;
        padding-bottom: 1px;
        padding-left: 6px;
    }

    /* name: flex 内 1番目 */
    .panel-name {
        order: 0;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.06em;
        color: var(--color-white);
        white-space: nowrap;
        margin-bottom: 0;
        flex-shrink: 0;
        z-index: 2;
        width: auto;
    }

    /* " /" セパレーター */
    .panel-name::after {
        content: ' /';
        font-weight: 400;
        font-size: 12px;
    }

    .panel-name::before {
        display: none;
    }

    /* desc: 3番目・全幅で改行 */
    .panel-desc {
        order: 2;
        display: block;
        width: 100%;
        font-size: 10px;
        letter-spacing: 0.06em;
        line-height: 1.7;
        text-align: left;
        margin-top: 8px;
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.85);
        z-index: 2;
    }

    /* 各カードの画像トリミング位置（SP用に個別指定） */
    .standards-panel img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 1;
        transform: none !important;
    }

    .standards-panel::after {
        background: rgba(0, 0, 0, 0.45);
    }

    .standards-inner .standards-panel:nth-child(1) img {
        object-position: 15% 40%;
        transform: scale(1.4) !important;
    }

    .standards-inner .standards-panel:nth-child(2) img {
        object-position: 20% 80%;
        transform: scale(1.2) !important;
    }

    .standards-inner .standards-panel:nth-child(3) img {
        object-position: center center;
        transform: scale(1.5) !important;
    }

    .standards-inner .standards-panel:nth-child(4) img {
        object-position: 80% 50%;
        transform: scale(1.2) !important;
    }

    .standards-inner .standards-panel:nth-child(5) img {
        object-position: 0% 100%;
        transform: scale(2.2) translateX(20%) !important;
    }

    /* Model House */
    #modelhouse-section {
        padding: 60px 0;
    }

    .mh-feature {
        grid-template-columns: 1fr;
        width: 100%;
        margin: 20px 0 0;
        padding: 0;
        row-gap: 0;
        column-gap: 0;
    }

    .mh-img-main {
        grid-column: 1;
        grid-row: 1;
        aspect-ratio: 4 / 3;
        overflow: hidden;
    }

    /* SP: メイン画像のトリミング・拡大率（object-position と scale で調整） */
    .mh-img-main img {
        object-position: 30% 30%;
        transform: scale(1.35);
    }

    .mh-col-right {
        display: none;
    }

    .mh-text {
        grid-column: 1;
        grid-row: 2;
        margin: 0;
        padding: 12px 20px;
        align-items: flex-start;
        justify-content: center;
    }

    .mh-text-body {
        border-left: 2px solid #A79A7880;
        margin-left: 30px;
        padding-left: 14px;
        margin-bottom: 20px;
        margin-top: 0px;
    }


    .mh-text h3 {
        line-height: 2.0;
        margin-bottom: 8px;
        padding-left: 20px;
    }

    .mh-text p {
        margin-top: 0;
        padding: 10px 0;
        color: var(--color-black);
    }


    /* PC用テキスト非表示 / SP用テキスト表示 */
    .mh-text-pc {
        display: none;
    }

    .mh-text-sp {
        display: block;
    }

    .mh-text .more-btn {
        align-self: flex-end;
        margin-top: 16px;
        margin-bottom: 32px;
        margin-right: 20px;
    }

    /* SP: 2枚横並び画像 */
    .mh-sp-images {
        display: flex;
        gap: 6px;
        margin-top: 0;
        margin-left: -20px;
        margin-right: -20px;
        overflow: hidden;
    }

    .mh-sp-img-left {
        width: calc(40% - 3px);
        flex-shrink: 0;
        aspect-ratio: 1 / 1;
        overflow: hidden;
    }

    .mh-sp-img-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        object-position: center 90%;
        /* ← トリミング位置（横% 縦% で調整） */
        transform: scale(1.3);
    }

    .mh-sp-img-right {
        width: calc(60% - 3px);
        flex-shrink: 0;
        aspect-ratio: 2.5 / 2;
        overflow: hidden;
    }

    .mh-sp-img-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* SP: MHカード - 画像全幅・名前オーバーレイ */
    .mh-list {
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
        margin: 24px auto;
        padding: 0 0 0 35px;
    }

    .mh-card {
        display: block;
        position: relative;
        overflow: visible;
        text-decoration: none;
        color: var(--color-black);
    }

    .mh-card-img {
        position: relative;
        width: 100%;
        height: 110px;
        overflow: hidden;
    }

    .mh-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* 各カード画像のトリミング・拡大率（object-position: 横% 縦%、scale で調整） */
    .mh-list .mh-card:nth-child(1) .mh-card-img img {
        object-position: 50% 50%;
        transform: scale(1.0);
    }

    .mh-list .mh-card:nth-child(2) .mh-card-img img {
        object-position: 50% 50%;
        transform: scale(1.0);
    }

    .mh-list .mh-card:nth-child(3) .mh-card-img img {
        object-position: 40% 80%;
        transform: scale(1.0);
    }

    .mh-name {
        position: absolute;
        bottom: 8px;
        left: -20px;
        z-index: 2;
        display: block;
        width: 55%;
        padding: 6px 24px 8px 24px;
        font-family: var(--font-ja);
        font-size: 11px;
        font-weight: 500;
        margin: 0;
        line-height: 1.5;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0) 100%);
        border-bottom: none;
        text-align: left;
    }

    .mh-more-btn {
        position: absolute;
        bottom: 10px;
        right: 10px;
        font-size: 10px;
    }

    .mh-more-btn .more-arrow {
        width: 24px;
        background: rgba(255, 255, 255, 0.8);
    }

    .mh-tags {
        display: none;
    }

    /* Column */
    #column-section {
        flex-direction: column;
        padding: 60px 0;
    }

    .column-slider-outer {
        flex: none;
        width: 100%;
    }

    .column-header {
        width: 100%;
        padding: 0 20px;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-bottom: 24px;
        text-align: center;
    }

    .column-header .sec-en {
        width: 100%;
        text-align: center;
    }

    .column-header .more-btn {
        display: none;
    }

    .column-swiper {
        padding: 0 20px;
        overflow: hidden !important;
    }

    .col-img {
        aspect-ratio: 1 / 1;
    }

    .column-sec-more {
        display: block;
        text-align: center;
        margin-top: 28px;
    }

    .column-sec-more a {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: #000;
        font-family: var(--font-en);
        font-size: 13px;
        letter-spacing: 0.12em;
    }

    /* Instagram */
    #instagram-section {
        padding: 60px 0 0;
    }

    .insta-header {
        padding: 0 20px;
    }

    .insta-header .more-btn-right {
        display: none;
    }

    .insta-more-sp {
        text-align: center;
        padding: 28px 20px 36px;
    }

    .insta-more-sp .more-btn-right {
        isolation: isolate;
    }

    .insta-more-sp .more-arrow::before {
        background: rgba(255, 255, 255, 0.9);
    }
}