/* ==============================
  共通パーツ
============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: #333;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
/* ==============================
  SP 下部固定CTA
============================== */

.sp-fixed-cta {
  display: none;
}

/* ==============================
  ヘッダー
============================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 96px;
  color: #fff;
}
/*ハンバーガーメニュー*/
.hamburger{
    display:none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.site-header__logo {
  width: 168px;
}
.site-header__logo img {
  width: 100%;
}
/* 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;
  
}

.global-nav__link.global-nav__link--toggle {
  display: none;
}

/* 初期状態（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;
}

/* ==============================
  Lower Header
============================== */

.site-header--white {
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.site-header--white .global-nav__link {
  color: #333;
}

.site-header--white .site-header__logo img {
  display: block;
}

/* ==============================
  Lower FV
============================== */

.lower-fv {
  position: relative;
  height: 480px;
  margin-top: 96px; 
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lower-fv--concept {
  background-image: url("../image/common/subpage-fv.webp");
}

.lower-fv__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.28);
}

.lower-fv__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.lower-fv__en {
  margin: 0 0 16px;
  font-family: var(--font-script);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.06em;
}

.lower-fv__title {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 32px;
  font-weight: 100;
  line-height: 1.5;
  letter-spacing: 0.12em;
}


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

.global-nav__item {
  position: relative;
}

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

.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;
}
.hero__slider,
.hero__slide,
.hero__overlay {
  position: absolute;
  inset: 0;
}
.hero__slider {
    z-index: 0;
}

.hero__slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroFade 15s infinite;
}
.hero__slide--01 {
  background-image: url("../image/top/fv-natural-takasago.webp");
  animation-delay: 0s;
}
.hero__slide--02 {
  background-image: url("../image/top/fv-natutal-resutauran.webp");
  animation-delay: 5s;
}
.hero__slide--03 {
  background-image: url("../image/top/fv_natural-bridal.webp");
  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: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px 196px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
}

.hero__lead-en {
  margin: 0 0 24px;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.hero__title {
  margin: 0;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.45;
  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;
  }
}

/* ==============================
  各セクションのタイトル
============================== */

.section-heading {
  text-align: center;
}

.section-heading__en {
  margin: 0;
  color: var( --color-main);
  font-family: var(--font-script);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.section-heading__ja {
  margin: 4px 0 0;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.section-heading__ja::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin: 16px auto 0;
  background-color: var( --color-main);
}
.section-heading__en {
  position: relative;
  display:inline-block;
}
.section-heading__en.cta::after {
  content: "";
  position: absolute;
  left:50%;
  bottom:0;
  width:48px;
  height:1px;
  background: var(--color-main);
  transform:translateX(-50%);
} 


/*==============================
 ボタン
==============================*/

.c-button {
  display: flex;
  align-items:center;
  justify-content: center;
  gap: 24px;
  width:100%;
  max-width: 48%;
  padding: 24px 40px;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: .3s ease;
  position: relative;
}
/*ボタンの中の円*/
.c-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-main);
}

/*矢印*/
.c-button::after {
  content: "";
  position: absolute;
    top:50%;
    right:50px;
    width:6px;
    height:6px;
    border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform:translateY(-50%) rotate(45deg);
    transition:.3s;
}
.c-button:hover {
  background: var(--color-main);
  color: #fff;
}
.c-button:hover::before {
  background: #fff;
}

.c-button:hover::after {
  background: #fff;
  color: var(--color-main);
   border-top: 2px solid var(--color-main);
    border-right:2px solid var(--color-main);
}

/* ==============================
  お問い合わせ CTA
============================== */

.c-contact-cta {
  width: 1200px;
  min-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/common/contact-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.c-contact-cta__inner {
  max-width: 960px;
  width:100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}

.c-contact-cta__text {
  margin: 32px 0 0;
  color: var(--color-text);
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}

.c-contact-cta__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 640px;
  margin-top: 48px;
}

.c-contact-cta__item {
  text-align: center;
}

