/* ==============================
  TOPページ
============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #333;
  font-family: var(--font-mincho);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==============================
  ヘッダー
============================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 96px;
  color: #fff;
}
/* FV以下になったらヘッダーの背景を追加・*/
.l-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    transition:
        background-color .3s,
        box-shadow .3s;
}
/*スクロール後*/
.l-header.is-scrolled{
    background:#fff;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
}
.l-header__nav a{
    color:#fff;
    transition:.3s;
}

.l-header.is-scrolled .global-nav__item a{
    color:#333;
}
.l-header__logo{
  position: relative; 
}


/* 初期状態（FV上） */
.l-header__logo--white{
  display: block;
}

.l-header__logo--black{
  display: none;
}

/*FVを過ぎたら切り替え*/
.l-header.is-scrolled .l-header__logo--white{
    display:none;
}

.l-header.is-scrolled .l-header__logo--black{
    display:block;
}

/* ==============================
  Global nav
============================== */
.global-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav__item {
  position: relative;
  text-align: center;
}

.global-nav__link {
  display: inline-block;
  padding:  0;
  font-size: 15px;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease;
  border: none;
}

.global-nav__link:hover {
  opacity: 0.75;
}

.global-nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 16px 32px;
  background-color: #b86f76;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.08em;
  transition: background-color 0.3s ease;
}

.global-nav__button:hover {
  background-color: #a85f66;
}

/* dropdown */
.global-nav__child-list {
  position: absolute;
  top: 88px;
  left: 50%;
  width: 260px;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: rgba(255, 255, 255, 0.88);
  border-top: 4px solid #b86f76;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.global-nav__item--has-child:hover .global-nav__child-list {
  opacity: 1;
  visibility: visible;
}

.global-nav__child-item + .global-nav__child-item {
  border-top: 1px solid rgba(80, 60, 60, 0.18);
}

