@charset "UTF-8";
.mission-title .title-top{
  display: block;
  margin-bottom: 5px;
  font-size: 1.7rem;
  line-height: 1.0rem;
  color:#4ABFBF;
}

.mission-title.title-bold{
  font-weight: 600;
  margin-bottom: 0;
}


.sub-page-title {
  display: inline-block;
  font-size: 2.4rem;
  line-height: 2.4rem;
  padding: 30px 0;
  position: relative;
}

.sub-page-title::before,
.sub-page-title::after {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ffffff;
  border-radius: 1px;
  box-shadow: 0 0 1px #000,
    0 0 4px #000,
    0 0 8px #000,
    0 0 12px #000;
  ;
}

.sub-page-title::before {
  top: 18px;
}

.sub-page-title::after {
  bottom: 18px;
}

.page-title .title-name {
  font-size: 1.7rem;
  line-height: 1;
  padding-bottom:0px;
}


@media screen and (min-width: 769px) {
  .sub-page-title {
    font-size: 3.2rem;
    line-height: 3.2rem;
  }

  .sub-page-title::before {
    top: 14px;
  }

  .sub-page-title::after {
    bottom: 14px;
  }

  .page-title .title-name {
    padding-bottom: 50px;
  }
}

h2 .title-under-bar {
  border-bottom: 3px solid #4ABFBF;
  padding-top: 8px;
  padding-bottom: 3px;
}

.blog-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 30px;
  box-sizing: border-box;
}

@media screen and (min-width: 769px) {
  .blog-img {
    margin-top: 40px;
  } 
}


.blog-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.blog-list{
  width:100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 16px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  background: rgba(127, 200, 200,0.3);
  border: 1px solid rgba(127, 200, 200);
  list-style: none;
  /* デフォルトの点を消す */
  padding: 20px 30px;
  /* ボックス内の余白を広げる */
  margin: 0;
  margin-top: 24px;
}