.c-contact-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 32px;
  background-color: var(--color-main);
  color: #fff;
  border: 1px solid var(--color-main);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.c-contact-cta__button:hover {
  color: var(--color-main);
  background: #fff;
  border:solid 1px var(--color-main);

}

.c-contact-cta__note {
  margin: 24px 0 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

/* ==============================
共通フッター
============================== */
.c-footer{
    position:relative;
    padding:56px 24px 32px;

    background-image:
        linear-gradient(rgba(51,51,51,.75),rgba(51,51,51,.75)),
        url("../image/common/footer_bg.webp");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.c-footer__inner{
    max-width:960px;
    margin:0 auto;

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

.c-footer__list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;

    gap:32px;

    margin:0;
    padding:0;
    list-style:none;
}

.c-footer__list a{
    color:#fff;
    font-size:16px;
    text-decoration:none;
    transition:.3s;
}

.c-footer__list a:hover{
    opacity:.7;
}

.c-footer__sns{
    display:flex;
    margin-top:56px;
}

.c-footer__sns img{
    width:32px;
    height:32px;
    display:block;
    transition:.3s;
}

.c-footer__sns a:hover img{
    opacity:.8;
}

.c-footer__site-link{
    margin:16px 0 0 0;
}

.c-footer__site-link a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.c-footer__site-link a:hover{
    opacity:.8;
}

.c-footer__copyright{
    display:block;
    margin-top:56px;

    color:#fff;
    font-size:16px;
    text-align:center;
    letter-spacing:.04em;
}


/* ==============================
ウェディングスタイル　共通ギャラリー
============================== */

.c-photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 96px;
}

.c-photo-gallery__item {
  margin: 0;
  overflow: hidden;
}

.c-photo-gallery__item--wide {
  grid-column: span 2;
}

.c-photo-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-photo-gallery__item--wide img {
  aspect-ratio: 960 / 360;
}

.c-photo-gallery__item:not(.c-photo-gallery__item--wide) img {
  aspect-ratio: 472 / 300;
}
.bridal-gallery__lead {
  margin-top: 64px;
  text-align: center;
}
/*ブライダル共通リード文*/
.bridal-gallery__lead p {
  margin: 0;
  color: var(--color-text);
  line-height: 2;
  letter-spacing: 0.08em;
}

.bridal-gallery__lead p + p {
  margin-top: 32px;
}

.bridal-gallery__button {
  margin: 48px auto 0;
  text-align: center;
  display: flex;
  justify-content: center;  
}
.bridal-gallery__button .c-button {
  width: 48%;
}
.top-coordination__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}
/*ホバーで縮小・拡大*/
@media (hover: hover) {
  .top-coordination__image:hover img {
    transform: scale(.99);
    filter: brightness(.93);
  }
}
/* ==============================
ウェディングスタイル・オーダーブーケ
共通セクション　ホバーアニメーション
============================== */
.c-photo-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}
/*ホバーで縮小・拡大*/
@media (hover: hover) {
  .c-photo-gallery__item:hover img {
    transform: scale(.99);
    filter: brightness(.93);
  }
}
/* ==============================
ブーケ　共通ギャラリー
============================== */
.order {
  padding: 120px 0 150px;
  background: linear-gradient(180deg, #fff 0%, #fcf8f8 10%, #fcf8f8 90%, #fff 100%);
  overflow: hidden;
}

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

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

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

.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__text p+p {
  margin-top: 24px;
}
.order-gallery {
  max-width: 100%;
  width: 1180px;
  margin: 80px 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;
}

/*ホバーで拡大・縮小*/
.gallery-style__item {
  margin:0;
}
.js-lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
}

.js-lightbox-trigger img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease, opacity .55s ease;
}

.js-lightbox-trigger:hover img {
  transform: scale(.985);
  filter: brightness(.9);
  opacity: .75;
}
/*クリックで画像を拡大してみる*/

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .96);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__image {
  max-width: min(80vw, 900px);
  max-height: 82vh;
  object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  border: none;
  background: transparent;
  color: var(--color-main);
  cursor: pointer;
  font-family: var(--font-en);
}

