@charset "UTF-8";


/* === SOURCE: /assets/css/base.css === */
/* --------------------------------------------------------------------------
   Font Face
   -------------------------------------------------------------------------- */

/* Noto Sans JP - Regular 400 */
@font-face {
  font-family: "Noto Sans JP";
  src: url("https://monday-yokohama.com/wp/wp-content/themes/TeamPOCs_02/assets/css/../fonts/noto-sans-jp-v56-japanese-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Noto Sans JP - Bold 700 */
@font-face {
  font-family: "Noto Sans JP";
  src: url("https://monday-yokohama.com/wp/wp-content/themes/TeamPOCs_02/assets/css/../fonts/noto-sans-jp-v56-japanese-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Caveat - Regular 400 */
@font-face {
  font-family: "Caveat";
  src: url("https://monday-yokohama.com/wp/wp-content/themes/TeamPOCs_02/assets/css/../fonts/caveat-v23-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   base.css
   全体共通（リセット / 土台）
   目的：全ページの「土」だけを担う
   責務：
   - 軽いリセット（余白・リスト）
   - bodyの色（※フォントは後で別途方針確定）
   - aの基本
   - box-sizing
   ここに置かないもの：
   - レイアウト（container/幅/余白/グリッド）
   - セクション固有（#main / #home_* / #breadcrumb 等）
   - コンポーネント固有（posts/gallery/maps 等）
   - ユーティリティ（padd*/
marg*/fs* など）
   - レスポンシブ（@media）
   ========================================================================== */

/* --------------------------------------------------------------------------
   01) Minimal Reset
   -------------------------------------------------------------------------- */

html {
  height: 101%;
  margin-bottom: 1px;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
p,
blockquote,
img {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   02) Base Body
   -------------------------------------------------------------------------- */

body {
  height: 100%;
  color: #333;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   03) Links
   -------------------------------------------------------------------------- */

a {
  color: #000;
  text-decoration: underline;
  transition: 0.3s;
}

a:link,
a:visited {
  color: #000;
  text-decoration: underline;
}

a:hover,
a:active {
  color: #d48120;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   04) Box Sizing
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}


/* === SOURCE: /assets/css/layout.css === */
/* ==========================================================================
   layout.css
   型管理（1col / 2col / 3col）
   目的：
   - サイト最大幅
   - 横余白基準
   - カラム型の管理
   ========================================================================== */

/* --------------------------------------------------------------------------
   01) Site Width Base
   -------------------------------------------------------------------------- */

:root {
  --site-max: 1150px;

  /* 横余白 */
  --pad-pc: 40px;
  --pad-tab: 30px;
  --pad-sp: 16px;

  /* 2カラム型（現 single と完全一致） */
  --layout-2col-gap: 28px;
  --layout-2col-side: 300px;

  /* Single上下余白（現状維持） */
  --layout-page-pt: 24px;
  --layout-page-pb: 48px;
}

/* --------------------------------------------------------------------------
   02) Container
   -------------------------------------------------------------------------- */

.container {
  width: min(var(--site-max), 100% - (var(--pad-pc) * 2));
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   03) Page Base
   -------------------------------------------------------------------------- */

.l-page {
  padding: var(--layout-page-pt) 0 var(--layout-page-pb);
}

/* --------------------------------------------------------------------------
   04) 1 Column
   -------------------------------------------------------------------------- */

.l-1col {
  display: block;
}

/* --------------------------------------------------------------------------
   05) 2 Column（Single基準）
   -------------------------------------------------------------------------- */

.l-2col {
  display: grid;
  grid-template-columns: 1fr var(--layout-2col-side);
  gap: var(--layout-2col-gap);
  align-items: start;
}

.l-2col__main {
  min-width: 0; /* gridはみ出し防止 */
}

.l-2col__side {
}

/* --------------------------------------------------------------------------
   06) 3 Column（将来用）
   -------------------------------------------------------------------------- */

.l-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--layout-2col-gap);
}

/* --------------------------------------------------------------------------
   07) Responsive Padding Control
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .container {
    width: min(var(--site-max), 100% - (var(--pad-tab) * 2));
  }
}

@media (max-width: 767px) {
  .container {
    width: min(var(--site-max), 100% - (var(--pad-sp) * 2));
  }
}


/* === SOURCE: /assets/css/components-header.css === */
/* ==========================================================================
   components-header.css
   Header（旧baseから移植：とりあえず復旧優先）
   目的：公開中サイトのヘッダー崩れを止める
   方針：旧baseの記述を“そのまま移動”。掃除は後でやる
   ========================================================================== */

/* 下層ページメニュー（固定ロゴ） */
header#fixed_header .logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  box-sizing: border-box;
  padding: 10px 25px;
  z-index: 9001;
  transition: 0.5s;
}

header#fixed_header.scrollon .logo {
  transform: translateY(-100%);
}

/* ---------------- 画面サイズ別：PCのみ ---------------- */
@media (min-width: 768px) {
  header#fixed_header nav ul.header_menu {
    z-index: 9001;
    position: fixed;
    top: 1.25em;
    right: 1.25em;
  }

  header#fixed_header nav ul.header_menu li {
    display: inline-block;
    margin-left: 1em;
  }

  header#fixed_header nav ul.header_menu li a {
    text-decoration: none;
    display: block;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #000;
    padding: 0.75em 2em;
    font-size: 0.9em;
    border-radius: 1000px;
  }

  header#fixed_header nav ul.header_menu li a:hover {
    color: #fff;
    background: #d48120;
    border-color: #d48120;
  }

  header#fixed_header a#menu_bars {
    display: none;
  }
}

