@charset "utf-8";

/*------- モバイルファースト -------*/

/*--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧
ここから共通・ベースの設定 (モバイル/SP)
--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧*/
/*-✦-✦- カラーパレット定義 -✦-✦-*/
:root {
    --color-base: #F9F3F8;
    --color-main: #2D1B3D;
    --color-main-light: #8B6E9E;
    --color-main-lighter: #C4B3CE;
    --color-accent: #FFE9B0;
    --color-text-dark: #2D2D2D;
    --color-text-light: #FAF8F9;
}

/*-✦-✦- フォント定義 -✦-✦-*/
:root {
    --font-en: 'Cormorant Garamond', serif;
    --font-ja: 'Noto Serif JP', serif;
    --font-script: 'Dancing Script', cursive;
}

/*-✦-✦- bodyと基本要素 -✦-✦-*/
body {
    font-family: var(--font-ja);
    color: var(--color-text-dark);
    line-height: 1.8;
    background-color: var(--color-base);
    -webkit-font-smoothing: antialiased;
}

/* 無料サーバー広告対策 */
body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

a {
    color: inherit;
    text-decoration: none;
    /* リンクのホバーアニメーションを設定する場合は、ここに transition を記述 */
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

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

/*-✦-✦- 共通コンポーネント -✦-✦-*/
/* セクションタイトル */
.section-title {
    text-align: center;
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 800;
    margin-top: 16px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    color: var(--color-main);
}

/* 白文字用モディファイア */
.section-title--white {
    color: var(--color-text-light);
}

/* セクション間の共通パディング */
section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/*-✦-✦- セクション導入文 共通スタイル (section-lead) -✦-✦-*/
.section-lead {
    max-width: 700px;
    margin: 0 auto 50px;
    /* 上下中央寄せと下部マージン */
    line-height: 1.8;
    font-size: 1.0rem;
    /* 基本サイズ */
    text-align: left;
    padding: 0 16px;
    /* 左右の余白 */
    color: var(--color-text-dark);
}

/*-✦-✦- ボタン共通スタイル -✦-✦-*/
.btn {
    display: inline-block;
    padding: 10px 32px;
    font-family: var(--font-en);
    font-size: 1em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
}

/* ゴールドボタン */
.btn--gold {
    color: var(--color-main);
    background-color: var(--color-accent);
    border: 1px solid transparent;
    /* 枠線用 */
    box-shadow: 0 0 20px rgba(255, 233, 176, 0.6);
    animation: moonGlow 3s ease-in-out infinite;
}

.btn--gold:hover {
    background-color: var(--color-base);
    /* 薄ピンク */
    border-color: var(--color-main);
    /* 紫の枠 */
    color: var(--color-main);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(139, 110, 158, 0.5);
    /* 紫っぽい影 */
    opacity: 1;
    animation: none;
    /* ホバー時は光るアニメーション停止 */
}

/* お月さまのようにぽわわーんと光るアニメーション */
@keyframes moonGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(255, 233, 176, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 233, 176, 0.7);
    }
}

html {
    scroll-behavior: smooth;
}

/*-✦-✦- サイト全体の幅制御 -✦-✦-*/
.site-wrapper {
    max-width: 375px;
    margin: 0 auto;
    width: 100%;
}


/* ------------------------------------------------------------------------------------------------------------ */

/*--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧--
 ここから使用するフォントのメモ 
.noto-serif-jp-<uniquifier> {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.cormorant-garamond-<uniquifier> {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.dancing-script-<uniquifier> {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧--*/

/* ------------------------------------------------------------------------------------------------------------ */

/*--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧
ここからヒーロー・コンセプトセクション
--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧*/

/*-✦-✦- 共通背景ラッパー (bg-starry-wrapper) -✦-✦-*/
.bg-starry-wrapper {
    background-image:
        /* 1. 星空テクスチャの画像 (前面) */
        url('../img/common/hero-sky.jpg'),
        /* 2. 深い紫のグラデーション (背面) */
        linear-gradient(to bottom,
            var(--color-main) 0%,
            var(--color-main-light) 100%);
    background-size: cover;
    background-position: center top;
    color: var(--color-text-light);
    /* このエリアのテキストを白文字に統一 */
}

/* セクション内のパディング (左右の余白) */
.hero,
.concept {
    padding-left: 16px;
    padding-right: 16px;
}

/*-✦-✦- ヒーローセクション (hero) -✦-✦-*/
.hero {
    text-align: center;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 240px;
    padding-bottom: 160px;
}

/* ヒーローメインロゴ */
.hero__logo-main {
    max-width: 400px;
    margin: 0 auto 30px;
}

/* メインタイトル (Theia Charis) */
.hero__title {
    font-family: var(--font-script);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 80px;
    margin-bottom: 8px;

}

/* サブタイトル (-Organic Essential Oil-) */
.hero__title span {
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    display: block;
    text-align: right;
    margin-top: 4px;
}

/*-✦-✦- 日本語キャッチフレーズ共通スタイル -✦-✦-*/
.concept__title-message {
    font-family: var(--font-ja);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-main);
    margin: 0px auto;
    padding: 48px 16px;
    text-align: center;
}

/* 最後のメッセージは特に大きくするモディファイア */
.concept__title-message--final {
    font-size: 1.2rem;
    margin-top: 40px;
    margin-bottom: 0;
    color: var(--color-main);
}

/*-✦-✦- コンセプトセクション (concept) -✦-✦-*/
.concept {
    padding-top: 0;
    padding-bottom: 80px;
}

.concept__text {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.0rem;
    padding: 24px 16px;
}

.concept__text p {
    margin-bottom: 24px;
}

