@charset "utf-8";


/* COMMON */


/* .inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */



/* .montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */



html,
body {
    font-family: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #212121;
    font-weight: 500;
    overflow-x: hidden;
    overflow-y: auto;
    /* ←これを明示すると安心 */
    margin: 0;
    padding: 0;
    /* background-color: #eae6e0; */
    color: #2c2c2c;
}


/* * {
    outline: 1px solid rgba(255, 0, 0, .2);
} */

@media (max-width: 768px) {}

@media (max-width: 375px) {}



body {
    padding-top: 95px;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

html {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #212121;
}

li {
    list-style: none;
}

h1 {
    margin: 0;
    padding: 0;
}

h2 {
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

p {
    margin: 0;
    padding: 0;

}

ul {
    padding: 0;
    margin: 0;
}



/* HEADER */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* ←これ追加 */
    width: auto;
    /* ←100%をやめる */
    background-color: rgba(255, 170, 170, 0.8);
    /* background-color: rgba(228, 0, 101,0.7); */
    z-index: 999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    /* margin-top:95px に合わせるなら固定 */
}



.header-nav {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav a {
    display: block;
    padding: 10px 8px;
    line-height: 1;
    color: #212121;
}


.header-logo {
    width: 100px;


}

.header-logo img {
    height: 40px;
    /* ここでサイズ管理が安定 */
    width: auto;
    display: block;
}

/* ハンバーガーメニュー */

.nav-toggle {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}



/* ====== PC（デフォルト） ====== */

/* ハンバーガーはPCでは消す */
.nav-toggle {
    display: none;
}

/* PCのnavは普通に表示（横並び） */
.global-nav {
    position: static;
    background: transparent;
    padding: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
}

/* overlayはPCでは不要 */
.nav-overlay {
    display: none;
}




/* ====== スマホ（768px以下） ====== */
@media (max-width: 768px) {

    /* ハンバーガー表示 */
    .nav-toggle {
        display: grid;
        place-content: center;
        gap: 6px;
        width: 44px;
        height: 44px;
        background: transparent;
        border: 0;
        padding: 0;
        cursor: pointer;
        position: relative;
        z-index: 10000;
    }

    .nav-toggle__bar {
        width: 22px;
        height: 2px;
        background: #fff;
        display: block;
        border-radius: 999px;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    /* ×に変形 */
    .nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* メニュー（スライド表示） */
    .global-nav {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;

        height: calc(100vh - 75px);
        background: rgba(255, 170, 170, 0.95);

        /* ✅中央寄せの主役 */
        display: flex;
        align-items: center;
        /* 縦方向の中央 */
        justify-content: center;
        /* 横方向の中央（左寄せなら消す） */

        padding: 0;
        /* ←16px 0 があるとズレるので消す */
        overflow-y: auto;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
        z-index: 9000;
    }

    .global-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* スマホ時のnav中身は縦並びに */
    .global-nav .header-nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        margin: 0;
        padding: 0;
        /* 横中央（これが“文字中央”の決め手） */
    }

    .global-nav a {
        display: block;
        padding: 14px 10px;
        text-align: center;
    }

    .header-nav {
        margin: 0;
        padding: 0 16px;

        display: flex;
        flex-direction: column;

        justify-content: center;
        /* ← 縦方向の中央 */
        gap: 32px;
        /* ← 行間（世界観調整） */

        height: 100%;

    }


    /* overlay */
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.25);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
        z-index: 8000;
    }

    body.is-menu-open {
        overflow: hidden;
    }

    body.is-menu-open .nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }
}




/* CONTENT */

#content {
    position: relative;
    z-index: 10;
    margin-top: 100vh;
    background: #fff;
    /* かぶさる部分を白に */
    margin-top: 100vh;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.12);
    padding-top: 40px;
    background-color: #eae6e0;
}

/* MAIN-VISUAL */

#main-visual {
    position: relative;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    min-height: 100vh;
    overflow: visible;
}




.main-visual {
    background-position: center;
    background-size: cover;
    max-width: 100%;
    height: 100vh;
    margin-bottom: 80px;
    overflow: hidden;
    position: absolute;
    inset: 0;
    /* top:0 right:0 bottom:0 left:0 */
    z-index: 1;

}

/* 固定を効かせたい“範囲” */
#hero-wrap {
    position: relative;
    height: 100vh;
    /* 1画面分だけ固定する */
    z-index: 0;
}




#main-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 2;
}


.main-visual-copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff;
    text-align: center;

}

