@charset "utf-8";
/* @import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css); */

/* CSS Document */
/*----------------------------------------
PC用のレイアウト（768px以上で表示）
----------------------------------------*/
/*--------------------
レイアウト共通設定（PC）
--------------------*/

html {
  font-size: 62.5%; /*62.5にすることで1emが10pxになる（emの計算が楽になる設定）*/
}

/*body全体の初期スタイル調整*/
body {
  background-color: #000;
  font-size: 1.7rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  /* font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic,
    "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo,
    Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal; */
  color: #000000;
}
/*リンク文字の設定*/
a {
  text-decoration: underline;
}
/*一度訪れたリンクの色を変える*/
a:link,
a:visited {
  color: #39f;
}
/*マウスオーバーでリンクの色を変える*/
a:hover,
a:actibe {
  color: #f60;
}
/*ブラウザのCSSをリセット(pタグがスマホでずれないように
)
*/
p {
  margin: 0 !important;
  padding: 0 !important;
  /* 文字をシームレスに変更 */
  font-size: clamp(16px, 2vw + 1rem, 18px);
  /* 行間をシームレスに変更 */

  line-height: clamp(1.2, calc(1em + 0.5vw), 1.8);
}
/*セクションエリアの共通設定(とりあえず入れておきましょう)
*/
section {
  clear: both;
  overflow: auto;
}
/*--------------------
見出しタグ設定（PC）※h2などの共通設定
--------------------*/
h2 {
  margin: 0rem 0rem;
  padding: 0rem;
  font-size: 2.6rem;
  font-weight: 900;
  text-align: center;

  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

@media screen and (min-width: 550px) {
  h2 {
    font-size: 30px; /* 画面幅が550px以上のとき */
  }
}

h3 {
  margin: 0rem 0rem;
  padding: 0rem;
  font-size: 2rem;
  font-weight: bold;
  /*border:1px solid #000000;*/ /*ボックスサイズを視覚的に見れるようにしているだけ*/
}
h4 {
  margin: 0rem 0rem;
  padding: 0rem;
  font-size: 1.8rem;
  font-weight: bold;
}
h5 {
  margin: 0rem 0rem;
  padding: 0rem;
  font-size: 1.6rem;
  font-weight: bold;
}

/*--------------------
リストのスタイルリセット
--------------------*/
ul {
  list-style: none; /* リストの点（●など）を消す */
  margin: 0; /* 外側の余白をなくす */
  padding: 0; /* 内側の余白もなくす */
}

li {
  margin: 0;
  padding: 0;
}

/*--------------------
全体レイアウト/背景設定（PC用）
--------------------*/
/*全体エリア（全体背景を設定するにはここをいじる）*/
.main {
  background-color: #f2f2f2;
  width: 100%;
  max-width: 768px;
  /* コンテンツの最大幅 */
  margin: 0 auto; /* 中央寄せ */
}
/*記事（ボディ）エリア*/
.article {
  background-color: #fff;
  border-left: 1px solid #6b6b6b;
  border-right: 1px solid #6b6b6b;
  /* font-size: 1.6rem;  */
}
/*記事（ボディ）エリアの行間*/
.article p {
  line-height: 1.8;
}
/*カラム全体(ボディ)の幅*/
.article,
.top_image_in {
  max-width: 100%; /*SF型の横幅全体*/
  margin: 0 auto;
}

.btn_cta :hover {
  opacity: 0.8;
}

/*--------------------
セクションの設定
--------------------*/

/* ↓セクションインナー共通 */
.sec_inner_01 {
  padding: 0 2.5rem 0;
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .sec_inner_01 {
    padding: 0 1.5rem 0;
  }
}

.sec_inner_02 {
  padding: 0 2rem 0;
}
.sec_inner_03 {
  padding: 2.5rem 2.5rem 0;
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .sec_inner_03 {
    padding: 0 2rem 0;
  }
}

/* ↑セクションインナー共通 */

/* こんな人にオススメ */
.sec_00 {
  background-color: #000;

  padding: 0rem 0rem;
}
/* 概要 */
.sec_01 {
  background-color: #fff;
  padding: 4rem 0rem;
}
/* 書籍の特徴 */
.sec_02 {
  background-color: #fff;
}
/* やられた！ */
.sec_03 {
  padding: 1.5rem 0rem;
  background-color: #fff;
  margin-top: 4rem;
}

/* 章 */
.sec_04 {
  padding: 1.5rem 0rem;
  background-color: #fff;
  margin-bottom: 4rem;
}
/* プロフィール */
.sec_05 {
  padding: 4rem 0rem;
  background-color: #000;
  margin-bottom: 0rem;

  /* ---背景画像を中央上合わせにする--- */
  /* 画像のパスを指定 */
  background-image: url(../images/pro_bg.png);
  /* 画像の繰り返しを防止 */
  background-repeat: no-repeat;
  /* 上部中央に配置 */
  background-position: top center;
  /* 画像の原寸サイズを維持 cover contain*/
  background-size: contain;
}

/* 関連書籍 */
.sec_06 {
  padding: 2rem 0rem;
  background-color: #fff;
}
/* 編集後記 */
.sec_07 {
  padding: 1.5rem 0rem;
  background-color: #fff;
}
/* 読者特典 */

.sec_08 {
  /* ---背景画像を中央上合わせにする--- */
  /* 画像のパスを指定 */
  background-image: url(../images/tokuten_bg.jpg);
  /* 画像の繰り返しを防止 */
  background-repeat: no-repeat;
  /* 上部中央に配置 */
  background-position: top center;
  /* 画像の原寸サイズを維持 cover contain*/
  background-size: contain;
  background-color: #000;
  padding: 3rem 0rem;
  color: #fff;
}
.sec_09 {
  padding: 1.5rem 0rem;

  /* ---背景画像を中央上合わせにする--- */
  /* 画像のパスを指定 */
  background-image: url(../images/voice_bg.webp);
  /* 画像の繰り返しを防止 */
  background-repeat: no-repeat;
  /* 上部中央に配置 */
  background-position: top center;
  /* 画像の原寸サイズを維持 cover contain*/
  background-size: auto;
  background-attachment: fixed;
}
.sec_10 {
  padding: 4rem 0rem 2rem;
  background-color: #000;
}
.sec_11 {
  /* ---背景画像を中央上合わせにする--- */
  /* 画像のパスを指定 */
  background-image: url(../images/con_bg.jpg);
  /* 画像の繰り返しを防止 */
  background-repeat: no-repeat;
  /* 上部中央に配置 */
  background-position: top center;
  /* 画像の原寸サイズを維持 cover contain*/
  background-size: auto;

  padding: 2rem 0rem;
  background-color: #000;
}
.sec_12 {
  padding: 1.5rem 0rem;
  background-color: #000;
}
.sec_cta {
  padding: 0rem 0rem 5rem;
  background-color: #000;
}

/* YouTube動画用 */

.vimeo_flame {
  margin-bottom: 3rem;
}

/* YouTube動画用 */

/*--------------------
オープニング
--------------------*/
.sec_00 h2 {
  margin-bottom: 2rem;
}
.sec_00_sub_title {
  width: 70%;

  margin: 0 auto 3.5rem;
}
.sec_00_sub_title img {
  display: block;
}
.what_v {
  color: #fff;
  text-align: justify;
}

.real_st_title {
  margin-bottom: 1rem;
}

/* 松明のように光らせるエフェクト */
.flare img {
  animation: flareAnim 3s infinite ease-in-out;
  filter: brightness(1);
  transition: filter 0.2s;
}

@keyframes flareAnim {
  0% {
    filter: brightness(1);
  }
  15% {
    filter: brightness(1.3);
  }
  30% {
    filter: brightness(0.85);
  }
  50% {
    filter: brightness(1.4);
  }
  70% {
    filter: brightness(0.9);
  }
  100% {
    filter: brightness(1);
  }
}

/* コンテンツ左右ふりわけ */
.st_cntents_box {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .st_cntents_box {
    display: flex;
    flex-direction: column;
  }
}

/* こんなあなたに読んでほしい */

.yonde_hosi {
  /* ---背景画像を中央上合わせにする--- */
  /* 画像のパスを指定 */
  background-image: url(../images/st_bg.jpg);
  /* 画像の繰り返しを防止 */
  background-repeat: no-repeat;
  /* 上部中央に配置 */
  background-position: top center;
  /* 画像の原寸サイズを維持 cover contain*/
  background-size: cover;

  margin-bottom: 5rem;
}

.yonde_hosi h3 {
  color: #fff;
  font-size: clamp(1.6rem, 5.8vw, 2.6rem);
  text-align: center;
  margin-bottom: 2rem;
}
.yonde_hosii_yohaku {
  margin-left: clamp(0.3rem, 0.8vw, 1rem);
}

.yonde_hosi li {
  color: #fff;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: flex-start;
}

.yonde_hosi img {
  width: clamp(16px, 8vw, 28px);
  margin-right: 1rem;
}

.yaji_01 img {
  width: 100%;
  margin-bottom: 3rem;
}

/* 約もの余白調整 */
.kakko img {
  margin-right: 0.1rem;
}
/* この本で得られること */

.get_book {
  /* ---背景画像を中央上合わせにする--- */
  /* 画像のパスを指定 */
  background-image: url(../images/st_bg_01.jpg);
  /* 画像の繰り返しを防止 */
  background-repeat: repeat;
  /* 上部中央に配置 */
  background-position: top center;
  /* 画像の原寸サイズを維持 cover contain*/
  background-size: cover;
}

.get_book h3 {
  color: #fff;
  font-size: clamp(1.6rem, 5.8vw, 2.7rem);
  text-align: center;
  margin-bottom: 2rem;
}

.get_item {
  display: flex;
  align-items: flex-start;
  color: #fff;
  margin-left: clamp(0.3rem, 0.8vw, 1rem);
  margin-bottom: 3rem;
}
.get_item h4 {
  display: inline-block;
  font-size: clamp(1.4rem, 5vw, 2.3rem);
  /* border-bottom: solid 1px #fff; */
}

.get_img {
  flex: 0 0 auto;
  width: 10%;
  margin-right: 1rem;
}
.get_text {
  /* ← 残りのスペースを全部使う */
  flex: 1;
  /* ← テキストの折り返し対策として重要 */
  min-width: 0;
}
.get_img img {
}

.get_text h4 p {
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
}

/*--------------------
概要
--------------------*/

/* h2用中央合わせのラップ */
.heading_wrap {
  text-align: center;
}

.sec_01 h2 {
  /* text-align: left; */
  text-align: center;
  display: inline-block;

  border-bottom: solid 1px #000;
  padding-bottom: 0.5rem;
  margin-bottom: 3rem;
}
.space_01 {
  border-bottom: solid 1px #000;
  margin-bottom: 3rem;
}
.hyousi {
  box-shadow: 0 8px 8px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 3rem;
}

/* 書誌情報 */
/*--------------------
書籍用icon
--------------------*/

.syosi_waku {
  padding: 1.5rem;
  border: 1px solid #000;
}

.syosi_info {
  text-align: center;
  margin-bottom: 2.5rem;
}
.syosi_info p {
  text-align: center !important;
  margin-bottom: 2.5rem;
}

/*親: アイコンを横並びにする*/
.info_icons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  /* align-items: flex-start; */
  justify-content: space-between;
}