/* ------------------------------------------------------------------------------------------------------------ */

/*--✧--✧--✧--✧--✧--✧--✧
ここからヘッダー (header)
--✧--✧--✧--✧--✧--✧--✧*/

/*-✦-✦- ヘッダー全体の設定 -✦-✦-*/
.header {
    position: fixed;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 10000;
    /* 広告より前面に */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 16px 16px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.header--scrolled {
    background-color: rgba(45, 27, 61, 0.95);
}

/* contactページなど、最初から紫のページ用 */
.page-header-main .header {
    background-color: rgba(45, 27, 61, 0.95) !important;
}

/*-✦-✦- ロゴ (header__logo) -✦-✦-*/
.header__logo {
    max-width: 120px;
    height: auto;
    z-index: 101;
    /* メニューより前面に */
}

/*-✦-✦- メニューボタン (header__menu-btn) -✦-✦-*/
.header__menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 6px 0;
    z-index: 101;
    transition: filter 0.3s ease;
    /* アニメーション */
}

/* ホバー時に光る */
.header__menu-btn:hover {
    filter: drop-shadow(0 0 15px rgba(255, 233, 176, 0.9));
    /* ゴールドに光る */
}

/* ホバー時にバーも光る */
.header__menu-btn:hover span {
    box-shadow: 0 0 10px rgba(255, 233, 176, 0.7);
}

.header__menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}

.header__menu-btn--active span {
    background-color: var(--color-main);
}

/*-✦-✦- サイトラッパー (site-wrapper) の調整 -✦-✦-*/
.site-wrapper {
    padding-top: 0px;
}

/*-✦-✦- ナビゲーションメニュー本体 (header__nav) -✦-✦-*/
.header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-accent);
    z-index: 90;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    padding-top: 40px;
    min-height: 400px;
    /* 最小の高さを追加 */
}

.header__nav--open {
    transform: translateY(0);
    /* 下にスライドイン */
}

/*-✦-✦- ナビゲーションリスト (header__nav-list) -✦-✦-*/
.header__nav-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 48px 0 64px;
    /* 上下のパディングを増やす */
    list-style: none;
    margin: 0;
}

.header__nav-list li {
    margin: 8px 0;
}

.header__nav-list a {
    color: var(--color-main);
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
}

.header__nav-list a:hover {
    opacity: 0.7;
    /* 透明度を変更（0〜1の値） */
    color: var(--color-main-light);
    /* ホバー時の色を変更 */
}

/*-✦-✦- カートアイコンの追加 (Material Icons版) -✦-✦-*/
.header__nav-cart a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header__nav-cart a::after {
    content: 'shopping_cart';
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 1.8rem;
    line-height: 1;
}

/*-✦-✦- メニューが開いた状態のボタンアニメーション -✦-✦-*/
.header__menu-btn--active span:nth-child(2) {
    opacity: 0;
}

.header__menu-btn--active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header__menu-btn--active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/*-✦-✦- オーバーレイ -✦-✦-*/
.header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    z-index: 85;
    /* ナビより下に変更 */
    pointer-events: none;
    /* クリックを透過させる */
}

.header__overlay--visible {
    opacity: 1;
    visibility: visible;
}

/* スクロール防止 */
body.no-scroll {
    overflow: hidden;
}

/*-✦-✦- メニューが開いたときにロゴを非表示 -✦-✦-*/
.header__logo {
    max-width: 120px;
    height: auto;
    z-index: 101;
    transition: opacity 0.3s ease;
    /* フェードアウト */
}

/* メニューが開いたらロゴを消す */
body.no-scroll .header__logo {
    opacity: 0;
    pointer-events: none;
    /* クリックできないように */
}

/* ヘッダーを最初からメインカラーにするクラス */
.page-header-main .header {
    background-color: rgba(45, 27, 61, 0.95);
}

/* ------------------------------------------------------------------------------------------------------------ */

/*--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧
ここからtopプロダクツセクション (.products)
--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧*/

.products {
    padding: 60px 0;
    background-color: var(--color-base);
}

.products .section-title {
    margin-bottom: 40px;
}

/*-✦-✦- スライダーコンテナ -✦-✦-*/
.products__slider-container {
    width: 100%;
    position: relative;
    /* 画像を重ねるため */
    margin-bottom: 40px;
    height: 300px;
    /* 高さを固定 */
}

.products__slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.products__slide {
    position: absolute;
    /* 画像を全て同じ位置に重ねる */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* 最初は透明 */
    transition: opacity 1.5s ease-in-out;
}

/* 表示中のスライド */
.products__slide--active {
    opacity: 1;
    /* 表示 */
}

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

/*-✦-✦- コンテンツエリア -✦-✦-*/
.products__content {
    text-align: center;
    padding: 0 24px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* ボタンを中央に */
}

/* ------------------------------------------------------------------------------------------------------------ */
/*--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧
ここからtopオンラインショップセクション (.online-shop)
--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧*/
.online-shop {
    position: relative;
    min-height: 100vh;
    /* セクションの高さ */
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

/*-✦-✦- 背景画像 -✦-✦-*/
.online-shop__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* コンテンツの後ろに */
}

.online-shop__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画面全体を覆う */
    object-position: center;
    /* 画像の中心を基準に右寄せに配置 */
}

/* 背景を少し暗くして文字を読みやすく */
.online-shop__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 27, 61, 0.15);
    /* 紫の半透明オーバーレイ */
}

/*-✦-✦- コンテンツエリア -✦-✦-*/
.online-shop__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 24px 200px;
    /* ここでパディング */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* 上下に均等配置 */
    min-height: 100vh;
    /* コンテンツも画面いっぱい */
}

