@charset "UTF-8";

/*共通部分
-----------------------*/
html{
    font-size: 100%;
}
body{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  color: #333;
  caret-color: transparent;
  user-select: none;
  pointer-events: auto;
  padding-top: 29vh; /* ← site-header の高さに合わせて調整 */
}
h1, h2, h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body.no-scroll {
  overflow: hidden;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}

/*HEADER---------------------------*/
/* ヘッダー全体 */
.site-header {
  background: #fff;
  padding: 10px 5%;
  position: relative;
  height: 28vh;
  padding: 25px 0 0 25px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* 他要素より前面に出す */
  border-bottom: 1px solid #e5e3df; /* ほんのり生成り風のグレーベージュ */
  background-color: #fefefe; /* 背景色が透明だと下の要素が透けてしまうので注意 */
}

/* ロゴとハンバーガーを横並びに */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -20px; /* 空気感調整はここで */
}

/* 左側のロゴ＋住所＋電話など */
.header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 10px;  /* ← もしくは 0 に近い数値に調整 */
  padding-left: 40px; /* ← 左側の余白を追加（お好みで20〜40pxほど） */
}
.header-right {
  display: flex;
  align-items: center;
  gap: 40px;               /* ナビとアイコンの間隔 */
  justify-content: flex-end;
}

.logo {
  margin-top: 0;
  padding-top: 0;
}


/* ロゴ画像 */
.logo img {
  height: 40px;
  max-width: 160px;
  width: auto;
  margin-top: 0;
  display: block;
}

/* 駅・住所・電話などの情報 */
.header-info {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 10px;
  color: #444;
}
.header-info i {
  margin-right: 6px;
  color: #009fe9;
}
.header-info a {
  color: inherit;
  text-decoration: none;
}

/* ハンバーガーアイコン */
.nav-icon {
  width: 64px;
  height: 40px;
  margin-bottom: 4px;
  transition: opacity 0.3s ease;
  object-fit: contain;
}

/* ナビゲーションメニュー（ヘッダーの下） */
.main-nav {
  display: flex;
  gap: 24px;
  margin-left: auto; /* 👈 右に押し出す */
  margin-top: 5px;
}
.main-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 0.8rem;
}
.main-nav span {
  font-size: 1rem;       /* ← 視認性UP。元が0.8rem〜0.9remならこのくらいで自然に強調 */
  font-weight: 600;      /* ← 少し太くして見た目の安定感を */
  letter-spacing: 0.02em; /* ← 品よく余白を。必要に応じて追加 */
  color: #333;
}
.main-nav a span {
  color: #333; /* 通常色 */
  transition: color 0.3s ease;
}

.main-nav a:hover span {
  color: #009fe9; /* ホバー時の色（例えば温かみある黄土色） */
}
.nav-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a:hover .nav-icon {
  transform: rotate(-2deg); 
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* 軽く影を加えて浮き感 */
}


.hamburger-area {
  display: flex;
  flex-direction: column;  /* 👈縦並びにする */
  align-items: center;      /* 👈中央揃えにする */
  margin-left: 24px; /* 👈 ナビと距離を取る */
  margin-top: 0px;
  margin-right: 24px; 
  align-items: center;     /* ← 中央揃えで美しく */
  gap: 17px;                /* ← アイコンとテキストの“間”を調整。お好みで8px〜10pxでも◎ */
}
/* 必要に応じてボタンの余白も調整 */
/* アイコン自体の余白リセット */
.hamburger {
  width: 36px;       /* ← 元が28px〜32pxならこのくらいが自然な強調に */
  height: 30px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* アイコンのフォントサイズやマージンが原因の場合 */
.hamburger i {
  font-size: 36px;       /* ← 存在感あるサイズに（元が16px前後のことが多い） */
  color: #333;           /* ← 色の濃さでも視認性UP。必要に応じて調整 */
  transition: all 0.3s ease;
}

.menu-label {
  font-size: 1rem;       /* ← “MENU” 表示も一緒に調整すると統一感◎ */
  font-weight: 600;
  font-weight: bold;
  font-size: 1rem;
  margin-right: 18px;
  margin-top: 0;     /* ← テキストの余計なマージンを消してgapの効果を活かす */
}

.hamburger-area .menu-label {
  color: #333;
  transition: color 0.3s ease;
}

.hamburger-area:hover .menu-label {
  color: #009fe9; 
}




/* オーバーレイ全体 */
/* 閉じるボタン */
#closeMenu {
  position: absolute;
  top: 20px; right: 20px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
}
#closeMenu i {
  font-size: 48px;
}
#closeMenu:hover {
  transform: scale(1.1);
  color: #f9fab0;
}
.close-btn:hover {
  transform: rotate(90deg);
  color: #f9fab0;
}

