@charset "UTF-8";
/*
Theme Name: HARE UNSTANDARD
Description: 2025-10-30
Version: 1.0.0
*/


/* ============================================= */
/*  1. 初期表示用の要素のスタイル                 */
/* ============================================= */
.hero-section {
    position: relative;
}

/* 初期表示用のヘッダー上部 */
.header-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header-top__inner {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    border-bottom: 5px solid #8ECF57;
}

/* キービジュアル */
.key-visual {
    padding-top: 100px;
}

.key-visual img {
    width: 100%;
    vertical-align: bottom;
}

.key-visual__text {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    z-index: 5;
}

/* 初期表示用のナビゲーション */
.main-nav {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.main-nav ul {
    width: 100%;
    max-width: 797px;
    margin: 0 auto;
    background-color: #f7ff00;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
}

/* =========================================== */
/*  2. スクロール後に表示される追従ヘッダー       */
/* =========================================== */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.4s ease-out;
}

.fixed-header.is-visible {
    transform: translateY(0);
}

.fixed-header .header-pc__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    border-bottom: 1px solid #eee;
}

.fixed-header .header-pc__nav {
    background-color: #f7ff00;
}

.fixed-header .header-pc__nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

/* --- ヘッダー共通パーツ --- */
.header-pc__tel {
    font-size: 1rem;
    line-height: 1.5;
}

.header-pc__tel .tel-number {
    font-size: 2.4rem;
    font-weight: bold;
    display: block;
}

.header-pc__tel .tel-number span {
    font-size: 1.8rem;
    margin-right: 0.25em;
}

.header-pc__logo img {
    height: 51px;
}


.header-pc__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #FFA857;
    border: 1px solid #FFA857;
    color: #fff;
    width: 180px;
    height: 50px;
    border-radius: 180px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.header-pc__cta:hover {
    background-color: #fff;
    color: #FFA857;
}
.header-pc__cta svg {
    color: inherit;
    transition: color 0.3s;
}
.main-nav ul a,
.fixed-header .header-pc__nav ul a {
    padding: 0 15px;
    border-right: 1px solid #333;
    font-size: 2rem;
    font-weight: bold;
}

.main-nav ul li:last-child a,
.fixed-header .header-pc__nav li:last-child a {
    border-right: none;
}

/* ========================================
   共通
======================================== */
section {
    padding: 100px 0;
}

@media (max-width:430px) {
    section {
        padding: 50px 0;
    }
}

/* ボタン---1 */
.btn-wrap {
    text-align: right;
}
@media (max-width: 768px) {
    .btn-wrap {
        text-align: center;
        margin-top: 30px;
    }
}

.btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    width: 190px;
    height: 48px;
    gap: 12px;
    padding: 0 15px 0 15px;
    box-sizing: border-box;
    background-color: #FFA857;
    border-radius: 0 24px 24px 0;
    border: 1px solid #FFA857;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}
@media (max-width:320px) {
    .btn-more {
        font-size: 1.4rem;
    }
}

.btn-more:hover {
    background-color: #fff;
    color: #FFA857;
    border: 1px solid #FFA857;
}

/* SVGアイコンのスタイル */
.btn-more .btn-more__arrow {
    width: 14px;
    height: 12px;
    transition: transform 0.3s ease;
}


/* ボタン---2 */
.btn-wrap02 {
    text-align: center;
}
.btn-more02 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px 80px;
    min-width: 300px;
    box-sizing: border-box;
    background-color: #FFA857;
    border: 1px solid #FFA857;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1;
    transition: background-color 0.3s, color 0.3s;
}

.btn-more02:hover {
    background-color: #fff;
    color: #FFA857;
    border: 1px solid #FFA857;
}


/* 白い円のラッパーのスタイル */
.btn-more02 .btn-more__arrow-wrap {
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s;
}

/* 矢印アイコン自体のスタイル */
.btn-more02 .btn-more__arrow {
    color: #FFA857;
    transition: color 0.3s;
}

.btn-more02:hover .btn-more__arrow-wrap {
    background-color: #FFA857;
}

.btn-more02:hover .btn-more__arrow {
    color: #fff;
}
@media (max-width:768px) {
    .btn-more02 {
        font-size: 2.2rem;
        padding: 20px 40px;
    }
}
@media (max-width:320px) {
    .btn-more02 {
        font-size: 1.4rem;
    }
        
}

.com-content-wrap {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}
.bg-1 {
    background-color: #FCFFC2;
    border-top: 5px solid #FFA857;
}
.bg-2 {
    background-color: #CAF4FF;
    border-top: 5px solid #F2FF00;
}
.bg-3 {
    background-color: #EFEFEF;
    border-top: 5px solid #FFA857;
}

/* =========================================== */
/*  SP: レスポンシブ設定 (768px以下で適用)       */
/* =========================================== */
.header-sp,
.sp-nav,
.hamburger {
    display: none;
}

