/* style.css */
body {
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

h2, h3 {
  text-align: center;
  margin: 1.5em 0 0.5em;
  font-size: 1.5em;
}

ul {
  list-style: disc;
  padding-left: 1.5em;
}

.cta-button, .button-row button {
  display: inline-block;
  background: #e45757;
  color: white;
  padding: 1em 1.5em;
  margin: 1em auto;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  text-align: center;
  cursor: pointer;
  width: 80%;
  max-width: 300px;
}

.section, .image-row, .image-column {
  margin: 1.5em auto;
  width: 90%;
  max-width: 600px;
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
}

/* アンカーリンク */
.fixed-anchor-nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%; /* 画面幅いっぱい */
  max-width: 900px;
  height: 40px;
  background: rgba(29, 18, 5, 0.386);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 9999;
  overflow: hidden; /* 横スクロールなし */
  border-radius: 0 0 8px 8px;
}

.fixed-anchor-nav ul {
  display: flex;
  margin: 0;
  padding: 0 5px;
  list-style: none;
  width: 100%;
  justify-content: space-between; /* 均等配置 */
}

.fixed-anchor-nav ul li {
  flex: 1; /* ← 5個を均等割り当て */
}

.fixed-anchor-nav ul li a {
  display: block;
  padding: 10px 0;
  color: white;
  font-weight: 600;
  font-size: 13px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease;
  text-align: center;
  flex-grow: 1; /* 均等に広げる */
  margin: 0 2px;
}

.fixed-anchor-nav ul li a:hover,
.fixed-anchor-nav ul li a:focus {
  background-color: rgba(255, 255, 255, 0.3);
}




.firstview {
  margin-top: 0; /* ページ上部の余白なくす */
  background: linear-gradient(to bottom, #fff7e6 0%, #ffffff 100%);
  padding-bottom: 2rem;
}

.firstview img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  margin: 0 auto;
  display: block;
}

/* Saleテキスト */
.image-wrapper {
  position: relative;
  display: block; 
  max-width: 900px;
  margin: 0 auto; 
  width: 100%;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.text-overlay {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%);
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  padding: 1em;
  z-index: 2;
}