.main-visual-copy01 {
    font-size: 40px;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.main-visual-copy02 {
    margin-top: 12px;
    font-size: 20px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

.sp-br {
    display: none;
}





@media (max-width: 768px) {

    .main-visual-copy01 {
        font-size: clamp(25px, 7vw, 40px);
        font-weight: 700;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        white-space: normal;
        letter-spacing: 0.05em;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 40px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .main-visual-copy02 {
        font-size: 20px;
        text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
        text-align: center;
        line-height: 1.5;
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    }

    .sp-br {
        display: inline !important;
    }
}


/* MAINVISUAL-BOTTON */

.main-visual-btn {
    display: flex;
    justify-content: space-around;
    gap: 50px;
    align-items: center;
    margin-bottom: 90px;
    margin-top: 90px;
    position: relative;
    z-index: 3;
}


/* ABOUT US */


/* Mission→Visionを“ちょい遅れ”で気持ちよく */
.reveal:nth-child(2) {
    transition-delay: 180ms;
}

.aboutus-img.reveal {
    transform: translateY(22px) scale(0.98);
}

.aboutus-img.reveal.is-visible {
    transform: translateY(0) scale(1);
}



/* 左テキスト塊 */
.aboutus-message {
    padding: 20px 0;
    max-width: 560px;
}

/* 見本の大きい見出し */
.aboutus-head {
    font-size: clamp(56px, 6vw, 92px);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #555;
    margin: 0 0 14px;
}

/* キャッチ（短く太く） */
.aboutus-catch {
    font-size: 22px;
    font-weight: 600;
    color: #555;
    margin: 0 0 18px;
}

/* 説明文（小さめ＋行間） */
.aboutus-desc {
    font-size: 14px;
    line-height: 2.3;
    color: #777;
    margin-bottom: 18px;
}

/* Mission / Vision 全体 */
.mv {
    margin: 28px 0 34px;
    max-width: 520px;
}

/* 各ブロック */
.mv-item {
    padding: 18px 0;
}

/* 区切り線 */
.mv-divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.12);
}

/* Mission / Vision ラベル */
.mv-label {
    margin: 0 0 10px;
    font-size: 40px;
    font-weight: 700;
    color: #f66;
    /* アクセントカラー */
    letter-spacing: 0.04em;
}

/* 本文 */
.mv-text {
    margin: 0;
    font-size: 15px;
    line-height: 2.1;
    color: #555;
}



/* まるいボタン（見本寄せ） */
.aboutus-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #3f4349;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    width: fit-content;
}

.aboutus-btn-icon {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.aboutus-btn:hover {
    transform: translateY(-2px);
    transition: transform .2s ease;
}


.aboutus-message .reveal:nth-of-type(1) {
    transition-delay: 0ms;
}

.aboutus-message .reveal:nth-of-type(2) {
    transition-delay: 120ms;
}

.aboutus-message .reveal:nth-of-type(3) {
    transition-delay: 240ms;
}

.aboutus-message .reveal:nth-of-type(4) {
    transition-delay: 360ms;
}

@media (max-width: 768px) {
    .mv {
        grid-template-columns: 1fr;
    }
}

.aboutus-collage {
    position: relative;
    height: 460px;
}

/* コラージュ全体をふわっと */
/* コラージュ全体をふわっと（これだけ残す） */
.aboutus-collage.reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 850ms ease, transform 850ms ease;
    will-change: opacity, transform;
}

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



/* 写真共通 */
.photo {
    position: absolute;
    object-fit: cover;
    border-radius: 80%;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
    filter: saturate(0.95) brightness(1.03);
}

/* 中央のメイン写真 */
.photo-main {
    width: 40%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* 右上の小さな写真 */
.photo-top {
    width: 20%;
    height: auto;
    top: 0;
    right: 0;
    z-index: 3;
}

/* 左下の写真 */
.photo-bottom {
    width: 25%;
    height: 50%;
    bottom: 0;
    left: 0;
    z-index: 1;
    object-position: 40% 65%;

}

.aboutus-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

/* 左：文章を広めに */
.aboutus-message {
    flex: 1;
    max-width: 620px;
}

/* 右：矢印ボタンを右に固定 */
.aboutus-btn {
    flex: 0 0 auto;
    align-self: center;
    /* ←矢印を縦中央に */
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #3f4349;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.aboutus-btn-icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.photo {
    display: block;
}




/* MISSION/VISION */

.mv.reveal {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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



/* 画像は最初、透明＋ぼかし（位置ズレなし） */
.aboutus-collage .photo {
    opacity: 0;
    filter: blur(8px) brightness(1.08);
    transition: opacity 650ms ease, filter 650ms ease;
}

/* 親が表示されたら画像も表示 */
.aboutus-collage.is-visible .photo {
    opacity: 1;
    filter: blur(0) brightness(1.03);
}

/* 1枚ずつ遅延 */
.aboutus-collage.is-visible .photo-main {
    transition-delay: 180ms;
}

.aboutus-collage.is-visible .photo-top {
    transition-delay: 360ms;
}

.aboutus-collage.is-visible .photo-bottom {
    transition-delay: 540ms;
}


.aboutus-collage {
    margin-bottom: 100px;
}



@media (max-width: 768px) {

    /* 親を「普通の並び」にする */
    .aboutus-collage {
        height: auto;
        /* 固定高さを解除 */
        margin-bottom: 64px;
        /* 任意で調整 */
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 70px;
        position: static;

    }


    .aboutus-collage .photo {
        position: static;
        /* ←重なりの主犯を止める */
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;

        width: min(78vw, 320px);
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 50%;
        display: block;

        /* 影は好みで */
        /* box-shadow: 0 12px 28px rgba(0,0,0,.12); */
    }
}





/* ANXIOUS */

#anxious {
    overflow-x: hidden;
}

.anxious01 {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    /* ←文章を少し広め */
    gap: 30px;
    align-items: center;
    margin-bottom: 150px;
}

.main-subtitle {
    text-align: center;
    line-height: 1.9;
    color: #555;

}

.main-title {
    font-size: clamp(56px, 6vw, 92px);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #555;
    margin: 0 0 14px;
    text-align: center;
}





.anxious01-text p {
    font-size: 20px;
    font-weight: 600;
    color: #555;
    margin-bottom: 30px;
    text-align: left;
    margin: 0 0 16px;

}

.anxious01-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    text-align: left;
    width: 100%;
    max-width: none;
}