.lightbox__close {
  top: 32px;
  right: 40px;
  font-size: 48px;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 64px;
}

.lightbox__prev {
  left: 40px;
}

.lightbox__next {
  right: 40px;
}
.order-gallery__column img {
    width: 100%;
}
/*オーダーブーケ　ホバーで縮小拡大*/
.order-gallery__item img {
  width: 100%;
  height:auto;
  display: block;
  transition: transform .5s ease, filter .5s ease;
}
@media (hover: hover) {
  .order-gallery__item:hover img {
    transform: scale(.985);
    filter: brightness(.93);
  }
}
.order .coordination__btn {
  margin-top: 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  
}
.order .coordination__btn .c-button {
  width:38%;
}

.c-button {
  width: 48%;
  max-width: 100%;
  font-size: 0.875rem;
  padding: 22px 24px;
}

/*==============================
パンくずリスト
==============================*/

.breadcrumb {
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 24px;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  letter-spacing: .08em;
}

.breadcrumb__list li:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: #888;
}

.breadcrumb__list a {
  color: #333;
  text-decoration: none;
  transition: .3s;
}

.breadcrumb__list a:hover {
  color: var(--color-main);
}
/*==============================
ギャラリーページ
==============================*/

.gallery-intro {
  padding: 64px 24px 120px;
}

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


.gallery-intro__text {
  margin: 40px 0;
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: .08em;
}


/*ギャラリー導入*/
.gallery-fv__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.gallery-fv__en {
  margin: 0 0 40px;
  color: var(--color-main);
  font-family: var(--font-script);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.gallery-fv__lead {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.gallery-fv__lead + .gallery-fv__lead {
  margin-top: 40px;
}

/*ブーケギャラリー*/
@media (max-width: 1200px) {
  .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: auto;
  }
  .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;
}

.order-gallery__item--15 img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:64px;
   
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.site-header__inner{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 20px;
    height: 64px;
}
.site-header__logo img{
    width:69%;
    display: block;
}

.site-header__logo img.l-header__logo--white {
  display: none;
}
.site-header__logo img.l-header__logo--black {
  display: block;
}

/*ハンバーガーメニューボタン*/
.hamburger{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    width:28px;
    height:20px;
    background:none;
    border:none;
    cursor:pointer;
    padding:0;
}

.hamburger span{
    width:100%;
    height:2px;
    background:#333;
    transition:.3s;
}
/*×ボタン*/
.hamburger.is-active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2){
    opacity:0;
}

.hamburger.is-active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}
/*SPメニュー*/
.global-nav{
    position:fixed;
    /* top:64px;
    right:-100%;
    width:100%; */
    inset:64px 0 0;
    width:auto;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    height:calc(100vh - 64px);
    background: rgba(255, 255, 255, 0.9);
    /* transition:.4s; */
    /* overflow:auto; */
}

.global-nav.is-active{
    /* right:0; */
     transform: translateX(0);
}
.global-nav__list{
    display:flex;
    flex-direction:column;
    gap:0;
    color: var(--color-black);
}

.global-nav__link{
    display:block;
    padding:20px;
    text-align: center;
}
/*ギャラリー詳細は非表示*/
 .global-nav__item--has-child:hover .global-nav__child-list {
    position: static;
    left:auto;
    transform: none;
  }

   /*SP時のギャラリー詳細ページの表示*/
    .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-item {
    text-align: center;
    margin-top: 18px;
  }

    .global-nav__child-link {
    display: block;
    font-size: 16px;
    letter-spacing: 0.08em;
    color: var(--color-black);
    padding: 8px;
  }

.global-nav__item--has-child {
  position: static;
}
.global-nav__button {
  width:224px;
  margin:24px 0 0 0;
}
}

