@charset "utf-8";
/* CSS Document */
/*----------------------------------------
PC用のレイアウト（768px以上で表示）
----------------------------------------*/
/*--------------------
レイアウト共通設定（PC）
--------------------*/
html {
  font-size: 62.5%; /*62.5にすることで1emが10pxになる（emの計算が楽になる設定）*/
}

/*body全体の初期スタイル調整*/
/* 本文全体の基本設定 */
body {
  font-family:
    "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-size: var(--fz-base);
  line-height: var(--lh-base);
  letter-spacing: 0.02em;
  color: #333;
  -webkit-font-smoothing: antialiased; /* 文字を綺麗に見せる */
}

/* 呼び出し変数var(--変数); */
/* --------------------- */
:root {
  --key-color: #000000;

  /* フォントサイズ（PC用） */
  --fz-base: 1.8rem; /* 本文の基本 */
  --fz-h2: 3.2rem; /* セクション見出し */
  --fz-h3: 2.4rem; /* カードの見出し */
  /* フォントサイズ（PC用） */

  --fz-base-sp: 1.6rem;

  /* フォントカラー */
  --b-font-color: #5a4a1f; /* 暗い見出し */
  --l-font-color: #b9a15c; /* 明るい見出し */

  /* 行間（読みやすさの肝） */
  --lh-base: 1.8; /* 本文はゆったり */
  --lh-title: 1.4; /* 見出しは少し詰める */

  /* フォント */
  --japan-font: "Noto Sans JP", sans-serif;
  --oubun-font: "EB Garamond", serif;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  body {
    font-size: var(--fz-base-sp);
  }
}

/*リンク文字の設定*/
a {
  text-decoration: underline;
}
/*一度訪れたリンクの色を変える*/
a:link,
a:visited {
  color: #39f;
}
/*マウスオーバーでリンクの色を変える*/
a:hover,
a:active {
  color: #f60;
}
/*ブラウザのCSSをリセット(pタグがスマホでずれないように
)
*/
p {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;

  margin-bottom: 0;

  padding: 0;
  line-height: var(--lh-base);
}

/* 最後の段落だけは、下の余白を消して親要素と高さを合わせる */
p:last-child {
  margin-bottom: 0;
}

/*リスト装飾リセット*/

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}
/*--------------------
見出しタグ設定（PC）※h2などの共通設定
--------------------*/
/* 全ての見出しに共通するリセット */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: var(--lh-title);
  margin: 0;
}

/* 画像用 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; /* 下の隙間消し */
  border-style: none; /* IE等のリンク付き画像枠消し */
}
/*--------------------
全体レイアウト/背景設定（PC用）
--------------------*/
/*全体エリア（全体背景を設定するにはここをいじる）*/
.main {
  background-color: #f2f2f2;
}
/*記事（ボディ）エリア*/
.article {
  background-color: #fff;

  font-size: var(--fz-base);
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .article {
    font-size: var(--fz-base-sp);
  }
}

.article {
  width: 100%;
}

/*カラム全体(ボディ)の幅*/
.top_image_in {
  width: 100vw;
  margin: 0 auto;
}
.section_inner {
  max-width: 1100px;

  margin: 0 auto;
  padding: 0 4rem;
}

@media (max-width: 768px) {
  .section_inner {
    margin: 0 auto;
    padding: 0 2rem;
  }
}

