/* フォント設定 */
:root {
  --font-base: "Zen Maru Gothic","Noto Sans JP","Yu Gothic","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
  --font-heading: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
}


/* ================================
   Hero Section
   ================================ */


.hero-section {
    width: 100%;
    height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 5%;
    overflow: hidden; /* 背景装飾のはみ出し対策 */
}

/* --- Wave Animation Background --- */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30vh; /* 波の高さ */
    min-height: 150px;
    z-index: 0; /* コンテンツより奥 */
    pointer-events: none;
}

.waves {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: -7px; /* 下部の隙間調整 */
}

/* SVGパララックスアニメーション */
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 13s;
    fill: #E4DAD0; /* 薄いベージュ */
    opacity: 0.7;
}
.parallax > use:nth-child(2) {
    animation-delay: -4s;
    animation-duration: 16s;
    fill: #d8cbb8; /* 少し濃いベージュ */
    opacity: 0.2; /* 淡く */
}

@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

/* コンテナ */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    position: relative;
    z-index: 10;
}

/* ================================
    Left Column: Text Content
    ================================ */
.hero-text-area {
    flex: 0.8; 
    padding-left: 20px;
    z-index: 10;
    min-width: 300px;
}

/* Main Copy: 「遊ぶ」 */
.hero-main-copy-container {
    position: relative;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: baseline;
    animation: floatUpDown 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.hero-main-copy {
    font-size: 10rem; 
    font-weight: 900;
    color: #4a3b2a;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    transform: rotate(-4deg);
}

/* 肉球アイコン装飾 */
.paw-icons {
    margin-left: 25px;
    display: flex;
    gap: 15px;
    transform: rotate(-4deg);
}

.paw-icon {
    color: #4a3b2a;

}

.paw-large {
    font-size: 3.5rem;
    transform: rotate(15deg);
}

.paw-small {
    font-size: 2rem;
    transform: rotate(-10deg) translateY(10px);
}

/* Sub Copy */
.hero-sub-copy {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.8;
    color: #4a3b2a;
    margin-top: 15px;
    margin-left: 10px;
}

/* ================================
    Right Column: Image Area
    ================================ */
.hero-image-area {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 600px;
}

.blob-wrapper {
    position: relative;
    width: 100%;
    max-width: 980px;
    /* aspect-ratio: 1 / 0.85;*/
    aspect-ratio: 1 / 0.668; 
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 共通の有機的な形状 */
.blob-shape {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 64% 36% 27% 73% / 55% 58% 42% 45%;
    transition: border-radius 8s ease-in-out;
    will-change: border-radius;
}

/* 背面の装飾オブジェクト */
.blob-bg {
    background-color: #d8cbb8;
    transform: rotate(-15deg) scale(0.9) translate(-100px, -80px);
    z-index: 1;
    animation: morphBg 8s ease-in-out infinite alternate;
}

/* スライドショー画像のコンテナ */
.blob-img-container {
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    animation: morphImg 8s ease-in-out infinite alternate-reverse;
    background: #fff;
    position: absolute;
    top: 0; left: 0;
}

/* 各スライド画像 */
.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.05);
}

.slide-img.active {
    opacity: 1;
}

