@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;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .overlay-nav .menu-columns-3 {
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }

  #closeMenu {
    top: 16px;
    right: 16px;
  }
}


/* 共通スタイルで揃える */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}


/*----------------------------
セクション全体のスタイル
----------------------------*/
.section {
  padding: 4em 2em;
  background-color: #f9f7f3;
  border-bottom: 2px solid #2e2e2e;
}

.section-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 1.8rem; /* 少し小さめに調整（お好みで1.1rem〜1.3rem） */
  font-weight: bold;
  margin-bottom: 1em;
  color: #333;
  margin-top: 0;        /* 余白をなくして近づける */
  padding-top: 8px;    /* 必要なら少しだけ余白を確保 */
}

/*----------------------------
会社紹介など文章領域のベース
----------------------------*/
.about-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1em;
  color: #333;
  line-height: 1.8;
}

/*----------------------------
横並びレイアウトの親要素
----------------------------*/
.greeting-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2em;
  width: 100%;
  max-width: none;
  width: 100%;
  margin: 0 auto;
  text-align: left;     
  padding-left: 40px;      /* 左余白を調整して、文字が余裕ある位置に */
  padding-right: 40px; 
  box-sizing: border-box;
}

/*----------------------------
メッセージ側
----------------------------*/
.greeting-message {
  flex: 0 0 420px;
  max-width: 420px;
  margin: 0;
  padding: 2em;
  font-size: 1.05em;
  line-height: 1.8;
  color: #333;
  background-color: transparent;
  box-shadow: none;
  border-left: none;
  text-align: left;
  flex: 1 1 60%;          /* 幅を広めに確保（必要なら70%などに変更） */
  min-width: 500px;       /* 折れない最低幅を指定 */
  word-break: keep-all;   /* 単語の途中で改行されるのを防ぐ */
  white-space: normal;    /* 通常の改行ルールに戻す（念のため） */
  margin-top: -78px;     /* 上に寄せる（数値は好みで調整） */
}

.greeting-message p {
  margin: 0;
  padding-left: 10px;   /* 余白を調整するだけでも印象が変わる */
}

/*----------------------------
写真側（画像＋キャプション）
----------------*/
.greeting-photo {
  flex: 0 0 50%;
  max-width: 420px;
  margin: 0;
  padding: 20px 0;
  text-align: center;
  margin-top: 30px;
}

.greeting-photo img {
  width: 100%;      /* 可能なら全幅に広げる */
  max-width: 800px; /* 拡大しすぎないように上限を設定 */
  height: auto;     /* 縦横比を保ったまま拡大 */
  display: block;
  margin: 24px auto;
  margin-top: -8px;
}

.photo-caption {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 1em;
  text-align: center;  /* 中央揃え（必要なら） */
}
/*------概要----*/
.sub-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.8em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em;
  color: #333;
  border-bottom: 2px solid #2e2e2e; /* 下線を同じ色・太さで追加 */
  padding-bottom: 0.3em;            /* 下線との間に余白を */
  display: inline-block;            /* 中央揃え＋文字幅にフィットさせる */
}


.summury {
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: transparent; /* ← 背景色を消して余白にちらしが見えるようにする */
  padding: 50px 300px; /* ここが余白＝ちらしが流れる領域 */
}


.chirashi-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  display: flex;
  gap: 60px;
  animation: scrollChirashi 90s linear infinite;
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
}

.chirashi-background img {
  height: auto;               /* 画像の高さは自然サイズに任せる */
  max-height: 160px;          /* 上限をつけて大きくなりすぎないように */
  object-fit: contain;        /* 縦横比を保って流れるように表示 */
  filter: none;               /* フィルターを削除 → 原色表示へ */
}


@keyframes scrollChirashi {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.summury-inner {
  position: relative;
  z-index: 1;
}

.table-wrapper {
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.shop-info-table {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: transparent; /* ← テーブル全体は透明 */
  z-index: 1;
  position: relative;
  font-size: 0.95em;
}

.shop-info-table th,
.shop-info-table td {
  padding: 0.8em 1em;
  border: 1px solid #ccc;
  background-color: #fff; /* ← セル個別に白背景を適用 */
  color: #333;
  vertical-align: top;
}

.shop-info-table th {
  background-color: #f9f7f3; /* ← 温かみのある白で見出しセルは少し変化 */
  font-weight: normal;
  width: 35%;
}


.shop-info-table th {
  background-color: #f5f3f0;
  width: 35%;
  color: #555;
  font-weight: normal;
}


a:hover {
  text-decoration: underline;
}


@media (min-width: 900px) {
  .greeting-layout {
    display: flex !important;
    flex-direction: row !important;
  }
}


/*------------------------------------------
バナーセクション（2段レイアウト対応）
------------------------------------------*/
.organization-banners {
  margin-top: 3em;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1em;
}

.organization-banners h3 {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #333;
  border-bottom: 1px solid #ccc;
  display: inline-block;
  padding-bottom: 0.4em;
}

.banner-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.banner-row img {
  max-width: 180px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

/* 低くしたいバナーだけ指定 */
.banner-row img[src*="ZENSHICHI.jpg"],
.banner-row img[src*="TOSHICHIREN.jpg"] {
  height: 45px;
  margin-top: 2px;
  margin-bottom: 2px;
}
/* 低くしたいバナーだけ指定 */
.banner-row img[src*="SHINAGAWHOJIN.jpg"],
.banner-row img[src*="SHICHIMARU.jpg"]{
  height: auto;
  margin-top: 2px;
  margin-bottom: 2px;
}

/* ズーム効果 */
.banner-row img:hover {
  transform: scale(1.05);
}

.banner-note {
  font-size: 0.9em;
  color: #666;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-top: 0.5em;
}



/*-------------------------------------------
マップ
-------------------------------------------*/
#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;
}

.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;
}









/* 通常のスタイル（PCなど広めの画面用） */
.greeting-message {
  min-width: 500px;
  font-size: 1rem;
}

/* レスポンシブ対応：画面幅が狭いとき用 */
@media (max-width: 768px) {
  .greeting-message {
    min-width: auto;
    font-size: 0.95rem;
    padding-left: 20px;
    padding-right: 20px;
  }
}
