/*
 * IKEDA ブライダル店舗案内ページ
 * 元の表示・動作を変えず、保守しやすいように整形しています。
 */

/* ==================================================
   CSS変数
================================================== */

:root {
  --ink: #2d2925;
  --soft: #6f6962;
  --gold: #b38b47;
  --gold-dark: #8b6831;
  --line: #e5dfd7;
  --off: #faf8f5;
  --header: 78px;
  --serif: "Noto Serif JP","Yu Mincho",serif;
  --latin: "Cormorant Garamond",Georgia,serif;
}

/* ==================================================
   リセット・共通設定
================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.85;
  letter-spacing: .035em;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
}

button {
  font: inherit;
}

/* ==================================================
   共通レイアウト
================================================== */

.container {
  width: min(1240px,calc(100% - 48px));
  margin: auto;
}

/* ==================================================
   アクセシビリティ
================================================== */

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 9px 14px;
  background: #111;
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: var(--header);
  border-bottom: 1px solid rgba(40,35,30,.08);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  padding: 0 34px;
}

.brand-logo {
  width: 150px;
  display: inline-flex;
  /* width: max-content; */
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.brand-logo-main {
  padding-left: .28em;
  font-family: Georgia, serif;
  font-size: 25px;
  letter-spacing: .28em;
}

.brand-logo-sub {
  margin-top: 7px;
  padding-left: .43em;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: .43em;
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px,3vw,42px);
}

.global-nav a {
  font-size: 13px;
  transition: .2s;
}

.global-nav a:hover {
  color: var(--gold-dark);
}

.header-reserve {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0 30px;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
}

.menu-toggle {
  display: none;
}

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

.breadcrumb {
  margin-top: var(--header);
  border-bottom: 1px solid var(--line);
}

.breadcrumb ol {
  display: flex;
  width: min(1240px,calc(100% - 48px));
  margin: auto;
  padding: 12px 0;
  gap: 10px;
  list-style: none;
  color: #918a82;
  font-size: 10px;
}

.breadcrumb li+li:before {
  content: "/";
  margin-right: 10px;
}

/* ==================================================
   メインビジュアル
================================================== */

.hero {
  position: relative;
  height: 470px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://ikd-grp.com/wp/wp-content/themes/twentytwelve_child/assets/images/ikedaplus/img_bridal.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(255,255,255,.95) 0%,rgba(255,255,255,.83) 31%,rgba(255,255,255,.12) 65%,rgba(255,255,255,0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1240px,calc(100% - 48px));
  height: 100%;
  margin: auto;
  flex-direction: column;
  justify-content: center;
}

.hero-content>p:first-child,.section-kicker {
  margin: 0 0 11px;
  color: var(--gold-dark);
  font-family: var(--latin);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px,4vw,55px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .08em;
}

.hero-lead {
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 14px;
}

/* ==================================================
   エリア案内
================================================== */

.area-index {
  padding: 92px 0 100px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(29px,3.5vw,44px);
  font-weight: 400;
  letter-spacing: .1em;
}

.section-heading>p:last-child {
  margin: 17px 0 0;
  color: var(--soft);
  font-size: 13px;
}

.area-nav {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--line);
  background: #fff;
}

.area-nav a {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  transition: .25s;
}

.area-nav a:last-child {
  border-right: 0;
}

.area-nav span {
  color: #c2a578;
  font-family: var(--latin);
  font-size: 14px;
}

.area-nav strong {
  margin: 7px 0 5px;
  font-size: 18px;
  font-weight: 500;
}

.area-nav small {
  color: var(--soft);
  font-size: 11px;
}

.area-nav a:hover {
  background: var(--gold);
  color: #fff;
}

.area-nav a:hover span,.area-nav a:hover small {
  color: #fff;
}

/* ==================================================
   エリア別店舗セクション
================================================== */

.area-section {
  padding: 105px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 145px;
}

.area-section:nth-of-type(even) {
  background: var(--off);
}

.area-heading {
  display: grid;
  margin-bottom: 45px;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 10px;
}

.area-heading .section-kicker {
  grid-column: 1/-1;
}

.area-heading div {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.area-heading h2 {
  margin: 0;
  font-size: clamp(29px,3.2vw,42px);
  font-weight: 400;
  letter-spacing: .08em;
}

.area-heading div span {
  color: var(--gold-dark);
  font-size: 12px;
}

.area-heading>p:last-child {
  margin: 0;
  color: var(--soft);
  font-size: 12px;
  text-align: right;
}

/* ==================================================
   店舗カード一覧
================================================== */

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 28px;
}

.shop-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: .3s;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(66,52,35,.10);
}

.shop-card-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.shop-card-image img {
  aspect-ratio: 5/3;
  object-fit: cover;
  transition: transform .7s;
}

.shop-card:hover .shop-card-image img {
  transform: scale(1.035);
}

.shop-card-image span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 11px;
  background: rgba(116,58,47,.92);
  color: #fff;
  font-size: 10px;
}

.shop-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 29px 25px 25px;
}

.shop-card-en {
  margin: 0;
  color: var(--gold-dark);
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: .16em;
}

.shop-card h3 {
  margin: 6px 0 0;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.55;
}

.shop-card-description {
  margin: 17px 0;
  color: var(--soft);
  font-size: 12px;
}

