* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* フェードインアニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 遅延アニメーション用 */
.fade-in-delay-1 {
    transition-delay: 0.2s;
}

.fade-in-delay-2 {
    transition-delay: 0.4s;
}

.fade-in-delay-3 {
    transition-delay: 0.6s;
}

/* 強調ポップイン（8-1-4：注意書き・地図など目立たせたい要素用） */
.pop-in {
    opacity: 0;
    transform: translateY(60px);
}

.pop-in.is-visible {
    animation: popInAnime 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popInAnime {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ローディング画面（ロゴがふわっと浮かび上がる） ===== */
#splash {
    position: fixed;
    inset: 0;
    z-index: 10000;
    /* ロゴ画像の背景色に合わせて縁を見えなくする */
    background: #fff9ef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease;
}

#splash.fadeout {
    opacity: 0;
    pointer-events: none;
}

.splash-logo {
    width: min(85vw, 440px);
    height: auto;
    opacity: 0;
    animation: splashLogoIn 1.4s ease-out forwards;
}

@keyframes splashLogoIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.splash-catch {
    margin-top: 18px;
    color: rgb(139, 111, 71);
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    opacity: 0;
    animation: splashCatchIn 1s ease 1.2s forwards;
}

@keyframes splashCatchIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== スクロール誘導矢印（9-1-4） ===== */
.scrolldown4 {
    position: absolute;
    left: 50%;
    bottom: 3%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: arrowmove 1.5s ease-in-out infinite;
}

@keyframes arrowmove {
    0% { bottom: 3%; }
    50% { bottom: 5%; }
    100% { bottom: 3%; }
}

.scrolldown4 span {
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
    margin-bottom: 10px;
}

.scrolldown4::before {
    content: "";
    width: 12px;
    height: 12px;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
    transform: rotate(-45deg);
    margin-top: -6px;
}

/* ===== ヘッダー縮小（5-1-8） ===== */
header.height-min {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    animation: headerDown 0.5s forwards;
    transition: transform 0.3s ease;
}

/* 下スクロール中はヘッダーを隠して閲覧領域を広げる（UpMove/DownMove） */
header.height-min.header-hide {
    transform: translateY(-100%);
}

/* 縮小時はロゴが枠からはみ出さないようサイズを合わせる */
header.height-min .header-logo {
    width: 40px;
    height: 32px;
    border-radius: 14px;
}