/* ---------------- 画面サイズ別：SPのみ ---------------- */
@media (max-width: 767px) {
  header#fixed_header .logo {
    width: 200px;
    padding: 10px;
  }

  header#fixed_header nav ul.header_menu {
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    width: 50%;
    top: 0;
    right: 0;
    z-index: 9998;
    padding: 70px 0 1em;
    transform: translateX(100%);
    height: 100vh;
  }

  header#fixed_header nav ul.header_menu.menuon {
    transition: 0.5s;
    transform: translateX(0);
  }

  header#fixed_header nav ul.header_menu li a {
    display: block;
    text-align: center;
    color: #fff;
    padding: 0.75em 0;
    font-size: 0.9em;
  }

  header#fixed_header a#menu_bars {
    text-decoration: none;
    position: fixed;
    top: 0.75em;
    right: 0.75em;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    border: 1px solid #fff;
  }

  header#fixed_header a#menu_bars i.fa {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    font-weight: normal;
    font-size: 1.75em;
    transform: translate(-50%, -50%);
  }

  header#fixed_header a#menu_bars i.fa#menu_close {
    display: none;
  }

  header#fixed_header a#menu_bars.menu_bars_close {
    border: 0;
  }

  header#fixed_header a#menu_bars.menu_bars_close i.fa#menu_open {
    display: none;
  }

  header#fixed_header a#menu_bars.menu_bars_close i.fa#menu_close {
    display: inline;
  }
}


/* === SOURCE: /assets/css/components-band.css === */
/*下層ページタイトル*/
body#sub section#pagetitle {
  background-image:
    url("https://monday-yokohama.com/wp/wp-content/themes/TeamPOCs_02/assets/css/../img/overlay_stripe.png"), url("https://monday-yokohama.com/wp/wp-content/themes/TeamPOCs_02/assets/css/../img/pagetitle_bg.jpg");
  background-position: top;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: 316px;
  position: relative;
}
body#sub section#pagetitle h1,
body#sub section#pagetitle p {
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  top: 50%;
  color: #fff;
  font-size: 2em;
  font-weight: normal;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}


/* === SOURCE: /assets/css/components-breadcrumb.css === */
/* ==========================================================================
   Breadcrumb｜02（Rectangular Menu型）
   - container内（最大1150px）
   - Rect：180px固定 / 高さ46px / 1行ellipsis
   - 区切り：▼（20px）
   - current：TOPはRect固定、TOP以外は「残り幅で省略」
   ========================================================================== */

:root {
  --bc-accent: #d48120;

  --bc-rect-w: 180px;
  --bc-rect-h: 46px;

  --bc-gap: 20px; /* ▼含む間隔 */
  --bc-font: 14px;
  --bc-title-font: 16px;
}

/* ==========================================
   Breadcrumb Block Frame
   ========================================== */

.c-breadcrumbArea {
  position: relative;

  margin: 8px 0; /* 上下を縮める */
  padding: 18px 22px; /* 左右締める */

  margin-left: 30px;
  margin-right: 30px;

  background: #faf7f4; /* ごく薄い空気色 */

  border: 1px solid rgba(212, 129, 32, 0.25);
}

/* 内側ライン（さらに控えめ） */
.c-breadcrumbArea::before {
  content: "";
  position: absolute;
  inset: 6px; /* 内側余白も少し縮める */

  border: 1px solid rgba(212, 129, 32, 0.08); /* ほぼ気配 */
  pointer-events: none;
}

/* Heading（flex親でも必ず改行して上段に置く） */
.c-breadcrumb__heading {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  order: -1;

  font-family: "Caveat", cursive;
  font-weight: 400;

  font-size: 26px;
  letter-spacing: 0.08em;
  line-height: 1;

  color: rgba(212, 129, 32, 0.55);

  margin: 0 0 10px 2px;

  /* 見えるシャドー（重くしない） */
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75),
    0 3px 16px rgba(0, 0, 0, 0.3);
}

/* 1行構成 */
.c-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--bc-gap);
  white-space: nowrap;
  overflow: hidden;
}

/* Rect（リンク部分） */
.c-breadcrumb .c-breadcrumb__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: var(--bc-rect-w);
  height: var(--bc-rect-h);

  font-size: var(--bc-font);
  text-align: center;

  border: 1px solid var(--bc-accent);
  background: transparent;
  color: var(--bc-accent);
  text-decoration: none;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

/* Breadcrumb内のリンクは下線を出さない（グローバルaの例外） */
.c-breadcrumb a {
  text-decoration: none;
}

/* hover：全面オレンジ＋文字白 */
.c-breadcrumb .c-breadcrumb__link:hover {
  background: var(--bc-accent);
  color: #ffffff;
  border-color: var(--bc-accent);
  text-decoration: none;
}

/* 区切り（▼） */
.c-breadcrumb__sep {
  width: 16px;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.6;
  text-align: center;
}

