@charset "UTF-8";

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    /* Colors */
    --color-main: #E67E22;
    /* 落ち着いたオレンジ */
    --color-main-light: #FDEBD0;
    --color-accent: #F1C40F;
    /* 黄色 */
    --color-brown: #5D4037;
    /* テキスト用ダークブラウン */
    --color-text: #4A4A4A;
    --color-bg: #FFFBF5;
    /* 温かみのあるオフホワイト */
    --color-white: #FFFFFF;

    /* Typography */
    --font-base: "Noto Sans JP", sans-serif;
    --line-height-base: 1.8;
    --letter-spacing-base: 0.08em;

    /* Spacing */
    --spacing-section-pc: 120px;
    --spacing-section-sp: 80px;

    /* Layout */
    --width-container: 1080px;
    --header-height: 80px;
}

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

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

body {
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: var(--line-height-base);
    letter-spacing: var(--letter-spacing-base);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s, color 0.3s;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul,
ol {
    list-style: none;
}

/* Common Layout */
.container {
    max-width: var(--width-container);
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.section {
    margin-bottom: var(--spacing-section-pc);
}

@media (max-width: 767px) {
    .section {
        margin-bottom: var(--spacing-section-sp);
    }
}

/* Helper Class: Center */
.center {
    text-align: center;
}

/* Section Title (Unified Centering) */
.section-title {
    margin-bottom: 60px;
    text-align: center;
    /* テキスト中央揃え */
    width: 100%;
    /* 全幅確保 */
    display: block;
    /* ブロック要素として扱う */
}

.section-title img {
    width: 500px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.section-title__text {
    font-size: 1.5rem;
    color: var(--color-brown);
    font-weight: 700;
}

.section-title--white .section-title__text {
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-main), #F39C12);
    color: var(--color-white);
}

.btn--tel {
    background-color: var(--color-white);
    color: var(--color-main);
    border: 2px solid var(--color-main);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header__inner {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo a {
    display: flex;
    flex-direction: column;
    color: var(--color-brown);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
}

.header__sub-logo {
    font-size: 0.75rem;
    font-weight: 400;
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__list {
    display: flex;
    margin-right: 30px;
}

.header__item {
    margin-left: 25px;
}

.header__item a {
    font-size: 0.95rem;
    color: var(--color-brown);
    position: relative;
}

.header__item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-main);
    transition: width 0.3s;
}

.header__item a:hover::after {
    width: 100%;
}

.header__btn {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1002;
}

.hamburger-menu__bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-brown);
    transition: all 0.3s;
}

.hamburger-menu__bar:nth-child(1) {
    top: 0;
}

.hamburger-menu__bar:nth-child(2) {
    top: 11px;
}

.hamburger-menu__bar:nth-child(3) {
    bottom: 0;
}

.hamburger-menu.active .hamburger-menu__bar:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}

.hamburger-menu.active .hamburger-menu__bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-menu__bar:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 11px;
}

/* SP Nav */
.sp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
}

.sp-nav.active {
    right: 0;
}

.sp-nav__list {
    text-align: center;
}

.sp-nav__item {
    margin: 20px 0;
}

.sp-nav__item a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-brown);
}

@media (max-width: 767px) {
    .header__nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }
}

/* ==========================================================================
   FV (Responsive Height Adjustment)
   ========================================================================== */
.fv {
    /* height: 100vh;  <- 削除: 画像比率に合わせる */
    width: 100%;
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
    margin-top: var(--header-height);
    /* 固定ヘッダー分下げる */
}

.fv-swiper {
    width: 100%;
    height: auto;
    /* 高さは自動 */
}

.fv-swiper .swiper-slide {
    width: 100%;
    height: auto;
}

.fv-swiper img {
    display: block;
    /* 隙間対策 */
    width: 100%;
    height: auto;
    /* アスペクト比維持 */
    /* object-fit: cover; <- 削除: アスペクト比維持のため不要 */
}

.fv__scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    animation: scrollDown 2s infinite;
}

.fv__scroll-down::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: #fff;
    margin: 10px auto 0;
}

@keyframes scrollDown {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, 10px);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background-color: var(--color-main-light);
    padding: 60px 0;
    text-align: center;
    margin-bottom: var(--spacing-section-pc);
}

.cta-section__text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-brown);
    margin-bottom: 30px;
}

.cta-section__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .cta-section {
        padding: 40px 20px;
        margin-bottom: var(--spacing-section-sp);
    }

    .cta-section__buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================================================
   TV (Trouble) & Service Common Background
   ========================================================================== */
.section-bg {
    position: relative;
    background-image: url('../img/img_15_recommend_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

.section-bg2 {
    position: relative;
    background-image: url('../img/img_15_service_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

/* 背景画像個別指定 */
#voice.section-bg {
    background-image: url('../img/bg_voice.jpg');
    /* プレースホルダー */
}

#staff.section-bg {
    background-image: url('../img/bg_staff.jpg');
    /* プレースホルダー */
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    /* 白の透過オーバーレイ（デフォルト） */
    z-index: 1;
}

.section-bg2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    /* 白の透過オーバーレイ（デフォルト） */
    z-index: 1;
}


/* Voice, Staffは少し透明度を下げるかもしくはそのまま */
#voice.section-bg::before,
#service.section-bg2::before,
#staff.section-bg::before {
    background-color: rgba(255, 255, 255, 0.4);
    /* 指定の 0.85 */
}