/* ================================
    Animations
    ================================ */
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes morphImg {
    0% { border-radius: 64% 36% 27% 73% / 55% 58% 42% 45%; }
    100% { border-radius: 73% 27% 56% 44% / 57% 74% 26% 43%; }
}
@keyframes morphBg {
    0% { border-radius: 64% 36% 27% 73% / 55% 58% 42% 45%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* ================================
    Responsive (SP)
    ================================ */
@media (max-width: 900px) {
    .hero-section {
        padding: 60px 0;
        display: block;
        overflow-x: hidden;
    }

    .wave-container {
        height: 10vh; /* スマホでは波の高さを調整 */
    }

    .hero-container {
        flex-direction: column;
        gap: 50px;
        max-width: 100%;
    }

    .hero-text-area {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .hero-main-copy-container{
      margin-bottom:10px;
    }

    .hero-main-copy {
        font-size: 6rem;
    }
    .hero-main-copy::before {
        -webkit-text-stroke: 10px #fff;
    }

    .paw-icons {
        margin-left: 10px;
        gap: 8px;
    }
    .paw-large { font-size: 2.5rem; }
    .paw-small { font-size: 1.5rem; }

    .hero-sub-copy {
        font-size: 1.1rem;
        margin-left: 0;
        margin-top:0;
    }

    .hero-image-area {
        width: 120%;
        margin-left: -10%;
        min-height: 400px;
        margin-bottom: 30px;
    }
    
    .blob-wrapper {
        max-width: none;
        width: 100%;
    }
}

/* ================================
   Common
   ================================ */

.section-title {
  font-weight: 700;
  font-size: clamp(24px, 2.9vw, 32px);
  margin-bottom: var(--space-xl);
  color: var(--color-accent-ink);
  text-align: center;
}

.section-lead{
  display: inline-block;
  max-width: 780px;
  width: 90%;
  font-weight: 700;
  line-height: 2;
  font-size: clamp(14px, 1.9vw, 16px);
  color: var(--color-text);
  margin:var(--space-md) auto var(--space-lg) auto;
}

/* ================================
   Concept Section
   ================================ */

.concept{
  background: #E4DAD0;
  padding-block: clamp(56px, 8vw, 96px);
}

/* セクションヘッダー */
.concept__head{
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.concept__logo{
  width: clamp(220px, 53vw, 280px);
  margin:0 auto 32px auto;
}

.concept__title{
  margin: 0;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.8;
  color: #1e1e1e;
  font-weight: 600;
}

/* カードグリッド：SP=1 / TB=2 / PC=3 */
.concept__grid{
  display: grid;
  gap: clamp(12px, 2vw, 24px);
  grid-template-columns: 1fr; /* ~599px: 1カラム */
}

/* 600px〜: 2カラム（タブレット想定） */
@media (min-width: 600px){
  .concept__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 1024px〜: 3カラム（デスクトップ） */
@media (min-width: 1024px){
  .concept__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* タブレット時の見た目のバランス微調整（任意） */
@media (min-width: 600px) and (max-width: 1023.98px){
  .concept-card__thumb{
    width: clamp(90px, 14vw, 128px);
    height: clamp(90px, 14vw, 128px);
  }
}

/* カード */
.concept-card{
  background: #F5EEE6;
  border-radius: 16px;
  padding: clamp(18px, 3vw, 24px);
  box-shadow: 0 2px 0 rgba(0,0,0,0.06);
  border: 1px solid rgba(92,68,45,0.08);
  text-align: center;
}

/* サムネイル（丸型） */
.concept-card__thumb{
  width: clamp(120px, 18vw, 152px);
  height: clamp(120px, 18vw, 152px);
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.05) inset;
}
.concept-card__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* タイトル・本文 */
.concept-card__title{
  margin: clamp(14px, 2.4vw, 18px) 0 14px;
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.5;
  font-weight: 700;
  color: #1f1a15;
}
.concept-card__text{
  margin: 0;
  font-size: clamp(13px, 2vw, 16px);
  line-height: 1.9;
  color: #4a3f35;
  letter-spacing: .02em;
}

.concept-card ul li a{
  text-decoration:underline;
  color:#A1422A;
  font-weight: 800;
}

.concept-card ul li a:hover{
  opacity: 0.8;
}

@media (max-width: 767.98px){
  .concept-card{ padding: 22px 42px; }
}

/* ================================
   Rooms Section
================================ */

.rooms{
  background: #FBF5ED; /* セクションの淡いクリーム色 */
}

/* セクションヘッダー */
.rooms__head{
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
}

/* タグ群（丸角ボタン風） */
.rooms-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.rooms-tags li{
  background: #4A2F16;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: clamp(14px, 1.6vw, 16px);
  box-shadow: 0 2px 0 rgba(0,0,0,.08);
}

/* ===== ルームカード（PC 2カラム、SP 1カラム） ===== */
.room{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 4vw, 40px);
  align-items: center;
  padding-block: clamp(20px, 5vw, 40px);
  position: relative;
}
@media (min-width: 768px){
  .room{ grid-template-columns: 1.25fr 1fr; }
  .room--reverse{ grid-template-columns: 1fr 1.25fr; }
  .room--reverse .room__media{ order: 2; }
  .room--reverse .room__body{ order: 1; }
}

/* メディア（スライダーを囲う） */
.room__media{
  border-radius: 16px;
  overflow: hidden;
}

/* 本文 */
.room__title{
  font-weight: 800;
  font-size: clamp(20px, 3vw, 28px);
  margin: 0 0 10px;
  color: #1f1a15;
}
.room__text p{
  margin: 0 0 14px;
  font-size: clamp(13px, 2vw, 16px);
  line-height: 1.9;
  color: #40372F;
}

/* ===== スライダー（依存なし） ===== */
.slider{ position: relative; }
.slider__track{
  display: flex; width: 100%; touch-action: pan-y;
  transition: transform .35s ease;
}
.slide{ flex: 0 0 100%; }
.slide img{ width: 100%; height: auto; display: block; }

/* ドット */
.slider__dots{
  display: flex; gap: 8px;
  justify-content: center; align-items: center;
  padding: 10px 0 14px;
}
.slider__dots button{
  width: 10px; height: 10px; border-radius: 50%;
  border: 0; background: rgba(0,0,0,.2);
  cursor: pointer;
}
.slider__dots button[aria-current="true"]{ background: #4A2F16; }

/* 余白の区切り（PC段落の間に淡い区切り点があるデザインのニュアンス） */
.room + .room{
  margin-top: clamp(16px, 4vw, 32px);
  border-top: 1px dashed rgba(0,0,0,.06);
  padding-top: clamp(16px, 4vw, 32px);
}

/* ================================
   Price Section
================================ */

/* ===================== Pricing（背景/見出し） ===================== */
.pricing {
  background: #F7EFE6;
}

.pricing__head {
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 40px);
}

.pricing__note {
  margin-top: 8px;
  font-size: clamp(12px, 1.6vw, 13px);
  color: #6b5b4a;
}

/* 2プランカードのグリッド */
.pricing__grid {
  display: grid;
  gap: clamp(16px, 3vw, 24px);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===== 料金カード ===== */
.price-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, .05);
  padding: clamp(16px, 2.4vw, 24px);
}

.price-card__head {
  margin-bottom: 12px;
  border-bottom:1px solid rgba(0, 0, 0, .08);
}

.price-card__title {
  margin: 0 0 12px 0;;
  font-size: clamp(16px, 2.4vw, 18px);
  font-weight: 800;
  color: #2b1f15;
}

.price-card__title small {
  font-weight: 600;
  font-size: .85em;
  color: #6b5b4a;
}

.price-card__desc {
  margin: 8px 0 12px;
  font-size: clamp(13px, 2vw, 16px);
  line-height: 1.9;
  color: #40372F;
}

.price-card__notice {
  color: #A1422A;
  font-weight: 700;
  font-size:clamp(10px, 1.8vw, 12px);
}

/* ボックス（枠で分ける） */
.price-box {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  padding: 12px;
  margin-top: 12px;
}

.price-box__foot {
  margin: 8px 0 0;
  font-size: 12px;
  color: #7b6d5e;
  text-align: right;
}

.price-sub{
  font-size:clamp(11px, 1.5vw, 12px);
  color:#7b6d5e;
}

/* 表（行のラベル/値） */
.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  font-size: clamp(13px, 2vw, 16px);
}

.price-table th {
  text-align: left;
  color: #4a2f16;
  font-weight: 700;
  width: 50%;
}

.price-table td {
  text-align: right;
  color: #1f1a15;
  font-weight: 700;
}

.price-table tr:last-child th,
.price-table tr:last-child td {
  border-bottom: none;
}

/* 単発行の行型（多頭同室など） */
.price-rows {
  display: grid;
  gap: 8px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: clamp(13px, 2vw, 14px);;
}

.price-row__label {
  color: #4a2f16;
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 700;
  padding:10px 12px;
}

.price-row__value {
  color: #1f1a15;
  font-weight: 700;
  padding:10px 12px;
}

.price-row-notice{
  font-size:clamp(12px, 1.8vw, 14px);
  padding:0 0 0 12px;
}

/* かんたん料金チェック */
.pricing__actions {
  margin: clamp(48px, 6vw, 80px) 0;
  text-align: center;
}

.pricing__caption {
  font-size: clamp(12px, 1.8vw, 13px);
  font-weight:800;
  color: #6b5b4a;
  margin: 0 0 8px;
}

/* ボタン本体 */
.pricecheck-btn {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 2.2vw, 14px);
  padding: clamp(8px, 1.8vw, 12px) clamp(14px, 3vw, 20px) clamp(8px, 1.8vw, 12px) clamp(8px, 1.8vw, 12px);
  background: #7A5530;
  color: #FFFFFF;
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .12);
}

