@charset "UTF-8";

html, body {
    color: black;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    scroll-behavior: smooth; /* スムーズにスクロール */
    font-family: 'Noto Serif JP', "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  }

/*
  ===============================================================
  右下スクロール
  ===============================================================
*/
.scroll-indicator {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: flex-start; /* 上端揃え */
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 150px;
  background-color: black;
  margin-right: 5px;
}

.scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  color: black;
  letter-spacing: 2px;
  font-weight: bold;
  text-transform: uppercase;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.scroll-indicator {
  animation: fadeInOut 2s infinite;
}


/*
  ===============================================================
  ヘッダー
  ===============================================================
*/

.header {
    position: absolute;
    top: 50px;
    left: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 80px;
    z-index: 20;
  }

@media screen and (min-width: 769px){
  
  /* ハンバーガーメニュー */
.menu-button {
    font-family: 'Noto Serif JP', "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
    position: fixed;
    top:2.5rem;
    left:2.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    text-align: center;
    z-index: 100;
  }

}
  
  /* ハンバーガーメニュー サークルと三本線を中央配置 */
  .menu-icon,
  .menu-icon-ather {
    width: 70px;
    height: 70px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 10px;
  }

 /* スクロール1000pxで黒に */

  .menu-icon.scrolled {
    border: 2px solid black;
  }

  .menu-icon.scrolled span {
    background-color: black;
  }

  .menu-text.scrolled {
    color: black;
  }

  .menu-icon.scrolled::after  {
    border:2px solid rgb(85, 85, 85);
  }

/* スクロール1000pxで黒に 終了*/


/* スクロール500pxで黒に変更 */
.menu-icon-ather.scrolled-ather {
  border: 2px solid black;
}

.menu-icon-ather.scrolled-ather span {
  background-color: black;
}

.menu-text-ather.scrolled-ather {
  color: black;
}

.menu-icon-ather.scrolled-ather::after {
  border: 2px solid rgb(85, 85, 85);
}

/* スクロール500pxで黒に変更 終了*/


  /* ハンバーガーメニューボタンのアニメーション */
  .menu-icon::after,
  .menu-icon-ather::after {
    content:"";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border:2px solid white;
    border-radius: 50%;
    animation: cercle 2s infinite;
  }
  
  @keyframes cercle {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(2);
      opacity: 0;
    }
  }
  
  .menu-icon span,
  .menu-icon-ather span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
  }
  
  /* 三本線の余白を均等に配置 */
  .menu-icon span:nth-child(1),
  .menu-icon-ather span:nth-child(1){
    top: calc(50% - 21px); /* 三本線（上）位置の調整 PC*/
  }
  
  .menu-icon span:nth-child(2),
  .menu-icon-ather span:nth-child(2) {
    top: 40%; /* 三本線（中央）位置の調整 PC*/
    transform: translate(-50%, -50%);
  }
  
  .menu-icon span:nth-child(3),
  .menu-icon-ather span:nth-child(3) {
    top: calc(50% + 5px); /* 三本線（下）位置の調整 PC*/
  }
  
  /* クリックでバツに変化 */
  .menu-button.active .menu-icon span:nth-child(1),
  .menu-button.active .menu-icon-ather span:nth-child(1){
    transform: translateX(-50%) rotate(45deg);
    top: 35%;
  }
  
  .menu-button.active .menu-icon span:nth-child(2),
  .menu-button.active .menu-icon-ather span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-button.active .menu-icon span:nth-child(3),
  .menu-button.active .menu-icon-ather span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 35%;
  }
  
/* ハンバーガーメニューのラベル */
 .menu-button span,
 .menu-text,
 .menu-text-ather {
    font-size: 15px;
    margin-top: 7px;
  }

.menu-text {
  font-size: 15px;
  margin-top: 7px;
}


  /* PC のヘッダー右側（ALL LINEUP & Instagram） */
  .header-right {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  /* ALL LINEUP ボタン */
  .store-button {
    display: flex;
    align-items: center;
    background: white;
    padding: 8px 30px; /* ボタンのサイズ（インスタ画像との余白調整） */
    border-radius: 30px;
    color: black;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
  }
  
  .store-button img {
    width: 35px; /* 花びら画像のサイズ */
    margin-right: 20px;
  }
  
  /* Instagram アイコン */
  .instagram-icon img {
    width: 30px;
    height: 30px;
  }

  /* ハンバーガーメニュー中身 */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 400px;
    height: 100%;
    background: #000;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: left 0.3s ease-in-out;
    z-index: 20;
  }
  
  .mobile-menu ul {
    list-style: none;
    text-align: center;
    padding: 0;
  }
  
  .mobile-menu li {
    margin: 20px 0;
  }
  
  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }
  
  .mobile-menu img {
    height: 100px;
  }
  
  .mobile-menu.active {
    left: 0;
  }
  
  /* メニューオーバーレイ */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 15;
  }
  
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

/* ヘッダー終了 */