.online-shop .section-title {
    color: var(--color-main);
    margin-bottom: 0;
    /* marginをリセット */
}

.online-shop__text {
    color: var(--color-main);
    font-size: 1.0rem;
    line-height: 1.6;
    margin-top: 88px;
    /* 見出しとの間隔 */
    margin-bottom: auto;
    /* 下に余白を自動で確保 */
    text-align: left;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 24px;
    border-radius: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

/* ボタンを絶対配置で下に固定 */
.online-shop__content .btn {
    position: absolute;
    bottom: 50px;
    /* 下からpxの位置に固定 */
    left: 50%;
    transform: translateX(-50%);
    /* 中央揃え */
}

/* ------------------------------------------------------------------------------------------------------------ */

/*--✧--✧--✧--✧--✧--✧--✧--✧--✧
ここからtopガイドセクション (.guide)
--✧--✧--✧--✧--✧--✧--✧--✧--✧*/

/*-✦-✦- セクション全体 (guide) -✦-✦-*/
.guide {
    padding: 80px 16px;
    text-align: center;
}

/*-✦-✦- セクションタイトル (GUIDE) -✦-✦-*/
.guide .section-title {
    margin-bottom: 40px;
}

/*-✦-✦- ガイドアイテムのリストコンテナ (guide__list) -✦-✦-*/
.guide__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

/*-✦-✦- 各ガイドアイテム (guide__item) -✦-✦-*/
.guide__item {
    position: relative;
    background-color: transparent;
    border: none;
    padding: 24px;
    text-align: left;
    overflow: hidden;
}

/*-✦-✦- ヘッダー部分（タイトル+アイコン） -✦-✦-*/
.guide__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 16px;
}

/*-✦-✦- テキストコンテンツエリア -✦-✦-*/
.guide__text-content {
    flex: 1;
}