/* current 共通（省略の土台） */
.c-breadcrumb__current {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* TOP：NAIL(current)もRect固定（伸びない） */
body.home .c-breadcrumb__current {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: var(--bc-rect-w);
  height: var(--bc-rect-h);

  font-size: var(--bc-font);
  text-align: center;

  border: 1px solid var(--bc-accent);
  background: transparent;
  color: var(--bc-accent);

  flex: 0 0 var(--bc-rect-w);
}

/* TOP以外：最後のcurrent（記事タイトルなど）は残り幅で省略 */
body:not(.home) .c-breadcrumb__current {
  font-size: 15px; /* 少し落ち着かせる */
  font-weight: 400; /* 600 → 400 */
  flex: 1 1 auto;
}

/* singleの2行目は廃止（1行構成へ） */
.c-breadcrumb__title {
  display: none;
}


/* === SOURCE: /assets/css/components-footer.css === */
/* ==========================================================================
   footer.css
   PCベース｜Footer Access（高さ同期確定版）
   ========================================================================== */

/* =========================================================
   01) Footer Access
   ========================================================= */

#footer_access {
  background: url("https://monday-yokohama.com/wp/wp-content/themes/TeamPOCs_02/assets/css/../img/footer_access_bg.jpg") no-repeat center/cover;
  padding: 2em 0;
  color: #fff;
}

/* ---------- h3（白版統一） ---------- */

#footer_access h3.common {
  text-align: center;
  font-size: 1.4em;
  line-height: 1.4;
  margin: 0 0 2em;
  letter-spacing: 0.2em;
  font-weight: normal;
  color: #fff;
}

#footer_access h3.common span {
  position: relative;
  display: block;
  font-size: 1em;
  letter-spacing: 0;
  margin-top: 0.6em;
  padding-top: 0.8em;
  font-family: "Caveat", cursive;
  font-weight: 400;
  color: #fff;
}

#footer_access h3.common span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.5em;
  height: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
}

/* ---------- レイアウト（高さ同期） ---------- */

#footer_access .footer-access__inner {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

#footer_access .footer-access__map,
#footer_access .footer-access__info {
  width: 50%;
  display: flex;
}

/* ---------- Google Map（右BOX高さに同期） ---------- */

#footer_access .google-maps {
  width: 100%;
  flex: 1;
  overflow: hidden;
}

#footer_access .google-maps iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- 情報DL ---------- */

#footer_access dl {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 2em;
  width: 100%;
  margin: 0;
}

#footer_access dl dt {
  font-size: 0.8em;
  margin-bottom: 0.5em;
  font-weight: normal;
}

#footer_access dl dt::before {
  content: "▾";
  margin-right: 0.5em;
}

#footer_access dl dd {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.75);
  margin-bottom: 1em;
  padding: 0 0 0.75em 1em;
  line-height: 1.5;
}

#footer_access .footer-access__info dl dd:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

/* =========================================================
   02) Footer本体
   ========================================================= */

footer {
  background-image: url("https://monday-yokohama.com/wp/wp-content/themes/TeamPOCs_02/assets/css/../img/wall.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 3em 0;
  text-align: center;
  font-size: 0.75em;
  color: #fff;
}

footer .footer_social {
  padding: 0 0 1em;
}

footer .footer_social img {
  height: 40px;
}

footer img.footer_logo {
  display: block;
  margin: 0 auto;
  max-width: 200px;
}

/* ---------- コピーライトリンク制御 ---------- */

footer .footer_copy {
  color: #000;
}

footer .footer_copy a,
footer .footer_copy a:link,
footer .footer_copy a:visited,
footer .footer_copy a:active,
footer .footer_copy a:focus {
  color: #000;
  text-decoration: none;
}

footer .footer_copy a:hover {
  color: #d48120;
  text-decoration: none;
}


/* === SOURCE: /assets/css/components-exhibit.css === */
/* ==========================================
   Exhibit｜作品フレーム（共通UI）
   single / archive 共通
   ========================================== */

.p-single__exhibit {
  margin: 64px 0 28px;
}

.p-single__exhibitFrame {
  margin: 0 auto 28px;
  width: 100%;
  max-width: 560px;
  box-sizing: border-box;

  /* マット＋額縁 */
  padding: 24px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #fff;

  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.14),
    0 4px 10px rgba(0, 0, 0, 0.08);
}

/* archive用：マットを薄くして作品を大きく見せる */
.p-single__exhibitFrame--compact {
  padding: 14px;
}

.p-single__exhibitImg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 0;

  aspect-ratio: 4 / 3;
  object-fit: cover;

  border: 1px solid rgba(0, 0, 0, 0.08);
}


/* === SOURCE: /assets/css/components-single.css === */
/* ==========================================================================
   components-single.css
   Single（見た目のみ）
   目的：
   - タイポグラフィ
   - 本文装飾
   - サイド装飾
   - Nail固有の演出（wall / passage）
   ※ レイアウト（1/2/3カラム・上下余白）は layout.css が担当
   ========================================================================== */

:root {
  --single-title: 28px;
  --single-date: 13px;
  --single-text: 16px;
  --single-lh: 1.9;
}

/* Main */
.p-single__thumb {
  margin: 0 0 14px;
}

.p-single__thumbImg {
  display: block;
  width: 100%;
  height: auto;
}

.p-single__title {
  font-size: var(--single-title);
  line-height: 1.25;
  margin: 0 0 10px;
}

.p-single__date {
  margin: 0 0 18px;
  font-size: var(--single-date);
  color: rgba(0, 0, 0, 0.7);
}

/* Content */
.p-single__content {
  font-size: var(--single-text);
  line-height: var(--single-lh);
}

/* 中見出し（WP本文内） */
.p-single__content h2,
.p-single__content h3,
.p-single__content h4 {
  line-height: 1.35;
  margin: 28px 0 12px;
}

.p-single__content p,
.p-single__content ul,
.p-single__content ol {
  margin: 0 0 14px;
}