@media (max-width: 768px) {

    /* PC用の要素を全て非表示 */
    .header-top,
    .main-nav,
    .fixed-header {
        display: none;
    }

    /* SP用のヘッダーとハンバーガーを表示 */
    .header-sp,
    .hamburger {
        display: block;
    }

    /* スマホ時のキービジュアルの高さ */
    .key-visual {
        padding-top: 0;
        height: 80vh;
        overflow: hidden;
    }

    .key-visual img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .key-visual__text {
        top: 13%;
        font-size: 2.4rem;
        padding: 0 10px;
    }

    /* SP用ヘッダー（ロゴのみ）のスタイル */
    .header-sp {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 101;
        background-color: #fff;
        display: flex;
        align-items: center;
        padding: 15px;
        border-bottom: 5px solid #8ECF57;
    }

    .header-sp__logo img {
        width: auto;
        height: 26px;
    }

    /* ハンバーガーボタンのスタイル */
    .hamburger {
        position: fixed;
        top: 7px;
        right: 7px;
        z-index: 102;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .hamburger__line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: #333;
        position: absolute;
        left: 8px;
        transition: transform 0.3s, opacity 0.3s;
    }

    .hamburger__line:nth-child(1) {
        top: 14px;
    }

    .hamburger__line:nth-child(2) {
        top: 24px;
    }

    /* ハンバーガー（開いた状態: ×印） */
    .hamburger.is-open .hamburger__line:nth-child(1) {
        top: 19px;
        transform: rotate(45deg);
    }

    /* 2本目を-45度回転させて×を作る */
    .hamburger.is-open .hamburger__line:nth-child(2) {
        top: 19px;
        transform: rotate(-45deg);
    }


    /* SP用 全画面ナビゲーション */
    .sp-nav {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #C9F4FF;
        z-index: 100;
        padding-top: 60px;
        box-sizing: border-box;
        text-align: left;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s, visibility 0.4s;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .sp-nav.is-open {
        opacity: 1;
        visibility: visible;
    }

    .sp-nav ul {
        margin-bottom: 38px;
    }
    .sp-nav ul li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 40px;
        font-size: 1.6rem;
        font-weight: bold;
        border-bottom: 1px solid #000;
    }
    .sp-nav .btn-wrap {
        padding: 0 40px;
        margin: 0 auto 18px;
    }
    .sp-nav .btn-more {
        width: 100%;
        height: 56px;
        border-radius: 0 28px 28px 0;
        font-size: 1.6rem;
    }
     .sp-nav .btn-more span {
        margin-right: auto;
     }
    /* --- ::beforeでアイコンを追加する領域を作成 --- */
    .sp-nav .btn-more::before {
        content: '';
        display: block;
        width: 27px;
        height: 26px;
        flex-shrink: 0;
    }

    /* カタログボタンのアイコン */
    .b-catalog::before {
        background-color: currentColor;
        mask-image: url('images/icon1.svg');
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
    }

    /* メールボタンのアイコン（例） */
    .b-mail::before {
        background-color: currentColor;
        mask-image: url('images/icon_mail.svg');
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
    }

    /* LINEボタンのアイコン（例） */
    .b-line::before {
        background-color: currentColor;
        mask-image: url('images/icon_line.svg');
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
    }

    /* 電話ボタン */
    .btn-tel {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background-color: #000;
        border: 1px solid #F2FF00;
        color: #fff;
        height: 56px;
        border-radius: 9999px;
        margin-top: 40px;
    }
    .btn-tel::before {
        content: "";
        display: block;
        width: 27px;
        height: 26px;
        flex-shrink: 0; 
    }
    .b-tel::before {
        background-color: currentColor;
        mask-image: url('images/icon_tel.svg');
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
    }
    .sp-nav__footer {
        padding: 20px 30px;
        text-align: center;
        font-size: 1.3rem;
        font-weight: 700;
    }
}


/* ========================================== */
/*  ヘッダーの表示切り替え           */
/* =========================================== */

/* --- (1) 下層ページの「初期表示」ヘッダー調整 --- */
body:not(.home):not(.front-page) .fixed-header {
    position: static;
    transform: none;
    animation: none;
    box-shadow: none;
}

/* --- (2) トップページの「初期非表示」ヘッダー調整 --- */
.home .fixed-header,
.front-page .fixed-header {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
/* トップページでスクロール後に表示 */
.home .fixed-header.is-visible,
.front-page .fixed-header.is-visible {
    visibility: visible;
    opacity: 1;
}


/* --- (3) 下層ページの「追従時」のスタイル --- */
body:not(.home):not(.front-page) .fixed-header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    
    transform: translateY(-100%);
    animation: slideDown 0.4s ease-out forwards;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}



/* ========================================
   トップ　section about-us
======================================== */

.section-about-us {
    overflow: hidden;
}

.collage-container {
    position: relative;
    width: 100%;
}

.about-us__header {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    font-size: clamp(1.7rem, 0.48vw + 1.52rem, 2rem);
    font-weight: bold;
    color: #8ECF57;
    border: 1px solid #8ECF57;
    background-color: #fff;
    border-radius: 15px;
    padding: 6px 20px;
}
@media (max-width:768px) {
    .badge {
        border-radius: 10px;
        padding: 4px 15px;
    }
}
.section-title .highlight {
    display: inline-block;
    font-size: clamp(2.5rem, 2.4vw + 1.6rem, 4rem);
    font-weight: 600;
    color: #fff;
    background-color: #8ECF57;
    border-radius: 15px;
    padding: 1px 20px;
}
@media (max-width:768px) {
    .section-title .highlight {
        border-radius: 10px;
        padding: 1px 15px;
    }
    .section-lineup .section-title .highlight {
        font-feature-settings: "palt";
    }
}

.collage-photo-wap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    transform: translateY(-36%);
}

@media (max-width:640px) {
    .collage-photo-wap {
        display: block;
    }
}

.collage-photo {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #F2FF00;
}

.collage-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-1 {
    transform: translateY(25%);
    width: 28%;
    height: 80%;
    border-radius: 0 20px 20px 0;
}

.photo-2 {
    transform: translateY(10%);
    width: 39%;
    height: 70%;
}

.photo-3 {
    width: 30%;
    height: 65%;
    border-radius: 20px 0 0 20px;
}

@media (max-width:640px) {
    .photo-2 {
        transform: translateY(25%);
        width: 81.5%;
        margin: 0 auto;
    }

    .photo-1,
    .photo-3 {
        display: none;
    }
}

.section-about-us .text-content {
    position: relative;
    min-height: 263px;
}

.section-about-us .inner_box {
    position: absolute;
    right: 10%;
    top: -25%;
    max-width: 679px;
    width: 53%;
}

@media (max-width:640px) {
    .section-about-us .inner_box {
        position: static;
        width: 90%;
        margin: 0 auto;
    }
}