.text-overlay h1 {
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff; /* 文字色 */
  -webkit-text-stroke: 2px transparent;
background: linear-gradient(45deg, #64fcf7, #ff64e6, #64a6fc);
-webkit-background-clip: text;
color: transparent;
  display: inline-block;
  padding: 0.2em 0.8em;
  border-radius: 6px;
  text-shadow: none; /* 影はナシ */
}


.text-overlay p {
  font-size: 1rem;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明黒の帯 */
  display: inline-block;
  padding: 0.3em 0.8em;
  border-radius: 4px;
  margin-top: 0.3em;
}


/* 最初の文字 */
.firstview .text-center {
  margin-top: 2rem;
  background: #ffffff;
  padding: 2rem 1rem;
  border-radius: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.firstview p.text-base {
  font-size: 1.125rem;
  color: #666666;
}

.firstview h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  margin-top: 0.75rem;
}

.firstview p.text-sm {
  font-size: 1rem;
  color: #555555;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.firstview span.font-semibold {
  color: #e67300; /* ポイント部分だけオレンジ強調 */
}


.day {
  text-align: center;  /* テキストを中央寄せ */
  margin-bottom: 50px;
}

.image-container {
  width: 100%;         /* 画像を横幅いっぱいに広げる */
  overflow: hidden;    /* 画像のはみ出しを隠す */
  margin-bottom: 1.5rem; /* 画像とテキストの間に余白をつける */
}

.event-image {
  width: 100%;         /* 画像を横幅いっぱいにする */
  height: auto;        /* 高さは自動調整 */
}

.day-text p {
  margin: 0.5rem 0;   /* 各テキストの上下に余白をつける */
  font-size: 1.25rem;  /* テキストの大きさ */
}

 /* 53週h年 */
.anniversary-53th {
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, #f9f9f9, #fff);
  margin: 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(90deg, #64fcf7, #ff64e6, #64a6fc);
  -webkit-background-clip: text;
  color: transparent;
  animation: moveGradient 3s infinite linear;
}
@keyframes moveGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.banner-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-title a {
  background: linear-gradient(90deg, #64fcf7, #ff64e6, #64a6fc);
  -webkit-background-clip: text;
  color: transparent;
  text-decoration: none;
  display: inline-block;
}



.limited-event {
  background-color: #fff8f2;
  padding: 60px 20px;
  text-align: center;
  font-family: "Helvetica Neue", sans-serif;
  color: #333;
}

.limited-event  {
  max-width: 900px;
  margin: 0 auto;
}

.limited-event .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.limited-event .banner-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.limited-event .event-block {
  background-color: #fff;
  padding: 20px 25px;
  margin-bottom: 25px;
  border-left: 6px solid #cfa670;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.limited-event .venue-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #444;
  margin-bottom: 10px;
}

.limited-event .event-block p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 5px 0;
  color: #555;
}

.limited-event .event-block a {
  color: #cfa670;
  text-decoration: underline;
}

.limited-event .event-note {
  font-size: 1rem;
  color: #666;
  margin-top: 30px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.limited-event .cta-button {
  margin-top: 20px;
}

.limited-event .btn-primary {
  background-color: #cfa670;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.limited-event .btn-primary:hover {
  background-color: #b88e5c;
}


.section-benefits {
    padding: 2rem 1rem;
  }
  
  .benefits-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  .benefits-box {
    background-color: #fff9db; /* やさしい黄色 */
    border: 1px solid #f1e7a9;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
  }
  
  .benefits-list {
    list-style: decimal inside;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    padding: 0;
  }
  
  .section-contract {
    padding: 40px 16px;
    background-color: #fff; 
     border: 2px dashed #aaa; /* 点線の枠線を追加 */
  border-radius: 10px;
  margin: auto;
  max-width: 900px;
  }
  
  .contract-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
  
  .contract-gifts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .gift-item img {
    width: 100%;
    border-radius: 0.75rem;
  }
  
  .gift-label {
    font-weight: bold;
    text-align: center;
    margin-top: 0.5rem;
  }
  
  .gift-desc {
    font-size: 0.95rem;
    text-align: center;
    margin-top: 0.3rem;
    color: #444;
  }
  
  .garapon-text {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .garapon-img {
    width: 100%;
    display: block;
    border-radius: 0.75rem;
  }

  .trouble-solution {
    text-align: center;
    font-size: 1.25rem;     /* 少し大きめの文字 */
    font-weight: 600;
    color: #dc2626;
    margin-top: 2.5rem;     /* 上に大きめの余白 */
    margin-bottom: 2.5rem;  /* 下にも大きめの余白 */
    line-height: 1.6;
  }

  .btn-brand {
    background-color: #f87171;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .btn-invite {
    background-color: #ef4444;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  
  .bubble {
    position: relative;
    max-width: 100%;
  }
  
  .bubble::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: -12px;
    border: 6px solid transparent;
    border-right-color: #f3f4f6; /* グレーの吹き出し色 */
  }
 
  .bubble-left {
    position: relative;
    max-width: 75%;
  }
  
  .bubble-left::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: -12px;
    border: 6px solid transparent;
    border-right-color: #bfdbfe; /* 青背景用の吹き出し矢印 */
  }
  
  .bubble-right {
    position: relative;
    max-width: 75%;
  }
  
  .bubble-right::before {
    content: '';
    position: absolute;
    top: 1rem;
    right: -12px;
    border: 6px solid transparent;
    border-left-color: #f3f4f6; /* グレー背景用の吹き出し矢印 */
  }

  .bubble-left {
    position: relative;
    max-width: 75%;
  }
  
  .bubble-left::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: -12px;
    border: 6px solid transparent;
    border-right-color: #bfdbfe; /* 青背景用の吹き出し矢印 */
  }
  
  .bubble-right {
    position: relative;
    max-width: 75%;
  }
  
  .bubble-right::before {
    content: '';
    position: absolute;
    top: 1rem;
    right: -12px;
    border: 6px solid transparent;
    border-left-color: #f3f4f6; /* グレー背景用の吹き出し矢印 */
  }
  
/* 豪華な7大メリットセクション */
.section-benefits {
  background: linear-gradient(135deg, #c0a060, #ffe082);
  padding: 50px 20px;
  text-align: center;
}

.benefits-title {
  display: inline-block;
  position: relative;
  height: 45px;
  text-align: center;
  box-sizing: border-box;
}

.benefits-title:before { /* 左側のリボン端 */
  content: '';
  position: absolute;
  width: 10px;
  bottom: -10px;
  left: -35px;
  z-index: -2;
  border: 20px solid #d32f2f; /* メインカラー */
  border-left-color: transparent; /* 山形に切り抜き */
}

.benefits-title:after { /* 右側のリボン端 */
  content: '';
  position: absolute;
  width: 10px;
  bottom: -10px;
  right: -35px;
  z-index: -2;
  border: 20px solid #d32f2f; /* メインカラー */
  border-right-color: transparent; /* 山形に切り抜き */
}

.benefits-title h2 {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0 20px;
  line-height: 45px;
  font-size: 18px;
  color: #FFF;
  background: #d32f2f; /* 真ん中の背景色 */
}

.benefits-title h2:before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-right: solid 15px #9a0007; /* 少し濃い赤色で折り返し部分 */
}

.benefits-title h2:after {
  position: absolute;
  content: '';
  top: 100%;
  right: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-left: solid 15px #9a0007; /* 少し濃い赤色で折り返し部分 */
}

.benefits-box {
  max-width: auto;
  margin: 10px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  font-size: 1.2rem;
  color: #555;
  padding: 15px;
  margin-bottom: 15px;
  background: #fff8e1;
  border-left: 8px solid #f44336;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 高級感強めセクション */
.section-pro {
  background: linear-gradient(to bottom, #faf7f2, #f5f0e8);
  padding: 70px 20px;
  text-align: center;
}

/* タイトルをエレガントに */
.section-pro h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #3e3e3e;
  margin-bottom: 30px;
  font-family: 'Georgia', serif;
  display: inline-block;
  border-bottom: 3px solid #c0a060; /* 文字全体に下線を引く */
  padding-bottom: 8px; /* 下線との間にちょっと余白 */
}



/* リストをより上品に */
.section-pro ul {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.section-pro li {
  background: #ffffff;
  padding: 22px 28px;
  margin-bottom: 24px;
  border: 1px solid #e0d8cc;
  border-radius: 16px;
  font-size: 1.3rem;
  color: #4a4a4a;
  font-family: 'Helvetica Neue', sans-serif;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ホバーでふわっと浮く */
.section-pro li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* チェックマークを高級仕様に */
.section-pro li::before {
  content: '✔';
  color: #c0a060;
  font-weight: bold;
  font-size: 1.4rem;
  margin-right: 12px;
}

.webtokuten {
  background: #ffffff; 
  padding: 3rem 1.5rem;
  border-radius: 1.5rem;
  border: 2px dashed #f9b857;
  box-shadow: 0 8px 24px rgba(249, 184, 87, 0.2);
  margin-bottom: 50px;
  margin-top: 30px;
}

.webtokuten h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #e67300;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
}


.webtokuten .grid figure {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.webtokuten .grid figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.webtokuten figure img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.webtokuten figcaption {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333;
  font-weight: 600;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.webtokuten .mt-6 p {
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}



.osusume-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.osusume-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.osusume-img {
  width: auto;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  margin-left: auto;
  margin-right: auto;
}

.osusume-text {
  margin-top: 1rem;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}




/* 悩み解決帯 */
.trouble-solution {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(45deg, #ff7b7b, #ff5a5a); /* グラデーションで派手さを演出 */
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* 影をつけて立体感 */
  transform: scale(1.05); /* 少し大きく見せる */
  transition: all 0.3s ease;
}

.trouble-solution:hover {
  transform: scale(1.1); /* ホバー時に少し拡大 */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3); /* ホバー時に影を強調 */
}


/* point画像コンテナのスタイル */
.space-y-4 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* 各ポイント画像 */
.point-item {
  text-align: center;
}

.point-item img {
  width: 80%; /* 画像の最大幅を80%に設定（適度なサイズ） */
  height: auto; /* 高さは自動調整 */
  border-radius: 8px;
  object-fit: cover; /* 画像が荒れないように調整 */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto; /* 画像を中央に配置 */
}

/* 画像のホバー効果 */
.point-item img:hover {
  transform: scale(1.05); /* 少し拡大 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 影をつけて立体感を */
}

/* 画像の下の説明文 */
.point-description {
  font-size: 1rem;
  color: #555;
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

/* 出張見積セクション */
.service {
  margin-top: 40px;
  padding: 20px;
  background-color: #f9f9f9; /* 背景色を追加 */
  border-radius: 8px; /* セクションの角を丸める */
}

.service h3 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.service img.syutyou {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
  border-radius: 8px; /* 画像に丸みを付ける */
  margin-bottom: 30px; /* 画像とテキスト間の余白 */
}

/* 説明文 */
.service p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  text-align: center;
  margin-bottom: 30px;
}

.service p br {
  line-height: 1.5;
}

/* 赤文字 */
.red-text {
   display: block;
  color: #e53e3e; /* 赤色 */
  font-weight: bold; /* 太字 */
  text-align: center;
}

/* 出張見積予約ボタン */
.mitumoribotan {
  background-color: #e53e3e; /* ボタンの背景色 */
  color: white;
  font-size: 18px;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 影を追加 */
  display: inline-block;
  transition: background-color 0.3s ease;
}

/* ボタンのホバーエフェクト */
.mitumoribotan:hover {
  background-color: #c53030; /* ホバー時の背景色 */
}

/* ボタンの配置 */
.text-center {
  text-align: center;
  padding-top: 20px;
}



.plan-item {
  text-align: center;
}

.plan-item img {
  width: 80%; /* サイズはそこそこに */
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.plan-description {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #666;
  line-height: 1.4;
}



.hagire {
  padding: 4rem 1rem;
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hagire h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}

.hagire p {
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin-top: 0.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hagiremoris,
.happybag {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hagiremoris img,
.happybag img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}



.showroom {
  border-top: 2px solid #d4af37;
  border-bottom: 2px solid #d4af37;
  padding: 2rem 1rem;
}

.showroom h2 {
  text-align: center;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.showroom {
  background: linear-gradient(to bottom, #faf7f2, #ffffff);
  padding: 4rem 1rem;
}

.showroom h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #4b3f2f;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.showroom img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.attention-box {
  border: 2px solid #4b3f2f; /* 目立つ黄色の枠線 */
  border-radius: 0.5rem; /* 角を少し丸くする（お好みで） */
  background-color: #fff9e6; /* 薄い黄色背景（お好みで） */
  padding: 1rem; /* 内側の余白 */
  margin: 1rem 0; /* 上下の余白 */
  font-weight: bold; /* 文字を少し太くする（お好みで） */
}


.event-link {
  text-align: center; /* センター寄せ */
  margin-bottom: 1rem;
}

.event-link a {
  display: inline-block;
  font-weight: bold;       
  font-size: 1.2rem;        
  color: #7b5e3f;            /* 指定の色に変更 */
  text-decoration: none;    
  background: #f5f0eb;      /* 薄いベージュ系で背景を引き立たせる */
  padding: 0.5em 1em;
  border: 2px solid #7b5e3f;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}

.event-link a:hover {
  background: #7b5e3f;      /* ホバー時に指定色で塗りつぶす */
  color: #ffffff;           /* 文字色を白に */
}

.btn-brand {
  background: #ffffff;
  border: 2px solid #c1a36b;
  color: #7b5e3f;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-brand:hover {
  background: #c1a36b;
  color: #ffffff;
}

.showroom p {
  color: #5a4633;
}

.btn-invite {
  display: inline-block;
  background: #7b5e3f;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

.btn-invite:hover {
  background: #5a4633;
}

.brand-title {
  font-weight: bold;
}

/* セクションの背景色 */
.brand-section {
  background-color: #f7f7f7; /* 高級感のある薄いグレー */
  padding: 40px 0;
}

/* ブランドカードのグリッドレイアウト */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 20px;
  justify-items: center;
  align-items: center;
  margin-top: 20px;
}

/* ブランドカードのスタイル */
.brand-card {
  background-color: #fff; /* 白い背景 */
  border: 1px solid #ddd; /* 薄いグレーの境界線 */
  border-radius: 10px; /* 角丸 */
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ソフトなシャドウ */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ブランドカードのホバー効果 */
.brand-card:hover {
  transform: translateY(-10px); /* 少し浮き上がる */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* シャドウを強調 */
}

/* ブランド画像のスタイル */
.brand-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px; /* 画像の角も丸く */
}

/* ブランド名のスタイル */
.brand-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333; /* 濃いグレー */
  margin-top: 10px;
}

/* メディアセクションの背景 */
.media {
  background: linear-gradient(135deg, #e18b64, #d1a16f); /* くすんだオレンジから柔らかいブラウン系に変更 */
  padding: 40px 0;
  text-align: center;
  color: #fff; /* テキスト色は白 */
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* メディア画像のスタイル */
.mediaphot {
  margin: 20px 0;
}

.media-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* シャドウを軽めにして上品に */
}

/* メディアテキストのスタイル */
.media h2 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 10px;
  color: #f0f0f0; /* 少し明るめの白にして、視認性を確保 */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); /* 軽いテキストシャドウ */
}

.media-text {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 10px;
  color: #f0f0f0; /* 少し明るめの白にして、視認性を確保 */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); /* 軽いテキストシャドウ */
}

/* YouTube 埋め込みコンテナのスタイル */
.youtube-container {
  margin-top: 30px;
}

.youtube-container iframe {
  width: 100%;
  max-width: 800px; /
}

/* 親要素に対してレスポンシブ対応 */
.responsive-iframe {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9のアスペクト比 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* お客様の声セクション */
.voice {
  padding: 40px 16px;
  background-color: #e0d8cc; /* 背景色を淡いグレーに（ */
  border: 2px dashed #aaa; /* 点線の枠線を追加 */
  border-radius: 10px;
  margin: auto;
  max-width: 900px;
}

/* バブルのスタイル */
.bubble {
  position: relative;
  width: 100%;
  background-color: #f3f4f6;
  border: 2px solid #e1e4e8; /* しっかりと四角に囲む */
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* お客様の画像スタイル */
img.w-16 {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
}

/* テキストスタイル */
.text-base {
  font-size: 1rem;
  line-height: 1.5;
}

/* スペースの調整 */
.flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.space-x-4 {
  gap: 16px; /* 画像とテキスト間にスペースを追加 */
}

/* 質問 */
.qa {
  margin-top: 50px; /* 上のマージン（ほどほど） */
  margin-bottom: 30px; /* 下のマージン（ほどほど） */
  padding: 20px; /* 点線との余白 */
  border: 2px dotted #847b7b; /* 点線で囲む */
  text-align: center; /* 見出しを中央揃えにする */
   }

.qa h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 20px; /* 見出しと質問リストの間の余白 */
  }

.Q {
  background-color: #f0f0f0; /* 薄いグレーの背景色（吹き出し風） */
  padding: 10px 15px;
  border-radius: 10px; /* 角を丸くして吹き出し感を出す */
  margin-bottom: 10px; /* 質問と回答の間隔 */
  text-align: left; /* 質問テキストは左寄せ */
  margin-bottom: 10px; /* 質問と回答のペアの間隔 */
}

.Q strong {
  font-weight: bold; /* Q. を太字にする */
}

.A {
  padding: 10px 15px;
  margin-bottom: 15px; /* 回答同士の間隔 */
  text-align: left; /* 回答テキストは左寄せ */
  }

.A strong {
  font-weight: bold; /* A. を太字にする */
}

.QA {
  max-height: 400px; /* 縦方向の最大高さを設定 (調整可能) */
  overflow-y: auto; /* 縦方向のスクロールを許可 */
  padding-right: 10px; /* スクロールバーのための右側の余白 */
}

.marshmallow-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px; /* 画像とテキストの余白 */
  background: #fff8f8;
  border: 2px dashed #f48fb1;
  border-radius: 12px;
  padding: 15px;
  margin-top: 20px;
}

.marshmallow-img {
  max-width: 200px; /* バナーサイズ調整 */
  height: auto;
}

.marshmallow-text {
  font-size: 1em;
  text-align: left;
}
.marshmallow-text a {
  color: #e91e63;
  font-weight: bold;
  text-decoration: underline;
}


.job-banner {
  text-align: center;
  margin: 40px 0;
}

.job-banner img {
  max-width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.job-banner img:hover {
  transform: scale(1.05);
}


.line {
  text-align: center;
  padding: 20px;
  margin: 30px;
}

.line h2 {
  font-size: 1.5rem; /* 2xlに相当 */
  font-weight: 600; /* semiboldに相当 */
  text-align: center; /* centerに相当 */
  margin-bottom: 1.5rem; /* mb-6に相当 */
}


.line-button img {
  height: 36px; /* LINEボタンのサイズ調整 */
  width: auto; /* 幅を自動調整 */
  margin-bottom: 30px;
}

.line p {
  font-size: 1.5rem; /* 2xlに相当 */
  font-weight: 600; /* semiboldに相当 */
  text-align: center; /* centerに相当 */
  margin-bottom: 2rem; /* mb-6に相当 */
}


/* 地図と住所を横並びにするためのスタイル */
.map {
  padding: 40px 16px;
  background-color: #f9f9f9; /* 地図セクションだけ薄いグレー背景 */
}

.map h2 {
  font-size: 1.5rem; /* 2xlに相当 */
  font-weight: 600; /* semiboldに相当 */
  text-align: center; /* centerに相当 */
  margin-bottom: 2rem; /* mb-6に相当 */
}

.map-container {
  display: flex;
  flex-wrap: wrap; /* 小さい画面では折り返す */
  gap: 20px; /* 住所と地図の間に少し間隔 */
  max-width: 1000px;
  margin: auto;
}

.contact-info {
  display: flex;
  flex: 1;
  gap: 20px;
}

.address {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
}

.map-iframe {
  flex: 2; /* 地図の方を広めに */
}

.map-iframe iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 8px;
}



footer {
  background-color: #6b6565; /* ダークカラー背景 */
  color: white; /* テキストを白く */
  text-align: center;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 200px; /* ロゴのサイズ調整 */
  height: auto;
  margin-bottom: 20px; /* ロゴとSNSアイコンの間に余白 */
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px; /* アイコン間のスペース */
}

.social-icon {
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s ease; /* ホバー時の色変更アニメ */
}

.social-icon:hover {
  color: #ff7f50; /* ホバー時の色（オレンジ系） */
}

footer p {
  font-size: 14px;
  margin-top: 20px;
}



.fixed-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 12px 24px;
  background-color: #ff7f50;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  z-index: 1000; /* 他の要素より前に出す */
}

.fixed-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 127, 80, 0.8); /* ← 透明度80% */
  color: white;
  text-decoration: none;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  padding: 10px;
  line-height: 1.2;
  transition: background-color 0.3s, opacity 0.3s; /* アニメも追加！ */
}

.fixed-button:hover {
  background-color: rgba(255, 87, 34, 1.0); /* ホバー時は100%くっきり */
}
.container {
  width: 767px; /* スマホ幅に固定 */
  max-width: 767px; /* 最大幅も固定 */
  background-color: white; /* コンテンツ背景色 */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* 必要に応じて影を追加 */
  border-radius: 0.5rem; /* 必要に応じて角丸 */
  overflow: hidden; /* 角丸を適用するために必要 */
}

/* PC表示 */
@media screen and (min-width: 768px) {
  body {
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('/image/back.jpg'); /* 白色で透明度50%のグラデーションを重ねる */
    background-repeat: repeat-y !important; /* 縦方向にリピート */ 
    background-size: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    min-height: 100vh !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
      }
  

  .container {
    width: 100%; /* スマホ幅いっぱい */
  }


  /* PC表示では、スマホ用のpaddingはcontainerにかける */
  .container .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .container .py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  /* PC表示では、幅の調整はcontainerに対して行うため、w-fullなどは不要 */
  .container .w-full {
    width: auto; /* 親要素（container）に合わせる */
  }

  .container .contract-gifts {
    display: flex;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .container .gift-item {
    flex: 1;
    text-align: center;
  }
  .container .garapon-img {
    max-width: 660px;
  }
  .container .brand-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
  }
  .container .w-16 {
    width: 4rem;
  }
  .container .h-16 {
    height: 4rem;
  }
  .container .space-y-4 > * + * {
    margin-top: 1.5rem;
  }
  .container .mt-8 {
    margin-top: 3rem;
  }
  .container .mb-4 {
    margin-bottom: 1.5rem;
  }
  .container .garapon-text {
    margin-top: 2rem;
  }
  .container .point-item img {
    margin-bottom: 0.75rem;
  }
  .container .brand-section {
    padding: 2rem;
    margin-top: 3rem;
  }
  .container .brand-title {
    margin-bottom: 1.5rem;
  }
  .container .space-x-4 > * + * {
    margin-left: 1.5rem;
  }
  .container .Q {
    padding: 1rem;
    margin-top: 1.5rem;
  }
  .container .A {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
}

/* 来店予約ボタンなどの追加CSS（必要に応じて） */
.reservation-button {
  display: block;
  width: 80%;
  max-width: 300px;
  margin: 2rem auto;
  padding: 1rem 2rem;
  text-align: center;
  background-color: #4a5568;
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
}


@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
  .cta-button, .button-row button {
    width: auto;
    padding: 1em 2em;
  }

  

  .flex {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .space-x-4 {
    gap: 20px;
  }

  /* バブルの最大幅調整 */
  .bubble {
    max-width: 600px;
  }
 
}