/*
  ===============================================================
  背景部分 index.html 3枚画像スクロール
  ===============================================================
*/
  /* 背景部分を固定 */
  .background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* 背景画像の指定例。適宜変更してください */
    background-size: cover;
    z-index: 1;
  }

  .background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 2.5s ease-in-out;
  }

  .bg1 {
    opacity: 1;
  }
  
  .bg2 {
    opacity: 0;
  }

/* 黒のオーバーレイ */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.30);
    z-index: 5;
  }

  /* ページインジケーター */
.indicator-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: background-color 0.3s ease-in-out;
  }
  
  .indicator.active {
    background-color: rgba(255, 255, 255, 1);
  }

  /* ロゴ index.html*/
.main-logo {
    position: absolute; /* section追加してもロゴが真ん中になるように修正: relative から absolute へ */
    color:#fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  /* ロゴ index.html以外（ather）*/
  .main-logo-ather {
    position: absolute; /* section追加してもロゴが真ん中になるように修正: relative から absolute へ */
    color:#fff;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .main-logo p,
  .mail-logo-ather p {
    font-size: 30px;
    font-weight: 700;
  }
  
  .main-logo img,
  .main-logo-ather img {
    max-width: 300px;
    width: 100%;
    height: auto;
  }

  .aword {
    display: flex;  /* Flexboxを有効にして子要素を横並びにする */
    align-items: center; /* 中央揃え */
    justify-content: center; /* 水平方向の中央揃え、必要に応じて */
    padding: 0px 0 25px 0;
  }

  .aword img {
      height: 130px;  /* 各画像の高さを100pxに固定 */
      margin-right: 10px;  /* 画像間の間隔を10pxに */
  }

  /* 最後の画像の右余白を削除 */
  .aword img:last-child {
      margin-right: 0;
  }

  /* 背景部分終了 */





/*
  ===============================================================
  背景部分 index以外　1枚固定　★#main-atherも連動
  ===============================================================
*/
.background-container-ather {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  /* 背景画像の指定例。適宜変更してください */
  background-size: cover;
  z-index: 1;
}

.background-ather img {
  width: 100%;
  height: 663px;
  object-fit: cover;
  object-position: center;
}

/* オーバーレイの追加 */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3); /* ここで薄暗いオーバーレイを追加 */
  pointer-events: none; /* クリックを透過させる */
}


/*
  ===============================================================
  メインコンテンツ　index.htmlの画像1枚固定
  ===============================================================
*/
#main-ather {
  position: relative;
  z-index: 5;
  /* コンテンツを読みやすくするための背景色（半透明） */
  width: 100%;
  margin-top: 52vh;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
}
/*
===============================================================
メインコンテンツ　index.htmlの画像1枚固定　終了
===============================================================
*/






/*
  ===============================================================
  メインコンテンツ
  ===============================================================
*/
  
#main {
    position: relative;
    z-index: 2;
    /* コンテンツを読みやすくするための背景色（半透明） */
    width: 100%;
    margin-top: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
  }


/* メインナビ */
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .main-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; /* アイテム間の間隔 */
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .main-nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .main-nav-item a {
    text-decoration: none;
    color: inherit;
    font-size: inherit; /* 親のフォントサイズを継承 */
  }

  .main-nav-item::after {
    content: "";
    position: absolute;
    bottom: 2px; /* テキストとの間隔調整 */
    left: 50%;
    width: 80%; /* テキストにフィット */
    height: 2px;
    background-color: #fc84ca;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
  }

  .main-nav-item:hover {
    color: #fc84ca; /* ホバー時の色変更 */
  }

  .main-nav-item:hover::after {
    transform: translateX(-50%) scaleX(1);
  }
/* メインナビ終了 */


/* ニュースセクション */
  .container {
    max-width: 1160px;
    margin: 10px auto;
  }

  .news-container {
    width: 80%;
    margin: 40px auto;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }

  .news-title {
    font-size: 24px;
    color: #333;
  }

  .news-list {
    display: flex;
    flex-direction: column; /* 縦方向に並べる */
    gap: 10px; /* 各ニュース項目の間隔 */
    list-style: none;
    padding: 0;
  }

  .news-item {
    display: flex;
    align-items: center; /* 縦方向の中央揃え */
    gap: 20px; /* 日付とリンクの間隔 */
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    padding-left: 80px; /* 左から80pxの位置に調整 */
  }

  .news-date {
    font-size: 14px;
    color: #666;
    white-space: nowrap; /* 日付が折り返されないようにする */
  }

  .news-link {
    font-size: 14px;
    color: #0056b3;
    text-decoration: none;
    flex: 1; /* 残りのスペースを埋める */
  }

  .news-link:hover {
    text-decoration: underline;
  }
/* ニュースセクション 終了*/