/* Pager（軽量） */
.p-single__pager {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.p-single__pager a {
  text-decoration: none;
}

.p-single__pager a:hover {
  text-decoration: underline;
}

/* Sidebar */
.p-single__sideBox {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 16px;
}

.p-single__sideTitle {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
}

.p-single__sideBody ul {
  margin: 0;
  padding-left: 18px;
}

.p-single__sideBody a {
  text-decoration: none;
}

.p-single__sideBody a:hover {
  text-decoration: underline;
}

/* ==========================================
   Single Nail
   ========================================== */

/* Gridのはみ出し防止（超重要） */
.p-single__main {
  min-width: 0;
}

/* Wall｜展示の壁（nailだけ） */
.p-single--nail .p-single__wall {
  width: 100%;
  aspect-ratio: 4 / 3;

  display: flex;
  align-items: center;
  justify-content: center;

  padding-block: 48px;
  padding-inline: 24px;
}

/* Single Nail｜Title（作品名プレート） */
.p-single--nail .p-single__title {
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.06em;
  color: rgba(60, 60, 60, 0.92);

  margin: 0 0 36px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Single Nail｜Label（説明パネル領域） */
.p-single--nail .p-single__label {
  padding-inline: 44px;
  margin-bottom: 150px;
}

/* Single Nail｜Content */
.p-single--nail .p-single__content {
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: #555;
}

/* ==========================================
   Single Nail｜Passage
   ========================================== */

.p-single--nail .p-single__passage--nail {
  margin-top: 150px;
  margin-bottom: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);

  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 28px;
  row-gap: 10px;
  align-items: start;
}

/* 置き場所（3段×2列） */
.p-single--nail .p-single__passageSlot--topL {
  grid-column: 1;
  grid-row: 1;
}
.p-single--nail .p-single__passageSlot--topR {
  grid-column: 2;
  grid-row: 1;
}

.p-single--nail .p-single__passageSlot--midL {
  grid-column: 1;
  grid-row: 2;
}
.p-single--nail .p-single__passageSlot--midR {
  grid-column: 2;
  grid-row: 2;
}

.p-single--nail .p-single__passageSlot--botL {
  grid-column: 1;
  grid-row: 3;
}
.p-single--nail .p-single__passageSlot--botR {
  grid-column: 2;
  grid-row: 3;
}

.p-single--nail .p-single__passageSlot--topR,
.p-single--nail .p-single__passageSlot--midR {
  text-align: right;
}
.p-single--nail .p-single__passageSlot--midL,
.p-single--nail .p-single__passageSlot--botL {
  text-align: left;
}

/* 踊り場（Prev/Next） */
.p-single--nail .p-single__passageLabel {
  font-family: "Caveat", cursive;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: rgba(212, 129, 32, 0.55);
  line-height: 1;
}

/* 作品名 */
.p-single--nail a.p-single__passageTitle {
  display: inline-block;
  max-width: 100%;
  text-decoration: none;

  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: rgba(60, 60, 60, 0.78);

  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.p-single--nail a.p-single__passageTitle:hover {
  text-decoration: underline;
}

/* 距離感 */
.p-single--nail .p-single__passageSlot--topR {
  padding-bottom: 16px;
}
.p-single--nail .p-single__passageSlot--botL {
  padding-top: 16px;
}


/* === SOURCE: /assets/css/components-heading.css === */
/* ==========================================================================
   components-heading.css
   Heading 共通（役割クラス）
   ========================================================================== */

.c-heading {
  text-align: center;
  font-size: 2em;
  line-height: 2;
  margin-bottom: 1.5em;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.c-heading__sub {
  position: relative;
  display: block;
  font-size: 0.6em;
  letter-spacing: 0;
  color: #aaa;
  margin-top: 0.5em;
  padding-top: 0.5em;
  font-family: "Caveat", cursive;
  font-weight: 400;
}

.c-heading__sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.5em;
  height: 2px;
  transform: translateX(-50%);
  background-color: #aaa;
}


/* === SOURCE: /assets/css/components-media.css === */
/* ==========================================================================
   components-media.css
   Media系（旧baseから移植：復旧優先）
   ========================================================================== */

/* Facebook Like BOX レスポンシブ化 */
#fb-root {
  display: none;
}

.fb_iframe_widget {
  width: 100% !important;
  background: #fff !important;
}

.fb_iframe_widget span {
  width: 100% !important;
  background: #fff !important;
}

.fb_iframe_widget span iframe[style] {
  width: 100% !important;
  background: #fff !important;
}

/* Gallery */
ul.gallery {
  margin-left: -0.666%;
}

ul.gallery li {
  width: 16%;
  margin: 0 0 0.666% 0.666%;
  float: left;
}

ul.gallery li img {
  width: 96%;
  padding: 2%;
  background: rgba(255, 255, 255, 0.8);
}

/* 画像リスト */
ul.gal2,
ul.gal3 {
  margin-left: -1%;
}

ul.gal2 li,
ul.gal3 li {
  float: left;
  margin: 0 0 7px 1%;
}

ul.gal2 li img,
ul.gal3 li img {
  width: 100%;
}

ul.gal2 li {
  width: 49%;
}

ul.gal3 li {
  width: 32.3%;
}

img.photo {
  width: 96%;
  padding: 2%;
  background: rgba(255, 255, 255, 0.8);
}


/* === SOURCE: /assets/css/components-posts.css === */
/* ==========================================================================
   components-posts.css
   Posts系（旧baseから移植：復旧優先）
   ========================================================================== */

ul.posts li {
  position: relative;
  padding-bottom: 1.5em;
  margin-bottom: 2em;
}

ul.posts li img {
  width: 100%;
  margin-bottom: 0.5em;
}

ul.posts li p.cate {
  text-align: right;
  line-height: 1;
  margin-bottom: 1rem;
  font-size: 0;
}

ul.posts li p.cate a,
ul.posts li p.cate span {
  font-size: 0.7rem;
  display: inline-block;
  text-decoration: none;
  border: 1px solid #000;
  line-height: 1;
  margin-left: 0.75em;
  padding: 0.25em 0.75em;
  border-radius: 1000px;
}

ul.posts li p.cate span {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}

ul.posts li p.date {
  font-size: 0.8em;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  text-align: center;
}

ul.posts li h4 {
  font-size: 1.25em;
  margin-bottom: 1em;
}

ul.posts li p.excerpt {
  line-height: 1.75em;
  font-size: 0.9em;
  padding: 0.25em 0 0.25em 1.5em;
  margin: 0 0 0 0;
}

ul.posts li a.more {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  text-align: right;
  font-size: 0.9em;
  text-decoration: none;
}

/* FontAwesome依存を撤去：more 矢印 */
ul.posts li a.more::after {
  content: "›";
  margin-left: 0.5em;
  font-family: inherit;
}

/* 前後記事ページング */
ul.paging {
  margin-top: 5em;
  font-size: 12px;
  border-top: 1px dotted #ccc;
}

ul.paging li {
  width: 50%;
}

ul.paging li.prev {
  text-align: right;
  float: right;
}

ul.paging li.emptynext a {
  border-left: 1px dotted #ccc;
}

ul.paging li.next {
  float: left;
}

ul.paging li a {
  display: block;
  position: relative;
  text-decoration: none;
}

ul.paging li.prev a {
  padding: 1em 2em 1em 1em;
}

ul.paging li.next a {
  padding: 1em 1em 1em 2em;
  border-right: 1px dotted #ccc;
}

ul.paging li a i {
  position: absolute;
  font-size: 16px;
  top: 0.9em;
  color: #000;
}

ul.paging li.prev a i {
  right: 0;
}

ul.paging li.next a i {
  left: 0;
}

/* ページネーション */
.pagenation {
  text-align: center;
  margin: 10px 0 30px;
}

.pagenation a,
.pagenation span {
  display: inline-block;
  border: 1px solid #ccc;
  margin: 0 2px;
  padding: 5px 8px;
  border-radius: 3px;
  text-decoration: none;
}

.pagenation .current {
  background: #000;
  border-color: #000;
  color: #fff;
}

/* icons */
.icons {
  position: absolute;
  top: 1px;
  right: 5px;
}

.icons span,
.icons a {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 11px;
  line-height: 100%;
  padding: 2px 8px;
  margin-right: 0;
  text-decoration: none;
}

/* ==========================================================================
   Posts list（02 / loop.php互換）
   ========================================================================== */

.posts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 34px;
}

