@charset "utf-8";
/* CSS Document */
        /* ===== 基本設定 ===== */
        :root {
            --color-primary: #333333;
            --color-secondary: #8B6D5E;
            --color-accent: #C4A78A;
            --color-line: #3D863D;
            --color-text: #4A4A4A;
            --color-light: #F8F5F2;
            --transition: all 0.4s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            color: var(--color-text);
            line-height: 1.7;
            background-color: var(--color-light);
            overflow-x: hidden;
        }

        main {
            padding: 0 20px;
        }

        article {
            display: block;
            max-width: 720px;
            margin: 0 auto;
        }

        section {
            position: relative;
            overflow: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            vertical-align: bottom;
            transition: var(--transition);
        }

a {
    color: inherit; /* 親要素から色を継承 */
    text-decoration: none; /* 下線を消したい場合 */
    transition: var(--transition);
}

a:link {
    color: inherit; /* 未訪問リンクも親要素の色を継承 */
}

a:visited {
    color: inherit; /* 訪問済みリンクも親要素の色を継承 */
}

a[href^="mailto:"] {
    color: inherit !important; /* mailtoリンクに強制的に親の色を適用 */
}

a:hover {
    /* ホバー時のスタイルがあれば追加 */
    /* 例: color: var(--color-accent); */
}

/* ボタンリンクのスタイル上書き */
a.btn, a.btn:link, a.btn:visited {
    color: white; /* btnクラスのリンクは常に白文字 */
}

/* トップに戻るボタン */
.back-to-top {
  position: fixed;
  bottom: 4%;
  right: 4%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(200, 200, 200, 0.8);
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  outline: none;
}

.back-to-top:hover {
  background-color: rgba(150, 150, 150, 0.9);
}

.button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #333;
  font-weight: bold;
}

.arrow {
  font-size: 20px;
  line-height: 1;
  transform: translateY(2px);
}

.text {
  font-size: 12px;
  line-height: 1;
}

/* テキスト強調 */
.marker {
  background-color: #fff9c4; /* 薄い黄色 */
}

.under {
  text-decoration: underline; /* アンダーライン */
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .arrow {
    font-size: 18px;
  }
  
  .text {
    font-size: 10px;
  }
}

@media screen and (max-width: 480px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
  }
}

/* 既存のボタンスタイルはそのまま */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-secondary);
    color: white;
    text-decoration: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.1em;
    border-radius: 10px;
}

.btn:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

