@charset "utf-8";

/* =========================================
   Nanohana sub header
========================================= */

.subhead{
  position: relative;
  background: url("../images/nanohana/subhead.jpg") center center / cover no-repeat;
  padding: 88px 0 92px; /* 高さは必要に応じて微調整OK */
}

.subhead__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* テキスト背面：白の半透明パネル */
.subhead__panel{
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 34px 20px 38px;
  background: rgba(255,255,255,.65);
  text-align: center;
  box-sizing: border-box;  /* ← はみ出し防止 */
}

/* ---- 見出しスタイル ---- */
.subhead .section-about__eyecatch{
  margin: 0 0 2px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #cf6b59;
}

.subhead .section-about__title{
  margin: 0;
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #6b5a47;
}

/* ---------------------------
   Responsive
---------------------------- */
@media screen and (max-width: 980px){
  .subhead{
    padding: 72px 0 78px;
  }
  .subhead__panel{
    padding: 30px 18px 34px;
  }
}

@media screen and (max-width: 767px){
  .subhead{
    padding: 52px 0 56px;
  }
  .subhead__inner{
    padding: 0 16px;
  }
  .subhead__panel{
    padding: 22px 14px 26px;
    background: rgba(255,255,255,.72); /* SPは少し濃いめで可読性UP */
  }
  .subhead .section-about__title{
    font-size: 26px; /* SPでは小さめに */
  }
}


/* =========================================
   Local menu
========================================= */