/* 初期状態 */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.8s ease-out,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.1s;
}

/* 表示された状態 */
.fade-up.is-show {
    opacity: 1;
    transform: translateY(0);
}

.anxious-heading {
    font-size: 20px;
    font-weight: 600;
    color: #555;
    margin: 0 0 16px;

}

.anxious01-1-list {


    line-height: 1.6em;
    width: 100%;
    margin: 0;
    /* autoは不要 */
    padding-left: 1.2em;
    /* ●用の余白 */
    list-style-position: outside;
    max-width: none;
    /* 念のため制限解除 */
    white-space: normal;
    /* 折り返しは許可 */
}


.anxious01-1-list li {
    list-style-type: disc;
    margin-left: 0;
    /* ←消す */
    line-height: 2.5em;
    font-size: 16px;
    color: #555;
    display: grid;
    grid-template-columns: 1em 1fr;
    /* ← 横並び */
    align-items: start;
    /* ← 上揃え（重要） */
    font-weight: 400;

}

.anxious01-1-list li::before {
    content: "・";
    color: #555;
    /* ピンク系で統一しても◎ */
    font-weight: 600;
}


.anxious01-title {
    font-size: 45px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 50px;
    margin-top: 50px;
    letter-spacing: 0.06em;
    color: #555;
}

.anxious01-1-img {
    display: flex;
    justify-content: center;
    align-items: center;
}


.anxious01-1-img img {
    transition: transform 0.6s ease, filter 0.6s ease;
    width: min(420px, 80%);
    display: block;
    margin: 0;
    transform-origin: center;
    width: min(420px, 60%);
    margin: 0;
    /* ← margin-leftを殺す */

}


.anxious01-1-img:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}


@media (max-width: 768px) {
    .anxious01 {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: center;
        margin-bottom: 150px;
    }

    .anxious01-text .anxious-heading {
        font-size: 20px;
        font-weight: 600;
        color: #555;
        margin: 0 0 16px;
        white-space: nowrap;

    }


    .anxious01-title {
        font-size: 40px;
        font-weight: bold;
        font-family: "Montserrat", sans-serif;
        margin-bottom: 20px;
        margin-top: 100px;
        letter-spacing: 0.06em;
        color: #555;
        text-align: center;
    }

    .anxious01-1-list {
        margin: 0;
        padding: 0;
        list-style-position: inside;
        display: inline-block;
        text-align: left;
    }

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

    .anxious01-1-img {
        justify-self: center;
        /* grid内で中央寄せ */
    }

}


/* SERVIOUS */

.services01 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 50px;
}

.services-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-top: 8px;
}

.services-text {
    padding: 0 8px;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

.main-subtitle02 {
    text-align: center;
    padding-bottom: 20px;
    font-size: 20px;
    margin-bottom: 100px;
}

.services01-1 {
    text-align: center;
    justify-self: center;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    /* border: 2px solid #5d00ff; */

}




.service-img {
    width: 260px;
    /* ← 枠の大きさ */
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    /* ← はみ出しカット */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    /* 中央寄せ */
    margin-bottom: 40px;
}


.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    object-position: 50% 30%;
    max-width: 100%;
    display: block;

}

@media (max-width: 768px) {
    .services01 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px 40px;
        margin-bottom: 100px;

    }

}



/* REASON */

.reason-circle {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle at center,
            #ffffff 0%,
            #ffe2db 50%,
            #ffb6a5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    font-weight: 600;
    color: #df8989;
    flex-shrink: 0;

    transform: scale(1);
    transition: transform 120ms linear;
    /* 小刻み更新でもカクつきにくい */
    will-change: transform;
}





