@charset "utf-8";
/* ==========================================================================
   フジフォトデザインアルバム トップページ専用スタイル
   ファイル: css/album_top.css
   作成: 2026-04-28（v2 / デザインHP_1枚もの.jpg準拠）
   対象: photoalbum/index.html （新トップページのみ）
   ========================================================================== */

/* --- リセット --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Shippori Mincho', '游明朝', 'Yu Mincho', YuMincho,
               'ヒラギノ明朝 Pro', 'Hiragino Mincho Pro',
               'ＭＳ Ｐ明朝', 'MS PMincho', serif;
  color: #4a3f37;
  background: #fff;
  line-height: 1.7;
  font-size: 14px;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

/* --- 共通変数 -------------------------------------------------------- */
:root {
  --brown: #6b5949;
  --brown-dark: #5c4f45;
  --brown-darker: #4a3f37;
  --gray-band: #6e645b;
  --pink: #f3d8d8;
  --pink-soft: #fae6e6;
  --divider: #c8b8a8;
  --serif: 'Shippori Mincho', '游明朝', 'Yu Mincho', serif;
  --script: 'Stalemate', cursive;
  --story-script: 'Shippori Mincho', '游明朝', 'Yu Mincho', serif;
}

/* --- 共通カラーユーティリティ ---------------------------------------- */
.text-accent { color: #7c6991; }

/* --- 表示ユーティリティ (Bootstrap 5 流) ------------------------------- */
.d-none         { display: none         !important; }
.d-inline       { display: inline       !important; }
.d-inline-block { display: inline-block !important; }
.d-block        { display: block        !important; }
.d-flex         { display: flex         !important; }

@media (min-width: 992px) {
  .d-lg-none         { display: none         !important; }
  .d-lg-inline       { display: inline       !important; }
  .d-lg-inline-block { display: inline-block !important; }
  .d-lg-block        { display: block        !important; }
  .d-lg-flex         { display: flex         !important; }
}

/* --- テキスト揃えユーティリティ -------------------------------------- */
.text-left   { text-align: left   !important; }
.text-center { text-align: center !important; }
.text-right  { text-align: right  !important; }

/* --- ページ全体 -------------------------------------------------------- */
.page {
  max-width: 1240px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

/* ============================================================
   1. Hero
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 16% 1fr;
  background: #fff;
}
.sidebar {
  background: var(--brown-dark);
  color: #fff;
  padding: 22px 12px 30px;
  display: flex;
  flex-direction: column;
}
.sidebar__brand {
  background: #fff;
  text-align: center;
  padding: 14px 6px;
  margin: 0;
  font-size: 0;
  line-height: 0;
  font-weight: normal;
}
.sidebar__brand-img {
  display: block;
  width: 100%;
  max-width: 110px;
  margin: 0 auto;
}
.sidebar__nav {
  flex: 1;
  border: 1px solid #fff;
  border-top: none;
  padding: 18px 14px 22px;
}
.sidebar__nav-list { display: flex; flex-direction: column; gap: 16px; }
.sidebar__nav-list a {
  display: block;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-align: left;
  padding: 0;
  transition: opacity 0.2s;
}
.sidebar__nav-list a:hover { opacity: 0.7; }

.hero__image {
  position: relative;
  overflow: hidden;
}
.hero__image img.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__logo {
  position: absolute;
  top: 24%;
  right: 2%;
  width: 40%;
  max-width: 400px;
  pointer-events: none;
}
.hero-divider {
  height: 32px;
  background: var(--brown);
  border-top: 6px solid #d8d2cb;
  border-bottom: 6px solid #d8d2cb;
}

/* ============================================================
   2. Story sections (Concept / Features / Commitment)
   カード型: 薄グレー枠 + 白背景、画像は端まで全高フィット
   ============================================================ */
.story {
  display: grid;
  grid-template-columns: 60% 40%;
  border: 2px solid #d4cdc5;
  background: #fff;
  margin: 28px 50px;
  overflow: hidden;
}
.story--reverse { grid-template-columns: 40% 60%; }
.story__media {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.story__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.story__body {
  padding: 28px 50px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story__heading {
  margin: 0 0 12px;
}
.story__title {
  display: block;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 50% auto;
  padding: 2px 0 36px 15%;
  font-family: var(--story-script);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}
.story__title--concept    { background-image: url("../img/album_concept_title.png"); }
.story__title--features   { background-image: url("../img/album_features_title.png"); }
.story__title--commitment { background-image: url("../img/album_commitment_title.png"); }
.story__subtitle {
  font-size: 13px;
  font-weight: normal;
  line-height: inherit;
  letter-spacing: 0.05em;
  margin: -34px 0 18px;
  text-align: right;
}
.story__lead {
  font-size: 15px;
  font-weight: 500;
  color: var(--brown-darker);
  margin: 14px 0 14px;
  line-height: 1;
}
.story__text {
  font-size: 13px;
  color: var(--brown-darker);
  line-height: 1.5;
  margin: 0;
}
.story__text + .story__text { margin-top: 8px; }
.story__text--center { text-align: center; }

/* Reverse: image moves to LEFT (Features) */
.story--reverse .story__media { order: -1; }

/* ============================================================
   3. Section band (brown)
   ============================================================ */
.section-band {
  background: var(--gray-band);
  padding: 22px 16px;
  text-align: center;
  margin-top: 40px;
}
.section-band__title {
  margin: 0;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.18em;
  font-weight: 500;
}

/* ============================================================
   4. Covers
   ============================================================ */
.covers {
  border: 2px solid #d4cdc5;
  background: #fff;
  margin: 28px 50px;
  overflow: hidden;
}
.covers__title {
  background: var(--gray-band);
  color: #fff;
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin: 0;
  padding: 2px 16px;
}
.covers__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
}
.cover {
  text-align: center;
  padding: 28px 24px 50px;
  border-right: 1px solid var(--divider);
}
.cover:last-child { border-right: none; }
.cover__image { margin: 0 0 22px; }
.cover__image img { width: 100%; }
.cover__title-en {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.16em;
  margin: 0 0 6px;
  font-weight: 500;
}
.cover__title-ja {
  font-size: 17px;
  font-weight: normal;
  line-height: inherit;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
}
.cover__desc {
  font-size: 13px;
  line-height: 1.95;
  color: var(--brown-darker);
  margin: 0;
}
.cover__desc small {
  display: block;
  font-size: 10px;
  color: #888;
  margin-top: 6px;
}

/* ============================================================
   5. Plans
   ============================================================ */
.plans {
  border: 2px solid #d4cdc5;
  background: #fff;
  margin: 28px 50px;
  overflow: hidden;
}
.plans__title {
  background: var(--gray-band);
  color: #fff;
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin: 0;
  padding: 2px 16px;
}
.plans__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
}
.plan {
  text-align: center;
  border-right: 1px solid var(--divider);
}
.plan:last-child { border-right: none; }
.plan__title {
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--brown-darker);
  margin: 0px;
  padding: 4px 0px;
  border-bottom: 1px solid var(--divider);
  font-weight: 500;
  background-color: #c9c9c9;
}
.plan__desc {
  font-size: 13px;
  line-height: 2;
  color: var(--brown-darker);
  margin: 0;
  padding: 4px 0px;
}

/* ============================================================
   6. Spec banner (dark gray bg, NOT pink)
   ============================================================ */
.spec {
  border: 28px solid #d8d4d0;
  background: var(--gray-band);
  margin: 28px 50px 0;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: stretch;
}
.spec__media {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: -28px 0 -28px auto;
}
.spec__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spec__body {
  background: transparent;
  color: #fff;
  padding: 36px 40px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spec__lead {
  font-size: 17px;
  line-height: 1.95;
  margin: 0 0 22px;
}
.spec__list { font-size: 14px; }
.spec__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: baseline;
  margin-bottom: 8px;
}
.spec__label { font-weight: 500; }

/* ============================================================
   7. Pink band (受注→製作→発送)
   ============================================================ */
.pink-band {
  background-image: url("../img/album_banner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 50px 50px;
  padding: 36px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.pink-band__illust {
  width: 150px;
  flex-shrink: 0;
  display: block;
}
.pink-band__text {
  font-size: 15px;
  line-height: 2.1;
  color: var(--brown-darker);
  margin: 0;
}

/* ============================================================
   8. Information (placeholder for news/announcements)
   ============================================================ */
.information {
  width: 60%;
  margin: 50px auto 0;
}
.information__title {
  background: var(--gray-band);
  color: #fff;
  text-align: center;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 2px 12px;
  font-weight: 500;
}
.information__body {
  border: 1px solid #d4d4d4;
  border-top: none;
  background: #fff;
  padding: 30px 28px;
  min-height: 120px;
  font-size: 13px;
  color: #6a6a6a;
}
.information__list { line-height: 1.9; }
.information__list li { margin-bottom: 8px; }

/* ============================================================
   9. Instagram intro
   ============================================================ */
.insta-intro {
  width: 60%;
  margin: 40px auto 0;
  padding: 30px 30px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
}
.insta-intro__illust {
  width: 200px;
  flex-shrink: 0;
}
.insta-intro__title {
  font-size: 18px;
  color: var(--brown-darker);
  margin: 0 0 14px;
  line-height: 1.6;
  font-weight: 500;
}
.insta-intro__title .accent {
  display: inline-block;
  margin-left: 4px;
}
.insta-intro__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 30px;
  font-size: 14px;
  color: var(--brown-darker);
}
.insta-intro__list li::before { content: "・"; }

/* Instagram pill button */
.insta-pill-wrap {
  text-align: center;
  margin: 28px 0 14px;
}
.insta-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brown);
  color: #fff;
  padding: 4px 30px;
  border-radius: 10px;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: opacity 0.2s;
}
.insta-pill:hover { opacity: 0.85; }
.insta-pill::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'><rect x='2' y='2' width='20' height='20' rx='5'/><circle cx='12' cy='12' r='4'/><circle cx='17.5' cy='6.5' r='1' fill='white'/></svg>") center/contain no-repeat;
}
.insta-caption {
  text-align: center;
  font-size: 13px;
  color: var(--brown-darker);
  margin: 0 0 24px;
}

