@charset "utf-8";
/* CSS Document */

/* 基本設定
================================================== */
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fcfcfc;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* フェード
================================================== */
.fade-in-image {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.5s ease-out, transform 1.5s ease-out;
  transition-delay: calc(var(--delay) * 1s);
  width: 200px;
  height: 200px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.fade-in-image.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 表示された時の状態（JSでこのクラスを付与する） */
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ヒーローエリア
================================================== */
.hero {
    max-width: 660px;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url("../image/title.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    margin: 50px auto 0;
}
.hero-subtitle {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}
.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4rem); /* 画面サイズに合わせて自動調整 */
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 0.05em;
    animation: fadeIn 1.5s ease-out;
}
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.9;
}
/* ヒーロー内のボタン */
.hero-scroll-btn {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 12px 40px;
    transition: all 0.3s;
    letter-spacing: 0.1em;
}
.hero-scroll-btn:hover {
    background: #fff;
    color: #333;
}

/* アニメーション */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px);}
    to { opacity: 1; transform: translateY(0);}
}

@keyframes fadeIn {
    from { opacity: 0;}
    to { opacity: 1;}
}


/* コンセプト
================================================== */
.concept-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 0;
    text-align: center;
    background-color: #fff;
}
.small-container {
    max-width: 700px;
    margin: 0 auto;
}
.concept-en {
    display: block;
    font-family: 'serif';
    font-style: italic;
    color: #c5a059;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}
.concept-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #333;
    letter-spacing: 0.1em;
}
.concept-text {
    font-size: 1rem;
    line-height: 2.2;
    color: #666;
    letter-spacing: 0.05em;
}


/* 目次
================================================== */
.toc-container {
    max-width: 480px;
    background-color: #fcfcfc;
    border: 1px solid #f0e6d2;
    padding: 40px 30px;
    margin: 50px auto 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.toc-title {
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: #c5a059;
    margin-bottom: 25px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.toc-list li {
    width: 100%;
}
.toc-list li a {
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    display: block;
    padding: 10px 15px;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}
.toc-list li a:hover {
    color: #c5a059;
    background-color: #fffaf0;
    border-left: 2px solid #c5a059;
}

/* サブグループの見出し */
.toc-subgroup {
    display: block;
    font-size: 0.8rem;
    color: #999;
    padding: 15px 15px 5px;
    letter-spacing: 0.05em;
    font-weight: bold;
}

/* サブリスト（インデントをつける） */
.toc-sublist {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 10px;
}
.toc-sublist li a {
    font-size: 0.85rem;
    padding: 6px 15px;
}

/* 各セクションのジャンプ位置調整（余白を考慮） */
section[id] {
    scroll-margin-top: 40px;
}


/* モチーフ
================================================== */
.motif-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 0;
    background-color: #fff;
}
.motif-intro {
    text-align: center;
    margin-bottom: 50px;
    color: #888;
    font-size: 0.95rem;
}
.motif-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px 40px;
    justify-content: center;
}
.motif-item:last-child:nth-child(odd) {
    grid-column: 1 / span 2;
    justify-self: center;
    max-width: 480px;
}
.motif-item {
    text-align: center;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 4px;
    transition: transform 0.3s ease;
}
.motif-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f0e6d2;
}
.motif-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.motif-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
    font-family: "serif";
}
.motif-tagline {
    display: block;
    color: #c5a059;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.motif-item p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
}


/* セクションタイトル
================================================== */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #c5a059; /* ゴールド系 */
}


/* シーン別
================================================== */
.category-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 0;
    background-color: #fff;
}
.category-section .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.category-section .card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border: 1px solid #e0d8c8;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.category-section .card a{
    text-decoration: none;
}

/* カードの装飾：四隅に少しアクセント */
.category-section .card::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid #f0e6d2;
    pointer-events: none;
}
.category-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.1);
    border-color: #c5a059;
}
.category-section h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.category-section p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.7;
    z-index: 1;
}

/* シーン別にアイコン的な装飾を加えたい場合（任意） */
.category-section h3::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: #c5a059;
    margin: 15px auto 0;
}