/* 共通：透明だけ */
.reveal {
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
}

/* 方向別に “transform” を持たせる */
.from-left {
    transform: translateX(-30px);
}

.from-right {
    transform: translateX(30px);
}

.from-up {
    transform: translateY(20px);
}

/* 表示時 */
.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reason-item .reason-text {
    transition-delay: 160ms;
}

.reason-item {
    min-height: 50vh;
    /* 画面の高さ分 */
    display: flex;
    align-items: center;
    /* 縦中央 */
    justify-content: center;
    /* 横中央 */
    transform: scale(var(--scale, 1));
    transform-origin: center center;
    will-change: transform;
    transition: none;
    gap: 48px;
}



.reason-text {
    font-size: 18px;
}

.reason-text-title {
    font-weight: 600;
    font-size: 25px;
    padding-bottom: 5px;
}

#reason {
    margin-bottom: 150px;

}

.reason-subtitle {
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 150px;
    display: block;
    color: #555555;
}

#reason-wrap {
    padding: 100px 0;

}

.reason-swipe-hint {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.08em;
    color: #555;
    margin-bottom: 12px;
    margin-top: 12px;
    opacity: 0.8;
}

@media (min-width: 769px) {
    .reason-swipe-hint {
        display: none;
    }
}


@media (max-width: 768px) {

    /* .reason-swipe-hint {
        display: none;
    } */

    #reason-wrap {
        min-height: 180vh;
    }

    /* 余白が長すぎるのを止める（重要） */
    #reason-wrap {
        min-height: auto;
        /* ← 180vhを解除 */
        padding: 64px 50px;
        /* 好みで */
    }

    .reason-subtitle {
        font-size: 26px;
        /* 40pxだとデカく見えやすい */
        margin-bottom: 32px;
        /* 150pxは長い */
    }

    .reason-scroll {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 10px 16px 18px;
        /* 左右の余白を少し増やすと見栄えUP */
        -webkit-overflow-scrolling: touch;
    }

    /* 最後のカードが切れないように右余白を作る */
    .reason-scroll::after {
        content: "";
        flex: 0 0 16px;
    }

    .reason-item {
        flex: 0 0 88%;
        /* 85%だと右が見切れやすい場合がある */
        scroll-snap-align: start;
        min-height: auto;
        padding: 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.65);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
        justify-content: center;
        flex-direction: column;
    }

    /* ここがズレ修正の本丸 */
    .reason-circle {
        width: 86px;
        height: 86px;
        flex: 0 0 86px;
        /* ←潰れ防止 */
        border-radius: 50%;

        display: grid;
        /* ←中央揃え最強 */
        place-items: center;

        font-size: 32px;
        /* ←PCの70pxを確実に上書き */
        line-height: 1;
    }

    /* テキスト側が潰れないように */
    .reason-text {
        flex: 1;
        min-width: 0;
        /* ←長文がある時の横はみ出し防止 */
    }

    .reason-text-title {
        font-size: 18px;
        line-height: 1.25;
    }

    .reason-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* reveal の transform でズレて見えるのをスマホだけ抑える */
    .reveal.from-left,
    .reveal.from-right {
        transform: none;
    }
}



/* RESOURCES */

.worldmap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.map-img {
    width: 100%;
    display: block;
}

.map-pin {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #ff8a7a;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 138, 122, 0.6);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 138, 122, 0.9);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 138, 122, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 138, 122, 0);
    }
}

.map-wrap {
    position: relative;
}


.map-pin {
    position: absolute;
    z-index: 5;
    text-decoration: none;
    color: #2b2b2b;
    /* ←文字を濃くして読みやすく */
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;

    /* ラベルの見やすさ */
    background: rgba(255, 255, 255, .92);
    padding: 6px 10px 6px 26px;
    /* 左にピン分の余白 */
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    backdrop-filter: blur(2px);

}

/* ピンの丸（疑似要素で作る） */
.map-pin::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #ff6f7a;
    box-shadow: 0 0 0 4px rgba(255, 111, 122, .22);
}

/* hoverでちょい浮く */
.map-pin:hover {
    transform: translateY(-2px);
    transition: transform .2s ease;
}



/* 🇯🇵 日本（東京） */
.pin-japan {
    top: 42%;
    left: 81%;
}

/* 🇬🇪 ジョージア */
.pin-georgia {
    top: 41%;
    left: 58%;
}

/* 🇵🇹 ポルトガル */
.pin-poltgal {
    top: 39%;
    left: 46%;
}

/* 🇹🇭 チェンマイ */
.pin-chanmai {
    top: 50%;
    left: 72%;
}

/* 🇮🇩 バリ */
.pin-bali {
    top: 60%;
    left: 75%;
}