/*-✦-✦- 英語タイトル -✦-✦-*/
.guide__title-en {
    font-family: var(--font-en);
    color: var(--color-main);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

/*-✦-✦- 日本語サブタイトル -✦-✦-*/
.guide__title-ja {
    color: var(--color-main-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/*-✦-✦- アイコン画像 (guide__icon) -✦-✦-*/
.guide__icon {
    flex-shrink: 0;
}

.guide__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*-✦-✦- アイコン個別調整 -✦-✦-*/
/* 月のアイコン */
.guide__icon--moon {
    transform: translateY(-10px);
    transform: translateX(40px);
    opacity: 0.6;
    width: 110px;
    height: 110px;
}

/* 星のアイコン */
.guide__icon--star {
    transform: translateY(0px);
    transform: translateX(20px);
    width: 110px;
    height: 110px;
}

/* キラキラのアイコン */
.guide__icon--scene {
    transform: translateY(30px);
    transform: translateX(30px);
    opacity: 0.7;
    width: 118px;
    height: 118px;
}

/*-✦-✦- アイテム説明文 (guide__desc) -✦-✦-*/
.guide__desc {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

/* ------------------------------------------------------------------------------------------------------------ */

/*--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧
ここからtopコンタクトセクション(.contact)
--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧*/

.contact {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    overflow: hidden;
}

/*-✦-✦- 背景画像 -✦-✦-*/
.contact__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

/* 背景オーバーレイ */
.contact__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 27, 61, 0.5);
}

/*-✦-✦- コンテンツエリア -✦-✦-*/
.contact__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact__text {
    color: var(--color-text-light);
    font-size: 1.0rem;
    line-height: 1.8;
    margin-bottom: 32px;
    text-align: left;
}

/* ------------------------------------------------------------------------------------------------------------ */

/*--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧
ここからフッターセクション (.footer)
--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧*/
.footer {
    background-color: var(--color-main);
    /* 濃いメインカラー */
    color: var(--color-text-light);
    /* 白文字 */
    text-align: center;
    padding: 40px 16px;
}

/*-✦-✦- ロゴ -✦-✦-*/
.footer__logo {
    max-width: 88px;
    margin: 0 auto 40px;
}

/* aタグにホバー効果を追加 */
.footer__logo a {
    display: inline-block;
    /* 重要！ */
    transition: filter 0.3s ease, transform 0.3s ease;
}


/* ホバー時に光る */
.footer__logo:hover {
    filter: drop-shadow(0 0 8px rgba(255, 233, 176, 0.8));
    /* ゴールドに光る */
    transform: scale(1);
    /* 少し大きくなる */
}


/*-✦-✦- ナビゲーション -✦-✦-*/
.footer__nav-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    /* SNSアイコンとの間隔 */
}

.footer__nav-list li {
    margin-bottom: 16px;
    /* 各項目間の間隔 */
}

.footer__nav-list a {
    font-family: var(--font-en);
    font-size: 1.2rem;
    font-weight: 500;
    /* アイコンとテキストを縦方向で中央に揃える */
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* ホバー時に控えめに光る */
.footer__nav-list a:hover {
    color: var(--color-accent);
    text-shadow: 0 0 12px rgba(255, 233, 176, 0.5);
    /* ゴールドの光 */
    opacity: 1;
    /* 透明度をリセット */
}

.footer__nav-list a:hover {
    opacity: 0.6;
    color: var(--color-main-lighter);
    /* ホバー時の色を変更 */
}


/*-✦-✦- フッターのMaterial Iconのスタイル調整 -✦-✦-*/
.footer__nav-list .material-icons {
    font-size: 1.3rem;
    /* テキストの1.0remに対して適切なサイズに調整 */
    line-height: 1;
    /* 行の高さを1に設定してテキストとのズレを調整 */
}

/*-✦-✦- SNSアイコン -✦-✦-*/
.footer__sns {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.footer__sns img {
    width: 28px;
    height: 28px;
    transition: filter 0.3s ease, transform 0.3s ease;
    /* アニメーション */
}

/* ホバー時に光る */
.footer__sns a:hover img {
    filter: drop-shadow(0 0 16px rgba(255, 233, 176, 0.8));
    /* ゴールドに光る */
    transform: scale(1);
    /* 少し大きくなる */
}

/*-✦-✦- コピーライト -✦-✦-*/
.copyright {
    font-size: 0.75rem;
    line-height: 1.5;
}

.footer p:last-child {
    font-size: 0.7rem;
    opacity: 0.8;
}


/* ✧✦ ここまでトップページ ✧✦------------------------------------------------------------------------------------------------------------ */

/*--✧--✧--✧--✧--✧
プロダクツ下層ページ
--✧--✧--✧--✧--✧*/

/*-✦-✦- ページヘッダー（背景画像付き）-✦-✦-*/
.page-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 100px;
    overflow: hidden;
}

.page-header__title {
    font-family: var(--font-en);
    font-size: 2.5rem;
    color: var(--color-text-light);
    letter-spacing: 0.1em;
}

/*-✦-✦- 導入部分（装飾と文章）-✦-✦-*/
.page-intro {
    background-color: var(--color-base);
    padding: 0 0 60px;
    text-align: center;
    overflow: hidden;
}

.page-intro__decoration {
    width: 100%;
    max-width: none;
    margin: 0 -10% 30px;
}

.page-intro__decoration img {
    display: block;
    width: 100%;
    height: auto;
}

.page-intro__text {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 2.0;
    text-align: center;
    padding: 0 20px;
}

.page-intro__note {
    color: var(--color-main-light);
    font-size: 0.8rem;
    text-align: left;
    /* 2行目以降をアイコンの後に揃えるための設定 */
    padding-left: 1em;
    text-indent: -1em;
    /* 1行目を左に戻す */
}

/*-✦-✦- 商品リスト全体ラッパー -✦-✦-*/
.products-list-wrapper {
    background-color: var(--color-base);
    padding-bottom: 0;
}

/*-✦-✦- 商品カテゴリー -✦-✦-*/
.products-category {
    padding: 0 20px 60px;
    text-align: center;
}

.products-category:first-child {
    padding-top: 0;
}

.products-category__title {
    font-family: var(--font-en);
    font-size: 1.8rem;
    color: var(--color-main);
    margin-bottom: 40px;
}

/*-✦-✦- 商品グリッド (2列レイアウト) -✦-✦-*/
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
    max-width: 400px;
    margin: 0 auto;
}

.products-grid--center {
    grid-template-columns: 1fr;
    justify-items: center;
}

/*-✦-✦- 商品アイテムカード -✦-✦-*/
.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-item__img {
    width: 100%;
    max-width: 64px;
    margin-bottom: 8px;
}

.products-grid--center .product-item__img {
    max-width: 104px;
    /* カリスバームは大きく */
}

.product-item__img img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.product-item__name-en {
    font-family: var(--font-en);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-main);
    margin-bottom: 2px;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.product-item__name-ja {
    font-family: var(--font-ja);
    font-size: 0.7rem;
    color: var(--color-main-light);
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.product-item__icon {
    height: 14px;
    /* 高さ固定 */
    width: auto;
    /* 幅は自動（複数ある場合は横に長くなる） */
    opacity: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-item__icon img {
    display: block;
    height: 100%;
    /* 高さを40pxに合わせる */
    width: auto;
    /* 幅は自動調整 */
    object-fit: contain;
}

/*-✦-✦- アイコンの説明セクション -✦-✦-*/
.page-intro__icon-guide {
    padding: 30px 20px;
    margin: 40px 20px 0;
    border-radius: 8px;
    text-align: center;
}

.page-intro__icon-title {
    font-family: var(--font-en);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 20px;
}

.page-intro__icon-group {
    margin-bottom: 24px;
}

.page-intro__icon-group-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-main);
    margin-bottom: 12px;
}

.page-intro__icon-list {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.page-intro__icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.page-intro__icon-sample {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.page-intro__icon-item span {
    font-size: 0.8rem;
    color: var(--color-main-light);
}

.page-intro__icon-note {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin-top: 20px;
    text-align: left;
}

.page-intro__icon-note a {
    color: var(--color-main);
    text-decoration: underline;
}

.page-intro__icon-note a:hover {
    opacity: 0.7;
    color: var(--color-main-light);
}

/*-✦-✦- オンラインショップ（フッターとの隙間をなくす）-✦-✦-*/
.online-shop {
    margin: 0;
    padding: 0;
}

/*--✧--✧--✧--✧--✧
モーダルウィンドウ
--✧--✧--✧--✧--✧*/

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.modal.is-active {
    display: block;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    background-color: var(--color-base);
    border: 2px solid var(--color-text-dark);
    overflow-y: auto;
    padding: 30px 20px;
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-dark);
    cursor: pointer;
    line-height: 1;
    z-index: 1;
}

.modal__close:hover {
    opacity: 0.7;
}

.modal__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal__image {
    text-align: center;
    margin-bottom: 10px;
}

.modal__image img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.modal__info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal__section-title {
    font-family: var(--font-en);
    font-size: 1.1rem;
    color: var(--color-main);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-main-light);
}

.modal__detail-list {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 8px 12px;
    font-size: 0.9rem;
}

.modal__detail-list dt {
    font-weight: 600;
    color: var(--color-text-dark);
}

.modal__detail-list dd {
    color: var(--color-text);
}

.modal__description,
.modal__blend,
.modal__ingredients {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text);
}

