@charset "UTF-8";

/* --------------- 基本設定 --------------- */
html {
    background-color: #FFFFFF;
}

/* PC版のみ背景画像を表示 */
@media (min-width: 1024px) {
    html {
        background-image: url('../img/pc_back1.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
}

body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-family: 'Libre Baskerville', 'Noto Sans JP', sans-serif;
    color: #4D301E;
    position: relative;
}

/* PC版のみ背景画像を表示 */
@media (min-width: 1024px) {
    body {
        background-image: url('../img/pc_back1.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        z-index: 0;
    }
}

/* メインコンテンツラッパー */
.main-wrapper {
    width: 375px;
    margin: 0 auto;
    background-color: #ffffff;
    position: relative;
}

@media (min-width: 1024px) {
    .main-wrapper {
        width: 375px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
}

/* --------------- PC版ヘッダー --------------- */
.header-pc {
    display: none;
}

@media (min-width: 1024px) {
    .header-pc {
        display: flex;
        align-items: center;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        gap: 0;
    }

    .header-pc-logo {
        flex-shrink: 0;
        padding: 0 60px 0 0;
        background-color: transparent;
    }

    .header-pc-logo img {
        height: 100px;
        width: auto;
        display: block;
    }

    .header-pc-inner {
        flex-grow: 1;
        background-color: #aa998a;
        display: flex;
        align-items: center;
        /* ナビゲーションとSNSアイコンを中央に寄せる */
        justify-content: center;
        /* 左右のパディングを増やして、コンテンツを内側に寄せる */
        padding: 0 100px;
        height: 100px;
        border-radius: 45px 0 0 45px;
    }

    .header-pc-nav {
        display: flex;
        gap: 20px;
        flex-shrink: 0;
        /* SNSアイコンとの間に明示的な余白を設定 */
        margin-right: 80px;
    }

    .header-pc-link {
        font-family: 'Libre Baskerville', serif;
        font-size: 24px;
        color: #FFFFFF;
        text-decoration: none;
        letter-spacing: 0.05em;
        transition: opacity 0.3s;
        white-space: nowrap;
    }

    .header-pc-link:hover {
        opacity: 0.7;
    }

    .header-pc-icons {
        display: flex;
        gap: 20px;
        flex-shrink: 0;
    }

    .header-pc-sns {
        display: block;
        width: 40px;
        height: 40px;
    }

    .header-pc-sns img {
        width: 100%;
        height: 100%;
        display: block;
        filter: brightness(0) invert(1);
    }

    /* PC表示時はコンテンツを下にずらす */
    .main-wrapper {
        margin-top: 100px;
    }

    /* 特定のリンクの色を変更 */
    .header-pc-link.colored-link {
        color: #9ec3bc;
    }

    /* ホバー時の設定 (任意: 変更しない場合は省略可) */
    .header-pc-link.colored-link:hover {
        opacity: 0.7;
        /* 基本の.header-pc-link:hoverの設定を維持 */
    }
}

/* --------------- SP版ヘッダー --------------- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    height: auto;
    min-height: 80px;
    box-sizing: border-box;
    position: relative;
}

@media (min-width: 1024px) {
    .header-sp {
        display: none;
    }
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.header-icons {
    display: flex;
    gap: 30px;
    margin: 0 130px 0 85px;
}

.header-icons img {
    height: 24px;
    width: auto;
    cursor: pointer;
}

.header-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    z-index: 5;
}

.cloud-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 120%;
    height: auto;
    z-index: 1;
}

.hamburger {
    position: absolute;
    top: 40px;
    right: 20px;
    width: 24px;
    height: 18px;
    z-index: 2;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #4D301E;
    border-radius: 2px;
}

/* --------------- ハンバーガーメニュー --------------- */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh;
    background-color: #FFFFFF;
    opacity: 0.85;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 0 20px 20px 20px;
    box-sizing: border-box;
}

.menu-overlay.active {
    right: 0;
}

.menu-header {
    position: relative;
    width: calc(100% + 20px);
    height: 120px;
    margin-bottom: 20px;
    margin-right: -20px;
    margin-top: 0;
}

.menu-cloud {
    position: absolute;
    top: 0;
    right: 0;
    width: 125px;
    height: auto;
}

.menu-close {
    position: absolute;
    top: 29px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 40px;
    color: #4D301E;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    padding: 0;
    z-index: 2;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.menu-link {
    font-family: 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: bold;
    color: #4D301E;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.menu-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.menu-section-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: bold;
    color: #4D301E;
    margin: 0 0 -30px 0;
    letter-spacing: 0.05em;
}

.menu-button {
    background-color: #9DB5B2;
    color: #4D301E;
    text-decoration: none;
    padding: 8px 35px;
    border-radius: 20px;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    letter-spacing: 0.05em;
    border: 1px solid #4D301E;
    width: 120px;
    text-align: center;
    box-sizing: border-box;
}

.menu-footer {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.menu-sns {
    display: flex;
    gap: 50px;
}

.sns-icon {
    display: block;
    width: 50px;
    height: 50px;
}

.sns-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.menu-copyright {
    font-family: 'Libre Baskerville', serif;
    font-size: 10px;
    color: #4D301E;
    text-align: center;
    line-height: 1.6;
    margin: 0;
    gap: 5px;
}

.menu-copyright a {
    color: #4D301E;
    text-decoration: none;
}

.menu-copyright a:hover {
    text-decoration: underline;
}

/* --------------- taloページ専用スタイル --------------- */
.talo-main {
    background-color: #ffffff;
    min-height: calc(100vh - 80px);
    padding-bottom: 30px;
}

.product-hero {
    padding: 60px 20px 0 20px;
    text-align: center;
}

.product-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 32px;
    font-weight: 700;
    color: #4D301E;
    margin: 80px 0 10px 0;
    letter-spacing: 0.05em;
}

.product-price {
    font-family: 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: 400;
    color: #4D301E;
    margin: 0 0 30px 0;
}

.product-image-container {
    width: 100%;
    max-width: 335px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
}

.product-image-scroll {
    display: flex;
    gap: 20px;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.product-image-container:hover .product-image-scroll {
    animation-play-state: paused;
}

.product-image {
    width: 335px;
    height: 282px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    margin-bottom: 100px;
}

/* --------------- 商品詳細セクション --------------- */
.talo-text-box {
    position: relative;
    width: 335px;
    margin: 30px auto;
    color: #4D301E;
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    line-height: 2;
}

.talo-text-box p {
    position: relative;
    z-index: 2;
    text-align: left;
}

.talo-bg {
    position: absolute;
    top: 0;
    left: 50%;
    width: 260px;
    height: auto;
    transform: translateX(-50%);
    opacity: 0.13;
    z-index: 1;
    pointer-events: none;
}

.talo-list-box {
    width: 335px;
    margin: 30px auto;
    padding: 0;
    color: #4D301E;
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    line-height: 1.9;
    position: relative;
}

.talo-list-box::before,
.talo-list-box::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-image: radial-gradient(#4D301E 15%, transparent 16%);
    background-size: 6px 1px;
    background-repeat: repeat-x;
}

.talo-list-box::before {
    margin-bottom: 10px;
}

.talo-list-box::after {
    margin-top: 10px;
}

.list-title {
    font-weight: 700;
    margin: 0;
}

.list-dots {
    width: 34px;
    height: 8px;
    background-image: radial-gradient(#9ec3bc 50%, transparent 50%);
    background-size: 8px 8px;
    background-repeat: repeat-x;
    margin-top: 0;
    margin-bottom: 16px;
}

.cookie-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cookie-list li {
    margin: 4px 0;
}

.talo-info-box {
    width: 335px;
    margin: 30px auto;
    color: #4D301E;
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    line-height: 2;
}

.talo-info-box p {
    margin: 0 0 24px 0;
}

/* --------------- カートボタンセクション --------------- */
.add-to-cart-section {
    width: 335px;
    margin: 30px auto;
    text-align: center;
    padding-bottom: 30px;
}

.add-to-cart-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    background-color: #eadfca;
    border: 1px solid #4D301E;
    color: #4D301E;
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.1em;
    width: 100%;
    max-width: 335px;
    box-sizing: border-box;
    transition: background-color 0.3s;
}

.add-to-cart-button:hover {
    background-color: #aa998a;
}

/* --------------- ガイドリンクセクション --------------- */
.guide-link-section {
    width: 335px;
    margin: 30px auto 60px auto;
    text-align: center;
    position: relative;
    padding: 0;
}

.guide-link-section::before,
.guide-link-section::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: radial-gradient(circle at 1px 1px, #4D301E 1px, transparent 1px);
    background-size: 6px 1px;
    background-repeat: repeat-x;
}

.guide-link-section::before {
    top: -15px;
}

.guide-link-section::after {
    bottom: -15px;
}

.guide-link {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 0 5px;
    min-height: 24px;
    color: #4D301E;
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.1em;
}

.guide-link-section .guide-link::after {
    content: "＞";
    position: static;
    transform: none;
    margin-left: 10px;
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    font-weight: 400;
}

/* --------------- フッター --------------- */
.wave-separator-footer {
    width: 100%;
    height: 100px;
    margin-top: -1px;
    display: block;
    background-color: #FFFFFF;
}

.wave-separator-footer svg {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-section {
    background-color: #aa998a;
    padding: 60px 20px 40px;
    color: #FFFFFF;
    position: relative;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-link {
    font-family: 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.footer-lineup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-lineup-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 -30px 0;
    letter-spacing: 0.05em;
}

.footer-lineup-button {
    background-color: #9DB5B2;
    color: #4D301E;
    text-decoration: none;
    padding: 8px 35px;
    border-radius: 20px;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    letter-spacing: 0.05em;
    border: 1px solid #4D301E;
    width: 120px;
    text-align: center;
    box-sizing: border-box;
}

.footer-sns {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-bottom: 100px;
}

.footer-sns-icon {
    display: block;
    width: 50px;
    height: 50px;
}

.footer-sns-icon img {
    width: 100%;
    height: 100%;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-info {
    text-align: center;
}

.footer-privacy {
    font-family: 'Libre Baskerville', serif;
    font-size: 10px;
    color: #FFFFFF;
    line-height: 2;
    margin: 0 0 20px 0;
}

.footer-privacy a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-privacy a:hover {
    text-decoration: underline;
}

.footer-copyright {
    font-family: 'Libre Baskerville', serif;
    font-size: 9px;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
}

.top-button {
    position: fixed;
    bottom: 30px;
    right: 50%;
    transform: translateX(calc(187.5px - 25px));
    width: 50px;
    height: 76px;
    display: block;
    z-index: 100;
}

@media (min-width: 376px) {
    .top-button {
        right: calc(50% - 187.5px + 20px);
        transform: none;
    }
}

.top-button img {
    width: 100%;
    height: 100%;
    display: block;
}