/*子: アイコンとテキストのまとまり*/
.info_icon_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  width: 30%;
  margin-bottom: 3rem;
}
.info_icon_item_off {
  opacity: 100%;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .info_icon_item {
    margin-bottom: 2rem;
  }
}

/*アイコンの囲み*/
.info_icon_img {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.info_icon_png_kin {
  width: 80px;
  height: 32px;
  object-fit: contain;
}

/*PNGアイコン*/
.info_icon_png {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/*ラベルの下に余白*/
.info_icon_label {
  font-size: 12px;
  color: #666;
  line-height: 1.2;
  margin-bottom: 8px; /* ← アイコンとの間隔 */
}

/*値（強調）*/
.info_icon_desc {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  line-height: 1.2;
}

/*レスポンシブ対応*/
@media (max-width: 480px) {
  .info_icon_item {
    width: calc(50% - 12px);
  }
}

/*--------------------
書籍の特徴
--------------------*/
.cec_02_1 {
  color: #fff;

  padding: 2rem 0;
}
.sec_02 h2 {
  padding-bottom: 1.5rem;
  font-size: clamp(2rem, 5.8vw, 3.2rem);
  margin-bottom: 2rem;
}

.sec_02_title_3 {
  /* ---背景画像を中央上合わせにする--- */
  /* 画像のパスを指定 */
  background-image: url(../images/sec_02_h2_01bg.jpg);
  /* 画像の繰り返しを防止 */
  background-repeat: no-repeat;
  /* 上部中央に配置 */
  background-position: top center;
  /* 画像の原寸サイズを維持 cover contain*/
  background-size: cover;
  padding-bottom: 1.5rem;
  margin-bottom: 4rem;
}

/*--------------------
まさか１億円が消えるなんて
--------------------*/

.masaka {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 5rem;
}

@media screen and (max-width: 600px) {
  .masaka {
    padding: 0 1.5rem;
  }
}

.lined_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  flex-wrap: nowrap; /* 改行させない */
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .lined_title {
    display: block;
  }
}

.lined_title::before,
.lined_title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #666;
  min-width: 30px;
}