/* 商品アイテムをクリック可能に */
.product-item {
    cursor: pointer;
    transition: transform 0.2s ease;
}

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

/* ------------------------------------------------------------------------------------------------------------ */

/* --✧--✧--✧--✧--✧
ここからガイド下層
--✧--✧--✧--✧--✧ */

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-header__title {
    position: relative;
    z-index: 2;
    margin: 0;
}

/* -✦-✦- ページ導入部分 -✦-✦- */
.page-intro {
    padding: 0 0 60px;
    text-align: center;
    background-color: var(--color-base);
}

.page-intro__decoration {
    width: 120%;
    max-width: none;
    margin: 0 -10% 30px;
}

.page-intro__decoration img {
    display: block;
    width: 100%;
    height: auto;
}

.page-intro__text {
    max-width: 650px;
    margin: 0 auto;
}

.page-intro__text p {
    margin-bottom: 20px;
}

/* -✦-✦- ページ内ナビゲーション -✦-✦- */
.guide-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0 16px 80px;
    background-color: var(--color-base);
}

.guide-nav__link {
    display: inline-block;
    color: var(--color-main);
    font-family: var(--font-script);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s, transform 0.3s, color 0.3s;
    /* colorのトランジション追加 */
}

.guide-nav__link:hover {
    opacity: 0.7;
    transform: translateY(-2px);
    color: var(--color-main-lighter);
    /* ホバー時に薄い紫に変更 */
}

/* -✦-✦- ガイドコンテンツラッパー -✦-✦- */
.guide-content-wrapper {
    background-color: var(--color-base);
}

/* -✦-✦- ガイドセクション共通 -✦-✦- */
.guide-detail-section {
    padding: 24px 24px;
}

.guide-detail-section__header {
    text-align: center;
    margin-bottom: 40px;
}

/* -✦-✦- GUIDEセクションアイコン -✦-✦- */
.guide-detail-section__icon {
    max-width: 60px;
    margin: 0 auto 0;
}

/* セクション英語タイトル（メインカラー） */
.section-title--dark {
    color: var(--color-main);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

/* セクション日本語サブタイトル */
.section-subtitle--dark {
    color: var(--color-main-light);
    font-size: 1rem;
    font-weight: 700;
}

/* --✧--✧--✧--✧--✧--✧--✧--✧--✧ 
ここから月の満ち欠けと香りセクション
--✧--✧--✧--✧--✧--✧--✧--✧--✧ */

.guide-moon {
    background-color: var(--color-base);
}

.moon-phase-list {
    display: flex;
    flex-direction: column;
    gap: 88px;
    max-width: 900px;
    margin: 0 auto;
}

.moon-phase-item {
    position: relative;
    text-align: center;
    padding: 0;
}

/* -✦-✦- 月の背景画像 -✦-✦- */
.moon-phase-item__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    opacity: 0.4;
    z-index: 0;
}

.moon-phase-item__bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.moon-phase-item__content {
    position: relative;
    z-index: 1;
    padding: 24px 16px;
}

.moon-phase-item__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-en);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-main);
}

.moon-phase-item__subtitle {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-main-light);
    margin-bottom: 16px;
}