/*--------------------
上部固定ヘッダー設定
--------------------*/
/*上部固定ヘッダー全体の設定*/
.header {
  position: sticky; /*ヘッダーを固定する*/
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
/*--------------------
ヘッダー全体
--------------------*/
.header {
  width: 100%;
}

/*--------------------
ヘッダー内側（本文幅制御）
--------------------*/
.header_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*--------------------
左：ロゴ
--------------------*/
.header_logo img {
  display: block;
  height: 40px;
  width: auto;
}

/*--------------------
右：電話＋問い合わせ
--------------------*/
.header_right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header_tel img,
.header_contact img {
  display: block;
  height: 40px;
  width: auto;
}

/*--------------------
ファーストビュー設定
--------------------*/
.top_image {
  text-align: center;

  background-image: url(../images/top_image_back.jpg);
  width: 100%;
  margin: 0 auto;
}

.top_image_in img {
  width: 100%;
}

/*--------------------
セクションの設定
(背景設定・幅狭めたときの左右余白・セクション上下余白の調整)
--------------------*/
.sec-cta {
  padding: 10rem 0rem;
  background-image: url(../images/sec-cta-bg.webp);
  background-position: 20% center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #352c20;
}

/* 実績 */
.sec-jisseki {
  padding: 10rem 0rem;
  background-image: url(../images/sec-jisseki-bg.webp);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
/* 悩み */

.sec-nayami {
  padding: 10rem 0rem;
  background-image: url(../images/sec-nayami-bg.webp);
  background-position: 50% bottom;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* 解決 */
.sec-kaiketu {
  position: relative;
  padding: 10rem 0rem;
  background-image: url(../images/sec-kaiketu-bg.webp);
  background-position: top;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  /* overflow: hidden; */
}

/* 新理論 */

.sec-riron {
  padding: 10rem 0rem;
  background-image: url(../images/sec-riron-bg.webp);
  background-position: bottom;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
/* 4つのモード */

.sec-mode {
  padding: 10rem 0rem;
  background-image: url(../images/sec-mode-bg.webp);
  background-position: bottom;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
/* 代理店 */
.sec-dairiten {
  background-image: url(../images/sec-dairiten-under-bg.webp);
  padding: 0rem 0rem 10rem;
  background-position: center top;
  background-repeat: repeat;
  background-size: contain;
}
/* 代理店用インナー */

.sec-dairiten-top-inner {
  position: relative;
  /* background-color: #303030; */
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.sec-dairiten-bottom-inner {
  background-position: top;
  background-repeat: repeat;
  background-size: contain;
}

/* 認証 */
.sec-ninsyou {
  background-image: url(../images/sec-ninsyou-bg.webp);
  padding: 10rem 0rem 10rem;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
/* 価格表記 */

.sec-kakaku {
  background-image: url(../images/sec-kakaku-bg.webp);
  padding: 10rem 0rem 10rem;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
/* 5ステップ施術 */
.sec-tejun {
  background-image: url(../images/sec-tejun-bg.webp);
  padding: 10rem 0rem 10rem;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
/* 導入する理由 */

.sec-reason {
  background-image: url(../images/sec-reason-bg.webp);
  padding: 0rem 0rem 0rem;
  background-position: center top;
  background-repeat: repeat;
  background-size: cover;
}
/* 導入の流れ */

.sec-step {
  background-image: url(../images/sec-step-bg.webp);
  padding: 10rem 0rem 10rem;
  background-position: center top;
  background-repeat: repeat;
  background-size: cover;
}
/* よくある質問 */
.sec-faq {
  background-image: url(../images/sec-faq-bg.webp);
  padding: 10rem 2rem 10rem;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

/*--------------------------------------------------
sp用セクション設定
-----------------------------------------------------*/

@media (max-width: 768px) {
  .sec-cta {
    padding: 5rem 0rem;
  }

  /* 実績 */
  .sec-jisseki {
    padding: 5rem 0rem;
  }
  /* 悩み */

  .sec-nayami {
    padding: 5rem 0rem;
  }

  /* 解決 */
  .sec-kaiketu {
    padding: 5rem 0rem;
  }

  /* 新理論 */

  .sec-riron {
    padding: 5rem 0rem;
  }
  /* 4つのモード */

  .sec-mode {
    padding: 5rem 0rem;
  }
  /* 代理店 */
  .sec-dairiten {
    padding: 0rem 0rem 5rem;
  }
  /* 代理店用インナー */

  /* 認証 */
  .sec-ninsyou {
    padding: 5rem 0rem;
  }
  /* 価格表記 */

  .sec-kakaku {
    padding: 5rem 0rem;
  }
  /* 5ステップ施術 */
  .sec-tejun {
    padding: 5rem 0rem;
  }
  /* 導入する理由 */

  .sec-reason {
    padding: 0rem 0rem 0rem;
  }
  /* 導入の流れ */

  .sec-step {
    padding: 5rem 0rem;
  }
  /* よくある質問 */
  .sec-faq {
    padding: 5rem 2rem;
  }
}

/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
/* ctaボックスの幅設定 */
.sec-cta-container {
  max-width: 850px;
  margin: 0 auto;
}

.kikan-gentei {
  margin-bottom: 3rem;
}
.kikan-gentei img {
  display: block;
  margin: 0 auto;
  width: 80%;
}

.cta-days {
  margin-bottom: 2rem;
}

.cta-days img {
  display: block;
  margin: 0 auto;
  width: 60%;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .kikan-gentei {
    margin-bottom: 2rem;
  }
  .kikan-gentei img {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  .cta-days {
    margin-bottom: 1rem;
  }

  .cta-days img {
    display: block;
    margin: 0 auto;
    width: 90%;
  }
}

.cta-box {
  border: 2px solid #b9a15c;
  background-color: #fff;
}

.cta-box-content-box {
  padding: 2rem;
}
.sec-cta-copy {
  text-align: center;
  font-size: 4.3rem;
  color: var(--b-font-color);
}
@media (max-width: 830px) {
  .cta-box-content-box {
    padding: 2rem 0rem;
  }

  .sec-cta-container {
    max-width: 700px;
    margin: 0 auto;
  }

  .sec-cta-copy {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 560px) {
  .cta-box-content-box {
    padding: 2rem 0rem;
  }
  .sec-cta-copy {
    font-size: 2.5rem;
  }
}
.sec-cta-btn {
  width: 80%;
  margin: 0 auto 2rem;
}
@media (max-width: 500px) {
  .sec-cta-btn {
    width: 100%;
    margin: 0 auto 2rem;
  }
}
@media (max-width: 465px) {
  .sec-cta-copy {
    font-size: 2.3rem;
  }
}
@media (max-width: 410px) {
  .sec-cta-copy {
    font-size: 1.8rem;
  }
}

.sec-cta-btn:hover {
  opacity: 0.7;
}

.sec-cta-bottom-text {
  text-align: right;
}
.sec-cta-bottom-text-item {
  line-height: 0.8;
}

@media (max-width: 768px) {
  .sec-cta-bottom-text p {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------
実績エリア
-----------------------------------------------------*/

.sec-jisseki-container {
  display: flex;
  justify-content: center;
  gap: 9rem;
  margin: 0 auto;
}

.sec-jisseki-img {
  width: 40%;
}

.sec-jisseki-movie {
  width: 28%;
}
@media (max-width: 768px) {
  .sec-jisseki-container {
    flex-direction: column;
    gap: 6rem;
  }

  .sec-jisseki-img {
    width: 100%;
  }

  .sec-jisseki-movie {
    width: 100%;
  }
}

/* 動画用 */
/* 実績セクションの動画枠 */
.sec-jisseki-movie {
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background-color: #000;
}

/* 動画本体 */
.sec-jisseki-movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------
悩みエリア
-----------------------------------------------------*/

.sec-nayami-title {
  text-align: center;
  font-size: 6rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10rem;
}

@media (max-width: 880px) {
  .sec-nayami-title {
    font-size: 5rem;
    margin-bottom: 6rem;
  }
}
@media (max-width: 500px) {
  .sec-nayami-title {
    font-size: 4rem;
  }
}

@media (max-width: 440px) {
  .sec-nayami-title {
    font-size: 3rem;
  }
}

.sec-nayami-text-color {
  color: var(--l-font-color);
}

.sec-nayami-text-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 63%;
  margin: 0 auto 5rem;
  gap: 3rem;
  z-index: 0;
}

.sec-nayami-text-container ::before {
  content: "";
  position: absolute;
  top: 70%;
  left: -330px;
  transform: translateY(-50%);
  width: 370px;
  aspect-ratio: 3 / 7;
  background: url("../images/sec-nayami-person-l.png") no-repeat center /
    contain;
  z-index: -1;
}
.sec-nayami-text-container ::after {
  content: "";
  position: absolute;
  top: 70%;
  right: -330px;
  transform: translateY(-50%);
  width: 370px;
  aspect-ratio: 3 / 7;
  background: url("../images/sec-nayami-person-r.png") no-repeat center /
    contain;
  z-index: -1;
}

@media (max-width: 1100px) {
  .sec-nayami-text-container {
    width: 80%;
  }

  .sec-nayami-text-container ::before {
    top: 51%;
    width: 310px;
    left: -244px;
  }
  .sec-nayami-text-container ::after {
    top: 51%;
    width: 310px;
    right: -244px;
  }
}

@media (max-width: 700px) {
  .sec-nayami-text-container {
    width: 100%;
  }

  .sec-nayami-text-container ::before {
    top: -5%;
    width: 210px;
    left: -84px;
  }
  .sec-nayami-text-container ::after {
    top: -5%;
    width: 210px;
    right: -84px;
  }
}

@media (max-width: 630px) {
  .sec-nayami-text-container ::before {
    top: -5%;
    width: 210px;
    left: -84px;
  }
  .sec-nayami-text-container ::after {
    top: -5%;
    width: 210px;
    right: -84px;
  }
}
@media (max-width: 580px) {
  .sec-nayami-text-container ::before {
    top: -8%;
    width: 180px;
    left: -84px;
  }
  .sec-nayami-text-container ::after {
    top: -8%;
    width: 180px;
    right: -84px;
  }
}
@media (max-width: 540px) {
  .sec-nayami-text-container ::before {
    top: -8%;
    width: 180px;
    left: -93px;
  }
  .sec-nayami-text-container ::after {
    top: -8%;
    width: 180px;
    right: -93px;
  }
}
@media (max-width: 500px) {
  .sec-nayami-text-container ::before {
    top: -5%;
    width: 142px;
    left: -71px;
  }
  .sec-nayami-text-container ::after {
    top: -5%;
    width: 142px;
    right: -71px;
  }
}
@media (max-width: 380px) {
  .sec-nayami-text-container ::before {
    top: -5%;
    width: 122px;
    left: -62px;
  }
  .sec-nayami-text-container ::after {
    top: -5%;
    width: 122px;
    right: -62px;
  }
}

.sec-nayami-text-item {
  display: flex;
  background-color: #fff;
  font-size: 2.4rem;
  padding: 1.5rem 3rem;
  gap: 2rem;
  align-items: center;
}

.sec-nayami-text-item-img {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .sec-nayami-text-item {
    flex-direction: column;
    font-size: 1.6rem;
    padding: 2.5rem 3rem;
    text-align: justify;
  }
  .sec-nayami-text-item-img {
    width: 4rem;
    height: 4rem;
  }
}

.sec-nayami-text-item-text {
  flex: 1;
}

.sec-nayami-dot {
  text-align: center;
  margin-bottom: 6rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .sec-nayami-dot {
    opacity: 0;
  }
}
@media (max-width: 450px) {
  .sec-nayami-dot {
    margin-bottom: 4rem;
  }
}

/*--------------------------------------------------
解決エリア
-----------------------------------------------------*/
.sec-kaiketu-start {
  margin: -22rem auto 5rem;
  max-width: 950px;
  padding: 0 3rem;
}

@media (max-width: 768px) {
  .sec-kaiketu-start {
    margin: -28rem auto 5rem;
    padding: 0 5rem;
  }
}

@media (max-width: 450px) {
  .sec-kaiketu-start {
    margin: -26rem auto 5rem;
    padding: 0 0rem;
  }
}

.sec-kaiketu-title-wrapper {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

/* タイトルは中央のまま（ブロック） */
.sec-kaiketu-title {
  text-align: center;
  margin: 0 auto;
}

/* タイトルの“中身”だけを基準にする箱 */
.sec-kaiketu-title__inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 10rem;
}

/* タイトル画像は中身サイズで表示 */
.sec-kaiketu-title__inner img {
  display: block;
  width: clamp(260px, 40vw, 520px);
  height: auto;
}

/* 装飾は「タイトル右端から一定距離」 */
.sec-kaiketu-title__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  margin-left: 24px;
  width: clamp(90px, 10vw, 160px);
  aspect-ratio: 290 / 333;
  background: url("../images/solution-title-item.png") no-repeat center /
    contain;
  pointer-events: none;
}

/* 下線はtitle基準ではなく“中身基準”にするとズレない */
.sec-kaiketu-title__inner::after {
  content: "";
  position: absolute;
  background-color: #b9a15c;
  width: 96px;
  height: 2px;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
}

/* SPでは装飾を消す（必要ならサイズ縮小でもOK） */
@media (max-width: 768px) {
  .sec-kaiketu-title__inner::before {
    display: none;
  }

  .sec-kaiketu-title__inner img {
    width: 100%;
    max-width: 520px;
  }
}

.sec-kaiketu-container {
  max-width: 1280px;
  margin: 0 auto;
}

.sec-kaiketu-h3 {
  margin: 0 auto;
  max-width: 780px;
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .sec-kaiketu-h3 {
    width: 70%;
  }
}
@media (max-width: 450px) {
  .sec-kaiketu-h3 {
    width: 80%;
  }
}

.sec-kaiketu-wrapper {
  padding: 0 3rem;
}

.sec-kaiketu-list-item {
  display: flex;
  align-items: center;
  background-color: #d8c48a;
  padding: 4rem 3rem 4rem 5rem;
  border-radius: 10px;
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}

.red.inline {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .sec-kaiketu-wrapper {
    padding: 0 0rem;
  }

  .sec-kaiketu-list-item {
    flex-direction: column;
    padding: 4rem 2rem 4rem 2rem;
    font-size: 2rem;
    gap: 3rem;
    text-align: justify;
  }
}

.sec-kaiketu-list-item img {
  display: inline-block;
  margin-right: 2rem;
  width: 7rem;
  aspect-ratio: 174 / 122;
}

.sec-kaiketu::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: -3px;
  width: 407px;
  aspect-ratio: 650 / 922;
  background: url("../images/sec-kaiketu-bottom-img.webp") no-repeat center /
    contain;
  pointer-events: none;
  z-index: 2;
}

/* リストスマホ */

.sec-kaiketu-wrapper-sp {
  display: flex;
  justify-content: center;
  border-radius: 10px;
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 2.5rem;

  gap: 3rem;
}
.sec-kaiketu-list-item-sp {
  background-color: #d8c48a;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.sec-kaiketu-list-item-sp-img {
  display: block;
  width: 25%;
  margin: 0 auto 2rem;
}
.sec-kaiketu-list-item-sp-title {
  text-align: center;
  font-size: 2.5rem;
  padding-bottom: 1rem;
}

.sec-kaiketu-wrapper-sp li {
  text-align: justify;
  text-justify: inter-ideograph;
  padding: 2rem 3rem 3rem;
}
.sec-kaiketu-list-item-sp-text {
  font-size: 1.6rem;
}
/*1320px以下のとき以下を採用*/
@media (max-width: 1320px) {
  .sec-kaiketu::after {
    right: 94px;

    width: 297px;
  }
}
@media (max-width: 1188px) {
  .sec-kaiketu::after {
    right: 42px;
  }
}
@media (max-width: 1060px) {
  .sec-kaiketu::after {
    right: 12px;
    width: 227px;
  }
}
@media (max-width: 980px) {
  .sec-kaiketu::after {
    display: none;
  }
}

/*--------------------------------------------------
新理論エリア
-----------------------------------------------------*/

.sec-riron-title-h2 {
  margin: 0 auto 8rem;
  width: 50%;
}
@media (max-width: 768px) {
  .sec-riron-title-h2 {
    margin: 0 auto 6rem;
    width: 90%;
  }
}
@media (max-width: 500px) {
  .sec-riron-title-h2 {
    margin: 0 auto 3rem;
    width: 100%;
  }
}

.sec-riron-container {
  display: flex;
  margin-bottom: 8rem;
}

.sec-riron-left {
  width: 50%;
}

.sec-riron-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 3rem;
}
.sec-riron-text-box {
  position: relative;
  background-color: #fff;
  padding: 2rem;
}
.sec-riron-img-box2 {
  margin-bottom: 2rem;
}
.sec-riron-img-pc {
  display: block;
}
.sec-riron-img-sp {
  display: none;
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .sec-riron-img-pc {
    display: none;
  }
  .sec-riron-img-sp {
    display: block;
  }

  .sec-riron-img-box2 {
    margin-bottom: 1rem;
  }
}

/*768px以下のとき以下を採用*/
@media (max-width: 500px) {
}

.sec-riron-text-box ::before {
  position: absolute;
  content: "";
  background-image: url(../images/sec-riron-point-img.png);
  background-repeat: no-repeat;
  width: 130px;
  height: 100px;
  top: -39px;
}

@media (max-width: 768px) {
  .sec-riron-container {
    flex-direction: column;
  }

  .sec-riron-right {
    width: 80%;
    margin: 0 auto;
  }
  .sec-riron-left {
    width: 100%;
    text-align: center;
    margin-bottom: 6rem;
  }

  .sec-riron-text-box {
  }
}

@media (max-width: 500px) {
  .sec-riron-right {
    width: 100%;
  }

  .sec-riron-text-box-text {
    font-size: 1.6rem;
  }
}

/*--------------------------------------------------
モード説明
-----------------------------------------------------*/

.sec-mode-title-h2 {
  margin: 0 auto 10rem;
  width: 50%;
}
.sec-mode-container {
  display: flex;
  gap: 2rem;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .sec-mode-title-h2 {
    margin: 0 auto 10rem;
    width: 80%;
  }
}

@media (max-width: 1280px) {
  .sec-mode-container {
    gap: 7rem;
    margin-bottom: 6rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .sec-mode-container {
    margin-bottom: 3rem;
  }
}

.sec-mode-content-list {
  position: relative;
  background-color: #fff;
  padding: 3rem 2rem;
  width: 25%;
  border-radius: 16px;
  box-shadow: 0px 8px 8px 4px rgba(0, 0, 0, 0.1);
  /* min-width: 300px; */
}
.sec-mode-content-list::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 100px;
  left: 50%;
  top: -26px;
  transform: translateX(-50%);
  pointer-events: none;
}

/* 画像だけ差し替え */
.sec-mode-content-list.is-num01::before {
  background-image: url("../images/sec-mode-number-01.png");
}
.sec-mode-content-list.is-num02::before {
  background-image: url("../images/sec-mode-number-02.png");
}
.sec-mode-content-list.is-num03::before {
  background-image: url("../images/sec-mode-number-03.png");
}
.sec-mode-content-list.is-num04::before {
  background-image: url("../images/sec-mode-number-04.png");
}

@media (max-width: 1280px) {
  .sec-mode-content-list {
    width: 45%;
  }
}

@media (max-width: 786px) {
  .sec-mode-content-list {
    width: 100%;
  }
}

.sec-mode-img-wrap {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.sec-mode-content-list img {
  width: 69%;
  height: auto;
  display: block;
}
.sec-mode-h3 {
  text-align: center;
  margin-bottom: 1.2rem;
  color: var(--l-font-color);
  font-size: 1.9rem;
}
.sec-mode-text {
  text-align: justify;
  font-size: 1.6rem;
}
.sec-mode-bottom-text {
  text-align: right;
  font-size: 1.4rem;
  margin-bottom: 10rem;
}

@media (max-width: 768px) {
  .sec-mode-bottom-text {
    text-align: left;
  }
}

/* 説明会エリア */

.sec-mode-sem-container {
  display: flex;
  gap: 2rem;
}

.sec-mode-sem-img {
  width: 50%;
}

.sec-mode-sem-right-box {
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .sec-mode-sem-right-img {
    margin-bottom: 2.5rem;
  }
}

.sec-mode-sem-text-item {
  padding: 0 4rem;
}
.sec-mode-sem-text-item :first-child {
  margin-bottom: 1rem;
}
.sec-mode-sem-text {
  font-size: var(--fz-base);
}

@media (max-width: 768px) {
  .sec-mode-sem-container {
    flex-direction: column;
    gap: 4rem;
  }
  .sec-mode-sem-img {
    width: 100%;
    text-align: center;
  }
  .sec-mode-sem-right-box {
    padding: 0 0rem;
  }
  .sec-mode-sem-text-item {
    padding: 0 2rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }

  .sec-mode-sem-text {
    font-size: var(--fz-base-sp);
  }
}

/*--------------------------------------------------
代理店
-----------------------------------------------------*/

.sec-dairiten-top {
  position: relative;
  background-color: #303030;
  text-align: center;
  padding-bottom: 0rem;
}
@media (max-width: 768px) {
  .sec-dairiten-top {
    padding-top: 3rem;
  }
}

.sec-dairiten-top img {
  display: inline-block;
  vertical-align: bottom;
  margin-bottom: -1px;
}

.sec-dairiten-top::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  width: 35%;
  height: 80px;
  bottom: -26px;
  background-image: url(../images/sec-dairiten-top-top.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media (max-width: 768px) {
  .sec-dairiten-top::after {
    width: 45%;
    bottom: -45px;
  }
}
@media (max-width: 500px) {
  .sec-dairiten-top::after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 80px;
    bottom: -57px;
    background-image: url(../images/sec-dairiten-top-top.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
}

.sec-dairiten-bottom-top-img {
  text-align: center;
  padding-top: 5rem;
  margin: 0 auto 10rem;
}

.sec-dairiten-bottom-top-img img {
  width: 60%;
}
@media (max-width: 768px) {
  .sec-dairiten-bottom-top-img img {
    width: 90%;
  }
}

/* メリットリスト */

.sec-dairiten-merit-container {
}

.sec-dairiten-merit-list {
  position: relative;
  background-color: #fff;
  padding: 9rem 4rem 5rem;
  border-radius: 25px;
  border: solid 2px #d2a606;
  margin-bottom: 15rem;
}

.sec-dairiten-merit-list::before {
  position: absolute;
  content: "";
  height: 120px;
  width: 20%;
  top: -71px;
  left: 50%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.sec-dairiten-merit-list.list-nomber01::before {
  background-image: url(../images/sec-dairiten-m1.png);
}
.sec-dairiten-merit-list.list-nomber02::before {
  background-image: url(../images/sec-dairiten-m2.png);
}
.sec-dairiten-merit-list.list-nomber03::before {
  background-image: url(../images/sec-dairiten-m2-1.png);
}
.sec-dairiten-merit-h3 {
  position: relative;
  text-align: center;
  color: var(--b-font-color);
  font-size: 4rem;
  margin-bottom: 10rem;
}

@media (max-width: 768px) {
  .sec-dairiten-merit-list {
    padding: 5rem 2rem 3rem;
    margin-bottom: 6rem;
  }

  .sec-dairiten-merit-list::before {
    position: absolute;
    content: "";
    height: 120px;
    width: 35%;
    top: -71px;
    left: 50%;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .sec-dairiten-merit-h3 {
    position: relative;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 7rem;
  }
}

.sec-dairiten-merit-h3::after {
  position: absolute;
  content: "";
  background-color: #d2a606;
  height: 2px;
  width: 100px;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.merit-content-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 5rem;
}

.merit-content-left-box {
  position: relative;

  width: 55%;
  flex-shrink: 0;
}
.merit-content-right-box {
  flex: 1;
}

.merit-content-left-box-text {
  margin-bottom: 3rem;
}

.merit-content-left-logo {
  position: absolute;
  left: 0;
  bottom: -45px;
}

.sec-merit-right-text {
  text-align: right;
}

@media (max-width: 768px) {
  .merit-content-container {
    flex-direction: column;
  }
  .merit-content-container img {
    width: 100%;
  }

  .merit-content-left-box {
    position: relative;

    width: 100%;
  }

  .merit-content-left-logo {
    bottom: -42px;
  }

  .merit-content-left-logo img {
    width: 65%;
  }
}

.sec-dairiten-ca-container {
  display: flex;
  justify-content: space-between;
  border-radius: 25px;
  border: solid 2px #d2a606;
  padding: 4rem 4rem 4rem;
  background-color: #f4efe6;
}
.sec-dairiten-ca-img-box {
  width: 24%;
  margin: auto auto;
  text-align: center;
  flex-shrink: 0;
}

.sec-dairiten-ca-text-box {
  flex: 1;
}
.sec-dairiten-ca-img-box img {
  width: 110px;
}

.sec-dairiten-ca-text-box-text {
  color: var(--b-font-color);
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .sec-dairiten-ca-container {
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 2rem;
    gap: 4rem;
  }
}

/*--------------------------------------------------
認証
-----------------------------------------------------*/
.sec-ninsyou-title {
  width: 52%;
  margin: 0 auto 5rem;
}

.sec-ninsyou-content-container {
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .sec-ninsyou-title {
    width: 100%;
    margin: 0rem auto 5rem;
  }

  .sec-ninsyou-content-container {
    width: 100%;
  }
}

/*--------------------------------------------------
価格
-----------------------------------------------------*/

.sec-kakaku-title {
  margin-bottom: 3rem;
}

.sec-kakaku-content-1 {
  width: 90%;
  margin: 0 auto 5rem;
}
.sec-kakaku-content-2 {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .sec-kakaku-content-1 {
    width: 100%;
  }
}

/*--------------------------------------------------
手順
-----------------------------------------------------*/
.sec-tejun-title {
  margin-bottom: 8rem;
}
.sec-tejun-title img {
  display: block;
  margin: 0 auto;
}

.sec-tejun-step-container {
  text-align: center;
}

.sec-tejun-step-container img {
  display: block;
  margin: 0 auto;
  width: 55%;
}
@media (max-width: 768px) {
  .sec-tejun-title {
    margin-bottom: 4rem;
    padding: 0 2rem;
  }

  .sec-tejun-step-container img {
    width: 85%;
  }
}

/*--------------------------------------------------
導入する理由
-----------------------------------------------------*/

.sec-reason-title {
  margin-bottom: 8rem;
}
.sec-reason-title img {
  display: block;
  margin: 0 auto;
}
.sec-reason-text {
  margin: 0 auto;
  max-width: 1000px;
  margin-bottom: 8rem;
  color: var(--b-font-color);
}

@media (max-width: 768px) {
  .sec-reason-text {
    margin-bottom: 4rem;
  }
}

.sec-reason-container {
  text-align: center;
}

.section_inner.sec-reason-inner {
  background-color: rgba(255, 255, 255, 0.8);
  padding-top: 10rem;
  padding-bottom: 10rem;
}

@media (max-width: 768px) {
  .section_inner.sec-reason-inner {
    padding: 5rem 1.5rem;
  }
  .sec-reason-title {
    margin-bottom: 4rem;
    padding: 0 3rem;
  }
}

/*--------------------------------------------------
導入手順
-----------------------------------------------------*/

.sec-step-title {
  margin-bottom: 5rem;
}

.sec-step-title img {
  display: block;
  margin: 0 auto;
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .sec-step-title img {
    width: 60%;
  }
}

.sec-step-text {
  color: var(--b-font-color);
  text-align: center;
  margin: 0 auto 8rem;
}

@media (max-width: 768px) {
  .sec-step-title {
    margin-bottom: 3rem;
  }

  .sec-step-text {
    text-align: left;
    margin: 0 auto 4rem;
  }
}

/*--------------------------------------------------
よくある質問
-----------------------------------------------------*/
.sec-faq-title {
  margin-bottom: 8rem;
}

.sec-faq-title img {
  display: block;

  margin: 0 auto;
}

@media (max-width: 450px) {
  .sec-faq-title img {
    width: 60%;
  }
}

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

/*--------------------
よくある質問
--------------------*/

.qa_title {
  margin-bottom: 3rem;
}

.faq-inner {
  max-width: 950px;
  margin: 0 auto;
}

.faq_item {
  margin-bottom: 1rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.answer {
  display: none;
  padding: 15px;
  background-color: #f2f2f2;
  border-radius: 0px;
  color: var(--b-font-color);
}

.answer p {
  display: flex;
  align-items: center;
  margin: 0;
  width: 90%;
  font-weight: 300;
  text-indent: 1px;
  padding-left: 1em;
}

.answer img {
  width: 25px;
  height: auto;
  margin-right: 10px;
  flex-shrink: 0;
  padding-right: 0.3rem;
}

.question {
  display: flex;
  cursor: pointer;
  padding: 15px 15px 15px 15px;
  position: relative;
  background-color: #fff;
  border-radius: 0px;
  color: var(--b-font-color);
}

.question p {
  display: flex;
  align-items: center;
  width: 90%;

  padding-right: 30px;
  font-weight: 300;
  text-indent: 1px;
  padding-left: 1em;
}

@media (max-width: 768px) {
  .answer p,
  .question p {
    width: 95%;
    font-size: 1.5rem;
    padding-left: 0em;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}

.question img {
  width: 25px;
  height: auto;
  margin-right: 10px;
  flex-shrink: 0;
  padding-right: 0.3rem;
}

.plus {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
}

.plus::before,
.plus::after {
  content: "";
  position: absolute;
  background-color: var(--b-font-color);
  width: 15px;
  height: 3px;
  top: 50%;
  left: 50%;
  transition: transform 0.3s ease;
}

.plus::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.plus::after {
  transform: translate(-50%, -50%);
}

.plus.active::before {
  opacity: 0;
}

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

/*--------------------
フッター部分
--------------------*/
.footer {
  background-color: #5a4a1f;
  padding: 3rem 0rem 24rem;
  text-align: center;
  font-size: 1.4rem;
  color: #ffffff;
}
.footer a {
  color: #fff;
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0rem 25rem;
  }
}

@media (max-width: 500px) {
  .footer {
    padding: 3rem 0rem 16rem;
  }
}

/*--------------------------------------------------
下部固定ヘッダー（PCは非表示）
-----------------------------------------------------*/

.fix_menu_smartphone {
}
.fix-btn-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.fix_menu_smartphone {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  gap: 1rem;
  padding: 1.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
}

.fix_menu_smartphone img {
  display: block;
  width: 40%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .fix_menu_smartphone img {
    width: 100%;
  }
}