/* ===== タイポグラフィ ===== */
	h1, h2, h4, h3, h5 {
    font-family: 'Noto Serif JP', Georgia, 'Times New Roman', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'HGS明朝E', 'MS P明朝', serif;
    line-height: 1.4;
	}

        h1 {
            font-size: clamp(1.8rem, 5vw, 3rem);
            margin-bottom: 2rem;
            letter-spacing: 0.05em;
            font-weight: 500;
        }

        h2 {
            font-size: clamp(1.6rem, 4vw, 2.5rem);
            margin-bottom: 1.75rem;
            font-weight: 500;
        }

        h3 {
            font-size: clamp(1.4rem, 3.5vw, 2rem);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        h4 {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            margin-bottom: 1.25rem;
            font-weight: 400;
        }

        h5 {
            font-size: clamp(0.8rem, 2.5vw, 1.25rem);
            margin-bottom: 0.9rem;
            font-weight: 300;
        }

        p {
            font-size: 1rem;
            margin-bottom: 20px;
        }
		
		.u_bar {
            padding-bottom: 15px;
            border-bottom: 1.75px solid var(--color-accent);
		}


        /* ===== レイアウトクラス ===== */
        .container {
            width: 100%;
            padding: 0 15px;
        }

        .flex-container {
            display: flex;
            flex-wrap: wrap;
        }

        /* ===== 余白クラス ===== */
        .mt-10 { margin-top: 10px; }
        .mt-20 { margin-top: 20px; }
        .mt-30 { margin-top: 30px; }
        .mt-40 { margin-top: 40px; }
        .mt-50 { margin-top: 50px; }
        .mt-75 { margin-top: 75px; }
        .mt-100 { margin-top: 100px; }
        .mt-125 { margin-top: 125px; }
        .mt-150 { margin-top: 150px; }
        .mt-200 { margin-top: 200px; }

        .mb-10 { margin-bottom: 10px; }
        .mb-20 { margin-bottom: 20px; }
        .mb-30 { margin-bottom: 30px; }
        .mb-40 { margin-bottom: 40px; }
        .mb-50 { margin-bottom: 50px; }
        .mb-75 { margin-bottom: 75px; }
        .mb-100 { margin-bottom: 100px; }
        .mb-125 { margin-bottom: 125px; }
        .mb-150 { margin-bottom: 150px; }
        .mb-200 { margin-bottom: 200px; }

        .py-50 { padding: 50px 0; }
        .py-100 { padding: 100px 0; }

        /* ===== ヘッダー ===== */
        header {
            padding: 20px 0;
            text-align: center;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .header-logo {
            width: 180px;
            height: auto;
        }

        /* ===== トップ画像 ===== */
        .top-image {
            width: 100%;
			max-width: 720px;
			height: auto;
			margin: 0 auto;
            /*height: 70vh;
            min-height: 900px;
            object-fit: cover;
            object-position: center;
            display: block;*/
        }

        /* ===== 画像セクション共通 ===== */
        .image-section {
			width: 90%;
			max-width: 720px;
			margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition);
        }

        .image-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .product-info {
            text-align: center;
            padding: 15px 0;
        }

        .product-name {
            font-size: 0.8rem;
            margin-bottom: 5px;
        }

        .product-price {
            font-family: 'Playfair Display', serif;
            color: var(--color-secondary);
            font-size: 1.2rem;
        }

        /* 1カラム画像 */
        .single-column {
            width: 100%;
        }

/* ===== レイアウトクラス ===== */

/* 2カラム画像 */
.double-column {
    width: calc(50% - 15px);
    margin-right: 30px;
    margin-bottom: 30px; /* すべてのデバイスでマージンを追加 */
}

.double-column:nth-child(2n) {
    margin-right: 0;
}

/* 3カラム画像 */
.triple-column {
    width: calc(33.333% - 20px);
    margin-right: 30px;
    margin-bottom: 30px; /* すべてのデバイスでマージンを追加 */
}

.triple-column:nth-child(3n) {
    margin-right: 0;
}

        /* 画像+テキストレイアウト */
        .image-text-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        .image-left {
            width: 60%;
            padding-right: 30px;
        }

        .p-left {
			margin: 0 auto;
			text-align: left;
        }

        .text-right {
            width: 40%;
        }

        .text-left {
            width: 50%;
            padding-right: 30px;
        }

        .image-right {
            width: 50%;
        }

        .center-text {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

/* ===== ボタン ===== */
        .btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-secondary);
    color: white;
    text-decoration: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.1em;
    border-radius: 10px;
        }

        .btn:hover {
            background-color: var(--color-primary);
            transform: translateY(-3px);
        }

        .line {
    background-color: var(--color-line);
        }

        .newsletter-btn {
            background-color: var(--color-accent);
        }

        /* ===== フッター ===== */
        footer {
            background-color: var(--color-primary);
            color: white;
            padding: 50px 0;
            text-align: center;
        }

        footer {
            background-color: #333; /* 濃いグレー */
            color: white; /* 文字色白 */
            padding: 10px;
            text-align: center;
        }

        .footer-info h2, h3, h4, h5 {
			color: white;
        }


		.footer-logo {
 		   width: 180px;
  		  margin: 30px;
		}

        .footer-info {
            margin-bottom: 20px;
        }

        .footer-info p {
            margin-bottom: 5px;
        }