.shop-meta {
  margin: 0;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shop-meta div {
  display: grid;
  grid-template-columns: 67px 1fr;
  gap: 10px;
  margin: 0 0 6px;
  font-size: 11px;
}

.shop-meta div:last-child {
  margin-bottom: 0;
}

.shop-meta dt {
  color: #948c84;
}

.shop-meta dd {
  margin: 0;
}

.shop-meta a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-brands {
  margin: 18px 0 23px;
}

.shop-brands p {
  margin: 0 0 9px;
  font-size: 11px;
  font-weight: 600;
}

.shop-brands ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.shop-brands li {
  padding: 4px 7px;
  border: 1px solid #e2dcd4;
  color: #59534d;
  font-family: Georgia,serif;
  font-size: 9px;
  letter-spacing: .04em;
}

.shop-card-actions {
  display: grid;
  margin-top: auto;
  gap: 9px;
}

/* ==================================================
   共通ボタン
================================================== */

.button {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 11px 17px;
  border: 1px solid transparent;
  font-size: 12px;
  letter-spacing: .06em;
  transition: .2s;
}

.button-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.button-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.button-outline {
  border-color: #cfc6bb;
  background: #fff;
}

.button-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.back-to-nav {
  display: block;
  width: max-content;
  margin: 36px 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
}

/* ==================================================
   来店予約CTA
================================================== */

.reservation-cta {
  padding: 110px 0;
  background: #26221f;
  color: #fff;
}

.reservation-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.reservation-inner h2 {
  margin: 0;
  font-size: clamp(27px,3vw,40px);
  font-weight: 400;
}

.reservation-inner p:last-child {
  margin: 15px 0 0;
  color: #d2cbc4;
  font-size: 13px;
}

.reservation-inner .button {
  min-width: 250px;
}

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

/* .site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  width: min(1240px,calc(100% - 48px));
  margin: auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner nav {
  display: flex;
  gap: 25px;
  font-size: 11px;
}

.footer-inner>small {
  color: #9d958d;
  font-size: 9px;
} */

/* ==================================================
   固定ボタン・ページトップ
================================================== */

.mobile-reserve {
  display: none;
}

.page-top {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid #cfc6bb;
  background: rgba(255,255,255,.95);
  opacity: 0;
  pointer-events: none;
  transition: .2s;
}

.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ==================================================
   スクロール表示アニメーション
================================================== */

.reveal {
  opacity: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s,transform .7s;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media screen and (max-width: 1000px) {
    .header-inner {
        display: flex !important;
        align-items: center;
        justify-content: space-between !important;
    }
}

/* ==================================================
   タブレット: (max-width:960px)
================================================== */

@media (max-width:960px) {
  .header-inner {
    grid-template-columns: 150px 1fr auto;
    padding: 0 22px;
  }

  .global-nav {
    gap: 16px;
  }

  .shop-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .area-heading {
    grid-template-columns: 1fr;
  }

  .area-heading>p:last-child {
    text-align: left;
  }

  .area-nav {
    grid-template-columns: repeat(2,1fr);
  }

  .area-nav a:nth-child(2) {
    border-right: 0;
  }

  .area-nav a:nth-child(-n/**/+2) {
    border-bottom: 1px solid var(--line);
  }
}

/* ==================================================
   スマートフォン: (max-width:760px)
================================================== */

@media (max-width:760px) {
  :root {
    --header: 66px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }


  .global-nav {
    position: fixed;
    top: var(--header);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header));
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 25px 23px 100px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .22s;
  }

  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .global-nav a {
    padding: 17px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .header-reserve {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 50px;
    height: 56px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
  }

  .menu-toggle i {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--ink);
  }

  .menu-toggle small {
    font-size: 7px;
    letter-spacing: .12em;
  }

  .breadcrumb ol {
    width: calc(100% - 34px);
  }

  .hero {
    height: 430px;
  }

  .hero-bg {
    background-position: 65% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.80) 60%,rgba(255,255,255,.20) 100%);
  }

  .hero-content {
    width: calc(100% - 34px);
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero-lead {
    font-size: 12px;
  }

  .area-index {
    padding: 72px 0;
  }

  .container {
    width: calc(100% - 34px);
  }

  .area-nav {
    margin-top: 37px;
  }

  .area-nav a {
    min-height: 116px;
  }

  .area-nav strong {
    font-size: 15px;
  }

  .area-section {
    padding: 78px 0;
    scroll-margin-top: 125px;
  }

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .shop-card-body {
    padding: 25px 21px;
  }

  .reservation-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .reservation-inner .button {
    width: 100%;
  }

  .footer-inner {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-inner nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mobile-reserve {
    position: fixed;
    z-index: 999;
    left: 14px;
    right: 14px;
    bottom: 12px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: var(--gold);
    color: #fff;
    box-shadow: 0 10px 30px rgba(67, 47, 18, .22);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
  }

  .page-top {
    bottom: 78px;
  }
}

/* ==================================================
   小型スマートフォン: (max-width:480px)
================================================== */

@media (max-width:480px) {
  .hero {
    height: 405px;
  }

  .hero-content br {
    display: none;
  }

  .area-heading div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .area-nav strong {
    font-size: 14px;
  }

  .shop-card h3 {
    font-size: 19px;
  }

  .reservation-cta {
    padding: 80px 0;
  }
}