/*
  ===============================================================
  コンセプト
  ===============================================================
*/
  .concept-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 650px;
    position: relative;
    margin: 0 0 0 0; /* top余白 */
  }

  .concept-container img {
    height: 500px; /* 画像の高さ */
    width: auto; /* 幅は自動調整 */
    z-index: 1; /* オーバーレイより背面に */
  }

  .concept-title {
    position: absolute;
    top: 0;   /* 上からの距離 */
    left: 30px;  /* 左からの距離 */
    margin: 10px;  /* 余白を適宜調整 */
    font-size: 20px; /* フォントサイズを適宜調整 */
    color: #333; /* フォントカラーを適宜調整 */
  }

  .overlay-concept {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* 半透明の黒色オーバーレイ */
    z-index: 2; /* 画像より前面に */
  }

  .concept-container a {
    position: relative;
    text-decoration: none; /* リンクの下線を除去 */
  }

  .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 正確な中央に配置 */
    color: white; /* テキストの色 */
    font-size: 17px; /* フォントサイズ */
    z-index: 3; /* オーバーレイよりも前面に */
  }

  .concept-btn {
    position: absolute;
    top: 90%; /* ボタンの位置を調整 */
    left: 90%;
    transform: translate(-100%, -100%); /* ボタンを中心に配置 */
    z-index: 3;
    padding: 15px 50px;
    border: 1px solid white;
    border-radius: 20px;
    background-color: transparent; /* ボタンの背景「透明」 */
    color: white; /* ボタンのテキスト色 */
    cursor: pointer;
    white-space: nowrap; /* テキストが折り返されないようにする */
    min-width: 120px; /* テキストを収めるための最小幅を設定 */
  }

  .concept-btn:hover {
    background-color: rgba(255, 255, 255, 0.5); /* ホバー時の背景色を白の半透明に設定 */
  }


/*
  ===============================================================
  お祝いに贈る胡蝶蘭
  ===============================================================
*/
  .head-group {
    text-align: center;
    margin: 80px 0 0 0;

    h2 {
    font-size: 30px; 
    font-weight: 700;
    }

    span {
      font-size: 20px; 
    }
  }

  .product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto;
  }

  .product-card {
    background: white;
    width: 23%;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .product-title {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
  }

  .product-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
  }

  .product-price {
    font-size: 18px;
    font-weight: bold;
    color: #d32f2f;
  }

  .buy-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #008cba;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
  }

  .buy-button-bland {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #fc84ca;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
  }


/*
  ===============================================================
  シリーズ
  ===============================================================
*/
  .series-container {
    width: 100%; /* コンテナ全体の幅 */
    position: relative;
    overflow: hidden; /* スクロールボタンをコンテナの外に出さないように */
    padding: 0 0;
  }

  .series-title {
    position: absolute;
    top: 0;   /* 上からの距離 */
    left: 30px;  /* 左からの距離 */
    margin: 10px;  /* 余白を適宜調整 */
    font-size: 20px; /* フォントサイズを適宜調整 */
    color: #333; /* フォントカラーを適宜調整 */
  }

  .scroll-wrapper {
    display: flex;
    align-items: center;
    height: 480px;
    overflow-x: scroll;
    scroll-snap-type: x proximity; /* スムーズなスクロールのための設定 */
    width: 100%; /* スクロールコンテナの幅 */
    margin: 0 auto; /* 中央揃え */
  }

  /* nursery-lineup.html */
  .scroll-wrapper-lineup {
    display: flex;
    align-items: center;
    height: 550px;
    overflow-x: scroll;
    scroll-snap-type: x proximity; /* スムーズなスクロールのための設定 */
    width: 100%; /* スクロールコンテナの幅 */
    margin: 0 auto; /* 中央揃え */
  }

  /* ウェブキットブラウザ用のスクロールバーのスタイリング */
  .scroll-wrapper::-webkit-scrollbar {
    width: 12px; /* スクロールバーの幅 */
  }

  .scroll-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1; /* スクロールバートラックの背景色 */
  }

  .scroll-wrapper::-webkit-scrollbar-thumb {
    background: #888; /* スクロールバー本体の背景色 */
    border-radius: 6px; /* スクロールバー本体の角丸 */
  }

  .scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555; /* スクロールバー本体の背景色（ホバー時） */
  }

  /* Firefox 用のスクロールバーのスタイリング */
  .scroll-wrapper {
    scrollbar-width: thin; /* 'auto' or 'thin' */
    scrollbar-color: #888 #f1f1f1; /* スクロールバー本体とトラックの色 */
  }

  .image-card {
    flex: 0 0 auto;
    position: relative;
    width: 200px; /* 各画像カードの幅 */
    margin-right: 10px; /* 画像間の余白 */
    background: #fff; /* 背景色 */
    border: 1px solid #ddd; /* 枠線 */
    padding-bottom: 20px; /* 下部の余白 */
  }

  .image-card img {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease;
  }

  .image-card img.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none; /* ホバー時のみ表示 */
  }

  .image-card:hover img.hover {
    opacity: 1;
    pointer-events: auto; /* ホバー時に切り替わる画像をアクティブに */
  }

  .info {
    text-align: center; /* センター揃え */
    padding: 10px 0; /* 上下のパディング */
  }

  .product-name {
    font-size: 16px; /* 商品名のフォントサイズ */
    color: #333; /* 商品名の色 */
  }

  .product-name:hover{
    font-weight: 700;
    color: #fc84ca;
  }

  .product-price {
    font-size: 14px; /* 価格のフォントサイズ */
    color: #666; /* 価格の色 */
  }