.section-about-us .inner_box p {
    font-size: clamp(1.4rem, 0.221vw + 1.317rem, 1.6rem);
    font-weight: 600;
    line-height: 2;

}
.mySwiper {
    display: none;
}
@media (max-width: 640px) {
    .mySwiper {
        display: block;
        margin-top: 30px;
        overflow: hidden; 
        width: 100vw; 
        margin-left: calc(50% - 50vw);
    }
    .swiper-wrapper {
        align-items: center;
    }
    .swiper-slide {
        width: 190px;
        aspect-ratio: 1 / 1;
        border-radius: 20px;
        overflow: hidden;
        flex-shrink: 0;
        border: 1px solid #8ECF57;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }
    .swiper-slide-active {
        opacity: 1;
        transform: scale(1);
    }

    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

/* ========================================
   トップ　SECTION HOUSING
======================================== */
.chat-heading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-heading__title {
    display: flex;
    align-items: center;
    font-size: clamp(1.6rem, 0.64vw + 1.36rem, 2rem);
}

.chat-bubble {
    width: 220px;
    height: 48px;
    display: flex; 
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-weight: bold;
    white-space: nowrap;
    transition: transform 0.3s ease, margin 0.3s ease;
}

/* --- 左側の緑 --- */
.chat-bubble--primary {
    background-color: #8ECF57;
    color: #fff;
    border: 1px solid #8ECF57;
    position: relative;
    z-index: 1;
}

/* --- 右側の白 --- */
.chat-bubble--secondary {
    background-color: #fff;
    color: #8ECF57;
    border: 1px solid #8ECF57;
    position: relative;
    z-index: 2;
    margin-left: -40px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .chat-heading__title {
        transform: scale(0.8);
    }
}

.promo-title {
    text-align: center;
    font-size: clamp(2.4rem, 1.92vw + 1.68rem, 3.6rem);
    font-weight: bold;
    line-height: 1.2;
    margin-top: 20px;
}

/* --- 数字「2」を囲むspanのスタイル --- */
.promo-title__highlight {
    position: relative; 
    color: #8ECF57;
    font-size: clamp(6.6rem, 1.6vw + 6rem, 7.6rem);
    font-weight: 500;
    display: inline-block;
}

/* --- 数字「2」の上に乗るアイコンのスタイル --- */
.promo-title__highlight::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 85%;
    left: 50%;
    transform: translateX(-50%);
    width: 43px; 
    height: 22px;
    background-image: url(images/title_point.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* --- カード部分 --- */
.card-housing-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 45px;
}
@media (max-width:768px) {
    .card-housing-wrap {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
}
.card-housing {
    background-color: #fff;
    border: 1px solid #8ECF57;
    border-radius: 15px;
    padding: 50px;
    max-width: 500px;
}
@media (max-width:768px) {
    .card-housing {
        padding: 25px;
        margin: 0 auto;
    }
}
.card-housing:nth-of-type(2) {
    transform: translateX(-1px);
}
@media (max-width:768px) {
    .card-housing:nth-of-type(2) {
        transform: translateY(-1px);
    }
}
.card-housing__title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #8ECF57;
    text-align: center;
    margin-bottom: 1em;
}
@media (max-width:768px) {
    .card-housing__title {
        font-size: 2.8rem;
    }
}
.card-housing__text {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 1.5em;
}
.card-housing__img {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #8ECF57;
    margin-bottom: 30px;
    aspect-ratio: 1 / 0.744;
}
.card-housing__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================================== */
/*  トップ　LINEUPセクション   */
/* =========================================== */
.lineup-content-header {
    position: relative;
    z-index: 5;
    display: inline-block;
}
.lineup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: -100px;
    position: relative;
}

/* --- 画像カードの共通スタイル --- */
.lineup-card {
    position: relative;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    border: 1px solid #F2FF00;
}

/* 左の大きなカード */
.lineup-card--large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 550px;
    transform: translateY(70px);
}
/* 右上のカード */
.lineup-grid > a.lineup-card:nth-of-type(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    height: 275px;
}
/* 右下のカード */
.lineup-grid > a.lineup-card:nth-of-type(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 275px;
}


/* カードの背景画像 */
.lineup-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* カード内のコンテンツ（テキストや矢印） */
.lineup-card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
@media (max-width:768px) {
    .lineup-card__content {
        padding: 20px;
    }
}
.lineup-card__title {
    font-size: clamp(2.4rem, 1.6vw + 1.8rem, 3.4rem);
    font-weight: bold;
    line-height: 1.2;
}

.lineup-card__arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background-color: #FFA857; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
}

.lineup-card:hover .lineup-card__arrow {
    background-color: #fff;
    color: #FFA857;
}

/* --- 一覧を見るボタン --- */
.section-lineup .btn-wrap {
    text-align: right;
    margin-top: 2rem;
}
@media (max-width:768px) {
    .section-lineup .btn-wrap {
        text-align: center;
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .lineup-grid {
        display: block;
        margin-top: -6%;
        z-index: 2;
    }
    .lineup-card {
        width: 100%;
        transform: none !important;
        height: auto !important;
    }
    /* (A) 1枚目（大きなカード）の比率を指定 */
    .lineup-card--large {
        aspect-ratio: 3 / 4; 
    }

    /* (B) 2枚目と3枚目のカードの比率を指定 */
    .lineup-grid > a.lineup-card:nth-of-type(2),
    .lineup-grid > a.lineup-card:nth-of-type(3) {
        aspect-ratio: 4 / 3;
    }
}

/* ========================================
   トップ　SECTION EVENT
======================================== */
.section-event .section-title {
    position: relative;
    z-index: 1;
}
.event-card-wrap {
    display: flex;
    align-items: stretch;
    gap: 40px;
    background-color: #fff;
    border: 1px solid #8ECF57;
    border-radius: 15px;
    overflow: hidden;
    margin-top: -20px;
    margin-bottom: 50px;
}
@media (max-width:900px) {
    .event-card-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
}
@media (max-width:900px) {
    .event-card-wrap {
        width: 100%;
    }
}
.event-card__image {
    flex-basis: 440px;
    flex-shrink: 0;
    display: flex;
}
.event-card__image img {
    width: 100%;
    height: 100%; 
    object-fit: cover;
}
@media (max-width:900px) {
    .event-card__image {
        flex-basis: auto;
    }
}
.event-card__text {
    flex: 1;
    color: #8ECF57;
    padding: 40px 40px 40px 0;
}
@media (max-width:900px) {
    .event-card__text {
        flex:initial;
        width: 100%;
        padding: 20px;
    }

}
/* --- テキストブロック内 --- */
.event-title {
    font-size: clamp(2.2rem, 0.32vw + 2.08rem, 2.4rem);
    font-weight: bold;
    line-height: 1.7;
    margin-bottom: 1em;
}

.event-detail {
    margin-bottom: 1.5rem;
}

.event-detail div {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}
@media (max-width:900px) {
    .event-detail div {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }
}

.event-detail dt {
    background-color: #8ECF57;
    color: #fff;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 1.4rem;
    font-weight: bold;
    width: 86px;
    flex-shrink: 0;
    margin-right: 1rem;
    text-align: center;
}
@media (max-width:900px) {
    .event-detail dt {
        margin-right: 0;
        margin-bottom: 0.5em;
    }
}
.event-detail dd {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.5;

}
.event-text {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.8;
}
.section-event .btn-wrap {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

/* ========================================
   SECTION RECOMMENDATION 売り出し中物件
======================================== */
.recommend-content-header {
    text-align: center;
}

/* =========================================== */
/*  物件カードのスタイル                          */
/* =========================================== */

/* 2枚のカードを横並びにするラッパー */
.property-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

/* ★★★ カード全体のラッパー（位置決めの基準） ★★★ */
.property-card {
    position: relative;
    width: 45%;
    max-width: 480px;
}

/* ★★★ (1) 屋根の部分 ★★★ */
.property-card__inner-head {
    height: 140px;
    background-image: url(images/reco_back_top.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    position: relative;
}
/* SOLD OUT用の屋根画像 */
.property-card.sold-out .property-card__inner-head {
    background-image: url(images/reco_back_top02.svg);
}

/* ★★★ (2) 胴体の部分 ★★★ */
.property-card__inner-foot {
    background-color: #fff;
    border: 1px solid;
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 0 40px 40px;
    position: relative;
}

/* ★★★ (3) 状態に応じた枠線と背景色の指定 ★★★ */
.property-card.sale .property-card__inner-foot {
    border-color: #8ECF57;
}
.property-card.sold-out .property-card__inner-foot {
    border-color: #eee;
    background-color: #eee;
}

/* status-badgeのスタイル */
.status-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%); 
    text-align: center;
    color: #8ECF57;
}
.status-badge .status-en {
    font-size: 3.2rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-stretch: 75%; 
}
.status-badge .status-ja {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: -10px;
}

.property-img {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #8ECF57
}
.property-img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.property-area {
    background-color: #8ECF57;
    color: #fff;
    display: inline-block;
    padding: 4px 40px;
    border-radius: 9999px;
    font-weight: bold;
    margin: 0 auto 1rem;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
}
.property-title {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}
.property-price {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
}
.property-price span {
    font-size: 1.6rem;
    margin-left: 0.25em;
}
.property-details dt {
    background-color: #8ECF57;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    padding: 2px 10px;
    border-radius: 9999px;
    display: inline-block;
    text-align: center;
    min-width: 86px;
    margin-bottom: 5px;
}
.property-details dd {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.5;
    color: #8ECF57;
}
.property-details div:first-child {
    margin-bottom: 20px;
}
.property-details div:last-child {
    padding-right: 60px;
}

.property-card__arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background-color: #FFA857;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.property-card:hover .property-card__arrow {
    background-color: #fff;
    color: #FFA857;
    border: 1px solid #FFA857;
}
/* カード全体を覆うリンクのスタイル */
.property-card__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* --- 物件カードのスタイルレスポンシブ --- */
@media (max-width: 768px) {
    .property-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .property-card {
        width: 100%;
        margin-top: 20px;
    }
    .property-card:first-of-type {
        margin-top: 0;
    }
    /* ★★★ スマホの屋根の表示 ★★★ */
    .property-card__inner-head {
        height: auto;
        padding-top: 29.16%; /* (140 / 480) * 100% */
        background-size: contain;
    }

    /* ★★★ スマホの胴体のpadding ★★★ */
    .property-card__inner-foot {
        padding: 0 20px 20px;
    }
    
    .property-img img {
        aspect-ratio: 15 / 13;
    }

    .status-badge {
        bottom: 10px;
    }
}