.moon-phase-item__recommend {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    line-height: 1.7;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.moon-phase-item__recommend p {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

/* 精油の説明を小さく控えめに */
.oil-note {
    font-size: 0.8rem;
    color: var(--color-main-light);
}

.moon-phase-item__text {
    position: relative;
    z-index: 1;
    line-height: 1.7;
    font-size: 0.9rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --✧--✧--✧--✧--✧--✧--✧--✧--✧ 
ここから星座と香りセクション
--✧--✧--✧--✧--✧--✧--✧--✧--✧ */

.guide-zodiac {
    background-color: var(--color-base);
}

.zodiac-element-list {
    max-width: 1000px;
    margin: 0 auto;
}

/* セパレーター非表示 */
.zodiac-element-separator {
    display: none;
}

/* -✦-✦- エレメントアイテム共通 -✦-✦- */
.zodiac-element-item {
    /* padding: 0 24px 40px; を以下のように戻します */
    padding: 60px 24px 40px;
    /* 上部のパディングをここで設定 */
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.element-bg-icon {
    position: absolute;
    top: 60px;
    /* 上端からの微調整 */
    left: 50%;
    transform: translateX(-50%);
    /* X軸で完全に中央寄せ */
    width: 60%;
    height: auto;
    object-fit: contain;
    max-width: 400px;
    z-index: 0;

    /* デザインカンプに合わせた透明度 */
    opacity: 0.3;
}

/* 説明ブロックの下にしっかり余白を作る */
.element-description {
    margin-bottom: 80px;
}

/* -✦-✦- エレメントラッパー（背景アイコンの基準） -✦-✦- */
.zodiac-element-item__wrapper {
    position: relative;
    z-index: 10;
}

/* -✦-✦- エレメントタイトル -✦-✦- */
.zodiac-element-item__title {
    position: relative;
    z-index: 10;
    font-family: var(--font-en);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-main);
    text-align: center;
    margin-bottom: 12px;
}

.zodiac-element-item__subtitle {
    font-family: var(--font-ja);
    font-size: 0.87rem;
    font-weight: 700;
    display: inline;
}

.zodiac-element-item__subtitle::before {
    content: ' / ';
}

.zodiac-element-item__lead {
    position: relative;
    z-index: 10;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--color-text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.zodiac-element-item__text {
    position: relative;
    z-index: 10;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--color-text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 星座詳細は背景の外 */
.zodiac-sign-detail {
    position: relative;
    z-index: 10;
    gap: 24px;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    /* カンプに合わせた最大幅を設定 (任意) */
    margin: 0 auto;
    /* 中央寄せ */
}

/* -✦-✦- 星座アイテム -✦-✦- */
.zodiac-sign-item {
    background-color: var(--color-text-light);
    border: 2px solid var(--color-main);
    border-radius: 0;
    padding: 24px 16px;
    width: 100%;
}

/* -✦-✦- 星座タイトル -✦-✦- */
.zodiac-sign-item__title {
    font-family: var(--font-ja);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-main);
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    ;
    justify-content: center;
    gap: 6px;
}

/* 英語名にのみ適用するフォント */
.zodiac-en-name {
    font-family: var(--font-en);
    font-size: 1.1rem;
    font-weight: 700;
}

/* 日付にのみ適用する文字サイズ */
.zodiac-date-small {
    font-size: 0.8em;
    /* 親要素（1.0rem）の%のサイズに縮小 */
}

/* -✦-✦- 星座絵文字風アイコン -✦-✦- */
.zodiac-sign-item__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

.zodiac-sign-item__keyword {
    font-size: 0.9rem;
    font-family: var(--font-ja);
    font-weight: 500;
    color: var(--color-main-light);
    margin-bottom: 16px;
    text-align: center;
}

.zodiac-sign-item__oil-recommend {
    margin-bottom: 14px;
    line-height: 1.6;
}

.zodiac-sign-item__oil-recommend p {
    margin-bottom: 4px;
    font-size: 0.85rem;
}

.zodiac-sign-item__description {
    line-height: 1.5;
    font-size: 0.85rem;
    margin-bottom: 18px;
    color: var(--color-text-dark);
}

/* -✦-✦- 対極の星座 -✦-✦- */
.zodiac-sign-item__opposite {
    padding: 16px 0;
    margin-top: 16px;
    border-top: 1px solid var(--color-main-lighter);
}

.zodiac-sign-item__opposite-title {
    font-size: 0.9rem;
    font-family: var(--font-ja);
    font-weight: 600;
    color: var(--color-main);
    text-align: center;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.zodiac-sign-item__icon--small {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    object-fit: contain;
}

.zodiac-sign-item__opposite-oil {
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.zodiac-sign-item__opposite-text {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--color-text-dark);
}

/* --✧--✧--✧--✧--✧--✧--✧--✧--✧ 
ここから香りの選び方セクション
--✧--✧--✧--✧--✧--✧--✧--✧--✧ */

.guide-time {
    background-color: var(--color-base);
}

.time-use-list {
    display: flex;
    flex-direction: column;
    gap: 56px;
    max-width: 800px;
    margin: 0 auto;
}

.time-use-item {
    text-align: center;
}

/* -✦-✦- scene別アイコン -✦-✦- */
.time-use-item__icon {
    width: 280px;
    height: 280px;
    margin: 0 auto 16px;
}

.time-use-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.time-use-item__title-wrap {
    padding: 16px 0 0 0;
}

/* -✦-✦- scene別メインタイトル -✦-✦- */
.time-use-item__main-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-main);
}

/* -✦-✦- scene別サブタイトル -✦-✦- */
.time-use-item__subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-main-light);
}

/* 【新規追加】 time-use-item全体を背景の親要素として利用し、タイトル下のエリアをカバー */
.time-use-item {
    text-align: center;
    position: relative;
    /* 子要素のabsolute基準にするため追加 */
    z-index: 0;
    /* 他の要素より奥になるように設定 */
}

/* 【新規追加】 .time-use-item の ::after でタイトルとコンテンツを囲むエリアに背景を作成 */
.time-use-item::after {
    content: '';
    position: absolute;
    /* アイコンの下、タイトルラップの直下から開始するように配置を調整 */
    top: 280px;
    /* アイコンの高さ(280px) + margin(16px) 程度を目安に調整してください */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    /* 幅を狭めて左右の余白を確保 */
    max-width: 700px;
    /* 最大幅も設定 */
    height: calc(100% - 300px);
    /* time-use-item全体の高さからアイコン等の高さを引く */
    background-image: url('../img/guide/scene-bg.png');
    background-size: 100% 100%;
    /* 幅と高さを100%にして1枚の画像として表示 */
    background-position: center center;
    background-repeat: no-repeat;
    /* 繰り返しなし */
    opacity: 0.4;
    z-index: -1;
    /* 必ずコンテンツより奥に配置 */
}

/* -✦-✦- scene別テキストエリア -✦-✦- */
.time-use-item__content {
    padding: 24px 32px 48px 32px;
    overflow: hidden;
    /* z-index: 1; を明示的に追加して、テキストを最前面に持ってくることを推奨 */
    position: relative;
    z-index: 1;
}

/* テキストを前面に */
.time-use-item__detail {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    line-height: 1.6;
    text-align: left;
}

.time-use-item__detail:last-child {
    margin-bottom: 0;
}

.time-use-item__heading {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-main);
    margin-bottom: 6px;
}

.time-use-item__detail p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 6px;
}

.time-use-item__note {
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 8px;
}

/* ------------------------------------------------------------------------------------------------------------ */
/*--✧--✧--✧--✧--✧--✧-
ここからコンタクト下層
--✧--✧--✧--✧--✧--✧*/

/*-✦-✦- CONTACTセクション全体 -✦-✦-*/
.contact-page {
    background-color: var(--color-base);
    padding: 80px 0 48px;
}

/*-✦-✦- コンタクトページのコンテナ -✦-✦-*/
.contact-page__container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

/*-✦-✦- 導入文 -✦-✦-*/
.contact__intro {
    margin-bottom: 48px;
    text-align: left;
}