/*
  ===============================================================
  メニュー （金額・用途・タイプ）
  ===============================================================
*/
 .menu-container,
 .youto-container,
 .type-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  position: relative;
  margin: 0 0 0 0; /* top余白 */
  }

  .cost-title,
  .youto-title,
  .type-title {
    position: absolute;
    top: 0;   /* 上からの距離 */
    left: 30px;  /* 左からの距離 */
    margin: 10px;  /* 余白を適宜調整 */
    font-size: 20px; /* フォントサイズを適宜調整 */
    color: #333; /* フォントカラーを適宜調整 */
  }


  .menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;

  }

  .menu-card {
    padding: 20px 50px;
    background-color: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 20px;
    display: grid;
    gap: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 画像浮かせる アニメーション */

  .name {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
  }

  /* デフォルト（PC）は横並びのまま */
  .name-kocho,
  .name-count {
    display: inline;
  }

  /* スマホ用にメディアクエリで改行 */
  @media screen and (max-width: 767px) {
    .name-kocho {
      display: block;
    }
  }


}

/* 画像浮かせる アニメーション */
.menu-card:hover {
  transform: translateY(-5px); /* 5px 浮かせる */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* 影を強くして浮いてる感を出す */
}

/* メインコンテンツ終了 */




/*
  ===============================================================
  Q&A 
  ===============================================================
*/

.faq-container {
  max-width: 800px;
  margin: 50px auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
  text-align: center;
  color: #333;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.question {
  font-weight: bold;
  color: #d6336c;
  cursor: pointer;
}

.question-end {
  font-weight: bold;
  color: #3757e6;
  cursor: pointer;
}

.question-deli {
  font-weight: bold;
  color: #15a846;
  cursor: pointer;
}

.answer {
  display: none;
  margin-top: 10px;
  padding-left: 10px;
  border-left: 3px solid #d6336c;
}

.answer a {
  font-weight: bold;
  color: #ffffff;
  background-color: #d6336c;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
}

.answer a:hover{
  background-color: #a1224b;
}

.faq-item.active .answer {
  display: block;
}



/*
  ===============================================================
  初めての方　guide.html
  ===============================================================
*/

/* 画像付きレイアウト */
.guide-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
  margin: 50px 0;
}

@media (max-width: 960px) {
  .guide-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 15px 0;
  }
}

.guide-image {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

@media (max-width: 960px) {
  .guide-image {
    border-radius: 20px;
  }
}

.guide-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: opacity 1.5s ease-in-out;
}

@media (max-width: 960px) {
  .guide-image img {
    aspect-ratio: 4 / 3;
  }
}

.guide-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 1.8s ease-in-out, transform 2s ease-out;
  transform: translateY(0);
}

.scroll-clear .guide-image::before {
  opacity: 0;
  transform: translateY(100%);
}

.guide-text {
  @media(width <= 600px) {
    padding-inline: 20px;
    margin: 20px 0;
  }

  img {
    height: 60px;
  }
  h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
    color:#bdb004;
    @media(width <= 600px) {
      font-size: 24px;
    }
  }
  p {
    margin-top: 20px;
  }

  .title {
   margin: 10px 0;
   @media(width <= 600px) {
    font-size: 14px;
  }
  }

  .purchase-card {
    border: 1px solid #383838;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .purchase-card:hover {
    background-color: #fc84ca; /* ピンク色 */
    color: #ffffff;
    transform: translateY(-5px); /* 浮く動き */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); /* ドロップシャドウ追加 */
  }

  a.button {
    display: inline-block; /* インライン要素をボタンのように */
    background-color: #ff0000; /* 赤色の背景 */
    color: #ffffff; /* 文字色を白 */
    padding: 10px 20px; /* 余白をつけてボタンらしく */
    border-radius: 5px; /* 角を少し丸く */
    text-decoration: none; /* 下線を消す */
    font-weight: bold; /* 文字を太く */
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  a.button:hover {
    background-color: #cc0000; /* 少し暗めの赤に変化 */
    transform: translateY(-2px); /* ホバー時に少し浮く */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); /* ドロップシャドウ追加 */
  }

  a.button:active {
    background-color: #aa0000; /* クリック時にさらに暗め */
    transform: translateY(1px); /* クリック時に押し込まれる */
  } 

}
/* 画像付きレイアウト 終了*/


/* 画像なしレイアウト */
.guide-single {
  margin: 10px 0;
}

.guide-single-imges {
  display: flex;
  flex-direction: column; /* 子要素を縦に並べる */
  align-items: center; /* 横方向の中央配置 */
}

.guide-single-imges img{
  max-width: 100%; /* 画像が大きすぎる場合に対応 */
  height: auto;
  margin: 50px 0;
  
}