/* シーン別アイテム詳細
================================================== */
.scene-featured {
    margin-top: 100px;
    padding: 60px 20px 0;
    border-top: 1px solid #eee;
}
.scene-detail-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 120px;
}
.scene-detail-row.reverse {
    flex-direction: row-reverse;
}
.scene-visual {
    flex: 1.5;
}
.scene-visual .img-place {
    background-color: #f4f4f4;
    border-radius: 4px;
    position: relative;
    height: 400px;
    overflow: hidden;
}
.scene-visual .img-place img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 1;
}
.scene-visual .img-place img.is-active {
    opacity: 1;
    z-index: 2;
}
.scene-info {
    flex: 2;
}
.scene-tag {
    display: block;
    font-size: 0.7rem;
    color: #c5a059;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: bold;
}
.scene-info h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 300;
}
.scene-info p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

/* 商品リンク */
.scene-item-link {
    background: #fcfbf9;
    padding: 15px;
    border-left: 3px solid #c5a059;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.item-name {
    font-weight: bold;
    font-size: 0.9rem;
}
.item-price {
    font-size: 1rem;
    color: #c5a059;
    font-family: serif;
}

/* 商品ページへ飛ぶボタン */
.scene-product-btn {
    display: block;
    max-width: 200px;
    width: 100%; /* ボックスの幅いっぱいに広げる */
    background-color: #c5a059;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 18px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.scene-product-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



/* 予算別
================================================== */
.category-featured {
    max-width: 700px;
    margin: 0 auto;
    padding: 10px 0 100px;
    background-color: #fff;
}
.price-selection {
    margin: 0;
    text-align: center;
}
.price-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}
.price-subtitle {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 40px;
}
.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.price-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    background-color: #fff;
    border: 1px solid #f0e6d2;
    text-decoration: none;
    transition: all 0.3s ease;
}
.price-label {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #c5a059; /* ゴールド */
    margin-bottom: 5px;
}
.price-text {
    font-size: 0.85rem;
    color: #666;
}
.price-card:hover {
    background-color: #fcfbf9;
    border-color: #c5a059;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.1);
}