.global-nav__child-link {
  display: block;
  padding: 22px 28px;
  color: #3f3836;
  font-size: 15px;
  letter-spacing: 0.08em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.global-nav__child-link:hover {
  background-color: rgba(184, 111, 118, 0.12);
  color: #9f555d;
}

/* ==============================
  Hero
============================== */
.hero {
  position: relative;
  min-height: 760px;
  height: 100vh;
  overflow: hidden;
  background-image: url("../image/top/fv-natural-takasago.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__slider,
.hero__slide,
.hero__overlay {
  position: absolute;
  inset: 0;
}
.hero__slider {
    z-index: 0;
}

.hero__slide {
  position: absolute;
  inset:0;
  display: block;
  opacity: 0;
  animation: heroFade 15s infinite;
  overflow: hidden;
}
.hero__slide img {
  display: block;
   width: 100%;
   height:100%;
   object-fit: cover;
   object-position: center;
}
.hero__slide--01 {
  animation-delay: 0s;
}
.hero__slide--02 {

  animation-delay: 5s;
}
.hero__slide--03 {
  animation-delay: 10s;
}

.hero__overlay {
    z-index: 1;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.32);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  height: 100%;
  margin: 0 auto;
  padding: 0 0 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
}

.hero__lead-en {
  margin: 0 0 24px;
   font-family: "Tangerine", cursive;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.sp-only {
  display: none;
}
.hero__title {
  margin: 0;
  font-size: 3.5rem;
  font-family: var(--font-mincho);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}
@keyframes heroFade {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  41% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/*==================================
  TOP スズキ花店の想い
==================================*/

.top-intro {
  padding: 96px 0 120px;
  background: var(--color-white);
}

.top-intro__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.top-intro__title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
  .top-intro__accent {
    color:var(--color-main);
  }
.top-intro__title-accent {
  color: var(--color-primary);
}

.top-intro__text {
  margin-top: 40px;
}

.top-intro__text p {
  font-size: var(--fz-medium);
  line-height: 2.4;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

.top-intro__text p + p {
  margin-top: 40px;
}
/* ==============================
  Top 選ばれる理由
============================== */

.top-reasons {
  position: relative;
  padding:96px 0 120px;
  overflow: hidden;
}
/* 背景画像 */
.top-reasons__bg {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.top-reasons__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* 白いグラデーション */
.top-reasons__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
  180deg,
  #fff 0%,
  rgba(255, 255, 255, 0.94) 12%,
  rgba(255, 255, 255, 0.90) 50%,
  rgba(255, 255, 255, 0.94) 88%,
  #fff 100%
);
}

.top-reasons__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
}

.top-reasons__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.top-reasons__card {
  text-align: center;
}

.top-reasons__number {
  margin: 0 0 8px;
  color: var( --color-main);
  font-family: var(--font-script);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.top-reasons__title {
    font-size: 1rem;
  margin: 0 0 20px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.top-reasons__image {
  margin: 0;
  overflow: hidden;
}

.top-reasons__image img {
  width: 100%;
  aspect-ratio: 288 / 240;
  object-fit: cover;
}

.top-reasons__text {
  margin: 40px 0 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.08em;
  text-align: left;
}
/* ==============================
  Top ウェディングコーディネート
============================== */

.top-coordination {
  padding: 96px 0 150px;
  background-color: #fff;
}

.top-coordination__inner {
  width:100%;
  max-width: 1560px;
  margin: 0 auto;
  padding-inline: 32px;
}
/*色別ギャラリー全体*/
.top-coordination__list {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 72px;
}

.top-coordination__item + .top-coordination__item {
  margin-top: 0;
}
.top-coordination__item {
  min-width: 0;
  padding:32px 16px 48px;
  border-radius: 4px;
  transition:.3s;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.top-coordination__item:hover {
  transform: translateY(-3px);
}

/*色名*/
.top-coordination__color-title-ja {
  font-size: 0.875rem;
  color:#666;
  letter-spacing: 0.08em;
  margin: 4px 0 32px 0;
  font-weight: 400;
  text-align: center;
}
.top-coordination__color-title {
  margin: 0;
  color: var(--color-main);
  font-family: var(--font-script);
  font-size: clamp(32px, 2.2vw, 36px);
  text-align: center;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
/* マウス操作ができる端末のみ：カード全体がホバーされたとき、英字タイトルの色を変える */
@media (hover: hover) and (pointer: fine) {
.top-coordination__item--green:hover .top-coordination__color-title {
  color: #6f8d56; 
  }

.top-coordination__item--pink:hover .top-coordination__color-title {
  color: #d98ca3;
}

.top-coordination__item--lavender:hover .top-coordination__color-title {
  color: #a887b8;
}

.top-coordination__item--yellow-orange:hover .top-coordination__color-title{
  color: #d9a24a;
}

.top-coordination__item--blue:hover .top-coordination__color-title {
  color: #5b79b8;
}

.top-coordination__item--red:hover .top-coordination__color-title {
  color: #b45b5b;
}
/*各色の背景*/
.top-coordination__item.top-coordination__item--green:hover {
  background: #edfaed;
}
.top-coordination__item.top-coordination__item--pink:hover {
  background: #fcf3f5;
}
.top-coordination__item.top-coordination__item--lavender:hover {
  background: #fcf3fc;
}
.top-coordination__item.top-coordination__item--yellow-orange:hover {
  background: #fffaf0;
}
.top-coordination__item.top-coordination__item--blue:hover {
  background: #f5f5ff;
}
.top-coordination__item.top-coordination__item--red:hover {
  background: #faf1f1;
}
}
/*各色の3枚組ギャラリー*/
.top-coordination__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.top-coordination__image {
  margin: 0;
  min-width: 0;
  display: block;
  overflow: hidden;
}

.top-coordination__image--wide {
  grid-column: 1/-1;
}
/* すべての画像に共通 */
.top-coordination__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.55s ease,
    opacity 0.55s ease;
}

/* 上部の横長画像：1920×800 → 960×400 */
.top-coordination__image--wide img {
  aspect-ratio: 1920 / 800;
}

/* 下の2カラム画像 */
.top-coordination__image:not(.top-coordination__image--wide) img {
  aspect-ratio: 472 / 300;
}

.top-coordination__text {
  margin: 64px 0 80px;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.08em;
}
/* 画像ホバー */
@media (hover: hover) {
  .top-coordination__image:hover img {
    transform: scale(0.985);
    filter: brightness(0.92);
    opacity: 0.85;
  }
}

/* 2枚横並び→横長1枚に */
.top-coordination__gallery--reverse .top-coordination__image--wide {
  grid-column: span 2;
}
/*ボタンの配置*/
.top-coordination__btn {
  margin: 56px auto 0;
  display: flex;
  justify-content: center; 
  width:72%;

}

/* ==============================
  Top オーダーブーケ
============================== */
.order {
  padding: 120px 24px 96px;
  background: #fcf6f6;
  overflow: hidden;
}

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

.order__heading {
  max-width: 960px;
  margin: 0 auto 80px;
  text-align: center;
}

.order__title {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.order__line {
  display: block;
  width: 40px;
  height: 1px;
  margin: 8px auto 88px;
  background: var(--color-main);
}

.order__text {
  margin: 64px 0 80px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.order-gallery {
  max-width: 100%;
  width: 1180px;
  margin: 56px auto 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.order-gallery__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/*列ごととに幅を設ける*/
.order-gallery__column--left {
  flex: 0 0 283px;
}
.order-gallery__right-area {
  flex: 0 0 881px;
}

.order-gallery__upper {
  display: grid;
  grid-template-columns: 582px 283px;
  gap: 16px;
}

.order-gallery__upper {
  display: grid;
  grid-template-columns: 1fr 283px;
  gap: 16px;
  align-items: stretch;
}

.order-gallery__right-area {
  flex: 1;
  min-width: 0;
}

.order-gallery__bottom {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  margin-top: 16px;
  align-items: end;
}

.order-gallery__bottom .order-gallery__item img {
  width: 100%;
  height: 575px; 
  object-fit: cover;
}

.order-gallery__item {
  margin: 0;
  overflow: hidden;
}

.order-gallery__item img {
  width: 100%;
  height:auto;
  display: block;
}
/*==============================
 Top 店舗情報
==============================*/

.shop-info{
  padding:80px 0 120px;
}

.shop-info__inner{
    max-width:1120px;
    margin: 80px auto 0;
    display:grid;
    grid-template-columns: 380px 1fr;
    gap:72px;
    align-items:start;
}
.shop-info__content,
.shop-info__slider {
  align-self: start;
}
/*タイトルの配置*/
.shop-info .section-heading__ja::after {
  margin: 8px auto 0;
}

.shop-info__content{
  display:flex;
  flex-direction:column;
}

.shop-info__list {
  margin:0;
}

.shop-info__item{
    margin:0 0 24px 0;
}

.shop-info__item:last-child{

    margin-bottom:0;
}

.shop-info__item dt{
    margin:0 0 8px 0;
    color: #805e63;
    font-weight:500;
    line-height:1.6;
    letter-spacing: 0.08em;
}

.shop-info__item dd{
    color:var(--color-text);
    margin: 0;
    line-height:1.8;
    letter-spacing:0.06em;
}
/*電話番号のホバーでUXの向上*/
.shop-info__item dd a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.shop-info__item dd a:hover {
  opacity: 0.7;
}

/* PCでは電話リンクを表示しない */
.shop-info__tel-sp {
  display: none;
}

.shop-info__tel-pc {
  display: inline;
}

.shop-info__image{
  margin:0;
  height:100%;
  min-height: 560px;
  padding:0;
}

.shop-info__image img{
  display:block;
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}
/*店舗写真のスライダー*/
.shop-info__slider {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  height: 560px;
}

.shop-info__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  transition: opacity 1.5s ease;
}

.shop-info__slide.is-active {
  opacity: 1;
}

/* .shop-info__slide:first-child {
  position: relative;
} */

.shop-info__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/*==================================
公式サイト　CTA
==================================*/

.official-site-cta{
    max-width:1200px;
    height: 392px;
    margin:120px auto;
    padding:40px;
    background-image:
        linear-gradient(
            rgba(255,255,255,0.83),
            rgba(255,255,255,0.83)
        ),
        url("../image/top/official-site-cta-bg.webp");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.official-site-cta__inner{

    display:flex;
    flex-direction:column;
    align-items:center;
}

.official-site-cta__text{
    margin-top:32px;
    color:var(--color-text);
    line-height:1.8;
    letter-spacing:.08em;
    text-align:center;
}

.official-site-cta__text + .official-site-cta__text{
    margin:0;
}

.official-site-cta__button{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:40px;
    min-width:320px;
    min-height:56px;
    padding:16px 40px;
    background:var(--color-main);
    color:#fff;
    font-weight:500;
    letter-spacing:.08em;
    text-decoration:none;
    border:1px solid var(--color-main);
    transition:
        background-color .3s,
        color .3s;
}

.official-site-cta__button:hover{

    background:#fff;
    color:var(--color-main);
}

/*==================================
google map
==================================*/
.c-map {
  width: 100%;
  margin-top: 120px;
}

.c-map iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}

/*ブーケギャラリー*/
@media (max-width: 1200px) {
  /*ウェディングコーディネートギャラリー*/
   .top-coordination__inner {
    max-width: 1040px;
    padding-inline: 32px;
  }

  .top-coordination__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 56px;
  }

  .top-coordination__color-title {
    font-size: 32px;
  }
  /*ブーケギャラリー*/
  .order-gallery {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .order-gallery__right-area,
  .order-gallery__upper,
  .order-gallery__bottom,
  .order-gallery__column {
    display: contents;
  }

  .order-gallery__column--left,
  .order-gallery__column--right {
    flex: initial;
    width: auto;
  }

  .order-gallery__bottom .order-gallery__item img {
    height: 240px;
  }
  .order-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-gallery__item {
  aspect-ratio: 1 / 1;
}
.order-gallery__item--15{
    grid-column: 1 / -1;
    height: 196px;
    width: 100%;
}

.order-gallery__item--15 img{
    width:100%;
    height:100%;
    object-fit:cover;
}

}

/*==================================
SP表示
==================================*/
@media (max-width: 767px) {
  p {
    font-size: 1rem;
  }
  /*ヘッダー*/
  .site-header {
    height:64px;
    background:#fff;
  }
/*TOP FV*/
.hero {
  height: 80vh;
  width:100%;
}


.hero__slider,
.hero__slide,
.hero__overlay {
   position: absolute;
  inset: 0;
  
}
/*タイトル*/
.sp-only {
  display: block;
}

.hero__content {
  width:100%;
  max-width: 100%;
  height: 100%;
  margin:0;
  padding:0 10px;
  justify-content: center;
  line-height: 2;
  box-sizing: border-box;
}
.hero__title {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
}
.hero__lead-en {
    font-size: 2rem;
    font-weight: 400;
    font-weight: 400;
    letter-spacing: 0.14em;
    margin: 0 0 16px 0;
}
  .hero__lead-en,
  .hero__title {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

/*メニューのギャラリー表示*/
  .global-nav__child-list {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: auto;
    margin: 16px 0 0;
    padding: 0;
    background: transparent;
    border-top: none;
  }
    .global-nav__link:hover,
  .global-nav__child-link:hover,
  .global-nav__button:hover {
    background-color: transparent;
    color: var(--color-black);
    opacity: 1;
  }

  .global-nav__child-link {
    background-color: transparent;
    color: var(--color-black);
    padding: 8px;
  }

   .global-nav__child-item + .global-nav__child-item {
  border:none;
}
   /*導入*/
     .top-reasons::before {
    background-image:
      linear-gradient(
        180deg,
        #fff 0%,
        rgba(255, 255, 255, 0.90) 12%,
        rgba(255, 255, 255, 0.89) 50%,
        rgba(255, 255, 255, 0.90) 88%,
        #fff 100%
      ),
      url(../image/top/top-reason-sp-bg.webp);
  }
   .top-intro__title {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
   }
   .top-intro {
    padding: 56px 0;
   }
   .top-intro__text p {
    font-size: 1rem;
    line-height: 2;
    margin: 0;
   }
   /* 選ばれる理由*/
   .top-reasons {
    padding: 40px 0;
   }
   .top-reasons__card {
    padding:0 20px;
    margin: auto;
   }

   .top-reasons__list {
    margin-top:40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
   }
  
   .top-reasons__title {
    margin:0 0 16px;
   }
   .top-reasons__text {
    margin:24px 0 0;
    line-height: 1.8;
   }
   .top-reasons__image img {
    aspect-ratio: 4 / 3;

   }

   /*会場装花ウェディングコーディネート*/
   .top-coordination {
    padding:80px 0 64px;
   }
    .top-coordination__inner {
    padding-inline: 20px;
  }

   .top-coordination__list {
    display: block;
    margin-top: 32px;
}
.top-coordination__item  {
  padding: 24px 8px 32px;
}
.top-coordination__item + .top-coordination__item {
    margin-top: 16px;
}
.top-coordination__color-title-ja {
  font-size: 0.8125rem;
  margin: 4px 0 16px 0;
}
   .top-coordination__color-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4px;
    white-space: normal;
   }
   .top-coordination__gallery {
    gap:8px;
   }
   .top-coordination__text {
    margin:24px 0 0;
    line-height: 2;
   }

.top-coordination__btn {
  margin:40px auto 0;
  width: 100%;
}
.top-coordination__btn .c-button {
  width:100%;
}

/*ボタン*/
.c-button {
  width: 85%;
  max-width: 100%;
  font-size: 0.875rem;
  padding: 18px 24px;
}
.order .coordination__btn .c-button {
    width:93%;
    max-width: 100%;
    font-size: 0.875rem;
    padding: 18px 24px;
}
.c-button::before {
  width: 20px;
  height:20px;
  right:24px;
}
.c-button::after {
  width:5px;
  height:5px;
  right: 32px;
}
/*オーダーブーケ*/
.order {
  padding:56px 20px;
}
.order__text  {
  margin:40px 0 32px;
}
.order__heading  {
  margin:0 auto 24px;
} 
/* .order .coordination__btn {
  margin:40px 0 0;
} */
 .order-gallery {
  gap:8px;
 }  
/*店舗情報*/
.shop-info {
  padding:40px 20px;
}
.shop-info__inner {
  display: block;
  margin:0;
}
.shop-info__list {
  margin:0 0 24px 0;
}
.shop-info__content {
  margin:40px 0 0 0;
}
.shop-info__item dt {
  margin: 0 0 4px 0;
}
.shop-info__item {
    margin: 0 0 16px 0;
}

.shop-info__slider {
  height: 320px;
}
.shop-info__slide img {
  min-height: auto;
  aspect-ratio: 4 / 3;
}
.shop-info__image  {
  min-height: auto;
}

/* スマホでは電話リンクに切り替える */
  .shop-info__tel-pc {
    display: none;
  }

  .shop-info__tel-sp {
    display: inline;
    color: inherit;
    text-decoration: none;
  }
/*公式サイトCTA*/
.official-site-cta {
  margin:40px auto;
  min-height: fit-content;
}
.official-site-cta__text {
  font-size: 0.875rem;
}
 .official-site-cta__button {
  text-align: center;
  padding:18px 24px;
  margin-top: 40px;
  font-size: 0.9375rem;
  
 }
 
}