.headline_bar {
  background-color: #000; /* 黒い帯 */
  color: #fff; /* 白文字 */
  font-size: clamp(1.4rem, 5vw, 2.6rem);
  padding: 0.5em 1em; /* 上下左右の余白 */
  display: inline-block; /* テキストにフィットさせる */
  font-weight: bold; /* 太字推奨 */
  line-height: 1.4; /* 行間 */
  /* border-radius: 4px;  */
  margin: 0.3em 0; /* 上下に余白 */
  margin-bottom: 4rem;
}

.st_box {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
/* 左側用 */
.st_box_left {
  /* flex: 0 0 450px; */
  min-width: 200px;
  max-width: 500px;
}
/* 右側用 */
.st_box_right {
  flex: 1;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .headline_bar {
    display: block;
    width: 100%;
  }

  .st_box {
    flex-direction: column-reverse;
  }

  .st_box_left {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* 右側用 */
  .st_box_right {
    width: 100%;
  }
}

.st_box_left p,
.st_box_right p {
  line-height: 2;
}

.utu_img {
}

/* 写真下用のコメント */
.utu_p {
  padding: 0 1rem;
}

.utu_p p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #c40000;
}
/*--------------------
役に立ちたい
--------------------*/

/* 見出し下のライン用 */
.h2_under_line {
  position: relative;
}

.h2_under_line:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 4px;
  content: "";
  /* border-radius: 3px; */
  background: #d90d21;
}