/*-✦-✦- フォーム全体 -✦-✦-*/
.contact-page__form {
    width: 100%;
}

/*-✦-✦- フォームグループ（各入力項目の枠） -✦-✦-*/
.form__group {
    margin-bottom: 32px;
}

/*-✦-✦- ラベル -✦-✦-*/
.form__label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--color-main);
}

/*-✦-✦- 必須マーク -✦-✦-*/
.form__required {
    display: inline-block;
    background-color: var(--color-main);
    color: var(--color-text-light);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 500;
}

/*-✦-✦- 入力フィールド共通 -✦-✦-*/
.form__input,
.form__textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1.0rem;
    font-family: var(--font-ja);
    border: 2px solid var(--color-main-lighter);
    border-radius: 8px;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-main);
    box-shadow: 0 0 0 3px rgba(45, 27, 61, 0.1);
}

/*-✦-✦- テキストエリア -✦-✦-*/
.form__textarea {
    resize: vertical;
    min-height: 150px;
}

/*-✦-✦- プライバシーポリシーセクション -✦-✦-*/
.privacy {
    margin-top: 48px;
    margin-bottom: 32px;
}

.privacy__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 16px;
}

.privacy__text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/*-✦-✦- プライバシーポリシー詳細ボックス -✦-✦-*/
.privacy__policy {
    background-color: var(--color-text-light);
    border: 2px solid var(--color-main-lighter);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    max-height: 300px;
    overflow-y: auto;
}

.privacy__policy-title {
    font-size: 1.0rem;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 20px;
    text-align: center;
}

/*-✦-✦- ポリシーの各セクション -✦-✦-*/
.privacy__section {
    margin-bottom: 24px;
}

.privacy__section:last-child {
    margin-bottom: 0;
}

.privacy__section h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 8px;
}

.privacy__section p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.privacy__section ul {
    font-size: 0.85rem;
    line-height: 1.7;
    padding-left: 0;
    list-style: none;
}

.privacy__section ul li {
    margin-bottom: 4px;
}

/*-✦-✦- チェックボックス -✦-✦-*/
.form__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form__checkbox label {
    font-size: 0.95rem;
    cursor: pointer;
}

/*-✦-✦- 注意事項 -✦-✦-*/
.form__notes {
    background-color: rgba(139, 110, 158, 0.1);
    border-left: 4px solid var(--color-main-light);
    padding: 16px;
    margin-bottom: 48px;
    border-radius: 4px;
}

.form__notes p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.form__notes p:last-child {
    margin-bottom: 0;
}

/*-✦-✦- 送信ボタンエリア -✦-✦-*/
.form__submit {
    text-align: center;
}

.form__submit .btn {
    min-width: 200px;
    padding: 14px 48px;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}

/*-✦-✦- 入力フィールドの状態による見た目変更 -✦-✦-*/

/* 入力前・空の状態 */
.form__input:invalid,
.form__textarea:invalid {
    border-color: var(--color-main-lighter);
    background-color: #fff;
}

/* 入力済み・有効な状態 */
.form__input:valid,
.form__textarea:valid {
    border-color: var(--color-main);
    background-color: rgba(139, 110, 158, 0.05);
    /* 薄い紫 */
}

/* フォーカス時 */
.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-main);
    box-shadow: 0 0 0 3px rgba(45, 27, 61, 0.1);
    background-color: #fff;
}

/* 必須項目が空でフォーカスが外れた時 */
.form__input:invalid:not(:focus):not(:placeholder-shown),
.form__textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #d32f2f;
    /* 赤 */
    background-color: rgba(211, 47, 47, 0.05);
    /* 薄い赤 */
}

/* チェックボックスの見た目も変更 */
.form__checkbox input[type="checkbox"]:checked+label {
    color: var(--color-main);
    font-weight: 600;
}


/*--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧
ここからABOUT USセクション
--✧--✧--✧--✧--✧--✧--✧--✧--✧--✧*/

.about-us {
    background-color: var(--color-base);
    padding: 80px 0;
}

.about-us__container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

/*-✦-✦- 会社情報リスト -✦-✦-*/
.about-us__list {
    margin-top: 40px;
}

.about-us__item {
    display: flex;
    border-bottom: 1px solid var(--color-main-lighter);
    padding: 20px 0;
}

.about-us__item:first-child {
    border-top: 1px solid var(--color-main-lighter);
}

.about-us__item dt {
    font-weight: 700;
    color: var(--color-main);
    min-width: 120px;
    flex-shrink: 0;
}

.about-us__item dd {
    line-height: 1.8;
    color: var(--color-text-dark);
}

/* ------------------------------------------------------------------------------------------------------------ */

/*--✧--✧--✧--✧
サンクスページ
--✧--✧--✧--✧*/

/*-✦-✦- ヘッダーを最初からメインカラーにするクラス -✦-✦-*/
.page-header-main .header {
    background-color: rgba(45, 27, 61, 0.95);
}

/*-✦-✦- サンクスセクション全体 -✦-✦-*/
.thanks {
    background-color: var(--color-base);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 80px;
}

/*-✦-✦- コンテナ -✦-✦-*/
.thanks__container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/*-✦-✦- ヒーローエリア（背景ロゴ＋メッセージ） -✦-✦-*/
.thanks__hero {
    position: relative;
    margin-bottom: 48px;
    padding: 80px 0;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*-✦-✦- 背景ロゴ（imgタグ） -✦-✦-*/
.thanks__logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    max-width: 90%;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

/*-✦-✦- コンテンツエリア（メッセージ部分） -✦-✦-*/
.thanks__content {
    position: relative;
    z-index: 1;
}

/*-✦-✦- タイトル -✦-✦-*/
.thanks__title {
    font-family: var(--font-script);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--color-main);
    line-height: 1.3;
    margin-bottom: 24px;
}

