.section p,
.pdf-list__link,
.place-name,
.tel{
  font-size:1.2rem;
}

/* =========================
フォント
========================= */

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700&display=swap');


/* =========================
ベース
========================= */

body{
  font-family:"M PLUS Rounded 1c", sans-serif;

  background-image:url("../assets/img/bg_paper.png");
  background-size:cover;
  background-position:center;
  background-attachment:fixed;

 color:#666;
  line-height:1.7;
}


/* =========================
レイアウト
========================= */

.container{
  max-width:1000px;
  margin:auto;
  padding:0 20px;
}

.container.narrow{
   max-width:900px;
}


/* =========================
ヘッダー
========================= */



.topbar{
  width:100%;
  height:200px;

  background:url("../assets/img/header.png") center / cover no-repeat;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;
}

.topbar__line{
  color:#6d71c2;
  font-weight:700;

  text-shadow:
  -4px 0 #fff,
   4px 0 #fff,
   0 -4px #fff,
   0 4px #fff,
  -4px -4px #fff,
   4px -4px #fff,
  -4px 4px #fff,
   4px 4px #fff;
}

.topbar__line:first-child{
  font-size:20px;
}

.topbar__line:last-child{
  font-size:50px;
}


/* =========================
ヒーロー画像
========================= */

.hero{
  padding:30px 0 5px; 
}

.hero img{
  width: min(80%, 800px); /* ←サイズ調整 */
  border-radius:20px;
  display:block;
  margin: 0 auto;

  border: 6px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* =========================
セクション
========================= */

.section{
 padding:25px 0;
}


/* =========================
セクションタイトル
========================= */

.section__title{
  border:3px solid #8ecf9c;
  background:#fff;

  color:#2f8c48;
  border-radius:12px;
  padding:10px 16px;
  font-size:20px;
  font-weight:700;
  margin-bottom:20px;
}
/* =========================
中央揃え
========================= */
.message {
  text-align: center;
  padding: 10px 0 40px; /* ←上だけ減らす */
}

.message__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.message__text {
  font-size: 16px;
  line-height: 1.8;
}


.message__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.message__title::after {
  content: "";
  display: block;
  width:160px;
  height: 2px;
 background: #2f8c48;;
  margin: 8px auto 0;
}



/* =========================
サブ見出し
========================= */

.subhead{
  border:3px solid #8ecf9c;
  border-radius:12px;
  padding:8px 14px;
  margin-bottom:25px;
  font-weight:700;
  color:#2f8c48;
}


/* =========================
PDFリスト
========================= */

.pdf-list{
  margin-top:10px;
}

.pdf-list__item{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.pdf-list__icon{
  font-size:15px;
  background:#e60012;
  color:#fff;
  padding:6px 8px;
  border-radius:4px;
}

.pdf-list__link{
 color:#666;
  border-bottom:2px solid #8ecf9c;
  padding-bottom:2px;

  font-size:1.3rem;
  font-weight:600;
}

.pdf-list__link:hover{
  opacity:.7;
}


/* =========================
画像ブロック
========================= */

.image-block{
  text-align:center;
  margin:30px 0;
}

.image-block__img{
  max-width:100%;
}


/* =========================
トップへ戻る
========================= */

.to-top{
  text-align:right;
  margin-top:20px;
}
.to-top__link{
  background:#7cc48c;
  color:#fff;
  padding:8px 14px;
  border-radius:10px;
  font-size:14px;
  display:inline-block;

  transition:all 0.25s ease;
}

.to-top__link:hover{
  background:#6ab57c;
  transform:translateY(-3px);
  box-shadow:0 6px 12px rgba(0,0,0,0.15);
}
.to-top__link:hover{
  transform:translateY(-3px) scale(1.05);
}

.to-top__link:active{
  transform:translateY(0);
  box-shadow:none;
}

html{
  scroll-behavior:smooth;
}


/* =========================
アクセス
========================= */

.place-name{
  font-weight:700;
  margin-bottom:12px;
}

.tel{
  margin-bottom:20px;
}

.tel__row{
  display:flex;
}

.tel__label{
  width:60px;
}

.map iframe{
  width:100%;
  height:260px;
  border-radius:10px;
}


/* =========================
フッター
========================= */

.footer{
  width:100%;
  height:200px;

  background:url("../assets/img/footer.png") center / cover no-repeat;

  margin-top:40px;
}