/* Instagram feed (SnapWidget) */
.insta-feed {
  max-width: 600px;
  margin: 0 auto 60px;
  padding: 0 30px;
}
.insta-feed iframe { display: block; width: 100%; }

/* ============================================================
   10. Footer (black)
   ============================================================ */
.site-footer {
  background: #1f1f1f;
  color: #f0f0f0;
  padding: 60px 40px 40px;
}
.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr;
  gap: 40px;
}
.site-footer__col h2 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}
.site-footer__col ul { font-size: 13px; }
.site-footer__col li { margin-bottom: 8px; }
.site-footer__col li::before { content: "・"; margin-right: 4px; }
.site-footer__col a { transition: opacity 0.2s; }
.site-footer__col a:hover { opacity: 0.7; }

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 991px) {
  .hero { grid-template-columns: 18% 1fr; }
  .sidebar__nav-list a { font-size: 10px; }
  /*.covers__list { gap: 24px; }*/
  .cover__title-en { font-size: 20px; }
  .section-band__title { font-size: 19px; }
  .story__title { font-size: 24px; }
  .site-footer__inner { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .information { width: 80%; }
  .insta-intro { width: 80%; }

@media (max-width: 767px) {
  /* sidebar をモバイルでは上部に */
  .hero {
    grid-template-columns: 1fr;
  }
  .sidebar {
    padding: 16px 14px;
  }
  .sidebar__brand {
    margin-bottom: 14px;
    padding-bottom: 10px;
  }
  .sidebar__nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
  }
  .sidebar__nav-list li { flex: 0 0 auto; }
  .sidebar__nav-list a {
    font-size: 11px;
    padding: 1px 0;
    border-bottom: none;
  }
  .hero__logo { width: 38%; }
  .hero-divider { height: 22px; border-top-width: 4px; border-bottom-width: 4px; }

  .story {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
    margin: 30px 18px;
  }
  .story__body { padding: 0 4px; }
  .story__media { aspect-ratio: 16 / 10; }
  .story--reverse .story__body { order: 1; text-align: left; }
  .story--reverse .story__media { order: 2; }
  .story--reverse .story__heading { justify-content: flex-start; }
  .story__title { font-size: 28px; background-size: 40% auto; margin-top: 10px; }
  
  .story__subtitle { font-size: 11px; }
  .story__lead { font-size: 15px; }

  .section-band { padding: 14px 12px; margin-top: 28px; }
  .section-band__title { font-size: 16px; letter-spacing: 0.12em; }

  .covers { margin: 28px 18px; }
  .covers__title { font-size: 16px; letter-spacing: 0.12em; padding: 14px 12px; }
  .covers__list { grid-template-columns: 1fr; }
  .cover {
    padding: 30px 24px;
    border-right: none;
    border-bottom: 1px solid var(--divider);
  }
  .cover:last-child { border-bottom: none; }
  .cover__title-en { font-size: 19px; }
  .cover__title-ja { font-size: 15px; }

  .plans { margin: 28px 18px; }
  .plans__title { font-size: 16px; letter-spacing: 0.12em; padding: 14px 12px; }
  .plans__list { grid-template-columns: 1fr; }
  .plan {
    border-right: none;
    border-bottom: 1px solid var(--divider);
  }
  .plan:last-child { border-bottom: none; }

  .spec {
    grid-template-columns: 1fr;
    margin: 28px 18px 0;
    border-width: 18px;
  }
  .spec__media { width: 100%; margin: 0; }
  .spec__body { padding: 24px 22px; margin: 0; }
  .spec__lead { font-size: 15px; }

  .pink-band {
    flex-direction: column;
    padding: 28px 22px;
    gap: 14px;
    text-align: center;
    margin: 30px 18px;
    width: auto;

  }
  .pink-band__illust { width: 110px; margin: 0 auto; }
  .pink-band__text { font-size: 13px; line-height: 1.95; text-align: left; }

  .information { margin: 30px 18px 0; width: auto; }
  .information__title { font-size: 18px; padding: 12px 10px; }
  .information__body { padding: 22px 18px; }

  .insta-intro {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px 18px 0;
    gap: 18px;
  }
  .insta-intro__illust { width: 140px; margin: 0 auto; }
  .insta-intro__list {
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
    text-align: left;
  }
  .insta-pill { font-size: 15px; padding: 12px 32px; }
  .insta-feed { padding: 0 18px; margin-bottom: 50px; }

  .site-footer { padding: 40px 22px 30px; }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }}
}