/* カテゴリナビ
================================================== */
.category-quick-nav {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 0 30px;
    background-color: #fff;
    text-align: center;
}
.quick-nav-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}
.quick-nav-item {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    width: 100px;
}
.quick-nav-icon {
    display: flex;
    width: 100px;
    height: 100px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background-color: #fcfbf9;
    color: #c5a059;
    transition: all 0.3s ease;
    border-radius: 50%;
    transition: filter 0.3s ease;
    cursor: pointer;
}
.quick-nav-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.quick-nav-item span {
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.quick-nav-item:hover .quick-nav-icon {
    filter: brightness(0.7);
}
.quick-nav-item:hover span {
    color: #c5a059;
}


/* 人気のカテゴリ
================================================== */
.product-category {
    max-width: 700px;
    padding: 60px 0 80px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    margin: 0 auto;
}
.category-intro {
    text-align: center;
    color: #888;
    margin-top: -20px;
    margin-bottom: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.product-item {
    background: #fff;
    padding: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}
.product-item:hover {
    border-color: #f0e6d2;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}
.product-item h4{
    font-size: 0.8rem;
    color: #444;
    margin-bottom: 5px;
    font-weight: 400;
}
.product-item p{
    font-size: 0.8rem;
    color: #444;
}

/* 画像エリア */
.img-placeholder {
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 0.8rem;
    margin-bottom: 20px;
}
.img-placeholder img{
    width: 100%;
}

/* その他のおすすめアイテム */
.scene-sub-items {
    max-width: 1000px;
    margin: -80px auto 120px;
    padding: 0 20px;
}
.sub-items-title {
    font-size: 0.75rem;
    color: #bbb;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 200px auto 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.sub-items-title::before,
.sub-items-title::after {
    content: "";
    flex-grow: 1;
    max-width: 100px;
    height: 1px;
    background-color: #eee;
}

/* 3カラムグリッド */
.scene-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.sub-item-card {
    text-align: center;
    transition: transform 0.3s ease;
}
.sub-item-card:hover {
    transform: translateY(-5px);
}
.sub-img-placeholder {
    display: flex;
    aspect-ratio: 1 / 1;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #ddd;
    margin-bottom: 20px;
}
.sub-img-placeholder img{
    width: 100%;
}
.sub-item-card h4 {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 5px;
    font-weight: 400;
}
.sub-price {
    font-size: 0.85rem;
    color: #c5a059;
    font-family: serif;
}

/* ボタン */
.category-btn-wrapper {
    text-align: center;
    margin-top: 40px;
}
.btn-more {
    display: inline-block;
    padding: 15px 50px;
    background-color: #c5a059;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: 1px solid #c5a059;
}
.btn-more:hover {
    background-color: #fff;
    color: #c5a059;
}


/* テーマ別
================================================== */
.theme-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 20px;
    background-color: #fff;
}
.theme-intro {
    text-align: center;
    color: #888;
    margin-bottom: 60px;
}
/* 縦に並べるレイアウト */
.theme-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.theme-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

/* 奇数番目と偶数番目で左右を入れ替える */
.theme-item:nth-child(even) {
    direction: rtl;
}
.theme-item:nth-child(even) .theme-content {
    direction: ltr;
}
.theme-visual {
    height: 400px;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.theme-name {
    font-family: 'serif';
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: rgba(0,0,0,0.4);
    text-transform: uppercase;
}
.theme-name img{
    width: 100%;
}
.theme-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 300;
}
.theme-content p {
    font-size: 0.9rem;
    line-height: 2;
    color: #666;
    margin-bottom: 30px;
}
.theme-link {
    color: #c5a059;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid #c5a059;
    padding-bottom: 5px;
    transition: 0.3s;
}
.theme-link:hover {
    color: #333;
    border-color: #333;
}


/* 刻印・誕生石
================================================== */
.service-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 0;
    background-color: #fff;
}
.service-intro {
    text-align: center;
    color: #888;
    margin-bottom: 60px;
}
.service-flex {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.service-card {
    background: #fff;
    padding: 60px 40px 40px;
    flex: 1;
    max-width: 500px;
    position: relative;
    border: 1px solid #eee;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border: 1px solid #333;
    color: #333;
}
.service-badge.gold {
    border-color: #c5a059;
    color: #c5a059;
}
.service-icon {
    max-width: 400px;
    margin-bottom: 25px;
    opacity: 0.8;
}
.service-icon img{
    width: 100%;
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}
.service-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

/* 詳細リスト */
.service-detail {
    list-style: none;
    padding: 20px 0 0;
    margin-top: 20px;
    border-top: 1px dashed #eee;
    text-align: left;
    display: inline-block;
}
.service-detail li {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}
.service-detail li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c5a059;
}




/* ギフトラッピング
================================================== */
.wrapping-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 0;
    background-color: #fff;
}
.wrapping-wrapper {
    display: block; /* 横並びを解除 */
}

/* 画像エリア */
.wrapping-image {
    max-width: 670px;
    position: relative;
    margin-bottom: 30px;
}
.wrapping-image img{
    width: 100%;
    margin: 0 auto;
}

/* テキストエリア */
.wrapping-content {
    width: 100%;
}
.section-title.left {
    text-align: left;
    margin-bottom: 30px;
    padding-bottom: 15px;
}
.section-title.left::after {
    left: 0;
    transform: none;
}
.wrapping-description {
    font-size: 0.9rem;
    line-height: 2;
    color: #666;
    margin-bottom: 40px;
}

/* 特徴リスト */
.wrapping-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}
.wrapping-features li {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}
.wrapping-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c5a059;
    font-weight: bold;
}
.wrapping-features li strong {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}
.wrapping-features li span {
    font-size: 0.85rem;
    color: #999;
}

/* 注意事項 */
.wrapping-note {
    font-size: 0.75rem;
    color: #bbb;
    line-height: 1.5;
}