.guide-single h2 {
  font-weight: 700;
  font-size: 24px;
  border-bottom: 1px solid #000; /* 下線を引く */
  padding-bottom: 3px; /* 文字と線の間に余白を作る */
 }

 .guide-single dl {
  margin: 20px 0;
 }

 .guide-single dt {
  font-weight: 500;
  font-size: 20px;
  margin: 15px 0;
  color: #bdb004;
 }

 .guide-single span {
  font-weight: 500;
  font-size: 18px;
  margin: 15px 0;
  color: red;
 }

 .green-box,
 .gold-box,
 .gray-box,
 .white-box,
 .blue-box,
 .pink-box {
  width: 12px;  /* ボックスの幅 */
  height: 12px; /* ボックスの高さ */
  display: inline-block; /* インライン要素にすることで横に並ぶ */
  margin-left: 5px; /* 左側に少し余白を追加 */
}

.green-box {
  background-color: rgb(14, 224, 49); /* 緑色 */
}
.gold-box {
  background-color: goldenrod; /* 緑色 */
}

.gray-box {
  background-color: gray; /* 緑色 */
}

.white-box {
  background-color: white; /* 緑色 */
  border: 1px solid #000;
}

.blue-box {
  background-color: blue; /* 緑色 */
}

.pink-box {
  background-color: rgb(248, 118, 216); /* 緑色 */
}

 /* 画像なしレイアウト 終了*/



 /* 各種テーブルでの表 */
 .shipping-table {
  width: 100%;
  max-width: 600px;
  margin: 20px 0;
  @media(width <= 600px) {
    max-width: 500px;
    font-size: 14px;
  }
}

.shipping-table h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #bdb004;
}

.shipping-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3); /* ドロップシャドウ */
}

.shipping-table th,
.shipping-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
  background-color: #fff;
}

.shipping-table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.shipping-table tbody tr:last-child td {
  font-weight: bold;
}

.shipping-text p {
  margin: 10px 0;
} 

.shipping-text p a.button {
  display: inline-block; /* インライン要素をボタンのように */
  background-color: #ff0000; /* 赤色の背景 */
  color: #ffffff; /* 文字色を白 */
  padding: 10px 20px; /* 余白をつけてボタンらしく */
  border-radius: 5px; /* 角を少し丸く */
  text-decoration: none; /* 下線を消す */
  font-weight: bold; /* 文字を太く */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.shipping-text p a.button:hover {
  background-color: #cc0000; /* 少し暗めの赤に変化 */
  transform: translateY(-2px); /* ホバー時に少し浮く */
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); /* ドロップシャドウ追加 */
}

.shipping-text p a.button:active {
  background-color: #aa0000; /* クリック時にさらに暗め */
  transform: translateY(1px); /* クリック時に押し込まれる */
} 

/* 各種テーブルでの表 終了*/

/* 動画iframe*/
/* 動画を縦並びにする */
.iframe-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* 中央配置 */
  gap: 20px; /* 各動画の間隔 */
}

/* 各iframeのサイズ */
.iframe-container iframe {
  width: 650px;
  height: 366px;
  @media (width <= 600px){
    width: 350px;
    height: 200px;
  }
}

.if-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; /* 画面いっぱいに広げる */
  font-size: 1.2rem; /* 文字サイズを大きく */
  font-weight: bold; /* 文字を太く */
  padding: 10px 0; /* 上下の余白 */
  position: relative;
  text-align: center;
  font-family: 'Noto Serif JP', "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}

/* テキスト前後の線 */
.if-text::before,
.if-text::after {
  content: ""; /* 擬似要素の中身は空 */
  flex-grow: 1; /* 左右に線を均等に伸ばす */
  height: 1px; /* 線の太さ */
  background-color: black; /* 線の色 */
  margin: 0 10px; /* テキストとの間隔 */
}

/* 動画iframe　終了*/



/* 会社概要 company.html */

.layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  margin: 80px 0; /* 上下の余白 */
  @media(width <= 960px) {
    grid-template-columns: 1fr; /* タブレット以下は1カラム */
    gap: 40px;
    margin: 60px 0;
  }
}

/* PC: 画像左 */
.img-left .image {
  order: -1;
}

/* PC: 画像右 */
.img-right .text {
  order: -1;
}

/* 画像のスタイル */
.image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  @media(width <= 960px) {
    border-radius: 10px;
  }
  img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    @media(width <= 960px) {
      aspect-ratio: 4 / 3;
    }
  }
}

/* テキストのスタイル */
.text {
  @media(width <= 600px) {
    padding-inline: 20px;
  }
  h3 {
    color: #eb56ad;
    font-size: 28px;
    font-weight: 700;
    margin-top: 20px;
    @media(width <= 600px) {
      font-size: 24px;
    }
  }
  p {
    margin-top: 20px;
    @media(width <= 600px) {
      font-size: 14px;
    }
  }
}

/* タブレット・スマホで画像とテキストを交互に並べる */
@media (width <= 960px) {
  .layout {
    grid-template-columns: 1fr; /* すべて1カラム */
  
  }

  .img-left .image,
  .img-right .image,
  .img-left .text,
  .img-right .text {
    order: 0; /* order をリセット */
  }

  /* 偶数番目の .layout の画像をテキストの前にする */
  .layout:nth-of-type(even) .image {
    order: -1;
  }

  /* 偶数番目の .layout のテキストを画像の後にする */
  .layout:nth-of-type(even) .text {
    order: 1;
  }
}