/* アイコン */
.pricecheck-btn__icon {
  display: grid;
  place-items: center;
  width: clamp(42px, 9vw, 56px);
  height: clamp(42px, 9vw, 56px);
  background: #FFFFFF;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
}

.pricecheck-btn__icon img {
  display: block;
  width: 100%;
  height: auto;
}

/* テキスト2段 */
.pricecheck-btn__text {
  display: grid;
  gap: 4px;
}

.pricecheck-btn__label {
  display: block;
  font-size: clamp(11px, 1.6vw, 12px);
  font-weight: 700;
  text-align: left;
  opacity: .95;
}

.pricecheck-btn__title {
  display: block;
  font-size: clamp(16px, 2.8vw, 20px);
  font-weight: 900;
  letter-spacing: .02em;
}

/* ホバー／フォーカス */
.pricecheck-btn:hover {
  filter: brightness(1.04);
}

.pricecheck-btn:focus-visible {
  outline: 3px solid #EED9C2;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .65) inset;
}

/* 親要素で中央寄せしたい場合（例：.pricing__actions内） */
.pricing__actions .pricecheck-btn {
  margin-inline: auto;
}


/* ===== 料金セクション内の小見出し（ガイド/決済） ===== */
.pricing-subtitle {
  font-size: clamp(16px, 2.6vw, 20px);
  font-weight: 800;
  color: #2b1f15;
  text-align: center;
  margin: clamp(32px, 4vw, 40px) 0 12px;
}

/* ===== ご利用ガイド（テーブル） ===== */

.guide-panel {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  overflow: hidden;
}

/* セクション見出しの帯（ベージュ、太字） */
.guide-section {
  background: #FFFFFF;
}