.gold_frame_box {
  background-color: #c40000; /* 赤背景 */
  padding: 4rem 4rem;
  color: #fff;

  position: relative;
  box-sizing: border-box;
  display: flex;
  gap: 15px;
  margin-bottom: 4rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .gold_frame_box {
    background-color: #c40000; /* 赤背景 */
    padding: 4rem 4rem;
    color: #fff;

    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.gold_frame_box::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 2px solid #ac8e4b; /* ゴールドのライン */
  pointer-events: none; /* クリックイベントに干渉させない */
}

.yakudatu_left {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  text-align: left;
  padding-left: 2rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .yakudatu_left {
    flex: 0 0 0;
    display: flex;
    justify-content: center;
    text-align: center;
    padding-left: 2rem;
  }
}

.yakudatu_left p {
  font-size: clamp(1.4rem, 5.5vw, 3rem);
  font-weight: 600;
}
.yakudatu_right {
  flex: 1;
}
.yakudatu_right p {
  text-align: justify;
}

/* 本書で得られる行動知と実践知テーブルパート */

.koudouti_sub_title {
  margin-bottom: 4rem;
}

/* ↓テーブル */

/* テーブル全体の設定 */
.keyword-table {
  /* テーブルの横幅を親要素に合わせて最大にする */
  width: 100%;
  /* セルのボーダーを重ねてスッキリ表示 */
  border-collapse: collapse;
  /* 全体の文字サイズ */
  font-size: 1.4rem;
  margin-bottom: 6rem;
}

/* セル（見出し・本文）の共通スタイル */
.keyword-table th,
.keyword-table td {
  /* 枠線（薄いグレー）を表示 */
  border: 1px solid #ccc;
  /* セル内の余白（上下・左右） */
  padding: 0.8em 1em;
  /* テキストを左揃えにする */
  text-align: left;
  /* 複数行になった場合、上揃えにする */
}

.th_center th {
  text-align: center;
}

.keyword-table td:nth-child(1),
.keyword-table th:nth-child(1) {
  min-width: 150px;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .keyword-table th,
  .keyword-table td {
    /* セル内の余白（上下・左右） */
    padding: 0.6em 0.5em;
  }
}

/* 見出し（上段）のスタイル */
.keyword-table thead th {
  /* 見出し行の背景色（淡いグレー） */
  background-color: #f5f5f5;
  /* 太字で強調 */
  font-weight: bold;
  /* 見出し文字をやや大きめに設定 */
  font-size: 1.6rem;
}

/* ↑テーブル */

/* 逆境ワークブック */
.work_book {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 4rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .work_book {
    margin-bottom: 2rem;
  }
}

/* 斜め背景だけを作る（画像・テキストには影響しない） */
.angled {
  position: relative;
  overflow: hidden; /* 擬似要素がはみ出さないように */
  margin-bottom: 5rem;
}

/* 擬似要素で斜め背景を作成 */
.angled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d90d21; /* 赤背景 */
  /* 右上が斜めにカットされた形状を作る */
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 0;
}

/* コンテンツを擬似要素の上に表示 */
.angled .work_book {
  position: relative;
  z-index: 1;
  padding: 0 1.5em;
  text-align: center;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .angled .work_book {
    padding: 0 1em;
  }
}

.work_book img {
  box-shadow: 0 8px 8px 2px rgba(0, 0, 0, 0.1);
}

/* キャプション用の小さなテキスト */
.caption {
  font-size: 1rem;
  color: #fff;
  margin-top: 1.5rem;
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .work_book {
    width: 100%;
  }
}

/*--------------------
やられた！
--------------------*/

/* 下向き矢印本体 */
.scroll_arrow_css {
  /* 幅と高さは見た目のバランス用（実際の形には影響しない） */
  width: 30px;
  height: 30px;

  /* 左右の透明部分を広げ、下方向の三角を大きくする */
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 18px solid #000; /* 矢印色（黒） */

  margin: 0 auto;
  animation: scrollDown 1.5s ease-in-out infinite;
}

/* 下にフワッと動くアニメーション */
@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
}

/* 矢印を囲むブロック */
.space {
  text-align: center; /* 矢印を中央に */
  padding: 2em 0; /* 上下に余白 */
  position: relative;
  z-index: 10;
}

/* アニメーション矢印 */
.scroll_arrow {
  width: 40px; /* 画像サイズ調整（任意） */
  display: inline-block;
  animation: scrollDown 1.5s ease-in-out infinite;
}

/* 下方向にふわっと動くアニメーション */
@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
}

/* 親要素：floatの崩れを防ぐためのラッパー */
.float_wrap {
  /* 子要素のfloatによる高さ崩れを防ぐ */
  overflow: hidden;
}

.float_wrap p {
  text-align: justify;
}

/* ↓ぽん！と出現するやつ */
/* 親要素：画面の中央に配置 */
.zoom_container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* 必要に応じて調整 */
  position: relative;
}

/* 子要素：拡大アニメーション */
.zoom_up {
  opacity: 0;
  transform: scale(0.6);
  transform-origin: center center;
}

/* 表示時アニメーション */
.zoom_up.active {
  animation: zoomPop 0.6s ease forwards;
  animation-delay: 1.2s;
  /* 0.5s の部分を 1s や 2s にすれば、遅れ時間が変わります。 */
}