/* ========================================
   トップ　SECTION FEATURES 特徴
======================================== */
.features__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;;
    margin-bottom: 50px;
    gap: 30px;
}
@media (max-width:840px) {
    .features__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}
.features-lead {
    font-size: clamp(1.4rem, 0.32vw + 1.28rem, 1.6rem);
    font-weight: bold;
    line-height: 2;
    text-align: right;
}
@media (max-width:840px) {
    .features-lead {
        text-align: left;
    }
}

.features-item-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width:933px) {
    .features-item-wrap {
        display: block;
    }
}

.features-item {
    width: 330px;
    height: 330px;
    border: 1px solid #FFA857;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
}
@media (max-width:933px) {
    .features-item {
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
    }
}

 /* 下段のアイテム（4番目と5番目） */
.features-item:nth-of-type(n + 4) {
    margin-top: -45px;
}
@media (max-width:933px) {
    .features-item:nth-of-type(n + 2) {
        margin-top: -35px;
    }
}

.features-item dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    transform: translateY(-10px);
}
.features-item dt {
    margin-bottom: 40px;
    position: relative;
}
.features-item dd {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.7;
}

/* 数字のスタイル */
.number-circle {
    font-size: 3.8rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-stretch: 75%; 
    color: transparent;
    -webkit-text-stroke: 1px #000;
    text-stroke: 1px #000;
}
/* h3（.features-subject）のスタイル */
.features-item h3 {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0;
}
/* h3の下線 */
.features-item dt::after {
    content: "";
    width: 62px;
    height: 1px;
    display: block;
    background-color: #8ECF57;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/* =========================================== */
/*  タブレット用スタイル (1099px 〜 934px)  */
/* =========================================== */
@media (min-width: 934px) and (max-width: 1099px) {

    /* PCの重なりを少し浅く調整 */
    .features-item:nth-of-type(n + 4) {
        margin-top: -30px;
    }

    /* 各アイテムを縮小 */
    .features-item {
        transform: scale(0.85);
        margin-left: -25px;
        margin-right: -25px;
    }
    .features-item:nth-of-type(-n + 3) {
        transform-origin: bottom; 
    }
    .features-item:nth-of-type(n + 4) {
        transform-origin: top;
    }
}


/* =========================================== */
/*  スマホ用: 1列表示 (933px以下)                 */
/* =========================================== */
@media (max-width: 933px) {
    .features-item-wrap {
        display: block; 
    }
    .features-item {
        width: 100%;
        max-width: 330px;
        margin: 0 auto; 
        transform: none; 
    }

    /* 2番目以降のアイテム */
    .features-item:nth-of-type(n + 2) {
        margin-top: -50px;
    }
    /* PC/タブレット用の下段の重なり指定をリセット */
    .features-item:nth-of-type(n + 4) {
        margin-top: -50px;
    }
}


/* =========================================== */
/*  共通　CONTACTセクション 
/* =========================================== */

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
@media (max-width:768px) {
    .contact-header {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}
.contact-title {
    font-size: clamp(3rem, 1.6vw + 2.4rem, 4rem);
    font-weight: bold;
}
.contact-header p {
    font-size: clamp(1.4rem, 0.32vw + 1.28rem, 1.6rem);
    font-weight: bold;
}

/* --- 緑の囲み全体のグリッドコンテナ --- */
.contact-grid {
    display: grid;
    grid-template-columns: 378px 1fr; 
    border: 1px solid #8ECF57;
    border-radius: 20px;
    background-color: #fff;
    overflow: hidden;
    align-items: stretch;
}
@media (max-width:768px) {
    .contact-grid {
        display: block;
        width: 100vw; 
        margin-left: calc(50% - 50vw);
        border-radius: 0;
        border: none;
    }
}
/* 左側の「カタログ請求」ブロック */
.catalog-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #8ECF57;
    color: #fff;
    padding: 3rem 2rem;
    text-decoration: none;
    position: relative;
    text-align: center;
    border-right: 1px solid #8ECF57;
}
.catalog-cta__text-arc {
    width: 100%;
    max-width: 227px;
    height: auto; 
}
.catalog-cta__badge {
    background-color: #fff;
    color: #8ECF57;
    border-radius: 9999px;
    padding: 4px 12px;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    margin-top: -20px;
}
.catalog-cta__icon svg {
    width: 100px;
    height: 75px;
}
.catalog-cta__title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}
.catalog-cta__arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8ECF57;
    transition: background-color 0.3s;
}