/* フッター
================================================== */
.main-footer {
    background-color: #fdfdfd;
    padding: 80px 0 40px;
    border-top: 1px solid #f0e6d2;
    color: #444;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}
.footer-grid .footer-column:last-child {
    text-align: right;
}
.footer-logo {
    font-family: "serif";
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: #333;
    text-decoration: none;
    display: inline-block;
}
.footer-logo a{
    text-decoration: none;
    color: #333;
}
.footer-heading {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    color: #333;
    text-transform: uppercase;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links li a {
    text-decoration: none;
    color: #888;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer-links li a:hover {
    color: #c5a059;
}



/* ▼　ここからスマホ用設定　▼ */



/* ヒーローエリア
================================================== */
@media (max-width: 600px) {
.hero {
    margin-top: 0;
    height: 80vh;
}


/* コンセプト
================================================== */
.concept-text {
    font-size: 0.9rem;
    line-height: 2;
    text-align: left;
    margin: 0 auto;
}


/* 目次
================================================== */
.toc-container {
    margin: 0 20px 60px;
    padding: 30px 20px;
}
    .toc-list {
    gap: 10px;
}
    .toc-list li a {
    font-size: 0.8rem;
}


/* モチーフ
================================================== */
.motif-grid {
    grid-template-columns: 1fr; /* スマホでは1列 */
    gap: 40px;
}
.motif-item:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
}
.motif-item p {
    text-align: center;
}


/* 予算別
================================================== */
    .price-grid {
    grid-template-columns: 1fr; /* スマホでは1列 */
}
    .price-card {
    padding: 20px;
}


/* 人気のカテゴリ
================================================== */
.sub-items-title::before,
.sub-items-title::after {
    max-width: 40px;
}
.quick-nav-grid {
    gap: 20px;
}
.quick-nav-icon {
    width: 65px;
    height: 65px;
}
.quick-nav-icon svg {
    width: 24px;
    height: 24px;
}
.quick-nav-item span {
    font-size: 0.7rem;
}
.product-category {
    padding: 60px 0;
}
.product-grid {
    grid-template-columns: 1fr; /* スマホは1列 */
    gap: 30px;
}
.category-btn-wrapper {
    margin-top: 20px;
    padding: 0 10px;
}
.btn-more {
    display: block;
    padding: 15px 0;
}
}


/* シーン別
================================================== */
@media (max-width: 768px) {
.category-section {
    padding: 60px 0;
}
.category-section .card {
    padding: 40px 20px;
}
.scene-detail-row, 
.scene-detail-row.reverse {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}
.scene-visual, .scene-info {
    width: 100%;
}
.scene-visual .img-place {
    height: 300px;
    margin: 0 auto;
}
.scene-info {
    text-align: center;
}
.scene-item-link {
    text-align: left;
}
.scene-product-btn {
    padding: 15px;
    width: 100%;
}


/* 人気のカテゴリ
================================================== */
.sub-items-title {
    font-size: 1rem;
    margin: 100px auto 50px;
}
.img-place {
    max-width: 400px;
    padding-bottom: 50%;
}
.scene-sub-items {
    margin-top: -40px;
    margin-bottom: 80px;
}
.scene-sub-grid {
    gap: 15px;
}
.sub-items-title::before,
.sub-items-title::after {
    display: none;
}
.sub-item-card h4 {
    font-size: 0.7rem;
    margin: 0;
} 


/* テーマ別
================================================== */
.theme-item, .theme-item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 30px;
}
.theme-visual {
    height: 350px;
}
.theme-content {
    text-align: center;
}


/* 刻印・誕生石
================================================== */
.service-flex {
    flex-direction: column;
    align-items: center;
}
.service-card {
    padding: 40px 20px;
}
    

/* フッター
================================================== */
.footer-grid {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}
    
.footer-grid .footer-column:last-child {
    text-align: center;
}

.footer-sns {
    justify-content: center;
}
    
.footer-bottom {
    flex-direction: column;
    gap: 20px;
}
}



/* ▼　ここからタブレット用設定　▼ */

/* 人気のカテゴリ
================================================== */
@media (max-width: 900px) {
.product-grid {
    grid-template-columns: 1fr 1fr; /* タブレットサイズは2列 */
}

    
/* ギフトラッピング
================================================== */
.section-title.left {
    text-align: center;
}
.section-title.left::after {
    left: 50%;
    transform: translateX(-50%);
}
.wrapping-content {
    text-align: center;
}
.wrapping-features {
    display: inline-block;
    text-align: left;
}
}



/* PCのみ
================================================== */

@media(max-width:788px){
.pc{
    display: none !important;
}
}
  
/* SPのみ
================================================== */

@media(min-width:789px){
.sp{
    display: none !important;
}
}