.guide-section__title {
  margin: 0;
  padding: clamp(10px, 2.2vw, 14px) clamp(12px, 2.4vw, 18px);
  background: #E7DCD0;
  font-weight: 800;
  color: #1f1a15;
  font-size: clamp(14px, 2.2vw, 16px);
  border-top: 1px solid rgba(0, 0, 0, .06);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

/* 行リスト（PCはラベル/値の2カラム、SPはラベル上/値下） */
.guide-rows {
  margin: 0;
  padding: 0;
}

.guide-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  align-items: start;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.guide-row:last-child {
  border-bottom: none;
}

.guide-row__label {
  margin: 0;
  padding: clamp(12px, 2.4vw, 16px) clamp(12px, 2.4vw, 18px);
  font-weight: 800;
  color: #2b1f15;
  font-size: clamp(13px, 2vw, 16px);
}

.guide-row__value {
  margin: 0;
  padding: clamp(12px, 2.4vw, 16px) clamp(12px, 2.4vw, 18px);
  color: #40372F;
  font-size: clamp(13px, 2vw, 16px);
  line-height: 1.9;
}

/* SP表示：カード角丸／ラベルは小さめ茶色、縦並び */
@media (max-width: 767.98px) {
  .guide-panel {
    border-radius: 18px;
  }

  .guide-panel__head {
    border-bottom: 1px solid rgba(0, 0, 0, .06);
  }

  .guide-row {
    grid-template-columns: 1fr;
  }

  .guide-row__label {
    padding-bottom: 6px;
    font-size: 12px;
    color: #7A5530;
    opacity: .95;
  }

  .guide-row__value {
    padding-top: 0;
  }
}


/* ===== 決済方法（1カラム。カード内は3カラム） ===== */
.paycards {
  display: grid;
  gap: clamp(12px, 2.4vw, 16px);
  grid-template-columns: 1fr;
  margin-top: 12px;
}

.paycard {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  padding: clamp(14px, 2.2vw, 18px);
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  grid-template-areas:
    "kind"
    "logo"
    "desc";
  align-items: center;
}

.paycard__kind {
  grid-area: kind;
  text-align: center;
}

.paycard__kind h4 {
  margin: 0;
  font-weight: 800;
  color: #2b1f15;
  font-size: clamp(13px, 2vw, 16px);
}

.paycard__logo {
  grid-area: logo;
  padding:24px 52px;
}

.paycard__logo img {
  display: block;
  max-width: 382px;
  width: 100%;
  height: auto;
}

.paycard__desc {
  grid-area: desc;
  margin: 0;
  color: #40372F;
  font-size: clamp(13px, 2vw, 16px);
}

@media (min-width: 768px) {
  .paycard {
    grid-template-columns: 200px 1fr 1.2fr;
    grid-template-areas: "kind logo desc";
  }
}

/* ================================
   Pricing form(かんたん料金表)
================================ */

/* ===== Modal base ===== */
.price-modal {
  position: fixed;
  inset: 0;
  display: block; 
  visibility: hidden; 
  opacity: 0;
  z-index: 1200;
  overflow-y: auto; 
  -webkit-overflow-scrolling: touch; 
}

.price-modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.price-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.price-modal[aria-hidden="false"] .price-modal__overlay {
  opacity: 1;
}

.price-modal__dialog {
  position: relative;
  margin: 6vh auto;
  width: min(720px, 92vw);
  max-height: 88vh;
  overflow: auto;
  background: #F2EAE1;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  transform: translateY(-20px);   /* 初期位置を少し上に */
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}


.price-modal[aria-hidden="false"] .price-modal__dialog {
  transform: translateY(0);
  opacity: 1;
}

/* SP時の全画面調整 */
@media (max-width: 767.98px) {
  .price-modal__dialog {
    margin: 8vh auto;
    width: 92vw;
    max-height: 84vh;
    border-radius: 16px;
  }

}

/* Close button */
.price-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #6B5B4A;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.price-modal__close:hover {
  background: rgba(255, 255, 255, .6);
}

/* Head */
.price-modal__head {
  padding: 14px 18px 0 18px;
}

.price-modal__label {
  margin: 0 0 4px 0;
  color: #7A5530;
  font-size: 12px;
  font-weight: 800;
}

.price-modal__title {
  margin: 0 0 10px 0;
  color: #2B1F15;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 20px;
}

.price-modal__title small {
  font-weight: 700;
  font-size: .9em;
  color: #6B5B4A;
}

/* ===== Calc core (theme) ===== */
.v3-calc {
  --panel: #FFFFFF;
  --ink: #1f2328;
  --muted: #6b6f76;
  --line: #E7E2D8;
  --ring: #C6B49B;
  --brown: #7A5530;
  --ok: #0A7F42;
  background: var(--panel);
  border-radius: 12px;
  margin: 12px 14px 16px 14px;
  padding: 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .04) inset;
}

/* grid row */
.v3-calc .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.v3-calc .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v3-calc .field.sm {
  min-width: 0;
}

.v3-calc .field.chk {
  align-items: flex-start;
}

.v3-calc .label {
  font-weight: 800;
  font-size: 13px;
  color: #3A332B;
}

.v3-calc .control {
  position: relative;
}

.v3-calc .input {
  appearance: none;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #FFFFFF;
  color: var(--ink);
  font-size: 14px;
  outline: none;
  transition: border .15s, box-shadow .15s, background .15s;
}

