@charset "utf-8";

/* ============================================
   Reset & Base Styles
   ============================================ */
/* メインカラー：#b7c9b2  アクセントカラー：#d9cbb5 ベースカラー：#faf8f4 フォントカラー：#48364d */
/* 全要素のマージンとパディングをリセット */
* {
    margin: 0;
    padding: 0;
}

/* 基本フォントサイズとスムーススクロール設定 */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* ボディ全体の基本スタイル設定 */
body {
    font-family: "Noto Sans JP", "Noto Serif JP", sans-serif, serif;
    color: #48364d;
    background-color: #faf8f4;
    letter-spacing: 0.03em;
}

h2,
h3 {
    font-family: "Shippori Mincho", serif;
}

/* リンク要素の基本スタイルとホバーアニメーション */
a {
    color: inherit;
    /* 親要素の文字色をそのまま引き継ぐ */
    text-decoration: none;
    transition: opacity 0.3s ease;
    /* hoverしたときの“ふわっ”を表現 */
}

a:hover {
    opacity: 0.7;
    /* 「transition: opacity 0.3s ease;」とセットで使う */
    color: #b7c9b2;
}

/* 画像のレスポンシブ設定 */
img {
    max-width: 100%;
    /* 親要素からの画像はみ出し防止 */
    height: auto;
    /* 縦横比の保持 */
    display: block;
    /* 余白・崩れ防止 */
    margin: 0 auto;
}

/* リストマーカーを非表示 */
ul {
    list-style: none;
}

/* ============================================
   Container & Layout
   ============================================ */
/* コンテンツ全体の最大幅と中央配置 */
.container {
    width: 1150px;
    margin: 0 auto;
    padding: 40px;
}

/* ============================================
   Top Page - Header
   ============================================ */
/* ヘッダーを“座標の基準”にするための設定 */
.header {
    position: relative;
    /* absoluteの基準を作る */
}

.logo-image {
    position: absolute;
    /* 親要素(header)を基準に絶対配置 */
    width: 120px;
    height: 120px;
    margin-left: 20px;
    z-index: 4;
    /* 画像より前面に配置 */
}

/* ナビゲーション全体を右上に固定配置 */
nav {
    position: absolute;
    /* 親要素(header)を基準に絶対配置 */
    right: 40px;
    margin: 80px 40px 5px auto;
    z-index: 3;
    /* 画像より前面に配置 */
}

/* ナビゲーションリストを横並びに */
nav ul {
    display: flex;
    /* 横並び＆整列しやすくする設定 */
    gap: 32px;
    /* 間隔を調整 */
}

nav ul li {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
}

/* ファーストビューの配置 */
.top-image {
    position: relative;
    /* 子要素の絶対配置の基準点 */
    padding-top: 140px;
    margin-bottom: 80px;
    overflow: hidden;
    /* はみ出し部分を非表示 */
}

.top-image img {
    width: 100%;
    height: auto;
}

/* キャッチコピーの配置とスタイル（画像上に絶対配置） */
h1.top-text {
    font-family: "Shippori Mincho", serif;
    font-size: 2.8rem;
    position: absolute;
    /* 親要素(header)を基準に絶対配置 */
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    /* 自身の高さの50%分上にずらして垂直中央揃え */
    text-shadow: 0.5px 0 0 #48364d;
    /* テキストシャドウで立体感 */
    letter-spacing: 0.03em;
    /* 文字間隔を広げる */
    background: rgba(250, 248, 244, 0.5);
    /* 文字に背景を敷いて見やすく */
    padding: 4px 16px;
    z-index: 1;
    /* 画像より前面に配置 */
}

/* ============================================
   Top Page - Main Sections
   ============================================ */
.main-grid-01 {
    padding: 0 40px;
    /* 外側containerのpadding（左右40px） */
    background-color: rgba(183, 201, 178, 0.5);
    /* 半透明背景 */
    margin-bottom: 80px;
}

.main-grid-02 {
    padding: 0 40px;
    /* 外側containerのpadding（左右40px） */
    background-color: rgba(217, 203, 181, 0.5);
    /* 半透明背景 */
    margin-bottom: 80px;
}