/* 右側の「お問い合わせリスト」ブロック */
.contact-links {
    display: flex;
    flex-direction: column;
}

.contact-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 2;
    display: flex;
    flex-direction: column;
}
@media (max-width:768px) {
    .contact-links ul {
        display: block;
    }
}
.contact-links li {
    flex: 1;
    display: flex;
    border-bottom: 1px solid #8ECF57;
}
@media (max-width:768px) {
    .contact-links li {
        flex: initial;
    }
}
.contact-links li:last-child {
    border-bottom: none;
}
.contact-links li a {
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: background-color 0.3s;
    padding: 0 30px;
}
@media (max-width:768px) {
    .contact-links li a {
        padding: 20px;
    }
}
.contact-links li a:hover {
    background-color: #f8f8f8;
}
.contact-links__icon {
    margin-right: 1rem;
    transform: translateY(5px);
}
.contact-links__text {
    flex-grow: 1;
}
.contact-links__arrow {
    color: #8ECF57;
    margin-left: auto;
}

.contact-tel {
    flex: 1;
    display: flex;
    align-items: center;
}
@media (max-width:1080px) {
    .contact-tel {
        flex-direction: column;
        align-items: flex-start;
    }
}
.contact-tel__number {
    font-size: clamp(2.8rem, 0.96vw + 2.44rem, 3.4rem);
    font-weight: bold;
    margin-right: 1.5rem;
}
.contact-tel__number span {
    font-size: clamp(1.8rem, 1.28vw + 1.32rem, 2.6rem)
}
.contact-tel__info {
    font-size: 1.4rem;
}
@media (max-width:768px) {
    .section-contact {
        padding-bottom: 0;
    }
}

/* =========================================== */
/*  CONTACTセクション: ホバーエフェクト          */
/* =========================================== */

/* aタグ(.catalog-cta)にホバーした時のスタイル */
.catalog-cta:hover {
    background-color: #fff; 
    color: #8ECF57;
}

/* バッジの色の反転 */
.catalog-cta:hover .catalog-cta__badge {
    background-color: #8ECF57;
    color: #fff;
}

/* 矢印の色の反転 */
.catalog-cta:hover .catalog-cta__arrow {
    background-color: #8ECF57;
    color: #fff;
}

/* メールとLINEのaタグにホバーした時のスタイル */
.contact-links li a:hover {
    background-color: #000; 
    color: #fff;
}

/* 矢印の色も白に */
.contact-links li a:hover .contact-links__arrow {
    color: #fff;
}

/* 左ブロック */
.catalog-cta {
    transition: background-color 0.3s, color 0.3s;
}
.catalog-cta__badge, .catalog-cta__arrow {
    transition: background-color 0.3s, color 0.3s;
}

/* 右ブロック */
.contact-links li a {
    transition: background-color 0.3s, color 0.3s;
}
.contact-links__arrow {
    transition: color 0.3s;
}

/* ========================================
   FOOTER
======================================== */
.footer-wrap .com-content-wrap {
    padding: 50px 0;
    text-align: center;
}
.footer-logo img {
    margin: 0 auto 50px;
}
@media (max-width:768px) {
    .footer-logo img {
        width: 48%;
        margin: 0 auto 15px;
    }
}
ul.footer-nav li {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
    border-right: 1px solid #000;
}
ul.footer-nav li:last-child {
    border-right: none;
}
ul.footer-nav li a {
    padding: 0 0.8em;
}
.copy-text {
    font-size: 1.2rem;
}


/* ========================================
   下層ページ　共通
======================================== */
/* 下層ページ用キービジュアル */
.key-visual-sub {
    position: relative;
}
.key-visual-sub img {
    width: 100%;
}

.key-visual-sub__text {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
    z-index: 5;
}
.key-visual-sub__text span {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 10px;
}
@media (max-width:768px) {
    /* スマホ時のキービジュアルの高さ */
    .key-visual-sub {
        height: 80vh;
        overflow: hidden;
    }

    .key-visual-sub img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .key-visual-sub__text {
        top: 13%;
        font-size: 2.4rem;
        padding: 0 10px;
    }
    .key-visual-sub__text span {
        font-size: 1.4rem;
        line-height: 1.5;
    }
}
/* ========================================
   セクション　コンセプト
======================================== */
.concept-wrap {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}
.concept__header {
    position: relative;
    z-index: 10;
}
.concept-inner-wrap {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
}
.concept-text {
    width: 45%;
    padding-top: 50px;
    position: relative;
    z-index: 5;
}
.concept-text p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 2em;
}
.concept-sign {
    margin-top: 30px;
    max-width: 432px;
}
.concept-sign img {
   max-width: 100%;
   height: auto;
}
.concept-img-wrap {
    width: 50%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: -100px;
}
.concept-img {
    border: 1px solid #f7ff00;
    border-radius: 20px;
    overflow: hidden;
}
.concept-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1;
}

@media (max-width: 768px) {
    .concept__header .highlight {
        font-size: 2.4rem;
        font-feature-settings: "palt";
    }
    /* ラッパーの横並びを解除し、縦積みに */
    .concept-inner-wrap {
        display: block;
    }

    /* テキストと画像の幅を100%に */
    .concept-text,
    .concept-img-wrap {
        width: 100%;
    }

    /* テキストブロックの余白を調整 */
    .concept-text {
        padding-top: 30px;
        text-align: center; /* スマホでは中央揃えにする場合 */
    }
    .concept-sign {
        margin-left: auto;
        margin-right: auto;
    }

    /* 画像ブロックの重なりをリセット */
    .concept-img-wrap {
        margin: 30px auto 0;
    }
}

/* ========================================
   セクション　サポート
======================================== */

/*  SUPPORTセクション タイトルのスタイル */
/* ======================================== */

/* --- 全体を包むコンテナ --- */
.support-title-container {
    position: relative;
    display: table;
    margin: 0 auto;
}

/* (A) 緑の背景SVGを置くためのブロック */
.support-title__bg-wrap {
    width: 211px;
}
.support-title__bg {
    display: block;
    width: 100%;
    height: auto;
}