/* 初期状態（非表示 + 位置ずらし） */
.image {
  opacity: 0;
  transform: scale(0.8) translateY(50px); /* 縮小しつつ下から上へ */
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.text {
  opacity: 0;
  transform: translateY(-50px); /* 上から下へ */
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* スクロール時に表示されるエフェクト */
.show .image {
  opacity: 1;
  transform: translateY(0);
}

.show .text {
  opacity: 1;
  transform: translateY(0);
}


/* 会社概要 company.html 終了*/

/*
  ===============================================================
  贈るときのマナー等 article.html
  ===============================================================
*/

.article-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* h1中央線スタイル */
.article-container h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 40px 0 20px;
  gap: 20px;
  text-align: center;
}

.article-container h1::before,
.article-container h1::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #000;
}

/* セクション見出し */
.article-container h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  border-left: 5px solid #ccc;
  padding-left: 10px;
}

.article-container h3 {
  font-size: 1.2rem;
  margin-top: 20px;
}

.article-container a {
  color: red;
  text-decoration: underline;
}

/* テーブルスタイル */
.article-container table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.article-container table th,
.article-container table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.article-container table th {
  background-color: #f0f0f0;
}

/* リスト */
.article-container ul {
  padding-left: 1.2em;
  margin: 1em 0;
}

.article-container ul li {
  margin: 8px 0;
}

.article-container ul li::before {
  content: "・";
  margin-right: 0.5em;
}

/* 画像 */
.article-container img {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .article-container h1 {
    font-size: 1.5rem;
    gap: 10px;
  }

  .article-container h2 {
    font-size: 1.2rem;
  }

  .article-container table th,
  .article-container table td {
    padding: 8px;
    font-size: 0.95rem;
  }

}


/*
  ===============================================================
  立札文例集 article1.html
  ===============================================================
*/

.highlight {
  background-color: yellow;
  font-weight: bold;
  display: inline-block;
  padding: 4px 8px;
}

.boards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
}

/* PC（768px以上）で中央寄せ */
@media (min-width: 768px) {
  .boards {
    justify-content: center;
    overflow-x: visible; /* PCではスクロール不要 */
    gap: 80px;
  }
}

.board {
  flex: 0 0 auto;
  width: 200px;
}

.tate-label {
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.board-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  align-items: center;
}

.yokogaki-board {
  width: 350px; /* お好みで調整、200→300pxなど */
}

@media (max-width: 768px) {
  .yokogaki-board {
    width: 80vw; /* スマホでは画面幅に合わせて調整可能 */
  }
}



.table-container {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 1000px;
  padding: 10px;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
}

th, td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

thead {
  background-color: #f1f1f1;
}

.genre {
  background-color: #fdf6e3;
  font-weight: bold;
  color: #333;
  width: 100px;
  white-space: nowrap;
}

.usage ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.usage li {
  line-height: 1.8;
  white-space: nowrap;
}

.usage li::before {
  content: none !important;  /* ← 最強の打消し */
}

@media (max-width: 768px) {
  table {
    min-width: 100%;
  }

  th, td {
    font-size: 14px;
    padding: 8px;
  }

  .genre {
    font-size: 15px;
  }

  .usage li {
    line-height: 1.8;
  }
}


/*
  ===============================================================
  フッター
  ===============================================================
*/

/* SHOP情報 */
  .shop-section{
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    position: relative;
    margin: 20px 0 0 0; /* top余白 */
  }

  .shop-container {
    max-width: 1160px;
    margin: 0 auto;
    height: 630px;
    padding: 20px 20px;
  }

  .layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 40px 60px;
  }

  .text {
    h3 {
      text-align: center;
      font-size: 20px;
      font-weight: 700;
      margin: 0 0 20px;
      display: flex;
      align-items: baseline;
      gap: 1em;
      span {
        font-size: 0.6em;
      }
    }

    h3 a {
      font-size: 20px;
    }

    h3 a:hover {
      color: #fc84ca;
    }

  dl {
    display: grid;
    grid-template-columns: 100px 1fr;
    @media (width <= 600px){
      grid-template-columns: 80px 1fr;
    }
    dt,dd {
      font-size: 14px;
      padding: 10px;
      border-top: 1px solid #ccc;
    }
    dd img {
      height: 20px;
      margin-right: 10px;
    }
    dd a:hover {
      color: #fc84ca;
    }
  }
}
  .map {
    border-radius: 15px;
    overflow: hidden;
    iframe {
      width: 100%;
      height: auto;
      aspect-ratio: 5 / 4;
    }
  }

  .copyright {
    text-align: center;
    font-size: 12px;
    }
/* SHOP情報 終了*/