.v3-calc .input:hover {
  border-color: #D9D1C3;
}

.v3-calc .input:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--ring) 22%, transparent);
}

.v3-calc select.input {
  padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, #9a8f83 50%), linear-gradient(135deg, #9a8f83 50%, transparent 50%);
  background-position: right 14px top 55%, right 8px top 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.v3-calc .with-suffix .suffix {
  position: absolute;
  right: 12px;
  top: 50%;
  translate: 0 -50%;
  color: var(--muted);
  font-size: 12px;
  pointer-events: none;
}

/* options box */
.v3-calc .opt {
  margin: 10px 0 12px 0;
  padding: 12px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: #FFFEFC;
}

.v3-calc .opt > legend {
  padding: 0 6px;
  font-weight: 800;
  color: #2B1F15;
}

/* actions */
.v3-calc .actions {
  display: flex;
  gap: 12px;
  margin: 10px 0 8px 0;
}

.v3-calc .btn {
  appearance: none;
  border: 1px solid var(--brown);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
}

.v3-calc .btn.main {
  background: var(--brown);
  color: #FFFFFF;
}

.v3-calc .btn.ghost {
  background: #FFFFFF;
  color: #3A332B;
  border-color: #CFC9BC;
}

/* separator */
.v3-calc .sep {
  height: 1px;
  border: none;
  background: var(--line);
  margin: 12px 0 10px 0;
}

/* result */
.v3-calc [data-role="result"] {
  margin-top: 6px;
  padding: 10px 2px;
}

.v3-calc [data-role="result"] .grid {
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 6px;
  column-gap: 12px;
}

.v3-calc [data-role="result"] .money {
  font-weight: 900;
  font-size: 22px;
}

.v3-calc [data-role="result"] .ok {
  color: var(--ok);
}

.v3-calc .placeholder {
  color: var(--muted);
}



@media (min-width: 768px) {
  /* 数値系・短文セレクトは短めに */
  .v3-calc [data-role="dogs"]{
    max-width: 100px;
  }

  .v3-calc [data-role="plan"],
  .v3-calc [data-role="early"],
  .v3-calc [data-role="overtime"]{
    max-width: 280px;
  }

  /* トグルスイッチ行の幅を抑えて中央寄せ */
  .v3-calc .field.chk {
    max-width: 200px;
  }

  /* 数値入力欄 */
  .v3-calc input[type="number"] {
    text-align: center;
  }
}

/* result note */
.v3-calc .note {
  margin: 8px 2px 0 2px;
  color: #6B5B4A;
  font-size: 12px;
}

/* dialog size on desktop */
@media (min-width: 960px) {
  .price-modal__dialog {
    width: 720px;
  }
}

/* ================================
   Cafe Section
================================ */

.cafe-section {
  background-color: #3c2208;
  color: #ffffff;
}

.cafe-section__inner {
  display: flex;
  min-height: clamp(360px, 60vw, 520px);
}

/* 2カラム：左右50% */
.cafe-section__content,
.cafe-section__photo {
  flex: 0 0 50%;
  max-width: 50%;
}

/* 左カラム：テキスト側 */
.cafe-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(56px, 10vw, 80px);
  padding-bottom: clamp(56px, 10vw, 80px);
  padding-left: clamp(40px, 7vw, 96px);
  padding-right: clamp(32px, 6vw, 72px);
  box-sizing: border-box;
}

.cafe-section__content-inner {
  max-width: 480px; 
  width: 100%;
  margin: auto; 
}

.cafe-section__logo {
  margin-bottom: clamp(24px, 4vw, 32px);
  
}

.cafe-section__logo img {
  display: block;
  width: clamp(130px, 26vw, 180px);
  height: auto;
  margin: auto;
}

.cafe-section__lead {
  margin: 0 auto clamp(24px, 4vw, 32px) auto;
  font-size: clamp(13px, 2vw, 16px);
  line-height: 1.9;
  width:fit-content;
}

.cafe-section__scene {
  margin:0 auto clamp(28px, 4vw, 36px) auto;
  width:fit-content;
}