/* (B) テキストコンテンツ全体を置くためのブロック */
.support-title__content-wrap {
    /* ★★★ 背景の上に絶対配置で重ねる ★★★ */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 上下左右中央揃え */

    /* 中身のテキストを配置 */
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap; /* テキストの改行を防ぐ */
}

/* 「SUPPORT」のスタイル */
.support-title__subtitle {
    font-size: clamp(1.4rem, 0.32vw + 1.28rem, 1.6rem);
    font-weight: bold;
    color: #fff;
    margin-bottom: -1em;
}

/* 「6つの安心サポート」のスタイル */
.support-title__main {
    font-size: clamp(2.8rem, 1.92vw + 2.08rem, 4rem);
    font-weight: bold;
    color: #000;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 0.1em;
}

/* 数字「6」のスタイル */
.support-title__number {
    font-size: clamp(5rem, 3.2vw + 3.8rem, 7rem);
    line-height: 1;
    position: relative;
}

/* 「6」の上の装飾アイコン (title_pont02.svg) */
.support-title__number::before {
    content: '';
    display: block;
    position: absolute;
    
    /* アイコンの位置調整 */
    bottom: 78%;
    left: 40%;
    transform: translateX(-50%); /* 水平中央揃え */
    
    /* アイコンのサイズ */
    width: clamp(30px, 9vw, 45px);
    height: clamp(20px, 6vw, 30px);
    background-image: url('images/title_pont02.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 768px) {
    /* ★★★ スマホでは背景の幅を%で指定 ★★★ */
    .support-title__bg-wrap {
        width: 60%;
        margin: 0 auto;
    }
}

/*  サポートカード */
/* ======================================== */

.support-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
    margin-top: 60px;
}

.support-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

/* ★★★ (1) 屋根の部分 ★★★ */
.support-card__inner-head {
    height: 158px;
    background-image: url(images/support_top_bak.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    position: relative;
}

/* ★★★ (2) 胴体の部分 ★★★ */
.support-card__inner-foot {
    background-color: #C9F4FF;
    border: 1px solid #8ECF57;
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 0 40px 40px;
    position: relative;
    margin-top: -2px;
    flex-grow: 1;
}

.support-number {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 69px;
    background-image: url('images/img_bg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.9rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    color: #333;
    z-index: 10;
}
.support-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.support-content h3 {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0 0 16px;
}

.support-period {
    display: inline-block;
    background-color: #F2FF00;
    border-radius: 50px;
    padding: 6px 24px;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 30px;
    align-self: center;
}

.support-content p {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2;
    text-align: left;
    flex-grow: 1;
}

.notice {
    font-size: 1.4rem;
    margin-top: 1em;
}

/* スマートフォン表示の対応 */
/* ======================================== */
@media screen and (max-width: 768px) {
    .support-cards-container {
        grid-template-columns: 1fr;
        justify-items: center;
        margin-top: 40px;
        gap: 30px 0;
    }
    .support-card__inner-head {
        height: auto;
        padding-top: 31.6%;
        background-size: contain;
    }
    .support-card__inner-foot {
        padding: 0 20px 20px;
    }
}

/* ========================================
   セクション　会社概要
======================================== */
.company-content {
    background-color: #fff;
    border: 1px solid #8ECF57;
    border-radius: 15px;
    padding: 40px 60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.company-title-wrap {
    flex-basis: 202px;
    flex-shrink: 0;
}
.company-text-wrap {
    flex: 1;
}
dl.company-list {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
}
dl.company-list div {
    display: flex;
    align-items: flex-start;
    gap: 2em;
    margin-bottom: 1em;
}
dl.company-list dt {
    color: #8ECF57;
    text-align: right;
    flex-basis: 9em;
    flex-shrink: 0;
}
.text-indent {
    display: block;
    margin-left: 1em;
    text-indent: -1em;
}
@media (max-width:768px) {
    .company-content {
        padding: 20px;
        display: block;
    }
    .company-title-wrap {
        margin-bottom: 30px;
    }
    .company-text-wrap {
        width: 100%;
    }
}
@media (max-width:480px) {
    dl.company-list div {
        flex-direction: column;
        gap: 0;
    }
    dl.company-list div:last-of-type {
        margin-bottom: 0;
    }
    dl.company-list dt {
        text-align: right;
        flex-basis: auto;
    }
}

/* ========================================
   ■ラインナップページ
======================================== */
.key-visual-sub__text__lineup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
    border-radius: 9999px;
    padding: 13px 30px;
    line-height: 1;
    text-align: center;
    width: auto;
}
.key-visual-sub__text__lineup span {
    display: inline-block;
    color: #fff;
    font-size: clamp(3rem, 1.6vw + 2.4rem, 4rem);
    font-weight: 700;
    transform: translateY(-2px);
}

/* --------------------------------
 * 製品リストのレイアウト
 * -------------------------------- */
.product-list {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.product-list__column {
    flex: 1; /* 2つのカラムが均等な幅になる */
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 90px;
    margin-top: 100px;
}

/* 
 * 【重要】右カラムだけを上に引き上げる
 * :last-child で2番目（最後）のカラムを指定します。
*/
.product-list__column:last-child {
    /*
     * このマイナスの値で、右カラムが上に移動します。
     * 「タイトルの1行分の高さ」+「product-listのmargin-top」を
     * 目安に調整してください。(例: 1行60px + margin50px = -110px)
     * ブラウザで確認しながら、ちょうど良い位置になるよう数値を変更してください。
    */
    margin-top: -190px; /* ← ★★★この値を調整★★★ */
}

/* --------------------------------
 * 各製品アイテムの共通スタイル
 * -------------------------------- */
.product-item__link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.product-item__header {
    position: absolute;
    top: -36px;
    left: 0;
    z-index: 10;
}
.product-item__name {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 18px;
    font-size: clamp(1.8rem, 1.6vw + 1.2rem, 2.8rem);
    font-weight: 700;
    border-radius: 15px;
    margin: 0;
    border: 1px solid #8ECF57;
}

/* 【重要】画像のサイズを固定するスタイル */
.product-item__figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background-color: #f0f0f0;
    
    /* PCでの画像比率 480px × 348px をここで指定 */
    aspect-ratio: 480 / 348;
    border: 1px solid #8ECF57;
}
.product-item__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 比率を保ったまま領域を埋める */
    display: block;
    transition: transform 0.4s ease;
}
/* .product-item__link:hover img {
    transform: scale(1.05);
} */
.product-item__link:hover .lineup-card__arrow {
    background-color: #fff;
    color: #FFA857;
}

.product-item__body {
    position: relative;
    margin-top: -20px;
    z-index: 2;
}
.product-item__producer {
    display: inline-block;
    background-color: #fff;
    border: 1px solid #8ECF57;
    border-radius: 15px;
    padding: 0.4em 1.2em;
    font-size: clamp(1.4rem, 0.32vw + 1.28rem, 1.6rem);
    font-weight: 700;
    margin: 0 0 1em;
}
.product-item__description {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2;
}

/* --------------------------------
 * サイドナビゲーション
 * -------------------------------- */
 .side-nav ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
 }