/* コンタクト */
  .contact-container {
    padding: 50px 20px;
    text-align: center;
  }

  .heading-group {
    text-align: center;
    margin: 0 0 60px;

    h2 {
    font-size: 40px; 
    font-weight: 700;
    }

    span {
      font-size: 20px; 
    }
  }

  .contact-container {
  .layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    margin-inline: auto;
    max-width: 700px;
  }

  .label {
    margin-bottom: 20px;
  }

  .description {
    br {
      display: none;
    }
  }

  .number {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    img {
      width: 1em;
    }
  }

  .number:hover{
    color: #fc84ca;
  }

  .hour {
    font-size: 13px;
    display: block;
    margin-top: 1em;
  }
  .button {
    display: inline-block;
    color: #fff;
    background-color: #fc84ca;
    padding: 1em 5em;
    border-radius: 8px;
  }

}
/* コンタクト 終了*/


/* フッター一番下 */
.last {
  color: #fff;
  background-color: rgb(180, 178, 174);
  padding: 40px 20px 20px;
  display: grid;
  justify-items: center;
  gap: 40px;

}
  .logo {
    display: block;
    img {
      display: block;
      height: 60px;
    }
  }

  .last ul {
    display: flex;
    gap: 40px;
  }

  a {
    font-size: 13px;
  }

  footer {
    position: relative;
    z-index: 2;
    /* コンテンツを読みやすくするための背景色（半透明） */
    width: 100%;
    margin-top: 20vh;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
  }

/* フッター終了 */



/*
  ===============================================================
  ★レスポンシブ　スマートフォンやタブレットに対応　★
  ===============================================================
*/

/*
  ======================================
  ヘッダーレスポンシブ
  ======================================
*/
@media (max-width: 768px) {
  .header {
    left: auto;
    right: 20px;
  }

  .header-right {
    display: none;
  }

  .menu-button {
    position: fixed;
    width: 81px;
    top: 20px;
    right: 30px;
    z-index: 100;
    background: none;
    border: none;
    color: #fff;
  }

  /* ハンバーガーメニューボタンのアニメーション */
  .menu-icon::after,
  .menu-icon-ather::after {
    content:"";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border:1px solid white;
    border-radius: 50%;
    animation: cercle 2.0s infinite;
  }
  
  @keyframes cercle {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(2);
      opacity: 0;
    }
  }

  .menu-icon,
  .menu-icon-ather {
    width: 50px;
    height: 50px;
    margin: 5px;
  }

  .menu-icon span
  .menu-icon-ather span {
    width: 20px;
    height: 2px;
  }

  .menu-icon span:nth-child(1),
  .menu-icon-ather span:nth-child(1) { /* 三本線（上）位置の調整 スマホ*/
    top: calc(15% - 1px);
  }

  .menu-icon span:nth-child(3),
  .menu-icon-ather span:nth-child(3) { /* 三本線（下）位置の調整 スマホ*/
    top: calc(49% + 4px);
  }

 .mobile-menu {
  width: 300px;
}

/*
  ======================================
  ヘッダーレスポンシブ　終了
  ======================================
*/

/*
  ===============================================================
  背景部分 index以外　1枚固定　★#main-atherも連動
  ===============================================================
*/
.background-container-ather {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  /* 背景画像の指定例。適宜変更してください */
  background-size: cover;
  z-index: 1;
}

.background-ather img {
  width: 100%;
  height: 52vh;
  object-fit: cover;
  object-position: center;
}

/* オーバーレイの追加 */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3); /* ここで薄暗いオーバーレイを追加 */
  pointer-events: none; /* クリックを透過させる */
}