/* 各項目の調整 */
.blog-list li {
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: calc(16px + 1.8em);
  /* アイコンを置くスペース */
  /* 行間を広げて読みやすく */
  line-height: 1.6;
  color: #333;
  /* 文字色を少し濃くして視認性アップ */
  font-weight: 500;
  /* ほんの少し太くして強調 */
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* 緑のチェックアイコンを追加 */
.blog-list li::before {
  content: '✔';
  /* チェックマーク */
  position: absolute;
  left: 16px;
  color: #72c1b4;
  /* フッターに近いグリーン系 */
  font-weight: bold;
  font-size: 1.1em;
}

.blog-text{
  margin-top: 30px;
}

.blog-contact{
  margin-top: 30px;
  background: linear-gradient(to right, rgba(100, 160, 160, 1) 0%, rgba(110, 180, 180, 1) 50%, rgba(127, 200, 200, 0.8) 100%);
  padding: 60px 24px;
  border-radius: 16px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  color:#ffffff;
  font-weight: 500;
}

.contact-cta.blog-btn{
  margin-top: 30px;
}

@media screen and (min-width: 769px) {
  .blog-contact{
    margin-top: 40px;
  }

  .blog-text{
    margin-top: 40px;
  }
   
}

.blog-grid{
  display: grid;
  grid-template-columns: repeat(1, minmax(100px, 1fr));
  width: 100%;;
  margin-top: 30px;
  overflow: hidden;
  gap: 20px;
}

@media screen and (min-width: 769px) {
  .blog-grid{
    margin-top: 40px;
  }  
}

.blog-grid .grid-img{
  width:100%;
  height: auto;
  aspect-ratio: 11/5;
  object-fit: cover;
  box-sizing: border-box;
  border-radius: 16px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.grid-img.border{
  border: 1px solid rgba(127, 200, 200);
}

@media screen  and (min-width: 769px) {
  .blog-grid  {
  grid-template-columns: repeat(2, minmax(100px, 1fr));
}
}

/* ========== HABITS ========== */
.habit-list {
  display: grid;
  gap: 22px;
  margin: 32px 0;
}

.habit-card {
  background: #ffffff;
  border: 1.5px solid rgba(90, 138, 122, 0.28);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 18px rgba(61, 107, 92, 0.15);
}

.habit-card-header {
  background: linear-gradient(135deg, #eaf3f0, rgba(194, 219, 212, 0.4));
  border-bottom: 1.5px solid rgba(90, 138, 122, 0.28);
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

@media (min-width: 796px) {
  .habit-card-header {
    flex-direction: row;
    align-items: center;
  }
}

.habit-num {
  color: #ffffff;
  letter-spacing: 0.1em;
  font-size: 11px;
  background: #c9873a;
  padding: 5px 14px;
  border-radius: 12px;
  white-space: nowrap;
  font-weight: 700;
}

.habit-title {
  font-weight: 700;
  color: #1a2b28;
}

.habit-body {
  padding: 20px 24px;
  color: #2d4540;
  line-height: 1.9;
}

.habit-body strong {
  color: #264840;
}

.blog-scroll-area {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 16px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);

}



.blog-scroll-bg {
  position: absolute;
top: -30%;
  left: 0;
  /* 初期状態を中央に */
  width: 100%;
  height: 150%;
  background-size: cover;
  background-position: center;
    /* これを追加 */
  background-position: center;
  z-index: -1;
  background:url(images/sekichu-koritsukin.jpg) center / cover no-repeat;
  will-change: transform;
}



.blog-scroll-content {
  width: 100%;
  padding:40px 24px;
  height: 120%;
  position:relative;
  z-index: 2;
  overflow: hidden;
} 

.blog-point-text{
  background: linear-gradient(to right, rgba(100, 160, 160, 0.8) 0%, rgba(110, 180, 180, 0.8) 50%, rgba(127, 200, 200, 0.8) 100%);
  border-radius: 16px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  padding: 24px;
  color: #2c3e50;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 2.4rem;
}

.blog-top{
    background:linear-gradient(to right, rgba(100, 160, 160, 0.8) 0%, rgba(110, 180, 180, 0.8) 50%, rgba(127, 200, 200, 0.8) 100%);
    border-radius: 16px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin-top: 30px;
    color:#1a3a4a;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.blog-contact-w{
  font-family: 'Yu Mincho', '游明朝', 'Hiragino Mincho ProN', 'HGS明朝E', serif;
  display: flex;
  flex-direction: column;
  padding:60px 24px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(100, 160, 160, 1) 0%, rgba(110, 180, 180, 1) 50%, rgba(127, 200, 200, 1) 100%);
  text-align: center;
}

.blog-contact-w h2{
  font-size: 2.4rem;
  line-height: 2.4rem;
  font-weight: 600;
  color:#ffffff;
  letter-spacing: 0.15em;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.blog-contact-w span{
  color:#f0c080;
  display: block;
  padding-top:20px;
}

.blog-contact-w .text{
  color:#ffffff;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.blog-contact-in{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap:30px;
  align-items: center;
  justify-content: center;;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .blog-contact-w h2{
    font-size: 3.6rem;
    line-height: 3.6rem;
  }

  .blog-contact-in{
    flex-direction: row;
    gap: 50px;
  }
}

/* プロフィールセクション全体の余白 */
.profile-section {
  padding: 60px 24px 0;
  max-width: 780px;
  /* コンテナサイズに合わせる場合 */
  margin: 0 auto;
  font-family: 'Noto Serif JP', serif;
}

@media screen and (min-width: 769px){
  .profile-section{
    padding:60px 0 0;
  }
}

/* カード外枠 */
.profile-card {
  background: #fff;
  border: 1px solid #d4c4a8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* ヘッダー部分（濃茶の背景） */
.profile-card-header {
  background: linear-gradient(135deg, #2c1f14 0%, #3d2910 100%);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-card-header span {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #c9a84c;
}

/* ボディ部分のレイアウト */
.profile-card-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 28px;
  align-items: start;
}

/* アバター・写真エリア */
.profile-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c4722a, #2c1f14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border: 3px solid #c9a84c;
  overflow: hidden;
  flex-shrink: 0;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.profile-photo-note {
  font-size: 10px;
  color: #7a6a5a;
  text-align: center;
}

/* テキスト情報 */
.profile-name {
  font-family: 'Zen Old Mincho', serif;
  font-size: 22px;
  font-weight: 900;
  color: #2c1f14;
  margin-bottom: 4px;
  margin-top: 0;
}

.profile-title {
  font-size: 13px;
  color: #8b4513;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

/* 箇条書きリスト */
.profile-info-list {
  list-style: none;
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.profile-info-list li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: #7a6a5a;
  line-height: 1.6;
}

.profile-info-list li strong {
  color: #2c1f14;
  min-width: 55px;
  flex-shrink: 0;
}

/* 紹介文 */
.profile-description {
  margin-top: 14px;
  font-size: 13.5px;
  color: #7a6a5a;
  line-height: 1.8;
}

/* レスポンシブ対応（スマホ表示） */
@media (max-width: 520px) {
  .profile-card-body {
    grid-template-columns: 1fr;
  }

  .profile-avatar-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }
}

/* ========== 営業時間テーブル + 地図 ========== */

.blog-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 30px;
}

@media screen and (min-width: 769px) {
  .blog-table-wrapper {
    margin-top: 40px;
  }
}

/* テーブル本体 */
.blog-business-hours-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 1.4rem;
}

/* ヘッダー行 */
.blog-business-hours-table thead tr {
  background: linear-gradient(to right,
      rgba(100, 160, 160, 1) 0%,
      rgba(110, 180, 180, 1) 50%,
      rgba(127, 200, 200, 0.8) 100%);
}

.blog-business-hours-table thead th {
  color: #ffffff;
  font-weight: 600;
  padding: 14px 10px;
  text-align: center;
  letter-spacing: 0.05em;
  border: none;
}

/* ボディ行 */
.blog-business-hours-table tbody tr {
  background: #ffffff;
  border-bottom: 1px solid rgba(127, 200, 200, 0.4);
}

.blog-business-hours-table tbody tr:last-child {
  border-bottom: none;
}

/* ラベルセル（昼間・夜間） */
.blog-business-hours-table td {
  padding: 14px 10px;
  text-align: center;
  color: #333;
  font-weight: 500;
  border-left: 1px solid rgba(127, 200, 200, 0.3);
}

.blog-business-hours-table td:first-child {
  border-left: none;
  background: rgba(127, 200, 200, 0.12);
  font-weight: 600;
  color: #2d4540;
  letter-spacing: 0.05em;
}

/* ○：営業 */
.blog-business-hours-table td.on {
  color: #4ABFBF;
  font-weight: 700;
  font-size: 1.6rem;
}

/* ×：休業 */
.blog-business-hours-table td.off {
  color: #aaaaaa;
  font-size: 1.4rem;
}

/* △：特別 */
.blog-business-hours-table td.special {
  color: #c9873a;
  font-weight: 700;
  font-size: 1.6rem;
}

/* 注釈テキスト */
.blog-table-footer {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
}

.blog-table-footer+.blog-table-footer {
  margin-top: 4px;
}

/* ========== 地図カラム ========== */

.blog-map-column {
  width: 100%;
  margin-top: 24px;
}

@media screen and (min-width: 769px) {
  .blog-map-column {
    margin-top: 32px;
  }
}

.blog-map-iframe-wrapper {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(127, 200, 200, 0.6);
}

@media screen and (min-width: 769px) {
  .blog-map-iframe-wrapper {
    height: 400px;
  }
}

.blog-map-iframe-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.section-small-top{
  margin-top: 24px;
}

@media screen and (min-width: 769px) {
  .section-small-top{
   margin-top: 32px;
  }
}

.blog-point {
  padding: 24px 32px;
  border: 2px solid #4ABFBF;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-point .text {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 2.0rem;
  font-weight: 600;
  color: #1a2b28;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.blog-point .text::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ABFBF;
  flex-shrink: 0;
}