/* 吹き出し */
.pin-tooltip {
    position: absolute;
    bottom: 130%;
    /* ピンの上に出す */
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    opacity: 0;
    pointer-events: none;
    background: #ffffff;
    color: #333;
    font-size: 13px;
    line-height: 1.5;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    white-space: nowrap;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 10;
    bottom: 130%;


}



/* 吹き出しの三角 */
.pin-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.map-pin:hover .pin-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.world-map {
    mix-blend-mode: multiply;
}


.js-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 1.0s ease-out,
        transform 1.0s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

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


.js-pin {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
    transition:
        opacity .7s ease-out,
        transform .7s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-show .js-pin {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.resources-text01 {
    text-align: center;
    padding: 30px;
    margin-bottom: 200px;
    font-size: 20px;

}

.resources-text02 {
    text-align: center;
    font-size: 30px;
}

.map-list-sp {
    display: none;
}

@media (max-width: 768px) {
    .map-pin {
        font-size: 0;
        /* 文字だけ消す */
        padding: 0;
        background: none;
        box-shadow: none;
    }

    .map-pin::before {
        left: 0;
        top: 0;
        transform: none;
    }

    .map-list-wrap {
        text-align: center;
        /* 置き場所は中央 */
    }

    .map-list-sp {
        display: inline-block;
        /* 幅は中身だけ */
        text-align: left;
        /* 文字は左揃え */
        font-weight: 600;
        line-height: 2;
        margin-top: 24px;
    }

    .resources-text02 {
        text-align: center;
        font-size: 25px;
        padding: 20px
    }

}


/* 丸いBOTTON */

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
}

.btn,
a.btn,
button.btn {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;

}

a.btn--circle {
    width: 140px;
    height: 140px;
    padding: 20px 0 0;
    border-radius: 50%;
    background: #e85a70;
    box-shadow: 0 7px 0 #cf3f55;
    color: #fff;
    box-shadow: 0 7px 0 #e53b4e;
}

a.btn--circle i {
    font-size: 150%;
}

.fa-position-bottom {
    position: absolute;
    bottom: 1rem;
    left: calc(50% - 0.5rem);
}

a.btn--circle:hover {
    -webkit-transform: translate(0, 4px);
    transform: translate(0, 4px);
    color: #fff;
    -webkit-box-shadow: 0 3px 0 #e53b4e;
    box-shadow: 0 3px 0 #e53b4e;
}

.circle-btn {
    align-items: flex-end;
    display: flex;
    justify-content: flex-end;

}



/* FOOTER */

#footer {
    background: #ffd3d3;
    color: #555;

    padding: 10px 0 10px;
    position: relative;



}

.footer-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    margin-top: 100px;
    margin-bottom: 50px;


}

.footer-logo img {
    width: 70px;
}

.footer-sns {
    align-items: center;
    display: flex;
    justify-items: center;
    gap: 20px;
}


.footer-sns img {
    width: 50px;
    padding: 0 10px;

}

.footer-copy {
    text-align: center;
    display: block;
}

.footer-nav li {
    padding: 10px;
    color: #555555;
}

.footer-nav a {
    color: #555555;
}

@media (max-width: 768px) {
    .footer-list {
        grid-template-columns: 1fr;
        /* 1列 */
        gap: 100px;
        margin-top: 60px;
        margin-bottom: 40px;
        justify-items: center;
        /* 中央寄せ */
        text-align: center;
    }

}



/* 2 PAGE */
/* ABOUT */

.aboutus-lead {
    margin-bottom: 50px;

}


.about-mv-block {
    position: relative;
    padding: 10px 0 35px;

    /* セクションの“呼吸” */
}


.about-mv-block.is-mission::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
    width: min(1200px, 95%);
    height: 560px;
    background: url("img/about/about-worldmap.jpg") center / cover no-repeat;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}


/* 文字を前面に */
.about-mv-label,
.about-mv-text {
    position: relative;
    z-index: 1;


}

.about-mv-label {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    color: #f66;
    /* ピンク統一 */
    letter-spacing: 0.04em;
    position: relative;
    padding: 18px 0 0px;

}




.about-mv-text {
    margin: 0 0 24px;
    line-height: 1.8;
    color: #555;
    max-width: 38em;
}

.about-mv {
    margin-bottom: 200px;
}



/* 初期状態（隠す） */
.js-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.9s ease-out,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

/* 画面に入ったら表示 */
.js-reveal.is-show {
    opacity: 1;
    transform: translateY(0);
}

/* 好みで：少し遅らせたいとき */
.js-reveal.is-show {
    transition-delay: 0.08s;
}


@media (max-width: 768px) {
    .about-mv-block.is-mission::after {
        width: 90%;
        height: 260px;
        /* スマホに収まる高さ */
        background-size: cover;
        /* 切れない */
        top: 90%;
        /* 少し下げる */
    }
}




