@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 p {
  font-size: 1.1rem;
  line-height: 2;
  color: #333;
  margin-bottom: 1.5em;
  max-width: 800px;
  margin: 0 auto;
}

/* タイトルも中央揃えを明示 */
.section-title {
  text-align: center;
}


/*---導入部分---*/
.shichi-intro {
  padding: 40px 5% 50px 5%; /* ← 元の60pxずつから上下を少し詰めました */
  background-color: #fefefe;
  text-align: center;
  width: 100%;
}

.shichi-intro h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #333;
}

.shichi-intro p {
  font-size: 1.125rem;
  line-height: 2;
  color: #333;
}

/*---質屋とは---*/
.about-shichiya {
  padding: 60px 5%;
  background-color: #f8f8f8;
  text-align: center;
  padding: 19px 5% 19px 5%; 
  max-height: 180vh;
  overflow-y: auto;
}

.about-shichiya .section-title {
  margin-top: 0;
  margin-bottom: 0.5em; /* ← こちらにだけ調整を集約する */
}

.about-shichiya h2 {
  margin-bottom: 0; /* ← セクションタイトル側で調整済みなのでゼロに */
}


.about-shichiya p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #333;
  max-width: 1000px;
  margin: 0 auto 0.3em auto; /* ←ここを1emに */
  text-align: left;       /* ← インデントは left にすることで効くようになる */
  text-indent: 1em;       /* ← 段落頭を揃えるインデント */
  margin-left: calc(40% - 350px); /* ← 中央から始まるような位置指定 */
}

.about-shichiya p:last-of-type {
  font-size: 1.25rem;       /* ← 文字を大きく */
  line-height: 2;           /* ← ゆったりとした余白 */
  margin-bottom: 1.5em;     /* ← 少し余白を広げて強調 */
  font-weight: bold;        /* ← 文章に重みを持たせる */
  color: #333;
}

/*---消費者金融との違い---*/
.shichiya-vs-cashing {
  padding: 50px 5% 50px 5%;      /* ← about-shichiyaと同じ余白に統一 */
  background-color: #fffdf8;
  text-align: center;
  max-height: none;
  overflow-y: auto;
}

.shichiya-vs-cashing .section-title {
  margin-top: 0;
  margin-bottom: 0.5em;         /* ← 同じく調整をここに集約 */
}

.shichiya-vs-cashing h2 {
  margin-bottom: 0;             /* ← セクションタイトル側で調整済みなのでゼロに */
}

.shichiya-vs-cashing p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #333;
  max-width: 1100px;
  margin: 0 auto 0.3em auto; /* ←ここを1emに */
  text-align: left;       /* ← インデントは left にすることで効くようになる */
  text-indent: 1em;       /* ← 段落頭を揃えるインデント */
  margin-left: calc(40% - 400px); /* ← 中央から始まるような位置指定 */
}

.shichiya-vs-cashing p:last-of-type {
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 1.5em;
  font-weight: bold;
  color: #333;
}



/*--- ご利用の流れ（横3分割構成） ---*/
.step-text-block {
  display: flex;
  flex-direction: column;   /* ← 縦並びにしておく */
  align-items: flex-start;  /* ← 左寄せにする（中央寄せなら center） */
  text-align: left;
}


.step-intro {
  font-weight: bold;
  margin-bottom: 0.6em;
  margin-left: 1.5em;      /* ← padding → margin に変更して余白調整 */
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}


.step-list {
  list-style: disc;
  margin-left: 2em;         /* 箇条書きの基本インデント */
  margin-bottom: 1.2em;     /* 後続要素との余白調整（必要なら） */
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-list li {
  margin-bottom: 0.4em;     /* リスト項目同士の隙間をやさしく設ける */
}



.step-title,
.step-image,
.step-list {
  margin-block: auto; /* ブロック方向に自動余白＝縦方向中央揃え */
}

.step-intro {
  font-weight: bold;
  margin-bottom: 0.4em;
  padding-left: 1.2em;
  color: #333;
}

.step-image {
  width: auto;
  max-width: 100%;
  overflow: visible;
}

.step-image img {
  width: 90px;
  height: auto;           /* cover → auto に変更して自然なサイズに */
  object-fit: contain;
}
.step-text-block {
  display: block;
  width: 100%;
  flex: 1;                 /* ← 横並び時に自然な余白配分ができる */
}

.step-intro {
  margin-left: 0;          /* ← margin/paddingを一旦リセットして調整し直す */
  padding-left: 0;
}


.flow-vertical.wrapper {
  max-width: 1050px;     /* ← 全体の横幅を制限（お好みで700〜900px） */
  margin: 0 auto;       /* ← 中央寄せの基本設定 */
  padding: 1em;         /* ← スマホでも余白を確保するためのゆるめの内側余白 */
}


.flow-vertical .step-flex {
  display: flex;
  align-items: flex-start;
  gap: 1.5em;
  margin-bottom: 2em;
  padding: 1.5em 1em;
  border-left: none;
  background-color: #f5f5f5;
  border-radius: 8px;
}

/* STEP番号＋タイトル */
.flow-vertical .step-title {
  display: flex;
  flex-direction: column;
  min-width: 80px;
  justify-content: center; /* ← 外枠の縦中央に配置 */
  margin-left: 1.5em;      /* ← 左側に余白を増やす（お好みで調整可能） */
  height: 100%;            /* ← 外枠の高さにフィットするよう設定 */
}


.flow-vertical .step-title h3 {
  font-size: 1rem;
  margin-bottom: 0.3em;
  color: #333;
}

.flow-vertical .step-title span {
  font-size: 1.2rem;
  color: #333;
  margin-top: -0.2em;
}

/* 画像パート */
.flow-vertical .step-image img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-top: 0.2em;
}

/* 説明リスト */
.flow-vertical .step-list {
  list-style: disc;
  padding-left: 1.4em;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}






/*--注意事項--*/
.notes .section-title {
  display: inline-flex;         /* タイトルとアイコンを横並びにしつつ、inlineのように扱う */
  align-items: center;
  justify-content: center;      /* アイコン＋テキストを中央寄せ */
  font-size: 1.5em;
  color: #db503d;
  border-bottom: 2px solid #db503d;
  padding-bottom: 0.2em;
  text-align: center;
}
.notes.wrapper {
  text-align: center;           /* セクション全体の中央配置にも貢献 */
  margin-top: 0.8em;
  margin-bottom: 4em; /* ←これが今の余白量 */
}

.alert-icon  {
  width: 24px;          /* 必要に応じてサイズを調整（例：32px, 40px） */
  height: auto;
}

.notes .step-list {
  list-style-position: inside;
  padding-left: 1.2em;
  margin-left: 0;
  font-size: 1.1em;
}

.notes .step-list li {
  padding-left: 0.4em;
  text-indent: -0.4em;
}

/*-------------------------------------------
マップ
-------------------------------------------*/
#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;
  }



