@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 {
  font-size: 2rem;

  font-family:
    "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic,
    "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo,
    Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  color: #000000;
}

.main img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 8px 8px 4px rgba(0, 0, 0, 0.1);
}
/*リンク文字の設定*/
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, 20px);
  /* 行間をシームレスに変更 */

  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.4rem;
  font-weight: 900;
  text-align: center;
}
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;
}
/*--------------------
全体レイアウト/背景設定（PC用）
--------------------*/
/*全体エリア（全体背景を設定するにはここをいじる）*/
.main {
  background-color: #f2f2f2;
  width: 100%;
  max-width: 750px;
  /* コンテンツの最大幅 */
  margin: 0 auto; /* 中央寄せ */
}

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

/* ファストビュー */
.sec_01 {
}
/* FV下実績 */
.sec_02 {
}
/* CTAエリア */
.sec_03 {
}

.sec_03 .btns a {
  display: block;
  transition: opacity 0.3s ease;
}

.sec_03 .btns a:hover {
  opacity: 0.75;
}

.sec_03 .btns .cta-btn {
  display: block;
  width: 100%;
  height: auto;
}

.cta {
  position: relative;
  margin: 0 auto;
}

.btns {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20%;
  text-align: center;
}

.cta-btn {
  display: block;
  max-width: 85%;
  height: auto;
  margin: 0 auto 2rem;
}

.btns img {
  border-radius: 20px;
  overflow: hidden;
}

/*768px以下のとき以下を採用*/
@media (max-width: 500px) {
  .btns {
    bottom: 20%;
    text-align: center;
  }
  .cta-btn {
    margin: 1rem auto 1rem;
  }
  .btns img {
    border-radius: 10px;
    overflow: hidden;
  }
}

/* 悩み */
.sec_04 {
}
/* メオグラムとは */
.sec_05 {
}
/* なぜメオグラムなのか */
.sec_06 {
}
/* サポート内容 */
.sec_07 {
}
/* 選ばれる理由 */
.sec_08 {
}
/* こんな店にオススメ */
.sec_09 {
}
/* 導入実績 */
.sec_10 {
}
/* お客様の声 */
.sec_11 {
}
/* 料金プラン */
.sec_12 {
}
/* ご利用の流れ */
.sec_13 {
}
/* よくある質問 */
.sec_14 {
}

.sec_cta {
  padding: 1.5rem 0rem;
  background-color: #c6ffff;
}
/*--------------------
フッター部分
--------------------*/
.footer {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background-color: #0099dd;
  padding: 2rem 2rem;
  text-align: center;
  font-size: 1.4rem;
  color: #ffffff;
}
.footer a {
  color: #fff;
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem 17rem;
    font-size: 1.2rem;
  }
}

/*500px以下のとき以下を採用*/
@media (max-width: 500px) {
  .footer {
    padding: 2rem 1rem 10rem;
    font-size: 1.2rem;
  }
}

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

.fix_menu_smartphone {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  width: 100%;
}

.fix_menu_smartphone .menu_left,
.fix_menu_smartphone .menu_right {
  width: 50%;
}

.fix_menu_smartphone a {
  display: block;
}

