@charset "utf-8";

/*基本設定*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: #333;
  background-color: #fff;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/*共通パーツ*/
.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 40px;
}

.btn-wrap {
  text-align: center;
  margin-top: 30px;
}

.btn-more {
  display: inline-block;
  padding: 10px 40px;
  border: 1px solid #333;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: background-color 0.3s, color 0.3s;
}
.btn-more:hover {
  background-color: #97BDB5;
  color: #fff;
}

.btn-green {
  display: inline-block;
  padding: 12px 30px;
  background-color: #97BDB5;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: opacity 0.3s;
}
.btn-green:hover { opacity: 0.8; }

.btn-outline {
  display: inline-block;
  padding: 14px 24px;
  border: 1px solid #97BDB5;
  color: #97BDB5;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
  margin-top: 24px;
  transition: background-color 0.3s, color 0.3s;
}
.btn-outline:hover {
  background-color: #97BDB5;
  color: #fff;
}

.btn-pink {
  display: inline-block;
  padding: 14px 48px;
  background-color: #EAE1E7;
  color: #333;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-top: 28px;
  transition: opacity 0.3s;
}
.btn-pink:hover { opacity: 0.7; }

/*ヘッダー*/

.header {
  position: fixed;
  width: 100%;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #fff;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*ロゴ*/
.nav-logo img {
  height: 80px;
}

/*-ナビ*/
.nav-list {
  display: flex;
  gap: 40px;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 300;
}

/*SNS*/
.nav-sns img {
  width: 80px;
  opacity: 0.6;
  transition: 0.3s;
}


/*ヒーロー*/

.image-wrapper {
  position: relative; /*親要素を基準にする*/
  display: inline-block; /*画像のサイズにコンテナを合わせる*/
}

.image-wrapper img {
  width: 100%;
  height: auto;
}

.text-overlay {
  position: absolute; /* 親要素(image-wrapper)を基準に絶対配置 */
  top: 50%; /* 上から50% */
  left: 50%; /* 左から50% */
  transform: translate(-50%, -50%); /* 自身のサイズ分だけ引き戻して中央に */
  color:#333; /* 文字色 */
  font-size: 24px;
  font-weight: bold;
  background-color:#ffffff;
  padding: 10px;
}

.hero {
  margin-top: 80px;
  height: 600px;
}

.hero-image img {
  width: 100%;
  height:650px;
  object-fit: cover;
}


/* ===スライダー=== */
.products {
  padding: 70px 40px;
  background-color: #fff;
}

/* スライダー全体の横並びレイアウト */
.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

/* 見えている部分（窓） */
.slider-viewport {
  overflow: hidden;       /* はみ出た部分を隠す */
  flex: 1;
}

/* スライドが横に並ぶレール */
.slider-track {
  display: flex;
  transition: transform 0.5s ease; /* スライド時のアニメーション */
}

/* 1枚のスライド */
.slide {
  min-width: 25%;         /* 4枚表示 → 1枚 = 25% */
  padding: 0 12px;
  text-align: center;
  flex-shrink: 0;
}
.slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 12px;
}
.product-name {
  font-size: 13px;
  margin-bottom: 4px;
}
.product-price {
  font-size: 13px;
  color: #666;
}

/* 前へ・次へボタン */
.slider-btn {
  background: none;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  color: #555;
  flex-shrink: 0;
  transition: background-color 0.3s, color 0.3s;
}
.slider-btn:hover {
  background-color: #97BDB5;
  color: #fff;
  border-color: #97BDB5;
}

/* ドットナビゲーション */
.slider-dots {
  text-align: center;
  margin-top: 20px;
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.dot.active {
  background-color: #97BDB5;
}


/*フラワー販売（モーダル）*/
.flower-sales {
  background-color: #EAE1E7;
  padding: 70px 40px;
}
.flower-sales-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.flower-sales-text {
  flex: 1;
}
.flower-sales-text .section-title {
  text-align: left;
  margin-bottom: 28px;
}

/* 画像エリア（モーダルトリガー） */
.flower-sales-image {
  flex: 1;
  position: relative;   /* ズームアイコン配置のため */
  cursor: pointer;
}
.flower-sales-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: opacity 0.3s;
}
.flower-sales-image:hover img {
  opacity: 0.85;
}

/* ズームアイコン（ホバー時に表示） */
.zoom-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: rgba(255,255,255,0.85);
  padding: 6px 8px;
  font-size: 16px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.flower-sales-image:hover .zoom-icon {
  opacity: 1;
}


/* モーダル */

/* 背景の暗幕 */
.modal-overlay {
  display: none;              /* 最初は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 200;
  justify-content: center;
  align-items: center;
}

/* 表示中のスタイル（JSで付与） */
.modal-overlay.is-open {
  display: flex;
}

/* モーダルの白いボックス */
.modal-content {
  position: relative;
  max-width: 800px;
  width: 90%;
  background-color: #fff;
  padding: 16px;
}

/* 閉じるボタン */
.modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  background-color: #333;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  line-height: 36px;
  text-align: center;
  transition: background-color 0.3s;
}
.modal-close:hover {
  background-color: #97BDB5;
}

/* モーダル内の画像 */
#modalImg {
  width: 100%;
  display: block;
}

/* キャプション */
.modal-caption {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-top: 10px;
  padding-bottom: 4px;
}


/*フラワーアレンジメント体験会*/
.workshop {
  padding: 70px 40px;
  background-color: #fff;
}
.workshop-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.workshop-image { flex: 1; }
.workshop-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.workshop-info { flex: 1; }
.workshop-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.workshop-table th,
.workshop-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-weight: 300;
}
.workshop-table th {
  width: 80px;
  color: #888;
  white-space: nowrap;
}


/*お客様の声*/
.voices {
  padding: 70px 40px;
  background-color: #EAE1E7;
}
.voices-list {
  display: flex;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.voice-item { flex: 1; text-align: center; }
.voice-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}
.voice-text {
  font-size: 16px;
  line-height: 1.9;
  text-align: left;
  margin-bottom: 12px;
}
.voice-name {
  font-size:14px;
  color: #000;
  text-align: right;
}


/*会社概要*/
.about {
  padding: 70px 40px;
  background-color: #fff;
}
.about-inner {
  display: flex;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
}
.about-map { flex: 1; }
.map-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #888;
}
.about-info { flex: 1; }
.about-info .section-title {
  text-align: left;
  margin-bottom: 24px;
}
.about-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.about-table th,
.about-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-weight: 300;
}
.about-table th {
  width: 110px;
  color: #888;
  white-space: nowrap;
}


/*お問い合わせ*/
.message {
  padding: 70px 40px;
  background-color: #EAE1E7;
}
.message-inner {
  display: flex;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}
.message-image { flex: 1; }
.message-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.message-text {
  flex: 1;
  background-color: rgba(255,255,255,0.7);
  padding: 40px;
}
.message-text p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 16px;
}


/*フッタ*/
.footer {
  background-color: #fff;
  padding: 40px 40px 24px;
  text-align: center;
  border-top: 1px solid #eee;
}
.footer-nav-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
}
.footer-nav-list a {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #000;
  transition: color 0.3s;
}
.footer-nav-list a:hover { color: #97BDB5; }

.copyright {
  background-color: #EAE1E7;
  margin: 0;
  padding: 10px 0; 
  width: 100vw;
  text-align: center;
  font-size: 11px;
  color: #000;
  letter-spacing: 0.05em;
}