.section-bg,
.section-bg2,
.container {
    position: relative;
    z-index: 2;
}

/* 有機的なパス（Shape Divider） */
.shape-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.shape-divider--top {
    top: -1px;
    transform: rotate(180deg);
}

.shape-divider--bottom {
    bottom: -1px;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
    /* 動きを分かりやすくするため高さを調整 */
    transform: scaleX(1.02);
    /* 左右の隙間を埋める */
}

.shape-divider .shape-fill {
    fill: var(--color-bg);
}

/* TV Specific */
.tv__content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tv__image {
    width: 45%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tv__text-box {
    width: 55%;
}

.tv__list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--color-main);
    padding-bottom: 10px;
}

.check-mark {
    color: var(--color-main);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
}

.tv__message {
    margin-top: 30px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    line-height: 2;
}

@media (max-width: 767px) {
    .section-bg {
        padding: 50px 0;
    }

    .section-bg2 {
        padding: 50px 0;
        background-position: left center;
    }

    .tv__content {
        flex-direction: column;
    }

    .tv__image,
    .tv__text-box {
        width: 100%;
    }
}

/* ==========================================================================
   About / Message (Simple 2 Column - No Overlap)
   ========================================================================== */
.broken-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0;
}

/* 画像 30% */
.broken-grid__image {
    width: 30%;
    z-index: 1;
}

.broken-grid__image img {
    width: 100%;
    border-radius: 0;
    /* 角丸なし */
    box-shadow: none;
    /* シャドウなし */
    display: block;
}

/* テキスト 70% */
.broken-grid__content {
    width: 70%;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    z-index: 2;
}

/* 重なり（ネガティブマージン）を廃止 */
.broken-grid--right .broken-grid__content,
.broken-grid--left .broken-grid__content {
    margin: 0;
}

/* 左右反転 */
.broken-grid--left {
    flex-direction: row-reverse;
}

.broken-grid__title {
    font-size: 1.5rem;
    color: var(--color-main);
    margin-bottom: 20px;
    border-left: 5px solid var(--color-main);
    padding-left: 15px;
}

.broken-grid__text {
    font-size: 1rem;
    line-height: 2;
}

@media (max-width: 767px) {
    .broken-grid {
        flex-direction: column;
        gap: 20px;
    }

    .broken-grid--left {
        flex-direction: column;
    }

    .broken-grid__image,
    .broken-grid__content {
        width: 100%;
        margin: 0;
    }

    /* SP時は画像が上に来るように強制 */
    .broken-grid__image {
        order: 1;
    }

    .broken-grid__content {
        order: 2;
    }

    .broken-grid__content {
        padding: 0;
    }

    .broken-grid__image img {
        box-shadow: none;
    }
}

/* ==========================================================================
   Service (Zigzag Layout)
   ========================================================================== */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* 偶数番目は反転（画像右、テキスト左） */
.service-block:nth-child(even) {
    flex-direction: row-reverse;
}

.service-block__img {
    width: 45%;
}

.service-block__img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-block__content {
    width: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-block__title {
    font-size: 1.4rem;
    color: var(--color-brown);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-block__title::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--color-accent);
    border-radius: 50%;
    margin-right: 12px;
}

.service-block__desc {
    font-size: 1rem;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .service-list {
        gap: 40px;
    }

    .service-block,
    .service-block:nth-child(even) {
        flex-direction: column;
        /* SPは常に画像上 */
        gap: 20px;
    }

    .service-block__img,
    .service-block__content {
        width: 100%;
    }
}

/* ==========================================================================
   Gallery (Grid for PC / Horizontal Scroll for SP)
   ========================================================================== */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    /* PC: Grid-like layout */
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    width: calc(33.333% - 20px);
    /* 3列 */
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SP Layout: Horizontal Scroll (Carousel) */
@media (max-width: 767px) {
    .gallery-grid {
        flex-wrap: nowrap;
        /* 折り返し禁止 */
        overflow-x: auto;
        /* 横スクロール有効 */
        justify-content: flex-start;
        /* 左詰め */
        scroll-snap-type: x mandatory;
        /* スクロールスナップ */
        padding-bottom: 20px;
        /* スクロールバー余白 */
        -webkit-overflow-scrolling: touch;
        /* iOS慣性スクロール */
    }

    .gallery-item {
        flex: 0 0 80%;
        /* 画面幅の80%にして次のカードを見切れさせる */
        width: auto;
        /* 幅計算のリセット */
        scroll-snap-align: center;
        /* 中央にスナップ */
        margin-right: 0;
    }

    /* 最初のアイテムの余白調整 */
    .gallery-item:first-child {
        margin-left: 10px;
    }

    .gallery-item:last-child {
        margin-right: 10px;
    }
}