.local-menu{
  width: min(1120px, 100%);
  margin: 28px auto 0;
  padding: 20px 24px;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.local-menu__btn{
  display: grid;
  place-items: center;
  gap: 10px;

  padding: 18px 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;

  color: #6b5a47;
  font-weight: bold;
  letter-spacing: 0.02em;

  transition: opacity .2s ease;
}

.local-menu__btn:hover{
  opacity: .85;
}

.local-menu__btn.is-blue{ background: #deedfb; }
.local-menu__btn.is-beige{ background: #f4efe6; }

.local-menu__text{
  font-size: 18px;
}

.local-menu__icon img{
  width: 18px;
  height: auto;
  display: block;
}

/* --- 画面が少し狭い時は自動で折り返し --- */
@media screen and (max-width: 1100px){
  .local-menu{
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =========================================
   SP: text links
========================================= */
@media screen and (max-width: 767px){
  .local-menu{
    width: min(720px, 100%);
    margin: 18px auto 0;
    padding: 0 16px;

    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .local-menu__btn{
    background: none !important;
    border-radius: 0;
    padding: 5px 0;
    place-items: start;
    justify-items: start;
    gap: 0;

    border-bottom: 1px solid rgba(110, 99, 88, .25);
  }

  .local-menu__btn:first-child{
    border-top: 1px solid rgba(110, 99, 88, .25);
  }

  .local-menu__text{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.4;
  }

  /* 左の右向き矢印 */
  .local-menu__text::before{
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: url("../images/nanohana/arw2.svg") center / contain no-repeat;
  }

  /* PC用の下矢印は非表示 */
  .local-menu__icon{
    display: none;
  }

  /* SPでは改行は不要なので強制解除 */
  .local-menu__text br{
    display: none;
  }
}

/* =========================================
   施設長挨拶 ＋ 医師による健康サポート
========================================= */

.facility-greeting{
  position: relative;
  background: #edf5fc;
  padding: 0 0 80px;
}

/* 上部 110px のグラデーション帯 */
.facility-greeting__grad{
  height: 110px;
  background: linear-gradient(to bottom, #ffffff 0%, #edf5fc 100%);
}

/* 中身レイアウト */
.facility-greeting__content{
  max-width: 1080px;
  margin: 36px auto 40px;
  display: flex;
  align-items: flex-start;
  gap: 42px;
}

/* 左写真 */
.facility-greeting__photo{
  flex: 0 0 320px;
}

.facility-greeting__photo img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}

/* 右テキスト */
.facility-greeting__text p{
  margin: 0;
  font-size: 22px;
  line-height: 2.0;
  letter-spacing: 0.02em;
  color: #2b2b2b;
}

/* 下部：医師による健康サポートボックス */
.facility-greeting__health{
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 24px 22px;
  background: #ffffff;
  border-radius: 18px;
  box-sizing: border-box;
}

/* ボックス内の見出しラベル */
.facility-greeting__healthLabel{
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #fff1e4;
  font-size: 18px;
  font-weight: 700;
  color: #cf6b59;
  letter-spacing: 0.06em;
}

/* ボックス内テキスト */
.facility-greeting__healthText{
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: #2b2b2b;
}

/* ---------------------------
   Responsive
---------------------------- */
@media screen and (max-width: 980px){
  .facility-greeting__content{
    max-width: 980px;
    gap: 28px;
  }
  .facility-greeting__photo{
    flex-basis: 280px;
  }
  .facility-greeting__text p{
    font-size: 20px;
  }
  .facility-greeting__healthText{
    font-size: 17px;
  }
}

@media screen and (max-width: 767px){
  .facility-greeting{
    padding: 0 0 56px;
  }

  .facility-greeting__content{
    flex-direction: column;
    gap: 18px;
    margin-top: 26px;
  }

  .facility-greeting__photo{
    width: min(60%, 320px);
    margin: 0 auto;
  }

  .facility-greeting__text p{
    font-size: 18px;
    line-height: 1.9;
  }

  .facility-greeting__health{
    margin-top: 20px;
    padding: 18px 16px 20px;
    border-radius: 14px;
  }

  .facility-greeting__healthLabel{
    font-size: 16px;
    padding: 5px 14px;
  }

  .facility-greeting__healthText{
    font-size: 16px;
    line-height: 1.8;
  }
}

/* 写真＋キャプション */

.facility-greeting__figure{
  margin: 0;
  text-align: center;
}

.facility-greeting__caption{
  margin-top: 10px;
  font-size: 0; /* 余計な隙間を消すため */
}

.facility-greeting__captionRole{
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.12em;
  margin-right: 4px;
  color: #333;
}

.facility-greeting__captionName{
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #000;
}

/* SP用微調整 */
@media screen and (max-width: 767px){
  .facility-greeting__caption{
    margin-top: 8px;
  }
  .facility-greeting__captionRole{
    font-size: 13px;
  }
  .facility-greeting__captionName{
    font-size: 17px;
  }
}

/* =========================================
   フロア紹介
========================================= */

.floor{
  position: relative;
  background: #ffffff;
  padding: 0 0 80px;
}

/* 上部 110px：水色→白グラデーション */
.floor__grad{
  height: 110px;
  background: linear-gradient(to bottom, #edf5fc 0%, #ffffff 100%);
}

/* 丸い背景＋写真配置 */
.floor__canvas{
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 70px 40px;
  box-sizing: border-box;
  background: url("../images/nanohana/c2-back.png") center center / contain no-repeat;
}

/* 左右2枚を横並び（高さそろえる） */
.floor__photos{
  display: flex;
  align-items: stretch;   /* 一番背の高い要素に合わせる */
  justify-content: center;
  gap: 32px;
}

/* 左右の幅バランス */
.floor__photo--left{
  flex: 0 0 62%;
}

.floor__photo--right{
  flex: 0 0 30%;
}

/* 共通：中身を中央寄せにしておく */
.floor__photo{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 左の画像：元サイズ優先（トリミングしない） */
.floor__photo--left img{
  width: 100%;
  height: auto;
  display: block;
}

/* 右の画像：高さを左に合わせてカバー表示 */
.floor__photo--right img{
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;  /* はみ出た分は四方を少しトリミング */
}

/* SP・タブレット対応 ---------------------- */
@media screen and (max-width: 980px){
  .floor__canvas{
    padding: 56px 28px;
    background-size: cover;
  }

  .floor__photos{
    gap: 24px;
  }

  .floor__photo--left{
    flex: 0 0 60%;
  }

  .floor__photo--right{
    flex: 0 0 32%;
  }
}

@media screen and (max-width: 767px){
  .floor{
    padding-bottom: 56px;
  }

  .floor__canvas{
    margin-top: 24px;
    padding: 26px 12px 30px;
    background-size: contain;
  }

  .floor__photos{
    flex-direction: column;
    gap: 18px;
  }

  .floor__photo{
    display: block;
  }

  .floor__photo--left img,
  .floor__photo--right img{
    width: 100%;
    height: auto;
    object-fit: contain;  /* SPではトリミングしない */
  }
}

/* =========================================
   準備品について
========================================= */

.prepare{
  position: relative;
  background: #edf5fc;
  padding: 0 0 80px;
}

/* 上部 110px：白→水色グラデーション */
.prepare__grad{
  height: 110px;
  background: linear-gradient(to bottom, #ffffff 0%, #edf5fc 100%);
}

/* ブロックラッパー */
.prepare__blocks{
  max-width: 1080px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* 白いカード本体 */
.prepare-block{
  position: relative;
  background: #ffffff;
  border-radius: 26px;
  padding: 30px 30px 32px 120px; /* 左はアイコン分を多めに */
  box-sizing: border-box;
}

/* 左上のアイコン：ベージュ背景なし／カード上辺に合わせて配置 */
.prepare-block__icon{
  position: absolute;
  left: -12px;   /* 白いブロックから外側へはみ出させる */
  top: 0;        /* カードの一番上に合わせる */
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prepare-block__icon img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* ピンク見出し（32pxのまま） */
.prepare-block__title{
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #c36454;
}

/* 本文：すべて22pxで統一 */
.prepare-block__body{
  font-size: 22px;
  line-height: 2.0;
  letter-spacing: 0.02em;
  color: #2b2b2b;
}

.prepare-block__body ul{
  margin: 0 0 10px;
  padding-left: 1.6em;      /* 少し余白を増やして見やすく */
  list-style-type: disc;    /* ● を表示 */
  list-style-position: outside;
}


.prepare-block__body p,
.prepare-block__body ul,
.prepare-block__body li,
.prepare-block__bodyNote{
  font-size: 22px;
  line-height: 2.0;
  letter-spacing: 0.02em;
}

/* 段落・リスト余白 */
.prepare-block__body p{
  margin: 0 0 10px;
}

.prepare-block__body ul{
  margin: 0 0 10px;
  padding-left: 1.2em;
}

/* 赤っぽい注意書き行（※）だけ色だけ変える */
.prepare-block__bodyNote{
  margin: 0 0 10px;
  color: #c36454;
}

/* ---------------------------
   Responsive
---------------------------- */
@media screen and (max-width: 980px){
  .prepare-block{
    padding: 26px 22px 28px 108px;
  }

  .prepare-block__icon{
    left: -10px;
    top: 0;
    width: 56px;
    height: 56px;
  }

  .prepare-block__title{
    font-size: 28px;
  }

  .prepare-block__body,
  .prepare-block__body p,
  .prepare-block__body ul,
  .prepare-block__body li,
  .prepare-block__bodyNote{
    font-size: 20px;
  }
}

@media screen and (max-width: 767px){
  .prepare-block{
    padding: 22px 16px 24px 50px;
    border-radius: 20px;
  }

  .prepare-block__icon{
    left: -6px;
    top: 0;
    width: 48px;
    height: 48px;
  }

  .prepare-block__title{
    font-size: 24px;
  }

  .prepare-block__body,
  .prepare-block__body p,
  .prepare-block__body ul,
  .prepare-block__body li,
  .prepare-block__bodyNote{
    font-size: 18px;
    line-height: 1.9;
  }
}

/* 下部の補足テキスト */
.prepare__note{
  max-width: 1080px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 22px;
  line-height: 2.0;
  letter-spacing: 0.02em;
  color: #2b2b2b;
}

/* Responsive */
@media screen and (max-width: 980px){
  .prepare__note{
    font-size: 20px;
  }
}

@media screen and (max-width: 767px){
  .prepare__note{
    font-size: 18px;
    line-height: 1.9;
  }
}

/* =========================================
   ご面会について Q&A
========================================= */

.visit{
  position: relative;
  background: #ffffff;
  padding: 0 0 80px;
}

/* 上部 110px：水色 → 白グラデーション */
.visit__grad{
  height: 110px;
  background: linear-gradient(to bottom, #edf5fc 0%, #ffffff 100%);
}

/* 見出し＋ピクトグラム */

.visit__head{
  margin-bottom: 24px;
}

.visit__headInner{
  position: relative;
  display: inline-block;      /* テキスト幅だけをセンターに */
}

/* アイコンは絶対配置で左に寄せ、見出しテキストはセンターのまま */
.visit__icon{
  position: absolute;
  left: -84px;                /* アイコンの横位置（適宜調整OK） */
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: auto;
  display: block;
}

/* Q&A 全体 */

.visitQA{
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* 1つのQ&Aボックス */

.visitQA__item{
  background: #edf5fc;
  border-radius: 26px;
  padding: 16px 24px 18px;
  box-sizing: border-box;
}

/* Q / A 行 */

.visitQA__row{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* A行だけ上に区切り線 */
.visitQA__row--a{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(153, 153, 153, 0.35);
}

/* 左側のQ / A アイコン */

.visitQA__label{
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visitQA__label img{
  width: 40px;
  height: auto;
  display: block;
}

/* Qのテキスト：26px / #514a44 */

.visitQA__question{
  flex: 1;
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #514a44;
  letter-spacing: 0.04em;
}

/* Aのテキスト：22px 通常 */

.visitQA__answer{
  flex: 1;
  margin: 0;
  font-size: 22px;
  line-height: 2.0;
  letter-spacing: 0.02em;
  color: #2b2b2b;
}

/* ---------------------------
   Responsive
---------------------------- */
@media screen and (max-width: 980px){
  .visit{
    padding-bottom: 70px;
  }

  .visit__icon{
    left: -70px;
    width: 52px;
  }

  .visitQA__item{
    padding: 14px 18px 16px;
  }

  .visitQA__label{
    flex-basis: 34px;
  }

  .visitQA__label img{
    width: 34px;
  }

  .visitQA__question{
    font-size: 24px;
  }

  .visitQA__answer{
    font-size: 20px;
  }
}

@media screen and (max-width: 767px){
  .visit{
    padding-bottom: 56px;
  }

  .visit__icon{
    left: -54px;
    width: 44px;
  }

  .visitQA{
    gap: 14px;
  }

  .visitQA__item{
    padding: 12px 12px 14px;
    border-radius: 20px;
  }

  .visitQA__label{
    flex-basis: 30px;
  }

  .visitQA__label img{
    width: 30px;
  }

  .visitQA__question{
    font-size: 20px;
    line-height: 1.7;
  }

  .visitQA__answer{
    font-size: 18px;
    line-height: 1.9;
  }
}

/* =========================================
   外出について Q&A
========================================= */

.outing{
  position: relative;
  background: #edf5fc;
  padding: 0 0 80px;
}

/* 上部 110px：白 → 水色グラデーション */
.outing__grad{
  height: 110px;
  background: linear-gradient(to bottom, #ffffff 0%, #edf5fc 100%);
}

/* 見出し＋右ピクトグラム */

.outing__head{
  margin-bottom: 24px;
}

.outing__head .greeting__title{
  position: relative;
}

.outing__headInner{
  position: relative;
  display: inline-block; /* テキスト幅だけセンターに */
}

/* アイコンは右側に絶対配置（見出しテキストは中央のまま） */
.outing__icon{
  position: absolute;
  right: -84px;           /* デザインを見つつ調整OK */
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: auto;
  display: block;
}

/* Q&A 全体 */

.outingQA{
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* 1つのQ&Aボックス（背景：白） */

.outingQA__item{
  background: #ffffff;
  border-radius: 26px;
  padding: 16px 24px 18px;
  box-sizing: border-box;
}

/* Q / A 行 */

.outingQA__row{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* A 行だけ区切り線 */
.outingQA__row--a{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(153, 153, 153, 0.35);
}

/* Q / A アイコン */

.outingQA__label{
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outingQA__label img{
  width: 40px;
  height: auto;
  display: block;
}

/* Q テキスト：26px / #514a44 */

.outingQA__question{
  flex: 1;
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #514a44;
  letter-spacing: 0.04em;
}

/* A テキスト：22px */

.outingQA__answer{
  flex: 1;
  margin: 0;
  font-size: 22px;
  line-height: 2.0;
  letter-spacing: 0.02em;
  color: #2b2b2b;
}

/* ---------------------------
   Responsive
---------------------------- */
@media screen and (max-width: 980px){
  .outing{
    padding-bottom: 70px;
  }

  .outing__icon{
    right: -70px;
    width: 52px;
  }

  .outingQA__item{
    padding: 14px 18px 16px;
  }

  .outingQA__label{
    flex-basis: 34px;
  }

  .outingQA__label img{
    width: 34px;
  }

  .outingQA__question{
    font-size: 24px;
  }

  .outingQA__answer{
    font-size: 20px;
  }
}

@media screen and (max-width: 767px){
  .outing{
    padding-bottom: 56px;
  }

  .outing__icon{
    right: -54px;
    width: 44px;
  }

  .outingQA{
    gap: 14px;
  }

  .outingQA__item{
    padding: 12px 12px 14px;
    border-radius: 20px;
  }

  .outingQA__label{
    flex-basis: 30px;
  }

  .outingQA__label img{
    width: 30px;
  }

  .outingQA__question{
    font-size: 20px;
    line-height: 1.7;
  }

  .outingQA__answer{
    font-size: 18px;
    line-height: 1.9;
  }
}

/* =========================================
   外泊について Q&A
========================================= */

.stay{
  position: relative;
  background: #ffffff;
  padding: 0 0 80px;
}

/* 上部 110px：水色 → 白グラデーション */
.stay__grad{
  height: 110px;
  background: linear-gradient(to bottom, #edf5fc 0%, #ffffff 100%);
}

/* 見出し＋左ピクトグラム */

.stay__head{
  margin-bottom: 24px;
}

.stay__headInner{
  position: relative;
  display: inline-block;  /* テキスト幅だけセンターに */
}

/* アイコンは左側に絶対配置（見出しテキストは中央のまま） */
.stay__icon{
  position: absolute;
  left: -84px;            /* デザインを見ながら調整OK */
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: auto;
  display: block;
}

/* Q&A 全体 */

.stayQA{
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* 1つのQ&Aボックス（背景：#f4efe6） */

.stayQA__item{
  background: #f4efe6;
  border-radius: 26px;
  padding: 16px 24px 18px;
  box-sizing: border-box;
}

/* Q / A 行 */

.stayQA__row{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* A 行だけ区切り線 */
.stayQA__row--a{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(153, 153, 153, 0.35);
}

/* Q / A アイコン */

.stayQA__label{
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stayQA__label img{
  width: 40px;
  height: auto;
  display: block;
}

/* Q テキスト：26px / #514a44 */

.stayQA__question{
  flex: 1;
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #514a44;
  letter-spacing: 0.04em;
}

/* A テキスト：22px */

.stayQA__answer{
  flex: 1;
  margin: 0;
  font-size: 22px;
  line-height: 2.0;
  letter-spacing: 0.02em;
  color: #2b2b2b;
}

/* ---------------------------
   Responsive
---------------------------- */
@media screen and (max-width: 980px){
  .stay{
    padding-bottom: 70px;
  }

  .stay__icon{
    left: -70px;
    width: 52px;
  }

  .stayQA__item{
    padding: 14px 18px 16px;
  }

  .stayQA__label{
    flex-basis: 34px;
  }

  .stayQA__label img{
    width: 34px;
  }

  .stayQA__question{
    font-size: 24px;
  }

  .stayQA__answer{
    font-size: 20px;
  }
}

@media screen and (max-width: 767px){
  .stay{
    padding-bottom: 56px;
  }

  .stay__icon{
    left: -54px;
    width: 44px;
  }

  .stayQA{
    gap: 14px;
  }

  .stayQA__item{
    padding: 12px 12px 14px;
    border-radius: 20px;
  }

  .stayQA__label{
    flex-basis: 30px;
  }

  .stayQA__label img{
    width: 30px;
  }

  .stayQA__question{
    font-size: 20px;
    line-height: 1.7;
  }

  .stayQA__answer{
    font-size: 18px;
    line-height: 1.9;
  }
}

/* =========================================
   料金表
========================================= */

.price{
  position: relative;
  background: #edf5fc;
  padding: 0 0 80px;
}

/* 白 → 水色グラデーション */
.price__grad{
  height: 110px;
  background: linear-gradient(to bottom, #ffffff 0%, #edf5fc 100%);
}

.price__head{
  text-align: center;
  margin-bottom: 26px;
}

/* アイコン3つ並び */
.price__list{
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  justify-items: center;
}

.price__item{
  text-align: center;
  text-decoration: none;
}

.price__item img{
  display: block;
  max-width: 260px;   /* 画像の実寸を見ながら微調整OK */
  width: 100%;
  height: auto;
}

/* ---------------------------
   Responsive
---------------------------- */
@media screen and (max-width: 980px){
  .price{
    padding-bottom: 70px;
  }
  .price__list{
    gap: 24px;
  }
  .price__item img{
    max-width: 240px;
  }
}

@media screen and (max-width: 767px){
  .price{
    padding-bottom: 56px;
  }
  .price__list{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .price__item img{
    max-width: 260px;
  }
}

/* =========================================
   福祉有償運送のご案内
========================================= */

.welfare{
  position: relative;
  background: #ffffff;
  padding: 0 0 80px;
}

/* 水色 → 白グラデーション（上部 110px） */
.welfare__grad{
  height: 110px;
  background: linear-gradient(to bottom, #edf5fc 0%, #ffffff 100%);
}

.welfare__head{
  text-align: center;
  margin-bottom: 30px;
}

.welfare__headInner{
  position: relative;
  display: inline-block;
}

/* 見出し右側のピクトグラム */
.welfare__icon{
  position: absolute;
  right: -90px;           /* デザインを見ながら微調整OK */
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: auto;
  display: block;
}

/* 本文エリア */
.welfare__content{
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.welfare__pdf img{
  display: block;
  width: 130px;           /* 画像の実寸に合わせて調整OK */
  height: auto;
}

.welfare__text p{
  margin: 0;
  font-size: 22px;
  line-height: 2.0;
  letter-spacing: 0.02em;
  color: #2b2b2b;
}

/* ---------------------------
   Responsive
---------------------------- */
@media screen and (max-width: 980px){
  .welfare{
    padding-bottom: 70px;
  }

  .welfare__icon{
    right: -70px;
    width: 70px;
  }

  .welfare__pdf img{
    width: 120px;
  }
}

@media screen and (max-width: 767px){
  .welfare{
    padding-bottom: 56px;
  }

  .welfare__icon{
    right: -54px;
    width: 56px;
  }

  .welfare__content{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .welfare__text p{
    font-size: 18px;
    line-height: 1.9;
  }
}

/* =========================================
   アクセス
========================================= */

.access{
  position: relative;
  background: #edf5fc;
  padding: 0 0 90px;
}

/* 上部：白 → 水色グラデーション */
.access__grad{
  height: 110px;
  background: linear-gradient(to bottom, #ffffff 0%, #edf5fc 100%);
}

/* 見出し＋住所（左）／マップ（右）を横並び */
.access__inner{
  display: flex;
  align-items: flex-start; /* ← ここでトップ位置を揃える */
  gap: 48px;
}

/* 左カラム */
.access__left{
  flex: 0 0 360px;          /* 幅はデザインを見て調整OK */
}

/* 施設名の見出し */
.access__name{
  margin: 26px 0 16px;      /* 見出し「アクセス」との間隔 */
  font-size: 26px;
  font-weight: 700;
  color: #514a44;           /* 指定色 */
  letter-spacing: 0.04em;
}

/* 住所テキスト */
.access__text{
  margin: 0;
  font-size: 22px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: #000;
}

/* 右カラム：地図 */
.access__map{
  flex: 1 1 auto;
  max-width: 720px;
  border-radius: 28px;
  overflow: hidden;
}

/* iframe を枠いっぱいに */
.access__map iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 360px;        /* 旧ブラウザ向けの保険 */
  display: block;
  border: 0;
}

/* ---------------------------
   Responsive
---------------------------- */
@media screen and (max-width: 980px){
  .access{
    padding-bottom: 70px;
  }
  .access__inner{
    gap: 32px;
  }
  .access__left{
    flex-basis: 320px;
  }
}

@media screen and (max-width: 767px){
  .access{
    padding-bottom: 56px;
  }

  .access__inner{
    flex-direction: column;
  }

  .access__left{
    flex-basis: auto;
  }

  .access__name{
    font-size: 24px;
  }

  .access__text{
    font-size: 18px;
    line-height: 1.9;
  }

  .access__map{
    max-width: 100%;
    border-radius: 18px;
  }

  .access__map iframe{
    min-height: 280px;
  }
}