.cafe-section__scene-title {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.cafe-section__scene-list {
  margin: 0;
  padding-left: 1.4em;
  list-style: disc;
}

.cafe-section__scene-list li {
  font-size: clamp(13px, 2vw, 16px);
  line-height: 1.8;
}

/* ボタン */
.cafe-section__actions {
  text-align: center;
}

.cafe-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 52px;
  padding-right: 52px;
  border-radius: 999px;
  background-color: #7a5530;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  transition-property: background-color, transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

.cafe-section__btn:hover {
  background-color: #5d3f22;
  transform: translateY(1px);
}

/* 右カラム：画像側（常に全面） */
.cafe-section__photo {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.cafe-section__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* ===================== Responsive ===================== */

@media (max-width: 767.98px) {
  .cafe-section__inner {
    flex-direction: column;
  }

  .cafe-section__content,
  .cafe-section__photo {
    flex: 0 0 auto;
    max-width: 100%;
  }

  /* テキストブロックは画面内で余白を保つ */
  .cafe-section__content {
    padding-top: 56px;
    padding-bottom: 48px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cafe-section__photo {
    padding: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

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

  .cafe-section__btn {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ================================
   Step Section
================================ */
/* 共通セクション */
.flow {
  padding: clamp(80px, 10vw, 100px) 0;
  background-color: #f5ecdf;
}

.flow__head{
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.flow__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.flow .section-title {
  text-align: center;
  margin-bottom: 8px;
}

.flow .section-lead {
  text-align: center;
  margin-bottom: 40px;
}

/* ================= PC版 ================= */

.flow-pc {
  position: relative;
}

.flow-pc__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
  align-items: flex-end;
  margin-bottom: 16px;
}

.flow-pc__title {
  font-size: 18px;
  font-weight: 700;
  color: #4a2c12;
  margin: 0;
}

.flow-pc__spacer {
  height: 1px;
}

/* 行ベースのレイアウト：各行で左右・中央を揃える */
.flow-pc__rows {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

/* 中央の縦ライン（全体） */
.flow-pc__rows::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background-color: #e1d6c6;
}

.flow-pc__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
}

/* 中央セル（ドットのみ。線はrows::before） */
.flow-pc__timeline {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-pc__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fdfaf5;
  border: 2px solid #d9c7b0;
  z-index: 1;
}

/* ステップカード共通 */
.flow-card {
  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid #ebe1d4;
  padding: 18px 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.flow-card-null {
  background-color:transparent;
  border:none;
  padding: 18px 20px;
}

.flow-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.flow-card__step {
  margin: 0;
  font-size:clamp(13px, 2vw, 16px);
  font-weight: 700;
  color: #3c2a1a;
}

/*時間帯タグ
.flow-card__time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #e4ddd2;
  background-color: #fdfaf5;
  font-size: 11px;
  color: #8a7764;
  white-space: nowrap;
}

.flow-card__time--badge {
  background-color: #f5eee3;
}
  */

.flow-card__text {
  margin: 0;
  font-size: clamp(13px, 1.9vw, 14px);
  line-height: 1.8;
  color: #574431;
}

/* ================= SP版 ================= */

.flow-sp {
  display: none;
}

.flow-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.flow-tabs__btn {
  flex: 1;
  padding: 12px 0;
  border-radius: 8px;
  border: none;
  background-color: #e0d7cd;
  color: #7a5530;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.flow-tabs__btn.is-active {
  background-color: #7a5530;
  color: #ffffff;
}

.flow-sp__panel {
  display: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.flow-sp__panel.is-active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.flow-sp__title {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 700;
  color: #4a2c12;
}

/* SPタイムライン（右側に線＋ドット） */
.flow-sp__timeline {
  position: relative;
  padding-right: 32px;
}

.flow-sp__timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 12px;
  right: 11px;
  width: 2px;
  background-color: #e1d6c6;
}

/* SPカードは右にドット */
.flow-card--sp {
  position: relative;
  margin-bottom: 16px;
  padding-right: 28px;
}

.flow-card--sp::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fdfaf5;
  border: 2px solid #d9c7b0;
}

/* ================= ブレイクポイント ================= */

@media (max-width: 767.98px) {
  .flow {
    padding: 64px 0 72px;
  }

  .flow .section-lead {
    margin-bottom: 24px;
  }

  .flow-pc {
    display: none;
  }

  .flow-sp {
    display: block;
  }
}

/* ================================
   FAQ
================================ */

.faq {
  padding: 80px 20px 100px;
  background-color: #dcd0c2;
}

.faq__head{
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.faq__inner {
  max-width: 960px;
  margin: 0 auto;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Q行 */

.faq-item__header {
  width: 100%;
  display: flex;
  align-items: stretch;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-item__label {
  flex: 0 0 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4a2b15;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
}

/* Qラベルの角丸（閉じている状態） */
.faq-item__label--question {
  border-radius: 8px 0 0 8px;
}

/* 開いたときは下側の角丸を無くす */
.js-faq-item.is-open .faq-item__label--question {
  border-radius: 8px 0 0 0;
}

/* 質問テキスト側 */
.faq-item__question {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding: 18px 52px 18px 24px;
  background-color: #f4ede3;
  font-size: clamp(13px, 2vw, 16px);
  color: #4a2b15;
  border-radius: 0 8px 8px 0;
}

/* 開いたときは下側の角丸を無くす */
.js-faq-item.is-open .faq-item__question {
  border-radius: 0 8px 0 0;
}

/* 右端の ▼ アイコン */
.faq-item__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -3px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #4a2b15;
  transition: transform 0.25s ease;
}

.js-faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

/* A行全体を包むラッパ：ここで高さアニメーション */
.faq-item__answer-wrap {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

/* A行（ラベル＋本文） */
.faq-item__answer-row {
  display: flex;
  align-items: stretch;
}

/* Aラベルの角丸（上だけ直角） */
.faq-item__label--answer {
  background-color: #7A6240;
  border-radius: 0 0 0 8px;
}

/* アンサー側のボックス */
.faq-item__body {
  flex: 1 1 auto;
  background-color: #faf4ee;
  border-radius: 0 0 8px 0;
}

/* 内側パディングはここで */
.faq-item__body-inner {
  padding: 14px 24px 18px;
}

.faq-item__answer {
  font-size: 13px;
  color: #5a4a3a;
  line-height: 1.7;
}

/* SPレイアウト */

@media (max-width: 767px) {
  .faq {
    padding: 56px 16px 72px;
  }

  .faq__title {
    font-size: 22px;
  }

  .faq__lead {
    font-size: 12px;
    margin-bottom: 28px;
  }

  .faq-item__label {
    flex-basis: 64px;
    font-size: 18px;
  }

  .faq-item__question {
    padding: 16px 44px 16px 20px;
    font-size: 13px;
  }

  .faq-item__body-inner {
    padding: 12px 20px 16px;
    font-size: 12px;
  }
}

/* ================================
   treats Section
================================ */
.treats {
  padding: 96px 20px 120px;
  background-color: #f6eee4;
}

.treats__head{
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.treats__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.treats__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 64px;
}

/* ================================
   Treats Grid
================================ */
.treats-grid__title {
  font-size: clamp(24px, 2.9vw, 32px);
  font-weight: 700;
  text-align: center;
  color: #4a2b15;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.treats-grid {
  width: 100%;
  display: grid;
  gap: clamp(12px, 3vw, 24px);
}

/* ▼ SP：必ず3列（110px基準） */
@media (max-width: 767px) {
  .treats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ▼ PC：4列固定（最適バランス） */
@media (min-width: 768px) {
  .treats-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* カード */
.treats-card {
  position: relative;
  aspect-ratio: 1 / 1; /* 正方形固定 */
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: transform .25s ease;
}

.treats-card:hover {
  transform: translateY(-4px);
}

.treats-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* 名前オーバーレイ */
.treats-card__name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(transparent 40%, rgba(0,0,0,.85));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}

.treats-card:hover .treats-card__name {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {

  .treats-grid__title {
    margin-bottom: 20px;
  }

  .treats-card__name {
    opacity: 0;
  }

  .treats-card:active .treats-card__name,
  .treats-card:focus .treats-card__name {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 右側ポイント */
.treats__points {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 横3列 */
  gap: 24px;
  margin-bottom: 40px; /* グリッドとの間隔 */
}

.treats-point {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.treats-point__icon {
  flex: none;
  margin-bottom: 12px;
}

.treats-point__icon img {
  display: block;
  width: 72px;
  height: 72px;
}

/* テキスト */
.treats-point__body {
  flex: 1 1 auto;
}

.treats-point__title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #4a2b15;
}

.treats-point__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #5a4a3a;
}

/* =========================
   SPレイアウト
========================= */

@media (max-width: 767px) {
  .treats {
    padding: 64px 16px 80px;
  }

  .treats__title {
    font-size: 22px;
  }

  .treats__lead {
    font-size: 12px;
    margin-bottom: 32px;
  }

  .treats__content {
    flex-direction: column;
    gap: 40px;
  }

  .treats__photo {
    flex-basis: auto;
    width: 100%;
  }

  .treats__points {
    grid-template-columns: 1fr; /* 1列 */
    gap: 32px;
  }

  .treats-point {
    padding: 20px;
  }

  .treats-point__icon img {
    width: 60px;
    height: 60px;
  }

  .treats-point__title {
    font-size: 15px;
  }

  .treats-point__text {
    font-size: 12px;
  }
}

/* ================================
   Treats Extra block
================================ */

.treats-extra {
  text-align: center;
  margin-top: 48px;
}

/* ---- ラインナップブロック ---- */
.treats-lineup {
  max-width: 960px;
  margin: 0 auto 48px auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  border: 1px solid #e5ded6;
}

/* 左側のタブ */
.treats-lineup__tab {
  background: #776c5f;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

/* 右側の横スクロールテキスト */
.treats-lineup__items {
  padding: 16px 24px;
  font-size: 14px;
  color: #4a2b10;
  white-space: nowrap;
  overflow-x: auto;
}

/* ---- キャッチコピー ---- */
.treats-extra__coming {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.treats_marker{
  background: linear-gradient(transparent 60%, #f6e48a 60%);
}

/* ---------------- SP ---------------- */
@media (max-width: 767px) {

  .treats-lineup {
    grid-template-columns: 1fr;
  }

  .treats-lineup__tab {
    width: 100%;
  }

  .treats-lineup__items {
    white-space: normal;
  }

  .treats-extra__coming {
    font-size: 18px;
  }

}


/* ================================
   Access Section
================================ */
.access {
  background-color: #fdf7f0;
  padding: 80px 0 0 0;
}

.access__head{
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.access__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* 店舗情報 */
.access__info {
  flex: 1;
  min-width: 280px;
}

.access__info-logo{
  width:clamp(140px, 48vw, 230px);
  margin-bottom:28px;
}

.access__info-logo img{
  width: 100%;
}

.access__address,
.access__hours {
  font-size: 14px;
  color: #3d1f0f;
  margin-bottom: 10px;
}

.access__tel-label {
  font-size: 12px;
  color: #3d1f0f;
  margin-top: 10px;
}

.access__tel-number {
  font-size: 24px;
  font-weight: bold;
  color: #3d1f0f;
}

/* アクセス手段 */
.access__detail {
  flex: 1;
  min-width: 280px;
}

.access__detail h4 {
  font-size: 14px;
  font-weight: bold;
  color: #3d1f0f;
  margin-top: 16px;
  margin-bottom: 6px;
}

.access__detail p {
  font-size: 14px;
  color: #3d1f0f;
  margin-bottom: 6px;
}

/* Google Map */
.access__map {
  margin-top: 60px;
}

.access__map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  vertical-align: bottom;
}

/* SP対応 */
@media screen and (max-width: 768px) {
  .access {
    padding: 80px 0 0 0;
  }

  .access__info-logo{
    margin:40px auto ;
  }

  .access__inner {
    flex-direction: column;
    gap: 32px;
    width: 90%;
  }

  .access__tel-number {
    font-size: 20px;
  }

  .access__map iframe {
    height: 300px;
  }
}

/* ================================
   Company Section
   ================================ */
.company{
  background: #f8f1e8;
  padding: clamp(64px, 8vw, 96px) 20px;
}

.company__head{
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
}


.company__inner{
  max-width: 1000px;
  margin: 0 auto;
}

.company__title{
  font-size: clamp(32px, 4.5vw, 56px);
  text-align: center;
  color: #3b210e;
  letter-spacing: .02em;
  margin: 0 0 .4em;
}

.company__lead{
  text-align: center;
  color: #5a4b3f;
  font-size: 14px;
  margin: 0 0 clamp(32px, 5vw, 56px);
}

/* 定義リストを2カラムのテーブル風に */
.company__list{
  display: grid;
  grid-template-columns: 220px 1fr;   
  column-gap: clamp(24px, 4vw, 48px);
  row-gap: clamp(20px, 2.5vw, 28px);
  align-items: start;
  margin: 0;
}

.company__list dt{
  color: #3b210e;
  font-size: 14px;
  white-space: nowrap;
  line-height: 1.9;
  padding: 6px 0;
}

/* 縦の仕切り線は dd の左ボーダーで再現 */
.company__list dd{
  margin: 0;
  color: #2e2a26;
  font-size: 14px;
  line-height: 1.9;
  padding: 6px 0 6px clamp(24px, 3.2vw, 40px);
  border-left: 2px solid #d8cbbf;  
  min-height: 36px;
}

/* スマホ最適化：2カラムは維持して左幅を調整、行間を広めに */
@media (max-width: 768px){
  .company__inner{ max-width: 720px; }
  .company__list{
    grid-template-columns: 120px 1fr;  
    column-gap: 18px;
    row-gap: 22px;
  }
  .company__list dd{
    padding-left: 20px; 
    border-left-width: 2px;
  }
}

/* ================================
   pc floating nav
   ================================ */

.floating-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(31, 26, 21, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

.floating-nav.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 1001;
}

.floating-nav a {
    flex: 0 0 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.floating-nav__note {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px 0 4px;
}

.floating-nav__note-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.02em;
}

.floating-nav img {
    width: 100%; /* アイコンのサイズ調整 */
    border-radius: 0;
}

/* スマホのみ適用 */
@media (min-width: 769px) {
    .floating-nav {
        display: none;
    }
}

/* =========================================
   PC Floating Tabs
   ========================================= */

.pc-social-nav {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 176px;                   /* ★ 親の幅を固定：これがポイント */
  display: flex;
  flex-direction: column;
  align-items: flex-end;          /* 右端に寄せて縦並び */
  gap: 12px;
  z-index: 9000;
}

/* タブ本体 */
.pc-social-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  width: 56px;                    /* 初期状態：アイコン分だけ */
  height: 56px;
  background: #ffffff;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
  text-decoration: none;
  transition: width .28s ease;
}

/* ホバーで横に伸びる（左方向へ） */
.pc-social-nav__item:hover {
  width: 160px;                   /* ここまで伸びても親幅内なので他タブは動かない */
}

/* アイコン */
.pc-social-nav__item img {
  width: 32px;
  height: 32px;
  margin-left: 12px;
  flex-shrink: 0;
}

/* ラベル（ホバー時にフェードイン） */
.pc-social-nav__label {
  opacity: 0;
  white-space: nowrap;
  margin-left: 12px;
  margin-right: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: opacity .25s ease .12s;
}

.pc-social-nav__item:hover .pc-social-nav__label {
  opacity: 1;
}

/* 色バリエーション */
.pc-social-nav__item--line {
  background: #06C755;            /* LINEグリーン */
}

.pc-social-nav__item--line .pc-social-nav__label {
  color: #fff;
}

.pc-social-nav__item--insta {
  background: #ffffff;
}

/* PCのみ表示 */
@media (max-width: 768px) {
  .pc-social-nav {
    display: none;
  }
}