@keyframes headerDown {
    from {
        opacity: 0;
        transform: translateY(-80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== カードホバーで浮き上がる（7-1-18） ===== */
.drink-item,
.tomato,
.coconut,
.strovery {
    /* fade-inのopacityアニメーションを維持しつつホバーを追加 */
    transition: opacity 0.8s ease-out, transform 0.3s ease, box-shadow 0.3s ease;
}

.drink-item:hover,
.tomato:hover,
.coconut:hover,
.strovery:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ===== ハンバーガーメニュー（5-2-1：3本線が×に） ===== */
.openbtn {
    display: none;
    position: fixed;
    top: 8px;
    right: 10px;
    z-index: 9999;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: rgb(139, 111, 71);
    border-radius: 50%;
}

.openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

/* activeクラスが付与されると線が回転して×に */
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

header {
    background-color: white;
    height: 10vh;
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
}

.header-logo {
    width: 60px;
    height: 40px;
    border-radius: 20px;
    object-fit: cover;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

header ul {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    padding-left: 75px;
}

header ul li {
    padding: 8px 10px;
}

header ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

header ul li a:hover,
header ul li a:active {
    color: rgb(139, 111, 71);
}

body {
    text-align: center;
}

section {
    width: 100vw;
    min-height: 100vh;
}

/* ===== TOP セクション ===== */
.top {
    height: 100svh;
    height: 100dvh;
    min-height: -webkit-fill-available;
}

.concept {
    height: auto;
}

/* Concept見出しがスクロール時にずれるのを防ぐ（横方向の移動を無効化） */
.concept .page2.fade-in {
    transform: none;
}

.concept .page2.fade-in.is-visible {
    transform: none;
}

.concept .fade-in:nth-child(2) p span {
    color: rgb(139, 111, 71);
    font-weight: bold;
    background: linear-gradient(transparent 60%, rgba(139, 111, 71, 0.2) 60%);
    padding: 0 4px;
}

.concept .fade-in:nth-child(3) ul li p span {
    font-weight: bold;
    color: rgb(139, 111, 71);
    background: linear-gradient(transparent 60%, rgba(139, 111, 71, 0.2) 60%);
    padding: 0 4px;
}

.concept .fade-in:nth-child(3) > p:last-child span {
    color: rgb(139, 111, 71);
    font-weight: bold;
    background: linear-gradient(transparent 60%, rgba(139, 111, 71, 0.2) 60%);
    padding: 0 4px;
}

/* ===== Our Family ハイライト ===== */
.highlight {
    color: rgb(139, 111, 71);
    font-weight: bold;
    background: linear-gradient(transparent 60%, rgba(139, 111, 71, 0.2) 60%);
    padding: 0 4px;
}

.farmer-section {
    text-align: center;
    padding: 20px;
}

.farmer-section h2 {
    color: rgb(139, 111, 71);
    margin: 20px auto;
    padding: 20px;
}

.farmer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.farmer-content img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 30px;
    margin-bottom: 20px;
}

.farmer-text {
    text-align: center;
    max-width: 600px;
}

.farmer-text h3 {
    color: rgb(139, 111, 71);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.text ul {
    list-style: none;
}

.menu {
    background-color: #FDF5E6;
    width: 100vw;
    min-height: 100vh;
    height: auto;
}

.contact {
    width: 100vw;
    min-height: 50vh;
    height: auto;
    padding: 40px 0;
}

.contact-text {
    margin-bottom: 20px !important;
}

.Access {
    width: 100vw;
    min-height: 50vh;
    height: auto;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.access-text {
    margin-bottom: 20px !important;
}

h2 {
    color: rgb(139, 111, 71);
    margin: 20px;
    padding: 20px;
}

/* ===== .page1 ===== */
.page1 {
    width: 100vw;
    height: 100svh;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: -webkit-fill-available;
    position: relative;
    overflow: hidden;
}

.page1::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(img/herp_mobile.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    filter: brightness(0.75) contrast(0.82);
    z-index: 0;
}

.home {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.home h1 {
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.home p {
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.top-logo {
    width: 130px;
    height: 130px;
    margin-top: 20px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.grid img {
    width: 300px;
    height: auto;
    margin: 10px auto;
}

.monthly-special {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0;
    width: 100%;
}

.special-label {
    font-size: 1.1rem;
    color: rgb(139, 111, 71);
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.menu > p.fade-in {
    margin-bottom: 40px;
}

.grid_center {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.drink-item.no-image p {
    border-radius: 10px;
}

.drink-item {
    margin: 20px 0;
    max-width: 300px;
}

.drink-item img {
    display: block;
    margin: 0 auto;
    margin-bottom: 0;
    border-radius: 10px 10px 0 0;
    width: 300px;
    height: auto;
}

.drink-item p {
    background-color: white;
    color: rgb(139, 111, 71);
    padding: 15px;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.drink-item p strong {
    display: block;
    margin-bottom: 5px;
    color: black;
}

.drink-item p .menu-description {
    display: block;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 8px;
    color: black;
}

.carry {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tomato, .coconut {
    margin: 20px 0;
    max-width: 300px;
}

.tomato img, .coconut img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    margin-bottom: 0;
}

.tomato p, .coconut p {
    background-color: white;
    color: rgb(139, 111, 71);
    padding: 15px;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tomato p strong, .coconut p strong {
    display: block;
    margin-bottom: 5px;
    color: black;
}

.monthly-special p2 {
margin: 50px;
}

.tomato p .menu-description,
.coconut p .menu-description {
    display: block;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 8px;
    color: black;
}

.strovery {
    margin: 20px 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.strovery img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    margin-bottom: 0;
}

.strovery p {
    background-color: white;
    color: rgb(139, 111, 71);
    padding: 15px;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.strovery p strong {
    display: block;
    margin-bottom: 5px;
    color: black;
}

.strovery p .menu-description {
    display: block;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 8px;
    color: black;
}

.strovery.no-image p {
    border-radius: 10px;
}

.sweets-season-label {
    margin-top: 25px;
}

.sweets-note {
    background-color: white;
    color: black;
    padding: 15px;
    margin: 30px auto 20px auto;
    max-width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.boss {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.god img {
    width: 300px;
    height: auto;
    display: block;
    margin-bottom: 0;
    border-radius: 10px;
}

.engel {
    max-width: 300px;
}

.engel p {
    background-color: white;
    color: rgb(139, 111, 71);
    padding: 15px;
    margin: 0 0 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.engel p strong {
    display: block;
    margin-bottom: 5px;
    color: black;
}

.engel p:nth-child(2) {
    color: black;
}

.counseling-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 14px 16px;
    margin: 16px auto 8px auto;
    max-width: 480px;
    width: 82%;
    text-align: center;
    line-height: 1.7;
    font-size: 0.85rem;
    color: #333;
}

.counseling-box .counseling-note {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(139, 111, 71, 0.2);
    font-size: 0.85rem;
    color: #555;
    line-height: 1.8;
}

.name-highlight {
    color: rgb(139, 111, 71);
    font-weight: bold;
}

/* ===== 一輝 モニター募集テキスト ===== */
.kazuki-highlight {
    color: rgb(139, 111, 71);
    font-weight: bold;
}

.monitor-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 14px 16px;
    margin: 8px auto 20px auto;
    max-width: 480px;
    width: 82%;
    text-align: center;
    line-height: 1.8;
    font-size: 0.85rem;
    color: #333;
}

/* ===== 体験版・価格カラー ===== */
.price-color {
    color: rgb(139, 111, 71);
}

.engel-black {
    color: black !important;
}

.session-note {
    color: black !important;
}

.monitor-emphasis {
    color: rgb(139, 111, 71);
    font-weight: bold;
    background: linear-gradient(transparent 60%, rgba(139, 111, 71, 0.2) 60%);
    padding: 0 2px;
}

/* モニター価格などを一目で分かるバッジ表示にする */
.price-badge {
    display: inline-block;
    background-color: rgb(139, 111, 71);
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 3px 12px;
    border-radius: 20px;
    margin-left: 4px;
}

/* ===== */

.options-wrapper {
    margin-top: 10px;
}

h3.fade-in {
    margin-top: 50px;
}

/* メニュー各セクションの前後に余白を追加 */
.menu .grid > h2,
.menu .grid > h3 {
    margin: 50px 0;
}

.headspa {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.head1 img {
    width: 300px;
    height: 300px;
    display: block;
    margin-bottom: 0;
    border-radius: 10px;
}

.head2 {
    max-width: 300px;
}

.head2 p {
    background-color: white;
    color: rgb(139, 111, 71);
    padding: 15px;
    margin: 0 0 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.head2 p strong {
    display: block;
    margin-bottom: 5px;
    color: black;
}

.head2 p:nth-child(2) {
    color: black;
}

.touch {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 60px;
}

.touch1 img {
    width: 300px;
    height: auto;
    display: block;
    margin-bottom: 0;
    border-radius: 10px;
}

.touch2 {
    width: 300px;
    max-width: 300px;
}

.touch2 p {
    background-color: white;
    color: rgb(139, 111, 71);
    padding: 15px;
    margin: 0 0 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.touch2 p strong {
    display: block;
    margin-bottom: 5px;
    color: black;
}

footer {
    background-color: #FDF5E6;
    padding-bottom: 30px;
}

footer h2 {
    margin-bottom: 10px;
}

footer p {
    margin-top: 0;
    padding-top: 0;
}

.family1, .family2, .family3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
}

.family1 img, .family2 img, .family3 img {
    width: 300px;
    height: auto;
    border-radius: 30px;
}

.family1 .text, .family2 .text, .family3 .text {
    text-align: center;
    padding: 20px;
}

.family1 .text h3, 
.family2 .text h3, 
.family3 .text h3 {
    font-size: 1.5rem;
    color: rgb(139, 111, 71);
    margin-bottom: 15px;
    font-weight: bold;
}

.family3 .text ul {
    list-style-position: inside;
    text-align: center;
    padding: 0;
    list-style: none;
}

.options-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contact a,
.Access a {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}

.contact a:hover,
.Access a:hover {
    transform: scale(1.1);
}

.contact i {
    font-size: 2.5rem;
    margin: 20px 10px;
    color: white;
    background-color: rgb(139, 111, 71);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.Access i {
    font-size: 2.5rem;
    margin: 20px 10px;
    color: white;
    background-color: rgb(139, 111, 71);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.Access iframe {
    width: 100%;
    max-width: 600px;
    height: 300px;
    border: 0;
    margin-top: 30px;
    margin-bottom: 30px;
    display: block;
}

/* ===== iPhone 16e / モバイル対応 ===== */
@media (max-width: 430px) {
    html, body {
        height: 100%;
    }

    .top {
        height: auto;
        aspect-ratio: 9 / 16;
        min-height: 100svh;
        min-height: 100dvh;
    }

    .page1 {
        height: auto;
        aspect-ratio: 9 / 16;
        min-height: 100svh;
        min-height: 100dvh;
        min-height: -webkit-fill-available;
        background-position: center center;
        background-size: cover;
    }

    .home h1 {
        font-size: 2.8rem;
    }

    .top-logo {
        width: 110px;
        height: 110px;
    }
}

@media (min-width:1200px) {

    .page1::after {
        background-image: url(img/hero_pc.webp);
        filter: none;
    }

    .home {
        position: relative;
        z-index: 1;
    }

    .header-logo {
        width: 130px;
        height: 80px;
        border-radius: 30px;
        left: 40px;
    }

    header ul li {
        padding: 30px 40px;
    }

    header ul li a {
        font-size: 1.1rem;
    }

    header ul {
        justify-content: center;
        padding: 20px 100px;
    }

    .grid img {
        display: flex;
    }

    .home h1 {
        font-size: 5rem;
    }

    .top-logo {
        width: 200px;
        height: 200px;
    }

    .family1, .family2, .family3 {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        box-sizing: border-box;
        margin: 40px 0;
        width: 100%;
        max-width: 1000px;
    }

    .Family {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .family1 img, .family2 img, .family3 img {
        width: 400px;
        height: auto;
        border-radius: 30px;
        flex-shrink: 0;
    }
    
    .family1 .text, .family2 .text, .family3 .text {
        text-align: left;
        padding: 0;
        flex: 1;
    }
    
    .family1 .text h3, 
    .family2 .text h3, 
    .family3 .text h3 {
        margin-bottom: 15px;
    }
    
    .family3 .text ul {
        text-align: left;
        list-style-position: outside;
        padding-left: 20px;
    }

    .farmer-content {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }

    .farmer-content img {
        max-width: 500px;
        margin-bottom: 0;
        border-radius: 30px;
    }

    .farmer-text {
        flex: 1;
        text-align: left;
    }

    .grid_center {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        align-items: start;
    }

    .grid_center .drink-item:nth-child(1) {
        grid-column: 1 / 2;
    }

    .grid_center .drink-item:nth-child(2) {
        grid-column: 2 / 3;
    }

    .grid_center .drink-item:nth-child(3) {
        grid-column: 3 / 4;
    }

    .drink-item {
        max-width: none;
        display: flex;
        flex-direction: column;
    }

    .grid_center img {
        width: 100%;
        height: auto;
        border-radius: 10px 10px 0 0;
    }

    .grid_center tr {
        display: block;
        text-align: center;
        margin-top: 10px;
    }

    .carry {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .tomato, .coconut {
        flex: 0 0 auto;
        max-width: none;
        width: 300px;
    }

    .tomato img, .coconut img {
        width: 300px;
        height: 300px;
    }

    .strovery {
        max-width: 500px;
        margin: 20px auto;
    }

    .sweets-note {
        max-width: 500px;
    }

    .boss {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
        max-width: 1000px;
        margin: 40px auto;
        padding: 0;
    }

    .god {
        flex-shrink: 0;
    }

    .engel {
        text-align: left;
        flex: 1;
        max-width: none;
    }

    .counseling-box {
        max-width: 800px;
        font-size: 1rem;
        padding: 25px 40px;
        width: 90%;
        border-radius: 12px;
        margin: 20px auto 10px auto;
        line-height: 1.8;
    }

    .counseling-box .counseling-note {
        font-size: 0.95rem;
        margin-top: 14px;
        padding-top: 14px;
    }

    .headspa, .touch {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
        max-width: 1000px;
        margin: 40px 0;
        padding: 0;
        margin-bottom: 40px;
    }

    .head1, .touch1 {
        flex-shrink: 0;
    }

    .god img, .touch1 img {
        width: 350px;
    }
    
    .head1 img {
        width: 350px;
        height: auto;
        max-height: 350px;
    }
    
    .head2, .touch2 {
        text-align: left;
        flex: 1;
        max-width: none;
    }

    .touch2 {
        width: auto;
    }

    .options-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 1000px;
        margin: 0 auto;
        width: 100%;
    }

    .contact i {
        font-size: 3.5rem;
        margin: 20px 15px;
        width: 90px;
        height: 90px;
    }

    .Access i {
        font-size: 3.5rem;
        margin: 20px 15px;
        width: 90px;
        height: 90px;
    }

    .Access iframe {
        width: 600px;
        height: 450px;
    }
}

/* ===== 渡邊珈琲セクション ===== */
.watanabe-coffee {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    width: 100%;
}

.watanabe-header img {
    width: 240px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 30px;
}

.watanabe-description {
    max-width: 600px;
    margin: 0 auto 16px auto;
    padding: 0 20px;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
}

.watanabe-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.watanabe-links a {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}

.watanabe-links a:hover {
    transform: scale(1.1);
}

.watanabe-links i {
    position: relative;
    overflow: hidden;
    font-size: 1.6rem;
    margin: 0 10px;
    color: white;
    background-color: rgb(139, 111, 71);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* クリックしたら波紋が広がる（7-1-11） */
.watanabe-links i::after,
.sns-links i::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, #fff 10%, transparent 10%) no-repeat 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.3s, opacity 1s;
}

.watanabe-links a:active i::after,
.sns-links a:active i::after {
    transform: scale(0, 0);
    transition: 0s;
    opacity: 0.4;
}

/* ===== Our Family SNSリンク ===== */
.sns-links {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.sns-links a {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}

.sns-links a:hover {
    transform: scale(1.1);
}

.sns-links i {
    position: relative;
    overflow: hidden;
    font-size: 1.6rem;
    margin: 0 10px;
    color: white;
    background-color: rgb(139, 111, 71);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.watanabe-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
}

@media (min-width: 1200px) {
    .watanabe-coffee {
        flex-direction: column;
        align-items: center;
        max-width: 900px;
        margin: 30px auto;
    }

    .watanabe-header img {
        width: 280px;
        margin-bottom: 20px;
    }

    .watanabe-items {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        width: auto;
    }

    .watanabe-items .drink-item {
        width: 250px;
    }
}

.notice-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px 30px;
    margin: 30px auto;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.notice-box p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

@media (max-width: 430px) {
    .notice-box {
        margin: 20px 16px;
        padding: 16px 20px;
        border-radius: 10px;
    }

    .notice-box p {
        font-size: 0.88rem;
    }
}
/* モバイル：ナビを右からスライドインするパネルに（5-1-14） */
@media (max-width: 768px) {
    .openbtn {
        display: block;
    }

    header ul {
        position: fixed;
        top: 0;
        right: -120%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 999;
        background: #FDF5E6;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left: 0;
        margin: 0;
        transition: right 0.6s;
    }

    header ul.panelactive {
        right: 0;
    }

    header ul li {
        padding: 16px 10px;
    }

    header ul li a {
        font-size: 1.3rem;
        letter-spacing: 0.1em;
    }
}

/* ===== アンカースクロールの固定ヘッダー分オフセット（8-2-2） ===== */
section {
    scroll-margin-top: 60px;
}

/* ===== トップへ戻るボタン（8-1-2） ===== */
#page-top {
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 998;
    opacity: 0;
    transform: translateY(100px);
}

#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(139, 111, 71);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

#page-top a:hover {
    background: rgb(110, 87, 55);
}

#page-top.up-move {
    animation: pageTopUp 0.5s forwards;
}

@keyframes pageTopUp {
    from { opacity: 0; transform: translateY(100px); }
    to { opacity: 1; transform: translateY(0); }
}

#page-top.down-move {
    animation: pageTopDown 0.5s forwards;
}

@keyframes pageTopDown {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 1; transform: translateY(100px); }
}

/* ===== 見出し下に線が伸びる（5-3-3） ===== */
.line-heading {
    position: relative;
}

.line-heading::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 60px;
    height: 2px;
    background: rgb(139, 111, 71);
    transform: translateX(-50%) scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease 0.3s;
}

.line-heading.is-visible::after {
    transform: translateX(-50%) scaleX(1);
}

/* ===== ナビの現在地ハイライト（5-1-26） ===== */
header ul li a.current {
    color: rgb(139, 111, 71);
}

/* ===== ローディング中はヒーローの文字を隠し、明けてからフェードイン ===== */
body.splash-active .home.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

/* ===== ヒーロー背景ゆっくりズームアウト（6-1-3） ===== */
.page1::after {
    animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

/* ===== Family・農家さん・珈琲屋さん・Healingの写真ホバー（7-1-18） ===== */
.family1 img,
.family2 img,
.family3 img,
.farmer-content img,
.god img,
.head1 img,
.touch1 img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.family1 img:hover,
.family2 img:hover,
.family3 img:hover,
.farmer-content img:hover,
.god img:hover,
.head1 img:hover,
.touch1 img:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ===== アニメーションを減らす設定のユーザーへの配慮 ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .fade-in,
    .pop-in,
    body.splash-active .home.fade-in {
        opacity: 1;
        transform: none;
    }
}

/* ===== スクロール進捗バー（Scrollgress） ===== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: rgb(139, 111, 71);
    z-index: 10001;
    transition: width 0.1s ease-out;
}

/* ===== Access：バスアクセス情報 ===== */
.bus-access {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px 30px;
    margin: 10px auto 20px;
    max-width: 600px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.bus-access h3 {
    color: rgb(139, 111, 71);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.bus-access > p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

.bus-route {
    background-color: #FDF5E6;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

.bus-route-title {
    font-weight: bold;
    color: rgb(139, 111, 71);
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.bus-route p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.bus-line {
    display: inline-block;
    background-color: rgb(139, 111, 71);
    color: #fff;
    font-size: 0.78rem;
    padding: 1px 6px;
    border-radius: 4px;
    margin-right: 2px;
}

.bus-note {
    font-size: 0.82rem;
    line-height: 1.7;
    color: #777;
    margin-top: 15px;
    margin-bottom: 0;
}

@media (max-width: 430px) {
    .bus-access {
        margin: 10px 16px 20px;
        padding: 20px;
    }
}