.posts__item {
  display: grid;
  gap: 12px;
}

.posts__thumb {
  display: block;
}

.posts__thumbImg {
  display: block;
  width: 100%;
  height: auto;
}

.posts__cate {
  margin: 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
}

.posts__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.posts__link {
  color: inherit;
  text-decoration: none;
}

.posts__link:hover {
  text-decoration: underline;
}

.posts__excerpt {
  margin: 0;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.85);
}

.posts__more {
  margin: 0;
}

.posts__moreLink {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.posts__moreLink:hover {
  opacity: 0.85;
}

/* pagination */
.pagenation {
  margin-top: 34px;
}

.pagenation .page-numbers {
  text-decoration: none;
  margin-right: 10px;
}

.pagenation .page-numbers.current {
  font-weight: 700;
  border-bottom: 2px solid currentColor;
}

/* 画像の高さを整える（カード感） */
.posts__thumb {
  overflow: hidden;
  border-radius: 14px;
}

.posts__thumbImg {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* 余白の整理 */
.posts__item {
  gap: 16px;
}

.posts__cate {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* タイトルを少し強く */
.posts__title {
  font-size: 22px;
  font-weight: 700;
}

/* MOREを少し下げる */
.posts__more {
  margin-top: 6px;
}

/* ==========================================================================
   Nail Archive（Exhibit frame reuse）
   - PC：3列で確定（SPは後で responsive.css で上書き）
   - 開始余白は l-page が担当
   ========================================================================== */

.p-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* カード全体リンク */
a.p-archive__card {
  display: grid;
  gap: 4px;

  color: inherit;
  text-decoration: none;
}

a.p-archive__card:link,
a.p-archive__card:visited,
a.p-archive__card:hover,
a.p-archive__card:focus {
  color: inherit;
  text-decoration: none;
}

/* 一覧では単体用の余白を消す */
.p-archive__card .p-single__exhibit {
  margin: 0;
}

/* 崩れ防止（額本体は components-exhibit.css） */
.p-archive__card .p-single__exhibitFrame {
  overflow: hidden;
  margin-bottom: 8px; /* ← 28px を上書き */
}

.p-archive__card .p-single__exhibitImg {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* タイトル（写真幅＝額padding分を除外） */
.p-archive__title {
  width: calc(100% - 48px); /* 24px * 2 */
  margin-inline: auto;

  /* 上を詰めて下を増やす */
  margin-top: 0px;
  margin-bottom: 22px;

  font-size: 14px;
  line-height: 1.4;

  /* single と完全一致 */
  color: rgba(60, 60, 60, 0.92);

  text-decoration: none;
}

/* hoverでも崩さない */
a.p-archive__card:hover .p-archive__title {
  text-decoration: none;
}

/* ==========================================================================
   Archive Pagination（Single思想に寄せる）
   ========================================================================== */

.c-pager {
  margin-top: 150px;
  margin-bottom: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.c-pager__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.c-pager__prev {
  text-align: left;
}

.c-pager__next {
  text-align: right;
}

.c-pager__numbers {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* Prev / Next（Singleと同じ） */
.c-pager__label {
  font-family: "Caveat", cursive;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: rgba(212, 129, 32, 0.55);
  line-height: 1;
}

/* Prev / Next のリンク体裁（下線だけ殺す） */
.c-pager__label a {
  color: inherit;
  text-decoration: none;
}

/* 数字（箱） */
.c-pager__num a,
.c-pager__num span {
  display: inline-block;
  min-width: 36px;
  padding: 8px 0;
  text-align: center;
  font-size: 13px;

  border: 1px solid var(--bc-accent);
  background: transparent;
  color: var(--bc-accent);

  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

/* hover */
.c-pager__num a:hover {
  background: var(--bc-accent);
  color: #fff;
  border-color: var(--bc-accent);
}

/* current */
.c-pager__num .current {
  background: var(--bc-accent);
  color: #fff;
  border-color: var(--bc-accent);
}


/* === SOURCE: /assets/css/pages-top.css === */
/* ==========================================================================
   pages-top.css
   TOP（ネイルLP）｜PCベース（実態のみ）
   方針：
   - 実数（ツマミ）は cockpit.css
   - SPは responsive.css
   ========================================================================== */

/* ==========================================================================
   00) Scope（TOP限定）
   ========================================================================== */
/* main#top-lp { } */

/* =========================================================
   01. Hero
   ========================================================= */

.top-hero {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 25px 25px;
  background: #000;
}

.top-hero__media {
  display: block;
  width: 100%;
}

.top-hero__img {
  display: block;
  width: 100%;
  height: 60vh;
  max-height: 640px;
  min-height: 520px;
  object-fit: cover;
}

.top-hero__inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 4vh;
}

.top-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.top-hero__title {
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.35;
  margin: 0 0 1.2em;
  font-size: 1.8em;
  font-weight: normal;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

.top-hero__lead {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 0.8em;
  font-size: 1.2em;
  line-height: 1.7;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
  padding-left: 0.6em;
}

.top-hero__note {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.4em;
  font-size: 1em;
  line-height: 1.8;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
  padding-left: 0.6em;
}

.top-hero__tel {
  display: inline-block;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 0.95em 1.6em;
  border-radius: 9999px;
  font-size: 0.95em;
  margin-top: 1.2em;
}

.top-hero__tel:hover {
  background: #d48120;
  color: #fff;
}

.top-hero__tel:link,
.top-hero__tel:visited,
.top-hero__tel:hover,
.top-hero__tel:active,
.top-hero__tel:focus,
.top-hero__tel:focus-visible {
  text-decoration: none;
}

/* =========================================================
   02. TOP｜h2統一ルール
   ========================================================= */

.top-concept__title,
.top-designs__title,
.top-reasons__title,
.top-price__title {
  text-align: center;
  font-size: 1.4em;
  line-height: 1.4;
  margin: 0 0 0.5em;
  letter-spacing: 0.2em;
  font-weight: normal;
}

.top-concept__title span,
.top-designs__en,
.top-reasons__title span,
.top-price__title span {
  margin-bottom: 1.4em;
  position: relative;
  display: block;
  font-size: 1em;
  letter-spacing: 0;
  color: #aaa;
  margin-top: 0.6em;
  padding-top: 0.8em;
  font-family: "Caveat", cursive;
  font-weight: 400;
}

.top-concept__title span::before,
.top-designs__en::before,
.top-reasons__title span::before,
.top-price__title span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.5em;
  height: 2px;
  transform: translateX(-50%);
  background-color: #aaa;
}

/* =========================================================
   03. Concept
   ========================================================= */

.top-concept {
  padding: 80px 0 60px;
  text-align: center; /* 中央揃えの基準点 */
}

.top-concept__text {
  font-size: 0.85em;
  line-height: 1.8;
  text-align: center;
  margin: 0;
}

/* もし本文が p で複数行（class無し）でも中央を維持 */
.top-concept p {
  text-align: center;
}

/* =========================================================
   04. Designs
   ========================================================= */

.top-designs {
  padding: 3em 0;
}

.top-designs__lead {
  line-height: 1.8;
  font-size: 0.85em;
  margin: 0 0 2em;
  text-align: center;
}

/* TOP｜Exhibit List（exhibit frame reuse）
   - PC：4列（TOPは1カラムなので密度調整）
   - SPは後で responsive.css で上書き
*/
ul.p-exhibit-list__grid {
  margin: 0;
  padding: 0;
  list-style: none;

  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* カード全体リンク */
a.p-exhibit-list__card {
  display: grid;
  gap: 4px;

  color: inherit;
  text-decoration: none;
}

a.p-exhibit-list__card:link,
a.p-exhibit-list__card:visited,
a.p-exhibit-list__card:hover,
a.p-exhibit-list__card:focus {
  color: inherit;
  text-decoration: none;
}

/* 一覧では単体用の余白を消す */
.p-exhibit-list__card .p-single__exhibit {
  margin: 0;
}

/* 崩れ防止（額本体は components-exhibit.css） */
.p-exhibit-list__card .p-single__exhibitFrame {
  overflow: hidden;
  margin-bottom: 8px; /* ← 28px を上書き */
}

/* タイトル（写真幅＝額padding分を除外） */
.p-exhibit-list__title {
  width: calc(100% - 28px); /* compact: 14px * 2 */
  margin-inline: auto;

  margin-top: 0px;
  margin-bottom: 22px;

  font-size: 14px;
  line-height: 1.4;

  color: rgba(60, 60, 60, 0.92);
  text-decoration: none;
}

/* hoverでも崩さない */
a.p-exhibit-list__card:hover .p-exhibit-list__title {
  text-decoration: none;
}

/* 一覧ボタン（TOP固有） */
.top-designs__more {
  text-align: center;
  padding-top: 4em;
}

.top-designs__more a {
  display: inline-block;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 0.95em 1.6em;
  border-radius: 9999px;
  font-size: 0.95em;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.top-designs__more a:hover {
  background: #d48120;
  color: #fff;
}

/* =========================================================
   05. Reasons
   ========================================================= */

.top-reasons {
  padding: 3em 0;
}

.top-reasons__list {
  margin: 2.5em auto 0;
  padding-left: 1.5em;
  max-width: 960px;
}

.top-reasons__item {
  margin-bottom: 2.2em;
}

.top-reasons__item h3 {
  margin: 0 0 0.6em;
  font-size: 0.95em;
  font-weight: normal;
  letter-spacing: 0.05em;
  color: #333;
  line-height: 1.6;
  position: relative;
  padding-left: 1.2em;
}

.top-reasons__item h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #999;
  border-radius: 50%;
}

.top-reasons__item p {
  margin: 0;
  font-size: 0.85em;
  line-height: 1.9;
  color: #555;
}

/* =========================================================
   06. Price
   ========================================================= */

.top-price {
  padding: 3em 0;
}

.price,
.nail_intro {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.nail_intro {
  font-size: 0.95em;
  line-height: 1.8;
  margin: 0 auto 2em;
  color: #555;
}

.top-price .price {
  padding-left: 2.4em;
  padding-right: 2.4em;
}

dl.price dt {
  margin-bottom: 1em;
  font-size: 0.95em;
  line-height: 1.6;
}

dl.price dd {
  text-align: right;
  font-size: 1.1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}

/* Price｜カテゴリ見出し（下線アクセント・強さ抑制） */
.top-price .price dt.cat {
  margin: 2.8em 0 1.4em;
  font-size: 1.05em;
  letter-spacing: 0.08em;
  color: #222;
  font-weight: 400;
  position: relative;
  padding-bottom: 0.4em;

  margin-left: -2.4em; /* ← dlのpadding分を打ち消す */
}

.top-price .price dt.cat::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.2em;
  height: 2px;
  background: #d48120;
  opacity: 0.9;
}

/* =========================================================
   07. TOP｜Hakama（別事業導線）
   - 背景：人物入り袴写真（CSSでbackground-image）
   - 可読性：overlay
   - ボタン：HERO CTA（.top-hero__tel）と同等の見た目を再現
   ========================================================= */

.p-topHakama {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 4.2em 0;
  margin: 1.2em auto 0;
}

/* 背景写真 */
.p-topHakama__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.p-topHakama__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 可読性オーバーレイ */
.p-topHakama__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.p-topHakama__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.p-topHakama__eyebrow {
  margin: 0 0 2.2em 0; /* 上 右 下 左 */
  font-size: 1.2em;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

/* 見出し（h4）｜TOPのh2統一ルールに寄せる */
.p-topHakama__title {
  text-align: center;
  font-size: 1.4em;
  line-height: 1.4;
  margin: 0 0 0.8em;
  letter-spacing: 0.2em;
  font-weight: normal;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

/* span（英語）を TOP共通の “sub” っぽく扱う */
.p-topHakama__title .c-heading__sub {
  margin-bottom: 1.4em;
  position: relative;
  display: block;
  font-size: 1em;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.6em;
  padding-top: 0.8em;
  font-family: "Caveat", cursive;
  font-weight: 400;
}

.p-topHakama__title .c-heading__sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.5em;
  height: 2px;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.65);
}

/* リード（JP/EN 同格） */
.p-topHakama__leadJp,
.p-topHakama__leadEn {
  margin: 0px;
  font-size: 0.95em;
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

.p-topHakama__leadJp {
  margin-bottom: 1.6em;
}

.p-topHakama__leadEn {
  margin-bottom: 3.2em;
}

/* CTA（横並び・同格） */
.p-topHakama__cta {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

/* ボタン（HERO CTA同等） */
.p-topHakama__btn {
  display: inline-block;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 0.95em 1.6em;
  border-radius: 9999px;
  font-size: 0.95em;
}

.p-topHakama__btn:hover {
  background: #d48120;
  color: #fff;
}

.p-topHakama__btn:link,
.p-topHakama__btn:visited,
.p-topHakama__btn:hover,
.p-topHakama__btn:active,
.p-topHakama__btn:focus,
.p-topHakama__btn:focus-visible {
  text-decoration: none;
}


/* === SOURCE: /assets/css/utilities.css === */
/* ==========================================================================
   utilities.css
   互換・救済（旧baseから移植：復旧優先）
   ========================================================================== */

/* WP DEFAULT（必要最小限だけ残す） */
img.aligncenter,
img.alignnone {
  display: block;
  margin: 0 auto 15px;
}

/* 表示切替 */
.sp_only {
  display: none;
}

br.clear {
  clear: both;
}

/* スクロール演出 */
.scrollIn {
  opacity: 0;
  transform: translate(-1em);
  transition: 0.8s;
}

.scrollIn.on {
  opacity: 1;
  transform: translate(0, 0);
}

/* 汎用 */
p {
  margin-bottom: 1.5em;
}

.alignright {
  text-align: right;
}

.aligncenter {
  text-align: center;
}

hr {
  height: 1px;
  border: none;
  background: #333;
  margin: 10px 0;
}

/* ボタン（旧） */
.buttons {
  text-align: center;
  margin-bottom: 1.5em;
}

.buttons a {
  display: inline-block;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 1em 2.5em 1em 3em;
  font-size: 0.9em;
  border-radius: 9999px;
}

.buttons a:hover {
  background: #d48120;
}

.buttons a i.fa {
  margin: 0 0 0 1em;
}

/* box（旧） */
.box {
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  margin-bottom: 15px;
}

/* パディング */
.padd5 {
  padding: 5px;
}
.padd10 {
  padding: 10px;
}
.padd15 {
  padding: 15px;
}
.padd20 {
  padding: 20px;
}
.padd0_5 {
  padding: 0 5px;
}
.padd0_10 {
  padding: 0 10px;
}
.padd0_20 {
  padding: 0 20px;
}
.padd10_20 {
  padding: 10px 20px;
}

.padd-top5 {
  padding-top: 5px;
}
.padd-top10 {
  padding-top: 10px;
}
.padd-top15 {
  padding-top: 15px;
}
.padd-top20 {
  padding-top: 20px;
}

.padd-bottom5 {
  padding-bottom: 5px;
}
.padd-bottom10 {
  padding-bottom: 10px;
}
.padd-bottom15 {
  padding-bottom: 15px;
}
.padd-bottom20 {
  padding-bottom: 20px;
}

/* マージン */
.marg5 {
  margin: 5px;
}
.marg10 {
  margin: 10px;
}
.marg20 {
  margin: 20px;
}
.marg0_5 {
  margin: 0 5px;
}
.marg0_10 {
  margin: 0 10px;
}
.marg0_20 {
  margin: 0 20px;
}

.marg-top0 {
  margin-top: 0 !important;
}
.marg-top5 {
  margin-top: 5px;
}
.marg-top10 {
  margin-top: 10px;
}
.marg-top15 {
  margin-top: 15px;
}
.marg-top20 {
  margin-top: 20px;
}

.marg-bottom5 {
  margin-bottom: 5px;
}
.marg-bottom10 {
  margin-bottom: 10px;
}
.marg-bottom15 {
  margin-bottom: 15px;
}
.marg-bottom20 {
  margin-bottom: 20px;
}

/* フォント */
.st {
  font-weight: bold;
}
.reg {
  font-weight: normal;
}

.fs150 {
  font-size: 150%;
  letter-spacing: 0.01em;
}
.fs120 {
  font-size: 120%;
}
.fs110 {
  font-size: 110%;
}
.fs90 {
  font-size: 90%;
}
.fs80 {
  font-size: 80%;
  line-height: 160%;
}
.fs70 {
  font-size: 70%;
  line-height: 160%;
}
.fs60 {
  font-size: 60%;
  line-height: 160%;
}
.fs50 {
  font-size: 50%;
  line-height: 160%;
}

.fsblack {
  color: #333;
}
.fsred {
  color: #cc4b5b;
}
.fsgray {
  color: #afafaf;
}

.must {
  font-weight: bold;
  margin-left: 5px;
  color: red;
}

/* clearfix */
.after_clear:after {
  content: ".";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}


/* === SOURCE: /assets/css/responsive.css === */
/* =========================================================
   01. Hero（SP）
   ========================================================= */

@media (max-width: 767px) {
  .top-hero__img {
    height: 55vh;
    min-height: 420px;
    max-height: 520px;
  }

  .top-hero__title {
    font-size: 1.25em;
  }

  .top-hero__note {
    font-size: 0.85em;
  }

  /* =========================================================
     02. Concept（SP）
     ========================================================= */

  .top-concept {
    padding: 80px 20px;
  }

  .top-concept__title {
    text-align: center;
    letter-spacing: 0.05em;
  }

  .top-concept__title span::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .top-concept__text {
    text-align: left;
    margin: 0 auto;
  }

  /* =========================================================
      03) Designs（SP）
     ========================================================= */

  .top-designs__title {
    font-size: 1.6em;
    letter-spacing: 0.12em;
  }

  .top-designs__lead {
    font-size: 0.9em;
  }

  .top-designs__name {
    font-size: 0.95em;
    height: calc(1.55em * 2); /* 2行ぶん固定 → 全カード同一高さ */
    -webkit-box-pack: center; /* 1行のとき縦中央 */
  }

  .top-designs__list {
    grid-template-columns: 1fr;
  }

  /* =========================================================
      04) Footer（SP）
     ========================================================= */

  section#main,
  section#home_info,
  section#footer_access {
    padding: 2em 1em;
  }

  section#footer_access .footer-access__inner {
    flex-direction: column;
  }

  section#footer_access .footer-access__map,
  section#footer_access .footer-access__info {
    width: 100%;
  }
}