/* ABOUT-CEO */

#about {
    margin-bottom: 200px;

}



.about-ceo01 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 200px;
}

.about-ceo-pic img {
    width: 100%;

}

.about-ceo01-pic-name {
    text-align: center;
}

.about-ceo01-pic-name .en {
    font-weight: bold;
}

.about-ceo01-pic-name .ja {
    font-weight: bold;
    font-size: 1.2em;
}


.about-ceo-text01 {
    line-height: 1.8em;
    max-width: 60ch;
}

@media (max-width: 768px) {
    .about-ceo01 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 200px;
    }

}


/* MISSIN/VISON-BUTTON */

a.about-btn_26 {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 220px;
    margin: auto;
    padding: 15px 20px;
    border-radius: 100vw;
    color: #fff;
    background: #f66;
    position: relative;
    margin-bottom: 50px;
}

a.about-btn_26::before {
    content: '';
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 24px;
    /* ← 右からの距離（好みで調整） */
    top: 50%;
    /* ← 縦の真ん中 */
    translate: 0 -50%;
    /* ← 縦中央にぴったり合わせる（推奨） */

}

a.about-btn_26:hover {
    background-position: right center;
    background-size: 200% auto;
    -webkit-animation: pulse 2s infinite;
    animation: shad26 1.5s infinite;
    color: #fff;
}

@keyframes shad26 {
    0% {
        box-shadow: 0 0 0 0 #E40065;
    }

    70% {
        box-shadow: 0 0 0 10px rgb(39 172 217 / 0%);
    }

    100% {
        box-shadow: 0 0 0 0 rgb(39 172 217 / 0%);
    }
}

/* ===== Company =====会社概要 */

#company {
    padding: 80px 0;
}

.company-box {
    margin-top: 32px;
    border-radius: 16px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
}

.company-dl {
    display: grid;
    gap: 16px;
}

.company-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.company-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.company-row dt {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.company-row dd {
    margin: 0;
    line-height: 1.8;
}


.company-row a {
    color: inherit;
    position: relative;
    transition: color 0.3s ease;
}

.company-row a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #d94c6a;
    transition: width 0.3s ease;
}

.company-row a:hover {
    color: #d94c6a;
    opacity: 0.85;
}

.company-row a:hover::after {
    width: 100%;
}



@media (max-width: 768px) {
    .company-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}



/* ABOUT-HOPE私たちが大切にしていること */


.about-hope {
    margin-bottom: 300px;
}


.about-main-title {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: #555;
    margin: 0 0 14px;
    text-align: center;
    margin-bottom: 150px;
}

.anxious01-text .about-anxious-text {
    font-size: 16px;
    font-weight: 200;

}

.about02-img {
    width: clamp(180px, 22vw, 240px);
    /* 180〜240の間で伸縮 */
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 16px;
    box-shadow: 0 12px 30px rgba(119, 119, 119, 0.8);
    margin-bottom: 50px;
}



.about02-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* 枠いっぱいに、きれいにトリミング */
    object-position: center;
    /* 中央を見せる */
}


/* MEMBER */

.about01 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    /* 横のgapは10pxだと近すぎるかも */
    justify-items: center;
    /* ← 各カードを列の中央に */
    margin-bottom: 250px;
}

.about01 .about01-1 {
    width: 100%;
    max-width: 320px;
    /* 280〜340で調整 */
    text-align: center;
}

.about02-name-text {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 30px;
}

.about02-title {
    font-size: 0.9em;

}

.about02-job {
    display: block;
}


.about02-main-msg {
    font-size: clamp(30px, 4vw, 62px);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #555;
    margin: 0 0 14px;
    text-align: center;
    margin-bottom: 40px;

}

.about02-second-msg {
    font-size: clamp(15px, 2vw, 42px);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #555;
    margin: 0 0 14px;
    text-align: center;
    margin-bottom: 120px;
    display: block;
    padding: 35px 0;

}

@media (max-width: 768px) {
    .about01 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        /* 横のgapは10pxだと近すぎるかも */
        justify-items: center;
        /* ← 各カードを列の中央に */
        margin-bottom: 250px;
    }

    .about01 .about01-1 {
        width: 100%;
        max-width: 320px;
        /* 280〜340で調整 */
        text-align: center;
        margin-bottom: 100px;
    }

    .about02-main-msg p {
        padding: 20px 0;
        line-height: 1.5;
    }

    .about02-second-msg {
        margin-bottom: 32px;
        padding: 50px 0;
    }

    .about01 {

        margin-bottom: 50px;
    }
}



/* ===== Contact Page ===== */
/* contactページだけスクロールを許可 */

body.page-contact {
    overflow: visible;
    padding: 0;
}

.contact-page {
    color: #555;
}

