@charset "UTF-8";

/* ========================================
   Base & Reset
   ======================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Noto Sans JP", sans-serif, "Meiryo", sans-serif;
    color: #333;
    line-height: 1.8;
    background-color: #fff;
}

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

/* ========================================
   Layout Settings
   ======================================== */
.l-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    width: 100%;
    height: auto;
    /* スマホは画像比率に合わせる */
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
}

.hero__visual {
    width: 100%;
    position: relative;
    font-family: "Kosugi Maru", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.hero__img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
}

.hero__label-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px;
    text-align: center;
    border-radius: 4px;
}

.hero__label-sub,
.hero__label-main {
    display: block;
    color: #1a6d3c;
    font-weight: bold;
}

.hero__label-sub {
    font-size: 1rem;
}

.hero__label-main {
    font-size: 1.5rem;
}

/* ========================================
   Fixed Contact Button
   ======================================== */
.fixed-contact {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
}

.fixed-contact__link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffeb00;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
    width: 60px;
    height: 60px;
}

.fixed-contact__icon {
    font-size: 28px;
}

.fixed-contact__text {
    display: none;
}

/* ========================================
   Common Components
   ======================================== */
.c-section {
    margin-top: 40px;
}

.c-heading {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    font-family: "Kosugi Maru", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.c-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #1a6d3c;
}

/* ========================================
   Intro Section
   ======================================== */
.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.intro-content__logo {
    max-width: 200px;
}

.intro-content__text {
    font-size: 16px;
    text-align: justify;
}

/* ========================================
   Property Info Section
   ======================================== */
.property-info__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-list {
    margin-bottom: 24px;
}

.info-list dt {
    font-weight: bold;
    color: #1a6d3c;
    font-size: 0.9rem;
    margin-top: 12px;
}

.info-list dd {
    font-size: 1rem;
    padding-bottom: 8px;
    border-bottom: 1px dotted #ccc;
}

.target-box {
    background: #f2f8f2;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #1a6d3c;
}

.target-box__title {
    font-size: 1.1rem;
    color: #1a6d3c;
    margin-bottom: 12px;
    font-weight: bold;
}

.target-box p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.target-box__list {
    list-style: none;
}

.target-box__list li {
    font-size: 0.85rem;
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 8px;
}

.target-box__list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #1a6d3c;
}

/* ========================================
   Floorplan Section
   ======================================== */
.floorplan {
    text-align: center;
}

.floorplan__wrapper {
    display: inline-block;
}

/* ========================================
   Property Outline Table
   ======================================== */
.property-outline__table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #1a6d3c;
}

.property-outline__row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ddd;
}

.property-outline__heading {
    background-color: #f2f8f2;
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    color: #1a6d3c;
}

.property-outline__data {
    padding: 15px;
    font-size: 14px;
    background-color: #fff;
}

.property-outline__note {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

/* ========================================
   CTA Button Section
   ======================================== */
.cta-container {
    text-align: center;
    margin-top: 40px;
}

.c-btn-primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffeb00;
    color: #333;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 100px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.c-btn-primary:hover {
    background-color: #f7e100;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.c-btn-primary__sub {
    font-style: 1rem;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.c-btn-primary__main {
    font-size: 1rem;
    line-height: 1.2;
}

/* ========================================
   Location Section
   ======================================== */
.location__grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location__iframe-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    /* 4:3 */
    background: #f0f0f0;
}

.location__iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border-radius: 4px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 60px 0 30px;
    margin-top: 40px;
    border-top: 2px solid #1a6d3c;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer__logo {
    max-width: 250px;
}

.footer__info {
    font-size: 15px;
    color: #333;
}

.footer__tel,
.footer__fax {
    display: block;
}

.footer__copyright {
    font-size: 12px;
    color: #888;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}


/* ========================================
   Footer Contact Buttons 
   ======================================== */
.footer__contact-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0 auto;
}

.footer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.2s, opacity 0.2s;
}

.footer__btn:active {
    transform: scale(0.98);
}

.footer__btn--tel {
    background-color: #ffeb00;
    color: #333;
}

.footer__btn--mail {
    background-color: #1a6d3c;
    color: #fff;
}



/* ========================================
   Media Queries (PC)
   ======================================== */
@media (min-width: 768px) {
    .sp-only {
        display: none;
    }

    .c-section {
        margin-top: 60px;
    }

    /* Hero PC */
    .hero {
        height: 100vh;
    }

    .hero__visual {
        height: 100%;
    }

    .hero__img {
        height: 100%;
        object-fit: cover;
    }

    .hero__label-main {
        font-size: 2.5rem;
    }

    .hero__label-sub {
        font-size: 1.5rem;
    }

    /* Fixed Contact PC */
    .fixed-contact__link {
        width: auto;
        padding: 15px 25px;
        border-bottom-left-radius: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .fixed-contact__icon {
        display: inline-block !important;
        font-size: 20px;
    }

    .fixed-contact__text {
        display: inline;
        font-weight: bold;
        font-size: 16px;
    }

    /* Layout PC */
    .intro-content {
        flex-direction: row;
        gap: 40px;
    }

    .property-info__grid {
        flex-direction: row;
        gap: 40px;
        align-items: center;
    }

    .property-info__image,
    .property-info__content {
        flex: 1;
    }

    /* Floorplan PC */
    .floorplan__wrapper img {
        width: 50%;
        margin: 0 auto;
    }

    /* Table PC */
    .property-outline__row {
        flex-direction: row;
    }

    .property-outline__heading {
        width: 280px;
        border-right: 1px solid #ddd;
    }

    .property-outline__data {
        width: calc(100% - 280px);
    }

    /* Location PC */
    .location__grid {
        flex-direction: row;
        gap: 20px;
    }

    .location__map,
    .location__view {
        flex: 1;
    }

    .location__iframe-wrapper {
        padding-top: 56.25%;
        /* 16:9 */
    }

    /* Footer PC */
    .footer__contact-actions {
        flex-direction: row;
        /* PCでは横並び */
        max-width: 600px;
    }

    .footer__btn {
        flex: 1;
        /* ボタンを均等な幅にする */
    }

    .footer__btn:hover {
        opacity: 0.8;
        transform: translateY(-2px);
    }
}