/* メニュー：3列グリッド */
.overlay-nav {
  position: fixed;
  max-width: none;        /* ← 制限をなくす */
  padding: 0;             /* ← 内側の余白をリセット */
  margin: 0;              /* ← 必要なら margin も消す */
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 159, 233, 0.96); 
  display: none;
  z-index: 9999;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-top: 1px solid rgba(0, 159, 233, 0.15);
  border-bottom: 1px solid rgba(0, 159, 233, 0.15);
}

.overlay-nav.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 1;
}

.overlay-nav .menu-columns-3 {
  display: flex;
  gap: 100px;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-top: 60px;
}

.overlay-nav .column {
  min-width: 200px;
}

.overlay-nav .column-inner {
  display: flex;
  flex-direction: column;
  padding: 0;
  padding-left: 0;
  margin-left: 0;
  list-style: none;
  margin: 0;
}

/*---info--*/
.info-box {
  background-color: #ffffff;   /* ← 薄い黄色系（コーンシルク） */
  border-radius: 8px;          /* ← 角をやさしく丸く */
  padding: 16px;               /* ← 中の余白を広げて読みやすく */
  border: 1px solid #ffffff;   /* ← 薄めの枠で引き締め効果も */
}
.info-box h3 {
  color: #009fe9; /* ← ブラウン系で信頼感と温もりを演出 */
  font-size: 1.3rem;
  font-weight: 600;
}
.info-box p {
  color: #009fe9; /* ← ブラウン系で信頼感と温もりを演出 */
}




/* 各メニュー項目（上下線あり・枠なし） */
.overlay-nav .column-inner li {
  border-top: 0.6px solid rgba(255, 255, 255, 0.8);  /* ← 白色（やや薄め） */
  border-bottom: 0.6px solid rgba(255, 255, 255, 0.8);
  padding: 1em 0;
  font-size: 1.1rem;
  color: #333;
  background: none;
  box-shadow: none;
  border-radius: 0;
  text-align: left;
  transition: background-color 0.3s ease;
  min-width: 220px;  /* ← 各項目の最小幅を指定（必要に応じて調整） */
}

/* リンクと矢印 */
.overlay-nav .column-inner li a {
  display: flex;             
  padding: 12px 24px;         /* ← 上下左右にゆったりとした余白を追加*/
  justify-content: space-between; /* 左右に配置 */
  align-items: center;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transform: none;
}

/* 矢印（右寄せ） */
.overlay-nav .arrow {
  color: #fff;
  font-size: 1rem;
  margin-left: 50px;  /* ← 少しだけスペースを足す */
  flex-shrink: 0; /* 矢印が縮まないように */
}
/* 🧵 カーソル乗った時に矢印だけがふわっと動く */
.overlay-nav .column-inner li a:hover .arrow {
  transform: translateX(4px);
}
.overlay-nav .column-inner li a:hover {
  color: #f0f0f0; 
  background-color: transparent; /* ← 背景もそのまま */
}

/* インフォメーション枠 */
.overlay-nav .info-box {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 1em;
  color: #333;
}
.overlay-nav .info-box p {
  margin: 6px 0;
}




/* 共通スタイルで揃える */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}


/*------↑ここまでがベース一緒の部分↑--------
-----------------------------------------*/



/* 全体共通：テキスト中央寄せ */
section {
  text-align: center;
}

/* タイトルも中央揃えを明示 */
.section-title {
  text-align: center;
}
.adjustment.wrapper {
  display: flex;                /* ← タイトルと画像を並べる構造を破棄したい場合は外してもOK */
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
}

.adjustment.wrapper h2.section-title {
  margin-bottom: 1.2rem;        /* ← ちょっと余白を広げてみる */
  font-size: 1.5rem;            /* ← 必要なら文字サイズでバランス調整 */
  text-align: center;
}



.adjustment img {
  width: 160px; /* さらに少し小さめに */
  display: block;
  margin: 1.5em auto 0.5em; /* h3との間に1.5emの余白、下は0.5emでテキストを近づける */
}