.fix_menu_smartphone .btn {
  display: block;
  width: 100%;
  height: auto;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .fix_menu_smartphone {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    flex-direction: row;
    width: 100%;
    max-width: none;
  }

  .fix_menu_smartphone .menu_left,
  .fix_menu_smartphone .menu_right {
    width: 50%;
  }

  .fix_menu_smartphone a {
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    width: 100%;
    height: auto;
  }

  .fix_menu_smartphone .btn {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* PC表示 */
@media screen and (min-width: 768px) {
  .fix_menu_smartphone {
    top: 70%;
    left: calc(50% + 400px);
    bottom: auto;
    width: auto;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 12px;
  }

  .fix_menu_smartphone .menu_left,
  .fix_menu_smartphone .menu_right {
    width: auto;
  }

  .fix_menu_smartphone a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 242px;
    height: 134px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #fff;
  }

  .fix_menu_smartphone .btn {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/*--------------------------------------------------
ページ上部へ戻るボタン
-----------------------------------------------------*/

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background-color: #0099dd;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.pagetop:hover {
  color: #ffffff;
  background-color: #007bb3;
}

.pagetop-arrow {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
}

.pagetop-text {
  color: #ffffff;
  margin-top: 4px;
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}

/* スマホでは非表示 */
@media screen and (max-width: 767px) {
  .pagetop {
    display: none;
  }
}

/*--------------------------------------------------
特商法
-----------------------------------------------------*/

.law {
  padding: 40px 20px;
  background-color: #f7fbfe;
}

.law-inner {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.law-title {
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid #0099dd;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #0099dd;
  text-align: center;
}

.law-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background-color: #ffffff;
  border: 1px solid #cfeaf7;
}

.law-table th,
.law-table td {
  padding: 18px 20px;
  border: 1px solid #cfeaf7;
  font-size: 16px;
  line-height: 1.8;
  vertical-align: top;
  word-break: break-word;
}

.law-table th {
  width: 32%;
  background-color: #e8f6fc;
  font-weight: 700;
  color: #003b57;
  text-align: left;
}

.law-table td {
  width: 68%;
  background-color: #ffffff;
  color: #222222;
}

.law-table a {
  color: #0099dd;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .law {
    padding: 24px 16px;
  }

  .law-title {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .law-table,
  .law-table tbody,
  .law-table tr,
  .law-table th,
  .law-table td {
    display: block;
    width: 100%;
  }

  .law-table tr {
    margin-bottom: 14px;
    border: 1px solid #cfeaf7;
    background-color: #ffffff;
  }

  .law-table th,
  .law-table td {
    border: none;
  }

  .law-table th {
    padding: 14px 16px 8px;
    background-color: #e8f6fc;
    font-size: 15px;
  }

  .law-table td {
    padding: 0 16px 14px;
    font-size: 15px;
    line-height: 1.7;
  }
}

.top-link {
  text-align: center;
  margin-top: 2rem;
}

/*--------------------------------------------------
プライバシーポリシー
-----------------------------------------------------*/

.sub-page {
  padding: 40px 20px;
  background-color: #f7fbfe;
}

.info-page-inner,
.policy-page-inner {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.info-page-title,
.policy-page-title {
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid #0099dd;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0099dd;
  text-align: center;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background-color: #ffffff;
  border: 1px solid #cfeaf7;
}

.info-table th,
.info-table td {
  padding: 18px 20px;
  border: 1px solid #cfeaf7;
  font-size: 1.6rem;
  line-height: 1.8;
  vertical-align: top;
  word-break: break-word;
}

.info-table th {
  width: 32%;
  background-color: #e8f6fc;
  font-weight: 700;
  color: #003b57;
  text-align: left;
}

.info-table td {
  width: 68%;
  background-color: #ffffff;
  color: #222222;
}

.info-table a,
.policy-box a {
  color: #0099dd;
  text-decoration: underline;
}

.policy-box {
  background-color: #ffffff;
  border: 1px solid #cfeaf7;
  padding: 32px 28px;
}

.policy-box p {
  margin: 0 0 16px !important;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #222222;
}

.policy-section {
  margin-top: 32px;
}

.policy-section h2 {
  margin: 0 0 14px;
  padding: 12px 16px;
  background-color: #e8f6fc;
  border-left: 5px solid #0099dd;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #003b57;
  text-align: left;
}

.policy-section ul {
  margin: 0 0 16px;
  padding-left: 1.6em;
}

.policy-section li {
  margin-bottom: 8px;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #222222;
}

.policy-date {
  margin-top: 32px !important;
  padding-top: 20px;
  border-top: 1px solid #cfeaf7;
  text-align: right;
  font-size: 1.4rem;
  color: #666666;
}

@media screen and (max-width: 767px) {
  .sub-page {
    padding: 24px 16px;
  }

  .info-page-title,
  .policy-page-title {
    margin-bottom: 16px;
    font-size: 2.2rem;
  }

  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table tr {
    margin-bottom: 14px;
    border: 1px solid #cfeaf7;
    background-color: #ffffff;
  }

  .info-table th,
  .info-table td {
    border: none;
  }

  .info-table th {
    padding: 14px 16px 8px;
    background-color: #e8f6fc;
    font-size: 1.5rem;
  }

  .info-table td {
    padding: 0 16px 14px;
    font-size: 1.5rem;
    line-height: 1.7;
  }

  .policy-box {
    padding: 22px 16px;
  }

  .policy-box p,
  .policy-section li {
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .policy-section {
    margin-top: 24px;
  }

  .policy-section h2 {
    padding: 10px 12px;
    font-size: 1.7rem;
    line-height: 1.6;
  }

  .policy-date {
    text-align: left;
    font-size: 1.3rem;
  }
}
/*--------------------------------------------------
サンクスページ
-----------------------------------------------------*/

/* サンクスページ全体 */
.thanks-page {
  padding: 80px 20px;
  background: #f7fbfe;
}

/* 横幅調整 */
.thanks-page-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* ページタイトル */
.thanks-page-title {
  margin: 0 0 30px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #0099dd;
}

/* 本文ボックス */
.thanks-box {
  padding: 50px 40px;
  background: #ffffff;
  border: 1px solid #d9edf8;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 153, 221, 0.08);
}

/* リード文 */
.thanks-lead {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  color: #222222;
}

/* 段落 */
.thanks-box p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 2;
  color: #333333;
}

/* 補足案内 */
.thanks-note {
  margin-top: 30px;
  padding: 24px;
  background: #f0f9ff;
  border-left: 5px solid #0099dd;
  border-radius: 10px;
}

/* ボタンエリア */
.thanks-button-wrap {
  margin-top: 40px;
  text-align: center;
}

/* 戻るボタン */
.thanks-button {
  display: inline-block;
  min-width: 240px;
  padding: 16px 24px;
  background: #0099dd;
  border: 1px solid #0099dd;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

/* 未訪問・訪問済みともに白文字 */
.thanks-button:link,
.thanks-button:visited {
  color: #ffffff;
}

/* ホバー時は青文字 */
.thanks-button:hover {
  background: #ffffff;
  color: #0099dd;
}

/* スマホ調整 */
@media screen and (max-width: 767px) {
  /* 余白調整 */
  .thanks-page {
    padding: 56px 10px;
  }

  /* タイトル */
  .thanks-page-title {
    margin-bottom: 24px;
    font-size: 28px;
  }

  /* ボックス */
  .thanks-box {
    padding: 32px 20px;
    border-radius: 12px;
  }

  /* リード文 */
  .thanks-lead {
    font-size: 18px;
  }

  /* 本文 */
  .thanks-box p {
    font-size: 15px;
    line-height: 1.9;
  }

  /* ボタン */
  .thanks-button {
    width: 100%;
    min-width: auto;
    padding: 15px 20px;
  }
}