.contact-hero {
    padding: 80px 16px 40px;
    background: #ffd3d3;
    /* 仮：ヘッダーのピンクに合わせるなら変更OK */
}

.contact-hero-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: 0.02em;
}

.contact-lead {
    margin: 16px 0 0;
    font-size: clamp(14px, 2.2vw, 18px);
    line-height: 1.8;
}

.contact-badges {
    list-style: none;
    padding: 0;
    margin: 22px auto 0;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-badges li {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .65);
    font-size: 14px;
}

.contact-form-section {
    padding: 56px 16px 90px;
    background: #fff;
}

.contact-container {
    max-width: 720px;
    margin: 0 auto;
}

.contact-form {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
    background: #fff;
}

.form-row {
    margin-top: 18px;
}

.form-row:first-child {
    margin-top: 0;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
}

.req {
    display: inline-block;
    margin-left: 6px;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(255, 102, 102, 0.15);
    color: #ff6666;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 16px;
    outline: none;
    background: #fff;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(255, 102, 102, .7);
    box-shadow: 0 0 0 4px rgba(255, 102, 102, .15);
}

.check {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.check input {
    width: 18px;
    height: 18px;
}

.contact-submit {
    width: 100%;
    margin-top: 18px;
    padding: 14px 16px;
    border: none;
    border-radius: 999px;
    background: #ff6666;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(255, 102, 102, .25);
}

.contact-submit:hover {
    filter: brightness(0.98);
    transform: translateY(-1px);
}

.contact-note {
    margin: 14px 0 0;
    font-size: 13px;
    color: rgba(0, 0, 0, .55);
    line-height: 1.6;
}

.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }

    .contact-hero {
        padding: 64px 16px 34px;
    }

    .contact-form {
        padding: 20px;
    }
}




/* ===== Services Steps ===== */
.services-main-pic {
    background-image: url('img/servious/servious09.jpg');
    background-size: cover;
    background-position: 50% 80%;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px;
    margin-bottom: 200px;

}


.services-steps {
    margin: 60px 0 90px;
    margin-bottom: 120px;
}

.services-steps__title {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 28px;
    color: #555;
}



.services-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 200px;

}



.services-step {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
}


.services-step__num {
    font-size: 100px;
    font-weight: 600;
    color: #f66;
    ;
    /* あなたのピンク */
    margin-bottom: 12px;

}


.services-step__head {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #555;
}


.services-step__text {
    font-size: 14px;
    line-height: 2;
    color: #666;
}

/* ===== Services List title ===== */
.services-list__title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #555;
}

.services-list__lead {
    text-align: center;
    color: #666;
    margin-bottom: 32px;
}

.services-details {
    max-width: 900px;
    margin: 0 auto 150px;

}

.services-details__title {
    font-size: 40px;
    color: #555;

}

.services-details__lead {
    margin-bottom: 50px;
    color: #555;
}


.svc {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.svc__num {
    font-size: 2.6em;
    color: #f66;
    margin-bottom: 8px;
    font-weight: 600;
}

.svc__title {
    font-size: 2.4rem;
    margin-bottom: 8px;
    color: #555;
}

.svc__catch {
    font-size: 1.8rem;
    color: #777;
    margin-bottom: 24px;
}

.svc__list li {
    line-height: 1.2;
    margin-bottom: 8px;
    font-size: 1.6rem;
    font-weight: 300;
}

.svc__result {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
}

.svc__cta {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 32px;

}

.svc__cta .about-btn_26 {
    margin: 0 0 0 auto;
}


/* CTA */
.services-cta {
    margin: 90px 0 120px;
    text-align: center;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    padding: 120px 0;
}


.services-cta__title {
    font-size: 22px;
    font-weight: 700;
    color: #555;
    margin-bottom: 10px;
}

.services-cta__text {
    color: #666;
    margin-bottom: 18px;
}

/* SP */
@media (max-width: 768px) {
    .services-steps__grid {
        grid-template-columns: 1fr;
    }

    .svc__cta {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        margin-top: 32px;

    }

    .svc__cta .about-btn_26 {
        margin: auto;
    }


}


/* ボタンっぽさを消して今の見た目に寄せる */
.region__toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* + アイコン */
.region__icon {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease;
}

/* スマホだけアコーディオン化 */
@media (max-width: 768px) {

    /* 2人目以降：閉じてる時は非表示 */
    .is-accordion .region__more {
        display: none;
        margin-top: 16px;
    }

    /* 開いた時：gridにしてgapを効かせる */
    .is-accordion.is-open .region__more {
        display: grid;
        /* ←ここが重要！ blockじゃなくgrid */
        gap: 16px;
    }

    /* ＋を×っぽく */
    .is-accordion.is-open .region__icon {
        transform: rotate(45deg);
    }

    .region__more {
        display: contents;
    }
}



/* ===== Stories ===== */

#stories-main-visual {
    position: relative;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    min-height: 100vh;
    overflow: visible;
}