/*SP表示*/
@media (max-width:767px){
  /*下部固定CTA*/
   body {
    /* 固定CTAに本文が隠れないようにする */
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .sp-fixed-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 72px;
    padding-bottom: env(safe-area-inset-bottom);
    background-color: #fff;
    box-shadow: 0 -4px 16px rgba(51, 51, 51, 0.1);
  }

  .sp-fixed-cta__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 0;
    padding: 10px 8px;

    text-decoration: none;
    transition:
      opacity 0.3s ease,
      background-color 0.3s ease;
  }

  .sp-fixed-cta__item--tel {
    color: #98535d;
    background-color: #fff;
  }

  .sp-fixed-cta__item--contact {
    color: #fff;
    background-color: #98535d;
    border-top: 1px soli #98535d;
  }
.sp-fixed-cta__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: currentColor;
}

  .sp-fixed-cta__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
  }

  .sp-fixed-cta__label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .sp-fixed-cta__sub {
    margin-top: 2px;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .sp-fixed-cta__item:active {
    opacity: 0.75;
  }

/*ギャラリー詳細の境界線*/
.global-nav__child-item + .global-nav__child-item {
  border:none;
}
/*パンくずリスト*/
.breadcrumb {
  margin:24px auto 0;
}
/*オーダーブーケ*/
.order {
  padding:56px 20px;
}
.order__text  {
  margin:40px 0 32px;
  text-align: left;
}
.order-gallery {
  gap:8px;
  margin: 0;
}
.order__heading  {
  margin:0;
}
.order .coordination__btn {
  margin:48px 0 0;
}
.order-gallery__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin:0;
}
.order-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .order-gallery__item .js-lightbox-trigger {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    overflow: hidden;
  }

  .order-gallery__item .js-lightbox-trigger img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

 
/*各ページタイトル*/
.section-heading__en {
    font-size: 3rem;
   }
   .section-heading__ja {
    font-size: 0.875rem;
   }
/*FV直下の導入文*/
.gallery-fv__lead {
  text-align: left;
}
.gallery-fv__lead + .gallery-fv__lead {
  margin-top: 32px;
}


/*cta*/
.c-contact-cta {
  width:100%;
  margin:56px 0 48px;
  padding: 40px 32px;
}
.c-contact-cta__text {
  font-size: 0.875rem;
}
.c-contact-cta__buttons {
  display: block;
  margin-top: 40px;
}
.c-contact-cta__button {
  font-size: 0.9375rem;
  width: 90%;
  margin: auto;
  padding:18px 24px;
  font-weight: 500;
}
.c-contact-cta__note {
  margin:8px 0 24px;
  font-size: 0.875rem;
}

  .pc-only {
  display: none;
}
  /* 下層共通FV*/
  .lower-fv {
    height: 296px;
    margin: 64px 0 0 0;
  }
  .lower-fv__en  {
    font-size: 1.5rem;
    margin: 0 0 8px;
  }
  .lower-fv__title {
    font-size: 1.4rem;
  }

  /*ボタン*/
.c-button {
  width: 85%;
  max-width: 100%;
  font-size: 0.875rem;
  padding: 18px 24px;
}
.order .coordination__btn .c-button {
    width:95%;
    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;
}
.bridal-gallery__button {
  padding:0 20px;
  margin:48px 0 0;
}
.bridal-gallery__button .c-button {
  width:100%;
} 
/*下層セクションタイトル*/
.order__en {
  font-size: 40px;
}
.order__title {
  margin:4px 0 0;
}
.order__line {
  margin:8px auto 40px;
}
 /*ウェディングギャラリーページ*/
 .gallery-intro {
  padding: 56px 20px 40px;
}
.sp-only {
  display: block;
}
/*フッター*/
.c-footer {
  padding:40px 20px 16px;
}
.c-footer__list {
  gap:24px;
}
.c-footer__sns {
  margin-top:32px;
}
/*ギャラリーページ・ウェディングコーディネート*/
.bridal-gallery__lead p {
  text-align: left;
}
}