/* ============================================
   Top Page - Main Concept/Product Section
   ============================================ */
/* h2見出しの共通スタイル */
.concept-text h2,
.product-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* 本文テキストの共通スタイル */
.concept-text p,
.product-text p {
    line-height: 2;
    /* 行間を広げて読みやすく */
    margin-bottom: 30px;
    /* View Moreボタンとの間隔 */
    font-size: 1rem;
}

/* Conceptセクション: 画像を左、テキストを右に配置 */
.concept-grid,
.product-grid {
    display: flex;
    /* 横並びにする */
    gap: 30px;
    align-items: center;
    /*  中央揃え */
    padding: 40px 0;
    margin-bottom: 30px;
}

/* 画像エリア＋テキストエリアを1：1の幅にする */
.concept-image,
.concept-text,
.product-image,
.product-text {
    flex: 1;
    /* 50%:50% */
}

/* 画像が親要素からはみ出さないように調整 */
.concept-image img,
.product-image img {
    max-width: 100%;
    height: auto;
    display: block;
    /* 画像下の隙間を消す */
}

.about-us {
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.05rem;
}

/* ============================================
   View More Button
   ============================================ */
/* テキストエリア内のView Moreボタン（中央揃え） */
.concept-text .view-more,
.product-text .view-more {
    text-align: center;
    margin-top: 0;
    /* pタグのmargin-bottomで間隔確保済みのため不要 */
}

.view-more {
    margin-top: 20px;
    /* 画像とボタンの間隔 */
}

.view-more a {
    display: inline-block;
    /* ボタンらしくする */
    padding: 12px 40px;
    /* 内側の余白 */
    background-color: #b7c9b2;
    /* メインカラー */
    color: #faf8f4;
    /* 文字色 */
    font-size: 0.95rem;
    font-weight: 500;
    font-family: "Shippori Mincho", serif;
    letter-spacing: 0.05em;
    /* 文字間隔 */
    transition: all 0.3s ease;
    /* ホバー時のアニメーション */
}

.view-more a:hover {
    background-color: #48364d;
    /* ホバー時の背景色 */
    color: #faf8f4;
    opacity: 1;
    /* 親要素のopacityを上書き */
    transform: translateY(-2px);
    /* 少し浮き上がる効果 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    /* 影をつける */
}

/* ============================================
   Top Page - Footer
   ============================================ */
/* フッターの中央揃えと余白設定 */
.copyright {
    padding: 40px 20px;
    font-size: 0.9rem;
    text-align: center;
}

small {
    font-size: 0.7rem;
    font-style: italic;
    color: #999;
    letter-spacing: 0.5px;
}

/* ============================================
   Concept Page Styles
   ============================================ */
/* パンくずリストのスタイル */
.breadcrumb {
    font-size: 1.4rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

/* ページタイトル */
h1.concept-page {
    font-family: "Shippori Mincho", serif;
    position: absolute;
    /* 親要素(header)を基準に絶対配置 */
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    /* 自身の高さの50%分上にずらして垂直中央揃え */
    font-size: 2.8rem;
    text-shadow: 0.5px 0 0 #48364d;
    /* テキストシャドウで立体感 */
    letter-spacing: 0.05em;
    /* 文字間隔を広げる */
    background: rgba(250, 248, 244, 0.5);
    /* 文字に背景を敷いて見やすく */
    padding: 8px 24px;
    z-index: 1;
    margin-left: 40px;
    /* 画像より前面に配置 */
}

/* Conceptページのファーストビュー画像エリア（トップページと同じ構造を使用） */
.concept-page-image {
    position: relative;
    /* 子要素の絶対配置の基準点 */
    padding-top: 140px;
    margin-bottom: 80px;
    overflow: hidden;
    /* はみ出し部分を非表示 */
}

/* ============================================
   Concept Page - Content Sections
   ============================================ */
/* コンセプト詳細セクション */
.concept-detail-section {
    padding: 60px 40px;
    text-align: center;
}

.concept-detail-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.concept-lead {
    font-size: 1.2rem;
    line-height: 2.2;
}

/* セクションタイトルの共通スタイル */
.section-title {
    font-family: "Noto Serif JP", serif;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.06em;
}

/* 私たちが大切にしていること --ここから--  */
.concept-important {
    padding: 60px 40px;
}

.important-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3カラムで均等配置 */
    gap: 40px;
    /* カラム間の間隔 */
    margin-top: 40px;
}