/* ==========================================================================
   Recommend (Parallax)
   ========================================================================== */
#recommend {
    background-image: url('../img/img_15_recommend_bg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 400px;
    margin-bottom: 150px;
}

@media (hover: none) and (pointer: coarse) {
    #recommend {
        background-attachment: scroll;
    }
}

.recommend__overlay {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-text);
    padding: 60px 20px;
}

.recommend__content {
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
}

/* メモ帳のテープ風装飾 */
.recommend__content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 120px;
    height: 40px;
    background-color: rgba(241, 196, 15, 0.5);
    /* マスキングテープ風 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.recommend__title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-main);
    font-weight: 700;
}

.recommend__text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-text);
    text-align: center;
}

/* ==========================================================================
   Price (Center Cards)
   ========================================================================== */
.price__grid {
    display: grid;
    /* Gridに変更 */
    grid-template-columns: 1fr;
    /* Default 1カラム */
    gap: 30px;
    justify-content: center;
}

@media (min-width: 768px) {
    .price__grid {
        grid-template-columns: repeat(2, 1fr);
        /* PC: 2カラム */
        max-width: 800px;
        /* 適度に幅制限 */
        margin: 0 auto;
    }
}

.price__card {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.price__card:hover {
    transform: translateY(-5px);
}

.price__img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.price__info {
    padding: 25px;
    text-align: center;
}

.price__name {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-brown);
}

.price__cost {
    font-size: 1.5rem;
    color: var(--color-main);
    font-weight: 700;
    margin-bottom: 15px;
}

.price__cost span {
    font-size: 0.9rem;
    color: #999;
}

.price__desc {
    font-size: 0.9rem;
    text-align: left;
    color: #666;
}

/* ==========================================================================
   Voice
   ========================================================================== */
.voice__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.voice__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.voice__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: -40px;
    z-index: 2;
}

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

.voice__balloon {
    background: #fff;
    padding: 60px 30px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    width: 100%;
}

.voice__name {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #999;
    text-align: right;
}

/* ==========================================================================
   Staff
   ========================================================================== */
.staff__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.staff__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.staff__icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: -50px;
    z-index: 2;
}

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

.staff__balloon {
    background: #fff;
    padding: 70px 30px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    width: 100%;
}

.staff__name {
    font-size: 1.25rem;
    color: var(--color-brown);
    margin-bottom: 5px;
}

.staff__position {
    font-size: 0.9rem;
    color: var(--color-main);
    display: block;
    margin-bottom: 15px;
}

.staff__comment {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   Contact / Access
   ========================================================================== */
.contact {
    background-color: var(--color-white);
    padding-bottom: 0;
}

.contact__content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 60px;
}

.contact__info {
    width: 40%;
    padding-right: 40px;
}

.contact__map {
    width: 60%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.contact__map iframe {
    height: 100%;
}

.contact__address p {
    margin-bottom: 15px;
}

/* SNS Text Buttons */
.contact__sns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.sns-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s;
    background-color: #fff;
    border: 2px solid #ddd;
    color: var(--color-text);
    min-width: 100px;
}

.sns-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 各SNSカラー（アクセント） */
.sns-btn--insta {
    border-color: #C13584;
    color: #C13584;
}

.sns-btn--insta:hover {
    background-color: #C13584;
    color: #fff;
}

.sns-btn--x {
    border-color: #000;
    color: #000;
}

.sns-btn--x:hover {
    background-color: #000;
    color: #fff;
}

.sns-btn--line {
    border-color: #06C755;
    color: #06C755;
}

.sns-btn--line:hover {
    background-color: #06C755;
    color: #fff;
}

@media (max-width: 767px) {
    .contact__content {
        flex-direction: column;
    }

    .contact__info,
    .contact__map {
        width: 100%;
    }

    .contact__info {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .contact__sns {
        justify-content: center;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--color-brown);
    color: var(--color-white);
    padding: 20px 0 80px;
    /* SPのCTA分空ける */
}

@media (min-width: 768px) {
    .footer {
        padding-bottom: 20px;
    }
}

.footer__copyright {
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer__nav {
    margin-bottom: 30px;
}

.footer__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__item a {
    font-size: 0.9rem;
    color: var(--color-white);
    opacity: 0.8;
}

.footer__item a:hover {
    opacity: 1;
}

/* ==========================================================================
   Fixed Elements
   ========================================================================== */
/* Page Top */
.page-top {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

@media (min-width: 768px) {
    .page-top {
        bottom: 30px;
    }
}

.page-top.active {
    opacity: 1;
    pointer-events: auto;
}

.page-top a {
    display: block;
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    color: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Utility: SP Only (Moved before .fixed-cta) */
.sp-only {
    display: block;
}

@media (min-width: 768px) {
    .sp-only {
        display: none !important;
    }
}

/* SP Fixed CTA */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    /* Flexboxで横並び */
    flex-direction: row;
    /* 横方向 */
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.fixed-cta__btn {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    background-color: var(--color-main);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.fixed-cta__btn--tel {
    background-color: var(--color-main);
}

/* ==========================================================================
   Modal
   ========================================================================== */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80vh;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}