/*-✦-✦- メインメッセージ -✦-✦-*/
.thanks__message {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-main);
    line-height: 1.8;
}

/*-✦-✦- 説明文 -✦-✦-*/
.thanks__text {
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid var(--color-main-lighter);
    border-radius: 12px;
    padding: 32px 24px;
    margin-bottom: 48px;
    text-align: left;
    line-height: 1.6;
}

.thanks__text p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks__text p:last-child {
    margin-bottom: 0;
}

/*-✦-✦- ボタン -✦-✦-*/
.thanks__container .btn {
    padding: 12px 48px;
}

/*-✦-✦- タブレット・PC対応 -✦-✦-*/
@media (min-width: 768px) {
    .thanks__logo-bg {
        width: 450px;
    }

    .thanks__title {
        font-size: 3.8rem;
    }

    .thanks__message {
        font-size: 1.3rem;
    }
}

/* ------------------------------------------------------------------------------------------------------------ */

/*-⊹-⊹- 星空のアニメーション -⊹-⊹-*/

/* 星空の背景のスタイル */
.stars {
    position: relative;
    width: 100%;
    /* 星空の横幅 */
    height: auto;
    /* 星空の縦幅 */
    overflow: hidden;
    /* 星が枠外にはみ出すのを防ぐ */
}

/* 星のスタイル */
.star {
    position: absolute;
    display: block;
    background-color: #fff;
    /* 星の色 */
    border-radius: 50%;
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.4);
    /* 星の影 */
    opacity: 0;
    animation: twinkle 5s infinite;
}

/* 星がキラキラ光るアニメーション */
@keyframes twinkle {
    0% {
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.star--gold {
    background-color: #FFE9B0;
    /* ゴールド */
    box-shadow: 0 0 8px 2px rgba(255, 233, 176, 0.5);
}

.star--purple {
    background-color: #C4B3CE;
    /* パープル */
    box-shadow: 0 0 8px 2px rgba(196, 179, 206, 0.4);
}

/* -⊹-⊹- プロダクツ商品カードのホバーアニメーション -⊹-⊹-*/
.product-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 8px 16px rgba(139, 110, 158, 0.3));
}

.product-item:hover .product-item__img img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* -⊹-⊹- セクションタイトルのアニメーション -⊹-⊹-*/
.section-title {
    opacity: 0;
    transform: scale(0.95) translateY(30px);
    animation: fadeInScale 1.2s ease forwards;
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ------------------------------------------------------------------------------------------------------------ */

/*--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆
ここからタブレット・PC版（376px以上）のレスポンシブ対応
--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆--⋆*/

@media (min-width: 376px) {

    /*-⋆-⋆- PC版の背景設定 -⋆-⋆-*/
    body {
        position: relative;
        background-image: url('../img/common/pc-bg.png');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .site-wrapper {
        position: relative;
        z-index: 1;
        background-color: transparent;
        overflow: visible;
    }

    /*-⋆-⋆- ヘッダー -⋆-⋆-*/
    .header {
        max-width: 375px;
        left: 50%;
        transform: translateX(-50%);
    }

    /*-⋆-⋆- 各セクションに個別に背景を設定 -⋆-⋆-*/
    .bg-starry-wrapper {
        background-image:
            url('../img/common/hero-sky.jpg'),
            linear-gradient(to bottom,
                var(--color-main) 0%,
                var(--color-main-light) 100%);
        background-size: cover;
        background-position: center top;
    }

    /* ヒーローセクションの高さ調整 */
    .hero {
        min-height: 600px;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .products,
    .guide,
    .page-intro,
    .products-list-wrapper,
    .guide-content-wrapper,
    .contact-page,
    .about-us,
    .thanks {
        background-color: var(--color-base);
    }

    /*-⋆-⋆- PC版ではオーバーレイを非表示 -⋆-⋆-*/
    .header__overlay {
        display: none !important;
    }

    /* オンラインショップとコンタクトの背景を維持 */
    .online-shop__bg,
    .contact__bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .online-shop__bg img,
    .contact__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* 背景オーバーレイも維持 */
    .online-shop__bg::after,
    .contact__bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .online-shop__bg::after {
        background: rgba(45, 27, 61, 0.15);
    }

    .contact__bg::after {
        background: rgba(45, 27, 61, 0.5);
    }

    /* コンテンツを前面に */
    .online-shop__content,
    .contact__content {
        position: relative;
        z-index: 2;
    }

    /* オンラインショップの高さを抑える */
    .online-shop {
        min-height: auto;
    }

    /* オンラインショップの調整（高さを700pxに固定） */
    .online-shop__content {
        min-height: 720px;
        max-height: 720px;
        padding: 60px 24px 80px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .online-shop__text {
        margin-top: 40px;
        flex-grow: 0;
    }

    /* ボタンの位置調整 */
    .online-shop__content .btn {
        bottom: 60px;
        position: absolute;
    }

    /* -⋆-⋆- フッターだけ全幅に（背景色は伸びて、中身は縦並びのまま） -⋆-⋆- */
    .footer {
        max-width: 100vw;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .footer__logo {
        max-width: 80px;
        margin-bottom: 24px;
    }

    .online-shop__bg img,
    .contact__bg img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        /* 縦横比を維持してトリミング */
        object-position: center !important;
        /* 真ん中を表示 */
    }

    .online-shop__bg img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center top !important;
        font-family: 'object-fit: cover';
    }
}