.important-item {
    background-color: rgba(250, 248, 244, 0.8);
    /* 背景を少し目立たせる */
    padding: 30px 20px;
    border-radius: 10px;
    /* 角を丸く */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.important-item h3 {
    font-family: "Noto Serif JP", serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.05em;
}

.important-item p {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* 私たちが大切にしていること --ここまで-- */
/* ストーリーセクション --ここから-- */
.concept-story {
    padding: 60px 40px;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 25px;
    text-align: center
}

.story-content p:last-child {
    /* p:last-child→最後の子要素にだけ適用する */
    font-family: "Shippori Mincho", serif;
    margin-top: 40px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ストーリーセクション --ここまで-- */
/* 品質へのこだわりセクション --ここから-- */
.concept-quality {
    padding: 60px 40px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2カラムで配置 */
    gap: 30px;
    margin-top: 40px;
}

.quality-item {
    background-color: rgba(250, 248, 244, 0.8);
    padding: 25px;
    border-left: 4px solid #b7c9b2;
}

.quality-item h4 {
    font-family: "Noto Serif JP", serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.quality-item p {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* 品質へのこだわりセクション --ここまで-- */
/* 商品ページへの誘導 */
.cta-section {
    text-align: center;
    padding: 80px 40px;
    background-color: rgba(183, 201, 178, 0.3);
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

/* ============================================
   Product Page - Content Sections
   ============================================ */

.product-item {
    background-color: rgba(250, 248, 244, 0.8);
    /* 背景を少し目立たせる */
    padding: 20px;
    border-radius: 10px;
    /* 角を丸く */
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    /* 変形アニメーション */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 10px rgba(183, 201, 178, 0.8);
    /* 左右 上下 ぼかし 色指定 */
}

.product-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    /* 画像を領域に合わせてトリミング */
    border-radius: 8px;
}

.product-item h3 {
    font-family: "Noto Serif JP", serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 15px;
    text-align: center;
}

.product-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 10px;
    text-align: center;
}

/* ============================================
   Access Page - Content Sections
   ============================================ */
.access-details {
    font-family: "Noto Serif JP", serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 15px;
    padding: 10px;
    letter-spacing: 0.03em;
}

/* ============================================
   Contact Page - Form Styles
   ============================================ */
/* フォーム全体 */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* フォームグループの基本スタイル */
.form-group {
    margin-bottom: 28px;
}

/* ラベルのスタイル */
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* 必須・任意ラベル */
.required,
.optional {
    font-family: "Noto Serif JP", serif;
    font-size: 0.75rem;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 700;
}

.required {
    background-color: #d9cbb5;
}

.optional {
    background-color: rgba(183, 201, 178, 0.3);
}

/* 入力フィールドの共通スタイル */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid rgba(183, 201, 178, 0.5);
    border-radius: 8px;
    background-color: #faf8f4;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* フォーカス時のスタイル */
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b7c9b2;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(183, 201, 178, 0.1);
}

/* 送信ボタン */
.form-submit {
    text-align: center;
    margin-top: 40px;
}

/* 送信ボタンのスタイル（サイトの他のボタンと統一） */
.submit-button {
    display: inline-block;
    padding: 14px 60px;
    background-color: #b7c9b2;
    color: #faf8f4;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.submit-button:hover {
    background-color: #48364d;
    color: #faf8f4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* プレースホルダーのスタイル */
::placeholder {
    color: rgba(72, 54, 77, 0.4);
    font-size: 0.95rem;
}

/* ============================================
   Responsive Design
   ============================================ */