.adjustment h3 {
  margin-bottom: 1.5em; /* 画像との間に余白を追加 */
}

.adjustment p {
  margin-top: 0;
  text-align: center;
  font-size: 1rem;
  color: #333;
}




/*-------------------------------------------
マップ
-------------------------------------------*/
#access {
  padding: 3px 3%;
  background-color: #f5f5f5;
  margin-top: 0;
}

.access-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
  padding: 0 20px;
  gap: 20px; /* 必要に応じて余白を調整 */
}

.info {
  flex: 1 1 45%;
  min-width: 250px;
  font-size: 1rem;
  color: #333;
  margin-left: 80px;
  margin-top: 30px;
  text-align: left;
}

.info h3 {
  font-size: 25px;
  font-weight: bold;
  margin-top: 8px;
  margin-bottom: 3px;
}

.info p {
  font-size: 18px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.map {
  flex: 0 0 450px; /* ← 横幅を狭く固定（例：260px） */
  height: 290px;   /* ← 縦も控えめにして空間にゆとりを */
  margin-top: 20px;
  margin-right: 50px;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 8px;
}


/* フッター
------------------------------------*/
footer {
  background-color:rgb(0, 160, 233);
  text-align: center;
  padding:26px 0;
}
footer p {
  color: #fff;
  font-size: 0.875rem;
}

/* 当店にてうい記事部分 */
article {
  width: 74%;
}

/* サイドバー */
aside {
  width: 22%;
}
.about-contents {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.post-info {
  position: relative;
  padding: 4px;
  margin-bottom: 40px;
}
.post-date {
  background: rgb(255, 145, 85);
  border-radius: 50%;
  color: #fff;
  width: 100px;
  height: 100px;
  font-size: 1.625rem;
  text-align: center;
  position: absolute;
  top: 0;
  padding-top: 10px;
}
.post-date span {
  font-size: 1rem;
  border-top: 1px rgba(255,255,255,.5) solid;
  padding-top: 6px;
  display: block;
  width: 60%;
  margin: 0 auto;
}
.post-title {
  font-family: "Yu Mincho","YuMincho",serif;
  font-size: 2rem;
  font-weight: normal;
}
.post-title,
.post-cat {
  margin-left: 120px;
}
article img {
  margin-bottom: 20px;
}
article p {
  margin-bottom: 1rem;
}
.sub-title {
  font-size: 1.375rem;
  padding: 0 8px 8px;
  border-bottom: 2px #0bd solid;
  font-weight: normal;
}
aside p {
  padding: 12px 10px;
}
.sub-menu {
  margin-bottom: 60px;
  list-style: none;
}
.sub-menu li {
  border-bottom: 1px #0ddd solid;
}
.sub-menu a {
  color: #432;
  padding: 10px;
  display: block;
}
.sub-menu a:hover {
  color: #0bd;
}



/*-------------------------------------------
フッター
-------------------------------------------*/
footer {
  background: #ececed;
  text-align: center;
  padding: 23px 0;
}
footer p {
  color: #222323;
  font-size: 0.875rem;
}

  /*-------------------------------------------
  ヘッダー
  -------------------------------------------*/

  /* ハンバーガ―メニュー */
.hamburger {
  font-size: 2rem;
  color: #333;                      /* ← 通常時の色 */
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  background-color: transparent;   /* ← 背景色なしに */
  position: relative;
  z-index: 1001;
  transition: all 0.3s ease;
  margin-right: 20px; /* ← 位置の調整はmarginで */
  transform: none;    /* ← 位置指定で揺れないように */
}
.hamburger.active {
  transform: none;             /* ← 開いた時にズレないように */
}


/* 🌀 ホバー時：青くなる */
.hamburger:hover i {
  color: #009fe9;
}


  .hamburger i::before {
  content: "\f0c9"; /* fa-bars */
}
  .hamburger.active i::before {
  content: "\f00d"; /* fa-times（×） */
}

  
  /*-------------------------------------------
  フッター
  -------------------------------------------*/
    #footer a {
    font-size: 0.75rem;
  }
  #footer .inner .title {
    font-size: 0.9375rem;
  }
  #footer .inner > li {
    width: 50%;
  }
  #footer .inner > li:nth-child(1),
  #footer .inner > li:nth-child(2) {
    margin-bottom: 30px;
  }