.side-nav {
    position: fixed;
    top: 300px;
    right: 0;
    z-index: 100;
    opacity: 0; /* 初期状態では透明 */
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* 表示させるためのクラス */
.side-nav.is-visible {
    opacity: 1;
    visibility: visible;
}

.side-nav__item {
    display: block;
    background-color: #f39c12; 
    color: #fff; 
    
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 25px 12px;
    border-radius: 20px 0 0 20px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-align: center;
    
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; 
    border: 1px solid transparent;
}

/* サイドナビのボタン全体をホバーした時のスタイル */
.side-nav__item:hover {
    background-color: #fff;
    color: #f39c12;
    border-color: #f39c12;
}

/* サイドナビ内の矢印だけに適用する専用スタイル */
.side-nav__item .lineup-card__arrow {
    position: static;
    
    margin-top: 0.25em;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* 矢印のサイズ */
    width: 20px;
    height: 20px;

    /*【通常時】白丸背景 ＋ オレンジ矢印 */
    background-color: #fff;
    color: #FFA857;
    
    /* 【重要】ホバー時のガタつき防止のため、透明な罫線を設定 */
    border: 2px solid transparent;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

/* サイドナビのボタンをホバーした時、矢印の色と罫線を変更 */
.side-nav__item:hover .lineup-card__arrow {
    /*【ホバー時】オレンジ背景 ＋ 白矢印 */
    background-color: #FFA857;
    color: #fff;
    
    /* 【重要】ホバー時にオレンジの罫線を追加 */
    border-color: #FFA857;
}

/* 丸のサイズに合わせて、中のSVGアイコンも調整 */
.side-nav__item .lineup-card__arrow svg {
    width: 10px;
    height: 8px;
}


@media (max-width: 768px) {
    .product-list {
        display: block;
        margin-top: 30px;
    }
    .product-list__column {
        margin-bottom: 80px;
    }
    .product-list__column:last-child {
        margin-top: 0;
        margin-bottom: 0;
    }
    .side-nav {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
    }
    .side-nav ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        gap: 0;
    }
    .side-nav li {
        width: 100%;
    }
    .side-nav__item {
        display: flex;
        align-items: center;
        justify-content: center;
        writing-mode: horizontal-tb;
        text-orientation: normal;
        padding: 12px 12px;
        border-radius: 0;
        letter-spacing: 0;
        text-align: center;
    }
    .side-nav li:first-of-type .side-nav__item {
        border-right: 1px solid #fff;
    }
    .side-nav__item span {
        margin-right: 0.5em;
    }
}

/*================================================
セクション　NONDESING SERIES
=================================================*/
.series-item__body {
    margin-top: 1em;
}

/*================================================
セクション　WOODBOX SERIES
=================================================*/
/* --------------------------------
 * サムネイルのスタイル（追加）
 * -------------------------------- */
.product-item__thumbnail {
    position: absolute;
    top: -40px;
    right: -20px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #8ECF57; 

    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item__thumbnail img {
    width: 70%;
    height: 70%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .product-item__thumbnail {
        position: absolute;
        top: -40px;
        right: 0px;
        width: 100px;
        height: 100px;
    }
}


/* ========================================
   ラインナップ カテゴリーページ
======================================== */
.key-visual-sub__text_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transform: translateY(-50%);
    text-align: center; 
}
.key-visual-sub__product-item__name {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 18px;
    font-size: clamp(1.8rem, 1.6vw + 1.2rem, 2.8rem);
    font-weight: 700;
    border-radius: 15px;
    margin: 0;
    border: 1px solid #8ECF57;
}
.key-visual-sub__product-item__producer {
    display: inline-block;
    background-color: #fff;
    border: 1px solid #8ECF57;
    border-radius: 15px;
    padding: 0.4em 1.2em;
    font-size: clamp(1.4rem, 0.32vw + 1.28rem, 1.6rem);
    font-weight: 700;
    margin: 0 auto;
    text-align: center;
}

.section-lineup-category {
    padding-top: 45px;
}
.concept-detail__header {
    position: relative;
    z-index: 10;
}
.concept-detail__body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}
.concept-detail__text {
    flex: 1;
    min-width: 0;
    padding-top: 50px;
}
.concept-detail__text p {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2;
    margin-bottom: 2em;
}
/* 画像カラム（メディア） */
.concept-detail__media {
    width: 564px;
    flex-shrink: 0;
    margin-top: -190px;
    position: relative;
    min-height: 700px; 
}

/* 個々の画像（共通スタイル） */
.concept-detail__image {
    width: 450px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    border: 1px solid #F2FF00;
}

.concept-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 上の画像 */
.concept-detail__image--top {
    top: 0;
    left: 0;
    z-index: 2; 
}

/* 下の画像 */
.concept-detail__image--bottom {
    top: 350px;
    right: 0;
    z-index: 1;
}

