@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%;
    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;
}

/* --------------- newsページ専用スタイル --------------- */
.news-main {
    background-color: #ffffff;
    padding-top: 80px;
    /* ヘッダーとの間に適切な余白 */
    padding-bottom: 30px;
    min-height: calc(100vh - 80px);
}

/* ページタイトルセクション */
.page-title-section {
    width: 100%;
    max-width: 375px;
    margin: 0 auto 50px;
    /* 下に適切な余白 */
    text-align: center;
}

/* タイトルテキスト (NEWS) */
.page-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: 700;
    color: #4D301E;
    text-align: center;
    margin: 0;
    padding: 0;
    letter-spacing: 0.1em;
    /* 文字間隔 */
}




/* --------------- ニュース一覧 --------------- */
.news-list {
    width: 100%;
    max-width: 335px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.news-item {
    margin-bottom: 40px;
}

.news-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-image {
    width: 100%;
    aspect-ratio: 335 / 220;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 12px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px 100px 10px 10px;
}



.news-date {
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 400;
    color: #4D301E;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}


h2.news-title {
    font-family: 'Libre Baskerville', serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #4D301E;
    margin: 0 !important;
    line-height: 1.5;
    text-align: left !important;
}

.news-title {
    padding: 0;
}


/* --------------- ページネーション --------------- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
    padding-bottom: 30px;
}

.page-number,
.page-next {
    width: 40px;
    height: 40px;
    border: 1px solid #4D301E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    color: #4D301E;
    background-color: #ffffff;
    transition: background-color 0.3s, color 0.3s;
}

.page-number:hover,
.page-next:hover {
    background-color: #eadfca;
}



/* --------------- フッター --------------- */
.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;
}