.stories-main-visual {
    background-position: center;
    background-size: cover;
    max-width: 100%;
    height: 100vh;
    margin-bottom: 80px;
    overflow: hidden;
    position: absolute;
    inset: 0;
    /* top:0 right:0 bottom:0 left:0 */
    z-index: 1;

}



.stories {
    padding: 80px 0 120px;
}

.stories-lead {
    margin: 18px auto 24px;
    text-align: left;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    max-width: 60ch;
    padding: 5px;
}

/* 地域ナビ */
.stories-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 28px 0 60px;
}

.stories-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
    color: #555;
    font-weight: 600;
    font-size: 14px;
}

.stories-pill:hover {
    transform: translateY(-1px);
    transition: transform .2s ease;
}

/* 地域ブロック */
.region {
    margin: 0 0 90px;
    padding: 40px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .06);
}

.region__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.region__title {
    font-size: 26px;
    font-weight: 700;
    color: #555;
    letter-spacing: .02em;
    margin: 0;
}

.region__meta {
    margin: 0;
    color: #777;
    font-weight: 600;
}

/* カード grid */
.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.story-card {
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .06);
}

.story-card__img {
    height: 170px;
    overflow: hidden;
}

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

.story-card__body {
    padding: 16px 16px 18px;
}

.story-card__tag {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    color: #f66;
    letter-spacing: .06em;
}

.story-card__title {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    font-weight: 700;
}

.story-card__text {
    margin: 0 0 14px;
    color: #666;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 300;
}

/* Result */
.story-card__result {
    margin: 12px 0 14px;
    padding: 12px 12px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, .06);
}

.story-card__result-label {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 800;
    color: #555;
    letter-spacing: .06em;
}

.story-card__result-list {
    margin: 0;
    padding-left: 1.2em;
    color: #666;
    font-size: 12px;
    line-height: 1.7;
    font-weight: 300;
}

.story-card__result-list li {
    margin: 0 0 4px;
}

/* 他の地域も見てみる */

.region-back {
    margin-top: 40px;
    text-align: center;
}

.region-back__link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color .2s ease;
}

.region-back__link:hover {
    color: #e85a70;
    /* サイトの濃いピンク */
}




.story-card__link {
    display: inline-block;
    font-weight: 700;
    color: #f66;
}

.story-card__link:hover {
    opacity: 0.85;
}

/* CTA */
.stories-cta {
    margin-top: 110px;
    text-align: center;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    padding: 90px 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .06);
}

.stories-cta__title {
    font-size: 22px;
    font-weight: 800;
    color: #555;
    margin: 0 0 10px;
}

.stories-cta__text {
    color: #666;
    margin: 0 0 18px;
    margin-bottom: 100px;
}

.stories-cta__btn {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.stories-last-pic {
    background-image: url('img/servious/servious07.jpg');
    background-size: cover;
    background-position: 50% 80%;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px;
    margin-bottom: 200px;

}

/* レスポンシブ */
@media (max-width: 980px) {
    .story-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stories {
        padding: 64px 0 90px;
    }

    .region {
        padding: 26px 16px;
    }

    .region__title {
        font-size: 20px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-card__img {
        height: 190px;
    }

    /* 2人目以降を隠す */
    .is-accordion .region__more {
        display: none;
    }

    /* 開いたら表示 */
    .is-accordion.is-open .region__more {
        display: grid;
        gap: 20px;
    }

    /* ＋アイコン表示（スマホだけ） */
    .region__icon {
        display: inline-block;
    }

}

/* PCでは region__more を中身だけにして grid に合流 */
@media (min-width: 769px) {
    .region__more {
        display: contents;
    }

    /* PCでは +ボタンを消す（見た目もクリックも） */
    /* .region__toggle {
        display: none;
    } */

    /* PCでは隠さない（スマホだけ隠す） */
    .is-accordion .region__more {
        display: contents;
        /* 念のため */
    }
}



/* ===== Story header (no photo) ===== */

.story-card__header {
    padding: 20px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .70);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .05);
    margin-bottom: 16px;

}

.story-card__name {
    font-size: 18px;
    font-weight: 700;
    color: #555;
    letter-spacing: .02em;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.story-card__name02 {
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
}

.story-card__meta {
    font-size: 12px;
    font-weight: 700;
    color: #ff6666;
    background: rgba(255, 102, 102, .12);
    padding: 3px 10px;
    border-radius: 999px;
}

.story-card__job {
    margin-top: 6px;
    font-size: 13px;
    color: #777;
    line-height: 1.7;
}

/* .story-card__catch {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    border-left: 4px solid rgba(255, 102, 102, .55);
    padding-left: 12px;
   
    
} */