@media (max-width: 768px) {
    .section-lineup-category {
        padding-top: 0;
    }
    .concept-detail__body {
        flex-direction: column;
    }

    .concept-detail__text {
        width: 100%;
        padding-top: 30px;
    }
    .concept-detail__text p {
        text-align: center;
    }
    .concept-detail__media {
        width: 100%;
        max-width: 450px;
        margin: 10px auto 0;
        position: relative;
        height: 550px;
        min-height: initial;
    }

    /* スマホでは%指定に戻す */
    .concept-detail__image {
        width: 90%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    .concept-detail__image--bottom {
        width: 90%;
        top: 40%;
    }
    
    .section-lineup-category .highlight {
        font-feature-settings: "palt";
    }
}

/* ========================================
   セクション　ラインナップ　カテゴリ　ポイント
======================================== */
.section-lineup-point .section-title {
    text-align: center;
}

.point-grid {
    margin: 50px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

/* Card Item */
.point-grid__item {
    max-width: 450px;
    margin: 0 auto;
}
.point-grid__media {
    position: relative;
    margin-bottom: 60px;
}
/* Image Area */
.point-grid__figure {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #8ECF57;
}

.point-grid__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 40 / 29;
}

/* Overlay Title */
.point-grid__title {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(50%);
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: clamp(2rem, 3.2vw + 0.8rem, 4rem);
    font-weight: 700;
    line-height: 1;
}

/* Text Area */
.point-grid__body {
    /* padding-top: 15px; */
}

.point-grid__description {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2;
}

@media (max-width: 768px) {
    .point-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .point-grid__media {
        margin-bottom: 40px;
    }
}

/* ========================================
   セクション　ラインナップ　カテゴリ　プラン
======================================== */
.section-ineup-plan .section-title {
    text-align: center;
    margin-bottom: 30px;
}

/* 1. Swiperを囲むワイドコンテナ */
.plan-slider-container {
    width: 1190px;
    max-width: 100%; /* 画面幅が1190pxより狭い場合のはみ出し防止 */
    margin-left: auto;
    margin-right: auto;
    position: relative; /* ナビゲーション矢印の基準点 */
}

/* 2. Swiperのメインコンテナ */
.plan-slider {
    /* swiper-slideがはみ出さないように隠す */
    overflow: hidden; 
}

.plan-slider__content {
    width: 976px; 
    margin: 0 auto;
}

/* 3. 各スライド内のスタイル */
.plan-slider__title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.plan-slider__figure {
    /* figureが持つデフォルトのmarginをリセット */
    margin: 0;
}

.plan-slider__image {
    display: block;
    width: 100%;
    height: auto;
}

.plan-slider__details {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 25px;
}
/* スマホ表示で改行させるため、区切り文字をspanで囲みPCでは非表示に */
.plan-slider__divider {
    display: inline-block;
    margin: 0 1em; /* PCでの区切りスペース */
}


/* 4. Swiper Navigation Arrows（矢印）のカスタムスタイル */
.plan-slider-container .swiper-button-prev,
.plan-slider-container .swiper-button-next {
    width: 100px;
    height: 100px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* color: #fff; Swiperの矢印アイコンの色 */
    transition: opacity 0.3s;
}
.plan-slider-container .swiper-button-prev:hover,
.plan-slider-container .swiper-button-next:hover {
    opacity: 0.7;
}

/* ★★★ 1. デフォルトの矢印アイコンを非表示にする ★★★ */
.plan-slider-container .swiper-button-prev::after,
.plan-slider-container .swiper-button-next::after {
    display: none;
}

/* ★★★ 2. 新しく追加したSVGのスタイルを指定 ★★★ */
.plan-slider-container .swiper-button-prev svg,
.plan-slider-container .swiper-button-next svg {
    width: 28px;   /* SVGの表示サイズ */
    height: 24px;
    color: #FFA857; /* SVGの色（stroke="currentColor" に反応）*/
    stroke: #FFA857;/* こちらでも可 */
}

/* 矢印の位置調整（コンテナの外側中央） */
.plan-slider-container .swiper-button-prev {
    left: 0;
}
.plan-slider-container .swiper-button-next {
    right: 0;
}

@media (max-width: 768px) {
    .plan-slider-container {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .plan-slider__content {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .plan-slider__title {
        font-size: 2rem;
    }
    .plan-slider__details {
        font-size: 1.3rem;
        line-height: 1.8;
    }
    /* スマホでは区切り文字を改行に */
    .plan-slider__divider {
        display: block;
        height: 0.5em; /* 改行のスペース */
        margin: 0;
    }

    /* スマホでは矢印を非表示にする（任意）*/
    .plan-slider-container .swiper-button-prev,
    .plan-slider-container .swiper-button-next {
        display: none;
    }
}

/* ========================================
   Swiper Pagination（カスタムスタイル）
======================================== */
.plan-slider-container .swiper-pagination {
    display: none;
}
@media (max-width:768px) {
    .plan-slider-container .swiper-pagination {
        display: block;
        position: static;
        margin-top: 15px;
    }

    /* 個々のドット（非アクティブ時） */
    .plan-slider-container .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: #ccc;
        opacity: 1;
        transition: background-color 0.3s;
    }

    /* アクティブなドット */
    .plan-slider-container .swiper-pagination-bullet-active {
        background-color: #8ECF57;
    }
}

/* ========================================
   セクション　イメージフォト
======================================== */
.section-image-gallery .section-title {
    text-align: center;
    margin-bottom: 54px;
}

/* 画像コンテナ（グリッド）
========================================== */
.image-gallery__container {
  display: grid;
  /* 2つのカラムを作成し、それぞれ同じ幅にする */
  grid-template-columns: repeat(2, 1fr);
  /* 行の高さを自動調整 */
  grid-auto-rows: auto;
  /* 画像間の余白 */
  gap: 20px;
}

.image-gallery__item {
  width: 100%;
  overflow: hidden; /* はみ出した画像を隠す */
  aspect-ratio: 4 / 3; /* 画像のアスペクト比を維持 */
}

/* 1枚目の大きい画像 */
.image-gallery__item.--large {
  /* 2カラム分の幅を使用 */
  grid-column: 1 / 3;
  /* アスペクト比を横長に調整 */
  aspect-ratio: 2 / 1;
}

/* 縦長の画像アイテム */
.image-gallery__item.--tall {
  /* 縦に2行分のスペースを確保 */
  grid-row: span 2;
  /* 高さが変わるのでアスペクト比は自動に任せる */
  aspect-ratio: auto;
}

/* すべての画像要素 */
.image-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* アスペクト比を保ったままアイテム領域を埋める */
  display: block; /* 画像下の余分な余白を削除 */
  border-radius: 20px;
}


@media (max-width: 768px) {
  .image-gallery__container {
    /* 1カラムレイアウトに変更 */
    grid-template-columns: 1fr;
  }

  .image-gallery__item.--large {
    /* 大きい画像の幅を1カラム分に戻す */
    grid-column: 1 / 2;
    /* アスペクト比を他の画像と同じにする */
    aspect-ratio: 4 / 3;
  }

    /* スマートフォン表示では縦長設定を解除 */
    .image-gallery__item.--tall {
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }
    
  .image-gallery__title {
    font-size: 1.5rem; /* スマートフォン用に少し小さく */
  }
}


.page-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    width: 90%;
    margin: 0 auto;
}

/*「戻る」ボタンはアイコンとテキストの順番を逆にする */
.btn-more.page-navigation__button--prev {
    flex-direction: row-reverse;
    border-radius: 24px 0 0 24px;
}
.btn-more.page-navigation__button--prev .btn-more__arrow {
    transform: rotate(180deg);
}

@media (max-width:768px) {
    .page-navigation {
        gap: 15px;
    }
    .page-navigation .btn-more {
        max-width: 190px;
        width: 50%;
    }
}
@media (max-width:430px) {
    .page-navigation .btn-more {
        font-size: 1.3rem;
    }
}