/* メインロゴ index.html*/
.main-logo {
  position: absolute; /* section追加してもロゴが真ん中になるように修正: relative から absolute へ */
  color:#fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ロゴ index.html以外（ather）*/
.main-logo-ather {
  position: absolute; /* section追加してもロゴが真ん中になるように修正: relative から absolute へ */
  color:#fff;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.main-logo p,
.main-logo-ather p {
  font-size: 20px;
  font-weight: 700;
}

.main-logo img,
.main-logo-ather img {
  max-width: 200px;
  width: 100%;
  height: auto;
}

.aword {
  display: flex;  /* Flexboxを有効にして子要素を横並びにする */
  align-items: center; /* 中央揃え */
  justify-content: center; /* 水平方向の中央揃え、必要に応じて */
  max-width: 165px;
  padding: 0px 0 5px 0;
}

.aword img {
    height: 80px;  /* 各画像の高さを100pxに固定 */
    margin-right: 5px;  /* 画像間の間隔を10pxに */
}

/* 最後の画像の右余白を削除 */
.aword img:last-child {
    margin-right: 0;
}

/* メインロゴ index.html 終了*/




  #main {
    padding: 10px 20px 10px 10px;
    margin-top: 100vh; /* 小さいデバイスではマージントップを減少 */
  }

/* メインナビ */
  .main-nav-list {
    gap: 11px; /* ナビ間のスペースを縮小 */
  }
  .main-nav-item {
    font-size: 12px !important; /* 確実に適用 */
    padding: 8px 16px;
  }
/* メインナビ終了 */

/* News */
  .news-container {
    width: 95%;
    margin: 30px auto;
    padding: 15px;
  }

  .news-title {
    font-size: 20px; /* タイトルのフォントサイズを小さく */
  }

  .news-item {
    padding-left: 0; /* スマホでは左から0px */
  }

  .news-date {
    padding: 10px 20px; /* 日付のパディングを調整 */
  }

  .news-link {
    font-size: 14px; /* リンクのフォントサイズを調整 */
  }
/* News 終了*/

/* コンセプト */
  .concept-container {
    flex-direction: column; /* Flex項目を縦方向に並べる */
    padding: 10px 0 20px 0; /* 上余白を調整 */
    height: auto; /* 高さを自動調整 */
  }

  .concept-title {
    position: static; /* 絶対位置指定を解除 */
    left: auto; /* 左の位置指定を解除 */
    margin: 10px 0; /* 上下の余白のみを指定 */
    width: 100%; /* 幅を親要素全体に広げる */
    text-align: center; /* テキストを中央揃えにする */
    font-size: 18px; /* スマホでは少し小さめのフォントサイズに調整 */
  }

  .concept-container img {
    height: auto; /* 画像の高さを自動調整 */
  }

  .overlay-text {
    font-size: 15px; /* オーバーレイテキストのフォントサイズを小さく */
  }

  .concept-btn {
    top: 80%; /* スマホではボタンの位置を画面の中央に */
    left: 50%;
    transform: translate(-50%, 0%); /* スマホではボタンを完全に中心に配置 */
    padding: 10px 30px;
  }
/* コンセプト 終了*/


/* シリーズ */
  .series-container {
    overflow: visible; /* 小さなデバイスではオーバーフローを可視に */
  }

  .series-title {
    position: static; /* 絶対位置指定を解除 */
    font-size: 18px; /* タイトルのフォントサイズを小さく */
    margin: 10px 5%; /* 余白を調整 */
    text-align: center; /* タイトルを中央揃えに */
  }

  .scroll-wrapper {
    width: 100%; /* スクロールコンテナの幅を100%に */
    height: auto;
    margin: 0; /* 中央揃えを解除 */
    overflow-x: auto; /* スクロールバーを自動で表示 */
    padding: 10px 0; /* 上下のパディングを追加 */
  }

 /* ラインナップ nursery-lineup.html */
  .scroll-wrapper-lineup {
    width: 100%; /* スクロールコンテナの幅を100%に */
    height: auto;
    margin: 0; /* 中央揃えを解除 */
    overflow-x: auto; /* スクロールバーを自動で表示 */
    padding: 10px 0; /* 上下のパディングを追加 */
  }
 /* ラインナップ nursery-lineup.html 終了*/

  .image-card {
    width: 80%; /* 画像カードの幅を80%に */
    margin: 0 auto 10px; /* 画像カードの余白調整 */
    display: block; /* フレックスボックスの設定を解除し、ブロックに */
  }

  .image-card img {
    width: 100%; /* 画像の幅を100%に */
  }

  .info {
    padding: 5px 0; /* 情報エリアのパディングを調整 */
  }

  .product-name,
  .product-price {
    font-size: 14px; /* フォントサイズを小さく */
  }
/* シリーズ 終了*/

/* メニュー */

  .menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 550px;
  }

  .youto-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 500px;
  }

  .type-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 400px;
  }

  .cost-title,
  .youto-title,
  .type-title {
    order: -1; /* タイトルを最初に表示 */
    font-size: 18px;
    margin: 10px 5%;
    text-align: center;
  }

  .menu-list {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
/* メニュー 終了*/

/* コンタクト */
  .contact-container {
    .layout {
      display: grid;
      grid-template-columns: 1fr;
    }
  }  
/* コンタクト 終了*/

/* お祝いに贈る胡蝶蘭 */
  .product-container {
    justify-content: center;
  }
  .product-card {
    width: 47%;
  }
/* お祝いに贈る胡蝶蘭 終了*/


/* ショップ情報 */
.shop-section {
  display: flex;
  justify-content: start; /* 上揃え */
  align-items: start; /* 縦方向も上揃え */
  height: 980px;
  padding: 0 0;
}

.layout {
  display: grid;
  grid-template-columns: 1fr;
}

.text {
  h2 {
    font-size: 16px;
  }

  h3 {
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px;
    display: flex;
    align-items: baseline;
    gap: 1em;

    }
  }

  h3 a {
    display: block; /* ブロック要素にして改行 */
    font-size: 1.2rem;
    text-decoration: none;
    color: #000;
  }

  h3 span {
    display: block; /* ブロック要素にして下に配置 */
    font-size: 0.9rem;
    color: #666;
  }

  dl dt {
    font-size: 12px;
  }


/* ショップ情報 終了*/


/* フッター一番下 */
.last {
  color: #fff;
  background-color: rgb(180, 178, 174);
  padding: 40px 20px 20px;
  display: grid;
  justify-items: center;
  gap: 40px;

}
  .logo {
    display: block;
    img {
      display: block;
      height: 60px;
    }
  }

  .last ul {
    display: flex;
    gap: 18px;
  }

  a {
    font-size: 13px;
  }

  footer {
    position: relative;
    z-index: 2;
    /* コンテンツを読みやすくするための背景色（半透明） */
    width: 100%;
    margin-top: 20vh;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
  }

/* フッター終了 */










/* レスポンシブ 終了*/
}






 