/* アニメーション効果 */
@keyframes zoomPop {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  50% {
    opacity: 1;
    transform: scale(2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* ↑ぽん！と出現するやつ */

/* 左に寄せる画像（PC表示） */
.float_img {
  /* 左に回り込ませる */
  float: left;

  /* 横幅（画面全体に対する比率） */
  width: 38%;

  /* テキストとの間隔を調整（右と下に余白） */
  margin: 0 1em 1em 0;
}

/* スマホ表示（768px以下）の場合のスタイル */
@media screen and (max-width: 768px) {
  /* 画像のfloat解除して縦並びに */
  .float_img {
    float: none;

    /* ブロック要素として表示（中央揃え可能） */
    display: block;

    /* 幅100%で大きく表示 */
    width: 100%;

    /* 中央に配置（上左右は0、下に余白） */
    margin: 0 auto 1em;
  }
}

.ya_p {
  font-size: clamp(2.6rem, 5.8vw, 3.2rem);
  font-weight: 700;
}
/* 語句メリハリ用の余白 */
.ya_mb {
  margin-bottom: 2.5rem !important;
}

.ya_mb_2 {
  margin-bottom: 3rem !important;
}

/* フレックスボックス左右振り分け */
.datumou_box {
  display: flex;
  gap: 15px;
  margin-bottom: 3rem;
}

.pc_datumou {
  display: block;
}
.sp_datumou {
  display: none;
}

/*768px以下のとき以下を採用*/
@media (max-width: 600px) {
  .datumou_box {
    display: block;
  }

  .pc_datumou {
    display: none;
  }
  .sp_datumou {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
  }
}

.datumou_l {
  flex: 0 0 60%;
}

.datumou_l p {
  text-align: justify;
}

.datumou_p {
  margin-top: 0.5rem;
}
.datumou_p p {
  font-size: 1.3rem;
  line-height: 1.6;
}

.p_center p {
  text-align: center;
  margin-bottom: 0rem;
}
.p_center {
  margin-bottom: 5rem;
}

/*--------------------
立ち読み
--------------------*/

.btn_box {
  text-align: center;
  margin-bottom: 3rem;
}

.btn_box img {
  width: 70%;
}
.btn_box:hover {
  opacity: 0.8;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .btn_box img {
    width: 80%;
  }
}

/* ボタンにアニメーションを適用 */
#btn_animation {
  display: inline-block;
  animation: shakeSide 1s infinite ease-in-out;
}

/* 左右に揺れる動き */
@keyframes shakeSide {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

/*--------------------
目次編集中
--------------------*/

.syou_box {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.syou_box img {
  display: block;
  max-width: 350px;
  height: auto;
}
/*タイトルなしのアコーディオン*/

.mokuji {
  padding-top: 2rem;
  flex-grow: 1;
}
.mokuji ul li {
  padding-bottom: 1rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .syou_box {
    flex-direction: column;
  }

  .syou_box img {
    display: block;
    width: 100%;
    height: auto;
  }
}

/*768px以下のとき以下を採用*/
@media (max-width: 800px) {
  .syou_box {
    flex-direction: column;
  }

  .syou_box img {
    display: block;
    max-width: 100%;
    height: auto;
  }
}

/*タイトルありのアコーディオン*/

.mokuji_in {
  padding-top: 2rem;
}
.mokuji_in ul li {
  padding-bottom: 0rem;
}

/*--------------------
アコーディオン用
--------------------*/

/* 目次 */

.sec_04 h2 {
  font-weight: bold;
  margin-bottom: 2rem;
  color: #fff;
  background-color: #000;
  padding: 3rem 0;
}

.accordion {
  border-top: 1px solid #ddd;
}

.accordion_item {
  border-bottom: 1px solid #ddd;
}

.accordion_header {
  font-weight: bold;
  font-size: 2rem;
  padding: 1em;
  cursor: pointer;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: space-between; /* ← アイコンを右に寄せる */
  transition: background 0.3s;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .accordion_header {
    font-weight: bold;
    font-size: 1.8rem;
  }
}

.accordion_header:hover {
  background: #eee;
  color: #b52122;
}

.accordion_icon {
  font-size: 1em;
  margin-left: 1em;
  flex-shrink: 0;
  color: #333;
}
.accordion_body {
  /* display: none;
  padding: 1em;
  background: #fff; */
  max-height: 0;
  overflow: hidden;
  padding: 0 1em;
  background: #fff;
  transition: max-height 0.5s ease;
}

.accordion_item.open .accordion_body {
  /* display: block; */
  max-height: 1000px; /* 充分に大きな値を入れておく */
  padding: 1em; /* 開いた時に表示される余白 */
}

.accordion_body li {
  /* margin-bottom: 0.5rem; */
  padding-left: 1.6em; /* アイコン（◎）の分だけ余白を作る */
  text-indent: -1.6em; /* 1行目の頭を左へ戻す（◎が揃う） */
  line-height: 1.8; /* 読みやすさ向上 */
}
/* ワークシート背景色 */
.work_sheets {
  background-color: #a01d1d;
}

/*--------------------
プロフィール
--------------------*/

.screen_blend {
  mix-blend-mode: screen;
}

.prof_container {
  display: flex;
  gap: 1.5rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .prof_container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.prof_container p {
  text-align: justify;
}
.prof_l {
  flex: 0.5;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #d90d21;
  padding-top: 4rem;
}
.prof_l p {
  font-size: clamp(2.6rem, 5.8vw, 3.4rem);
  font-weight: 700;
  display: block;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .prof_l {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    padding-top: 1rem;
  }

  .prof_l p {
    font-size: clamp(2.6rem, 5.8vw, 3.4rem);
    font-weight: 700;
    display: none;
  }
}

.prof_center_box {
  flex: 2.9;
}
.prof_center {
  color: #fff;
  margin-bottom: 1rem;
}
.messaji {
  margin-bottom: 1rem;
}
.prof_img {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sugiyama_sp_prof {
  display: none;
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .prof_pc_sugiyama {
    display: none;
  }

  .sugiyama_sp_prof {
    display: block;
  }
}

.prof_r {
  flex: 5;
  color: #fff;
}

.prof_title {
  font-size: 2rem;
  font-weight: bold;
}
.prof_under_p {
  color: #fff;
}
.prof_under_p p {
  text-align: justify;
}

.tyosya_p {
  margin-top: 1.5rem;
}

/*--------------------
関連書籍
--------------------*/

.sec_06 h2 {
  text-align: center;
  display: inline-block;

  border-bottom: solid 1px #000;
  padding-bottom: 0.5rem;
  margin-bottom: 4rem;
}
.book_box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.book_01 img {
  box-shadow: 0 8px 8px 2px rgba(0, 0, 0, 0.1);
}

.book_01 {
  width: 19%;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .book_01 {
    width: 32%;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 600px) {
  .book_01 {
    width: 47%;
    margin-bottom: 1.5rem;
  }
}

/*--------------------
編集長
--------------------*/
.hentyu_tyou_box {
  overflow: hidden;
  margin-bottom: 3rem;
}

.hensyu_tyou_l {
  color: #000;
  text-align: justify;
}

.hensyu_tyou_l p {
  text-align: justify;
}

/* 画像を右に寄せて回り込みさせる */

.sibata_box {
  float: right;
  width: 28%;
  margin-left: 3rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .sibata_box {
    float: right;
    display: block;
    width: 35%;

    margin-left: 3rem;
  }
}

.pro_siba {
  font-weight: bold;
  font-size: 1.8rem;
}

/*--------------------
編集後記
--------------------*/

.kouki_h2_wrap {
  text-align: center;
}

.sec_07 h2 {
  font-size: clamp(2rem, 5.8vw, 2.5rem);
}

.kouki_h2_wrap {
  margin-bottom: 3rem;
}
.kouki_p {
  text-align: justify;
}

.kouki_right {
  margin-top: 2.5rem;
  text-align: right;
  margin-bottom: 2rem;
}

/* アコーディオン*/

/* ボタン装飾 */
.text_toggle_btn {
  /* 背景色 */
  background: #b52122;
  /* 文字色 */
  color: #fff;
  /* パディング */
  padding: 8px 24px;
  /* 角丸 */
  border-radius: 4px;
  /* 枠線なし */
  border: none;
  /* カーソル */
  cursor: pointer;
  /* フォントサイズ */
  font-size: 16px;

  /* ブロック化して幅を自動計算 */
  display: block;
  /* 左側の余白を自動→右寄せ */
  margin-left: auto;
  /* 親に張り付けすぎないよう余白 */
  margin-top: 8px;
}

/* 閉じている時は非表示 */
.text_full {
  display: none;
  /* 行間 */
  line-height: 1.9;
  margin-top: 16px;
}

/*--------------------
特典
--------------------*/

.sec_08 h2 {
  margin-bottom: 2rem;
}
/* 特典親ボックス */
.tokuten_box {
  border-radius: 15px;
  border: solid 1px #fff;
  padding: 2rem 2rem 2.5rem;
  margin-bottom: 4rem;
}
.tokuten_box p {
  text-align: justify;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .tokuten_box {
    padding: 1rem;
  }
}

.tokuten_l_r {
  display: flex;
  gap: 1.5rem;
}

.tokuten_top_p {
  text-align: center;
  margin-bottom: 4rem;
}
/* 特典左側 */
.tokuten_icon {
  margin-top: -3rem;
}
.tokuten_l {
  flex: 1;
}

/* 特典右側 */
.tokuten_r {
  flex: 7;
}
/*768px以下のとき以下を採用*/
@media (max-width: 500px) {
  .tokuten_l_r {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 5rem;
  }

  .tokuten_icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20%;
  }
}

.tokuten_r h3 {
  background-color: #ac8e4b;
  display: inline-block;
  padding: 0.5rem 1rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 500px) {
  .tokuten_r {
    text-align: center;
  }

  .tokuten_r h3 {
    background-color: #ac8e4b;
    display: inline-block;
    margin-top: 2rem;
  }
}

.tokuten_img {
  margin-bottom: 1.5rem;
}

.tokuten_r_p {
  margin-bottom: 1rem;
}

.tokuten_r_p p {
  /* 縦方向のグラデーションを指定 */
  color: #fff;
  font-size: clamp(1.6rem, 5.5vw, 2.7rem);
  font-weight: 600;
}

/* ━━━━━━━━━━━━━━ */

/* 特典下部p */

.tokuten_under_p {
}

/*--------------------
読者の声
--------------------*/

.sec_09 h2 {
  margin-bottom: 2rem;
  color: #fff;

  /* ---背景画像を中央上合わせにする--- */
  /* 画像のパスを指定 */
  background-image: url(../images/voice_title.png);
  /* 画像の繰り返しを防止 */
  background-repeat: no-repeat;
  /* 上部中央に配置 */
  background-position: center center;
  /* 画像の原寸サイズを維持 cover contain*/
  background-size: contain;

  padding: 2rem;
}
.koe_box {
  background-color: #fff;
  padding: 2rem 2rem;
  border-radius: 10px;
  border: solid 2px #ac8e4b;
  margin-bottom: 3rem;
}

.koe_box h3 {
  margin-bottom: 2rem;
  font-size: clamp(1.6rem, 5.2vw, 2.7rem);
}

.user_name {
  font-weight: bold;
  margin-bottom: 1rem;
}
.icon_color {
  color: #b52122;
}
/* ↓続きを読む用のコード */
.read_more_btn,
.read_less_btn {
  background-color: #b52122;
  color: #fff;
  border: none;
  padding: 0.8em 1.5em;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  border-radius: 4px;
  transition: background-color 0.3s;

  display: block; /* ブロック要素にする */
  margin-left: auto; /* 左側を自動マージンにして右寄せ */
  width: fit-content; /* ボタンサイズを内容に合わせる */
}

.read_more_btn:hover,
.read_less_btn:hover {
  background-color: #a01d1d;
}
/* ↑続きを読む用のコード */

/* br取り消し用 */
/*768px以下のとき以下を採用*/
@media (max-width: 410px) {
  .sp {
    display: none;
  }
}

/*--------------------
エンディング
--------------------*/

.fade_in_on_scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade_in_on_scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------
コンサルティング
--------------------*/

.sec_11 h2 {
  font-size: clamp(2rem, 5.8vw, 3.2rem);
}

.con_title_inner {
  padding: 0 3rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .con_title_inner {
    padding: 0 0rem;
  }
}

.con_title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  margin-bottom: 5rem;
  color: #fff;

  padding: 2rem 1.5rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.con_pbox {
  text-align: center;
  margin-bottom: 2rem;
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .con_pbox {
    text-align: left;
    text-align: justify;
  }
}

.con_pbox p {
  color: #fff;
}

.con_p {
  background-color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  color: #000;
  display: inline-block;
  margin: 0 auto;
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .con_p {
    font-size: 2.4rem;
  }
}

.con_sp {
  display: none;
}

/*768px以下のとき以下を採用*/
@media (max-width: 620px) {
  .con_sp {
    display: block;
  }
}
/* コンサル箇条書き */

.con_ul_box {
  display: flex;
  gap: 1.3rem;
  padding: 1rem;
  margin-bottom: 2rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 600px) {
  .con_ul_box {
    flex-direction: column;
  }
}

.con_ul {
  flex: 1;
  padding: 1rem 1rem 2rem 1rem;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.con_ul h4 {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0 0 1rem;
}

.con_ul img {
  width: clamp(16px, 8vw, 28px);
  margin-right: 0.5rem;
}
.con_ul li {
  display: flex;
  align-items: flex-start;
}

/* 上から教える場ではありません。 */

.con_up {
  color: #fff;
}

.con_jissi {
  color: #fff;
  margin-bottom: 2rem;
}
/* ↓テーブル */
.con_table_box {
  margin: 0 auto;
}

.table_box_sp {
  display: none;
}

/* 特典表下の文言 */

.tokuten_under_p {
  color: #fff;
}
.rokuga {
  display: flex;
  align-items: center;
}

.rokuga img {
  display: block;
  width: 30px;
  height: auto;
  margin-right: 0.8rem;
  padding-bottom: 0.6rem;
}

.yerrow {
  color: #ffff00;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .con_table_box {
    display: none;
  }
  .table_box_sp {
    display: block;
    margin-bottom: 1.5rem;
  }
}

/* テーブル全体の設定 */
.con-table {
  /* テーブルの横幅を親要素に合わせて最大にする */
  width: 100%;
  /* セルのボーダーを重ねてスッキリ表示 */
  border-collapse: collapse;
  /* 全体の文字サイズ */
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #000;
}

/* セル（見出し・本文）の共通スタイル */
.con-table th,
.con-table td {
  /* 枠線（薄いグレー）を表示 */
  border: 1px solid #ccc;
  /* セル内の余白（上下・左右） */
  padding: 0.8em 0.5em;
  /* テキストを左揃えにする */
  text-align: center;
  /* 複数行になった場合、上揃えにする */
  vertical-align: center;
  background-color: #fff;
}

/* 見出し（上段）のスタイル */
.con-table thead th {
  /* 見出し行の背景色（淡いグレー） */
  background-color: #f5f5f5;
  /* 太字で強調 */
  font-weight: bold;
  /* 見出し文字をやや大きめに設定 */
  font-size: 1.6rem;
}

.con-table img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

/* 1列目と2列目の幅を広げる */
.con-table td:nth-child(1),
.con-table th:nth-child(1) {
  /* 1列目の最小横幅 */
  min-width: 150px;
}

.con-table td:nth-child(2),
.con-table th:nth-child(2) {
  /* 2列目の最小横幅 */
  min-width: 200px;
}

/* ↑テーブル */
/*--------------------
お申し込みの流れ
--------------------*/

.step_title {
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
}

.step_big_box {
  margin-left: 3rem;
  margin-right: 3rem;
  margin-bottom: 2rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 600px) {
  .step_big_box {
    margin-left: 3rem;
    margin-right: 1rem;
  }
}
.tokuten_syouko {
  font-size: 1.3rem;
}

.tokuten_hosoku {
  color: #fff;
  font-size: 1.3rem;
}
.toku_p,
.tokuten_form {
  line-height: 1.2 !important;
}
.step_box {
  display: flex;
  position: relative;
  background-color: #fff;
  padding: 3rem 1.5rem 3rem 5rem;
  align-items: center;
  border-radius: 10px;
}

.step_icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px; /* お好みでサイズ調整 */
  margin-bottom: 1rem;
}
.yaji_step {
  margin: 1rem;
}

/* step2の言葉改行用 */
.stripe_br {
  display: none;
}

/*768px以下のとき以下を採用*/
@media (max-width: 400px) {
  .stripe_br {
    display: block;
  }
}

.step_under_box {
  color: #fff;
  margin-left: 1rem;
  margin-bottom: 4rem;
}
.micro_cta {
  margin: 0 auto 1rem;
  display: flex;
  width: 60%;
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .micro_cta {
    width: 80%;
  }
}

.form {
  background-color: #212121;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.con_cta_btn a :hover {
  opacity: 0.8;
}
.con_btn_micro_copy {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .con_btn_micro_copy {
    font-size: 2rem;
  }
}

.con_btn_small_p {
  color: #fff;
  margin-bottom: 3rem;
}
.end_roll_title {
  text-align: center;
  margin-bottom: 3rem;
}

.end_roll_title h3 {
  font-size: clamp(2rem, 5.8vw, 3.2rem);
}
.end_roll {
  color: #fff;
}
.end_p {
  font-weight: 400;
  padding: 0 1rem 0;
}
.p_space {
  padding: 0.5rem;
}
.end_p p {
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-align: justify;
  line-height: 2;
}

.end_p_left {
  text-align: right;
  margin-top: 2rem;
  margin-right: 2rem;
  margin-bottom: 2rem;
}

/*--------------------
CTAボタンエリア
--------------------*/
.micro_copy {
  padding: 0 2rem;
  margin-bottom: 3rem;
}
.sec_01 p {
  text-align: justify;
}
.btn_cta {
  padding: 0 0rem;
}

.ama_p {
  color: #fff;
  font-size: 1.4rem;
  text-align: right;
}

.yakudatu_pc_p {
  display: block;
}

.yakudatu_sp_p {
  display: none;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .yakudatu_pc_p {
    display: none;
  }

  .yakudatu_sp_p {
    display: block;
  }
}

/* 光るボタン */

.c-button._shiny {
  display: block;
  position: relative;
  /* padding: 1em 1.5em; */
  /* background-color: #1981f7; */
  /* box-shadow: 0 3px 0 0 #0867d4; */
  border-radius: 4px;
  /* margin: 30px auto; */
  font-weight: bold;
  /* max-width: 500px; */
  color: #fff;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: 300ms;
}
.c-button._shiny::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #ffffff;
  transition: 300ms;
  animation: shinyshiny 2s ease-in-out infinite;
}

.c-button._shiny:hover {
  text-decoration: none;
  color: #fff;
  box-shadow: none;
  -webkit-transform: translateY(3px);
}

@-webkit-keyframes shinyshiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/* トップページに戻る */

.top_page {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

/*--------------------
特定商取引法の表記
--------------------*/
.law {
  padding: 5rem 2.5rem;
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .law {
    padding: 5rem 1.5rem;
  }
}

.law_h2 {
  font-size: 3rem;
}
.table-block {
  border: 1px solid #ccc;
  margin: 0 auto;
}

.table-block th {
  border: 1px solid #ccc;
  background-color: #f3f7fb;
  padding: 0.5rem;
}

.table-block td {
  border: 1px solid #ccc;
  padding: 0.5rem;
}

/* プラシバシーポリシー */
.privacy_container,
.law_container {
  margin: 0 auto;
  padding: 5rem 2.5rem;
  text-align: justify;
}

.pribacy_h2 {
  margin-bottom: 3rem;
  font-size: 3rem;
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .privacy_container,
  .law_container {
    margin: 0 auto;
    padding: 5rem 1rem;
  }
}

.table-block tr td {
  font-size: 1.6rem;
}
.table-style01 th {
  width: 150px;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .table-block tr td {
    font-size: 1.4rem;
  }
  .table-style01 th {
    width: 140px;
    font-size: 1.5rem;
  }
}

/*--------------------
フッター部分
--------------------*/
.footer {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  background-color: #b52122;
  padding: 2rem 1rem 28rem;
  text-align: center;
  font-size: 1.4rem;
  color: #ffffff;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0rem 25rem;
  }
}
/*768px以下のとき以下を採用*/
@media (max-width: 600px) {
  .footer {
    padding: 2rem 0rem 22rem;
  }
}
.footer a {
  color: #fff;
}

.footer_02 {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  background-color: #b52122;
  padding: 2rem 0rem 4rem;
  text-align: center;
  font-size: 1.4rem;
  color: #ffffff;
}

.br_f {
  display: none;
}
/*768px以下のとき以下を採用*/
@media (max-width: 485px) {
  .br_f {
    display: block;
  }
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .footer_02 {
    padding: 2rem 0rem 3rem;
  }
}
/*768px以下のとき以下を採用*/
@media (max-width: 600px) {
  .footer_02 {
    padding: 2rem 0rem 3rem;
  }
}
.footer_02 {
  color: #fff;
}
.footer_02 a {
  color: #fff;
}

/*--------------------------------------------------
下部固定ボタン（PCは非表示）
-----------------------------------------------------*/

/*--------------------------------------------------
下部固定ボタン（PCは非表示）
-----------------------------------------------------*/

.bottom_btn_area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1000;
  display: none; /* 最初は非表示にする */
}
.bottom_btn_box {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 1rem;
}

.ama_U_p {
  text-align: right;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 8px 8px 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.4);
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .ama_U_p {
    font-size: 11px;
  }
}

/* 追加：左右に揺れるアニメーション 揺らす場合 animation_2にする*/
#btn_animation_1 a {
  display: block;
  animation: btn_animation_2 2s infinite;
  /* 
    - btn_animation: アニメーション名
    - 2s: アニメーションの継続時間（速さ）
    - infinite: アニメーションの繰り返し回数
  */
}

/* 追加：アニメーションのキーフレーム */
@keyframes btn_animation_2 {
  /* 右に4px移動 */
  0% {
    transform: translate(4px, 0px);
  }
  /* 左に4px移動 */
  5% {
    transform: translate(-4px, 0px);
  }
  /* 右に4px移動 */
  10% {
    transform: translate(4px, 0px);
  }
  /* 左に4px移動 */
  15% {
    transform: translate(-4px, 0px);
  }
  /* 右に4px移動 */
  20% {
    transform: translate(4px, 0px);
  }
  /* 左に4px移動 */
  25% {
    transform: translate(-4px, 0px);
  }
  /* 元の位置に戻る */
  30% {
    transform: translate(0px, 0px);
  }
  /* 30%〜100%は動きなし（静止状態） */
}
