@charset "utf-8";

/*-----------------------------------------------------
大見出し
-------------------------------------------------------*/

/* 中見出し
------------------------------------------------*/

/* 小見出し/コメント */

/* 1400px以下 */
@media only screen and (max-width: 1399px) {}

/* 1200px以下 */
@media only screen and (max-width: 1199px) {}

/* タブレット以下 */
@media only screen and (max-width: 991px) {}

/* スマホ */
@media only screen and (max-width: 767px) {}

/* -----------------------------------------------------
container
------------------------------------------------------- */
.container {
  max-width: 350px;
  padding: 0;
}

@media only screen and (max-width: 1399px) {
  .container {
    max-width: 350px;
    padding: 0;
  }
}

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 350px;
    padding: 0;
  }
}

@media only screen and (max-width: 991px) {
  .container {
    max-width: 350px;
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: 350px;
    padding: 0;
  }
}

/* -----------------------------------------------------
固定背景（左右）
------------------------------------------------------- */
.side-bg-left {
  position: fixed;
  top: 0;
  height: 100vh;
  background-color: #ffffff;
  pointer-events: none;
  z-index: 0;
}

.side-bg-right {
  position: fixed;
  top: 0;
  height: 100vh;
  background-color: #ffffff;
  pointer-events: none;
  z-index: 0;
}


.side-bg-left {
  left: 0;
  width: calc((100vw - 400px) / 2);
}

.side-bg-right {
  right: 0;
  width: calc((100vw - 400px) / 2);
}

/*-----------------------------------------------------
レイアウト
-------------------------------------------------------*/

.layout {
  display: flex;
  justify-content: center;
}

.main-content {
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  background: #b5b5b5;
}

/*-----------------------------------------------------
header
-------------------------------------------------------*/
#Header {
  /* ▼基本設定 */
  width: 100%;
  max-width: 400px;
  /* メイン幅に合わせる */
  margin: 0 auto;
  /* 中央揃え */

  /* ▼固定表示の設定 */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;

  /* ▼アニメーション設定（重要） */
  transition: transform 0.3s ease !important;

  /* ▼PCでは非表示（初期値） */
  display: none;
}

/* ▼隠すときに付与するクラス（最優先） */
.header-hidden {
  transform: translateY(-100%) !important;
}

/* ▼スマホ（991px以下）の時だけ表示する設定 */
@media (max-width: 991px) {
  #Header {
    display: block;
    /* スマホで表示 */
  }

  /* 固定ヘッダー分の余白を確保 */
  body {
    padding-top: 70px;
  }
}

/* -----------------------------------------------------
ハンバーガーメニュー
------------------------------------------------------ */
.bg-navi {
  background: rgb(98 98 98 / 64%);
  ;
}

.nav-link {
  color: #fff !important;
}

.nav-link:focus,
.nav-link:hover {
  color: #fff !important;
}

/* 閉じているとき：collapsed が付いている時 → 三本線 */
.navbar-toggler.collapsed .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* 開いたとき：collapsed が無い時 → × */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e") !important;
}

/* -----------------------------------------------------
PC表示（992px以上）のヘッダーカスタマイズ
------------------------------------------------------- */
@media (min-width: 992px) {

  /* 1. ヘッダーを表示し、横幅制限を解除して画面いっぱいに */
  #Header {
    display: block !important;
    /* 表示させる */
  }

  /* 2. 中身（ロゴ）を中央寄せにする */
  #Header .container-fluid {
    justify-content: center;
    /* Flexboxで中央揃え */
  }

  /* 3. ハンバーガーボタンとメニュー中身を非表示にする */
  .navbar-toggler,
  #header_nav {
    display: none !important;
  }

  /* 念のためロゴの余白調整 */
  .navbar-brand {
    margin: 0;
  }
}

/* -----------------------------------------------------
中央400pxを基準に左右メニューを中央揃えにする
------------------------------------------------------ */

/* 左メニューの位置調整 */
.side-menu.left .pc_menu {
  position: fixed;
  top: 50%;
  left: calc((100vw - 400px) / 2 - 285px);
  /* ←メニュー幅の半分に置換 */
  transform: translateY(-50%);
  z-index: 10;
}

/* 右メニューの位置調整 */
.side-menu.right .pc_menu {
  position: fixed;
  top: 50%;
  right: calc((100vw - 400px) / 2 - 125px);
  transform: translateY(-50%);
  z-index: 10;
}


/* スマホ非表示 */
@media (max-width: 991px) {
  .side-menu {
    display: none;
  }
}

.side-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu_logo {
  width: 95%;
}

.side-menu_text {
  font-size: 1.2rem;
  color: #1d1045;
  font-weight: 600;
  padding: 0.25rem 0 0;
}

.side-menu a {
  color: #1d1045
}

.side-menu a:hover {
  color: #443474;
}

/*------------CTAボタン-------------*/
a.navi_btn-shiryou-color {
  color: #ffffff;
  /*CTAの文字色*/
  background-color: #017e2a;
  /*CTAボタン色*/
  border-bottom: 5px solid #004517;
  /*CTAボタンの影色*/
}

a.navi_btn-shiryou-color:hover {
  margin-top: 3px;
  color: #fff;
  /*CTAがホバーされた時の文字色*/
  background: #039b36;
  /*CTAがホバーされた時のボタン色*/
  border-bottom: 2px solid #039b36;
  された時のボタンの影色*/
}

a.navi_btn-kengaku-color {
  color: #ffffff;
  /*CTAの文字色*/
  background-color: #07818c;
  /*CTAボタン色*/
  border-bottom: 5px solid #00565e;
  /*CTAボタンの影色*/
}

a.navi_btn-kengaku-color:hover {
  margin-top: 3px;
  color: #fff;
  /*CTAがホバーされた時の文字色*/
  background: #1699a5;
  /*CTAがホバーされた時のボタン色*/
  border-bottom: 2px solid #1699a5;
  /*CTAがホバーされた時のボタンの影色*/
}

a.navi_btn-tel-color {
  color: #ffffff;
  /*CTAの文字色*/
  background-color: #ff8400;
  /*CTAボタン色*/
  border-bottom: 5px solid #ce6b00;
  /*CTAボタンの影色*/
}

a.navi_btn-tel-color:hover {
  margin-top: 3px;
  color: #fff;
  /*CTAがホバーされた時の文字色*/
  background: #f58f22;
  /*CTAがホバーされた時のボタン色*/
  border-bottom: 2px solid #f58f22;
  /*CTAがホバーされた時のボタンの影色*/
}

.navi_cta_btn,
a.navi_cta_btn,
button.navi_cta_btn {
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0.8rem .5rem;
  width: 12rem;
  border-radius: 50vw;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.navi_cta_smalltext {
  font-size: 1rem;
}


/*-----------------------------------------------------
共通
-------------------------------------------------------*/
section {
  padding: 2rem 0;
}

a {
  text-decoration-line: none;
}

.w-90 {
  width: 90%;
}

p {
  font-size: 14px;
  line-height: 1.8;
}

.alpha:hover {
  opacity: 0.7;
}

/*-----------------------------------------------------
フォント
-------------------------------------------------------*/
.text-bold {
  font-weight: bold;
}

.text-bold02 {
  font-weight: 900;
}

.text-blue {
  color: #1d1045;
}

.text-white {
  color: #fff;
}

.text-red {
  color: #ff000c;
}

.text-orange {
  color: #ff6c00;
}

.text-yellow {
  color: #eeff00ff;
}

.text-green {
  color: #00b5b3;
}

.text-grey {
  color: #6e6e6e;
}

/*-----------------------------------------------------
背景
-------------------------------------------------------*/
.yellow-bg {
  background-color: #fffde8;
}

.bg-orange {
  background-color: #ff6600;
}

.bg-red {
  background-color: #ff0000;
}

.bg-blue {
  background-color: #00b5b3;
}

.bg-grey {
  background-color: #fafafa;
}

/*-----------------------------------------------------
タイトル
-------------------------------------------------------*/
.ttl {
  color: #1d1045;
  /*文字色*/
  padding: 0.5em 0;
  /*上下の余白*/
  border-top: solid 3px #1d1045;
  /*上線*/
  border-bottom: solid 3px #1d1045;
  /*下線*/
  text-align: center;
  font-weight: 900;
  margin-bottom: 2rem;
}

.ttl_small {
  font-size: 25px;
}

/*-----------------------------------------------------
CTA
-------------------------------------------------------*/
/*比較CTAボタン*/
a.btn_hikaku {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 1rem auto;
  padding: 0.5rem 0;
  position: relative;

  font-weight: bold;
  color: #fff;
  /* 白文字 */
  text-align: center;
  text-decoration: none;

  border: none;
  border-right: 4px solid #007025;
  border-bottom: 4px solid #007025;
  border-left: 4px solid #188f00;
  border-radius: 9999px;

  background: linear-gradient(90deg,
      #46df00 0%,
      #369200 30%,
      #00a82a 70%,
      #007510 100%);
}


/*CTAボタン*/
a.btn_12 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 1rem auto;
  padding: 12px 36px;
  position: relative;

  font-weight: bold;
  color: #fff;
  /* 白文字 */
  text-align: center;
  text-decoration: none;

  border: none;
  border-right: 4px solid #a70000;
  border-bottom: 10px solid #a70000;
  border-left: 4px solid #ff0000;
  border-radius: 9999px;

  background: linear-gradient(90deg,
      #df3e3e 0%,
      #ff0505 30%,
      #f10000 70%,
      #ff0000 100%);
}

/*-----------------------------------------------------
FV
-------------------------------------------------------*/
.fv {
  padding-top: 3rem;
}

@media only screen and (max-width: 991px) {
  .fv {
    padding-top: 0;
  }
}

/*-----------------------------------------------------
比較表
-------------------------------------------------------*/
.hikaku_mainttl {
  color: #fff;
  text-align: center;
  padding: 0.25em;
  background-color: #ff6600;
}


.hikaku_box {
  margin-top: 3.5rem;
  background-color: #fff;
}

.hikaku_small_text {
  font-size: 0.65rem;
}

.hikaku_icon {
  margin-top: -1.8rem;
  width: 3.5rem;
  margin-bottom: 0.5rem;
}

/*背景とボーダー
-------------------------------------------------------*/
/*1位の枠線*/
.border_red_top {
  border-top: 3px solid #ff2400;
}

.border_red_left {
  border-left: 3px solid #ff2400;
}

.border_red_right {
  border-right: 3px solid #ff2400;
}

.border_red_bottom {
  border-bottom: 3px solid #ff2400;
}

/*2位以下の枠線*/
.border_top {
  border-top: 1px solid #363636;
}

.border_left {
  border-left: 1px solid #363636;
}

.border_right {
  border-right: 1px solid #363636;
}

.border_bottom {
  border-bottom: 1px solid #363636;
}

/*-----------------------------------------------------
ポイント
-------------------------------------------------------*/
.point {
  padding-bottom: 0.5rem;
}

.point-icon {
  display: flex;
  align-items: center;
  gap: 0 22px;
}

.point-icon img {
  max-width: 70px;
  aspect-ratio: 1 / 1;
  /* 正円に固定 */
  border: 3px solid #ff966dff;
  border-radius: 50%;
}

.point-icon p {
  position: relative;
  padding: .8em 1em;
  border-radius: 5px;
  background-color: #ffede1;
  color: #333333;
  margin-bottom: 0;
  line-height: 1.35em;
}

.point-icon p::before {
  position: absolute;
  left: -0.8rem;
  width: 1rem;
  height: 1rem;
  background-color: #ffede1;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  content: '';
  top: 50%;
  transform: translateY(-50%);
}

.orange-box {
  background-color: #fff8d8;
  border: 2px solid #ff6600;
  border-radius: 30px;
  padding: 1rem;
}

.orange-box p {
  line-height: 1.5rem;
}

.green-box {
  background-color: #00b5b3;
}

.point_hikaku_ttl {
  background-color: #ff6600;
  border-radius: 50vw;
  font-size: 1rem;
  ;
  padding: 0.5rem;
}

.orange-triangle {
  width: 50px;
  height: 10px;
  border-left: 50px solid transparent;
  /* 左の透明な辺 */
  border-right: 50px solid transparent;
  /* 右の透明な辺 */
  border-top: 40px solid #ff6600;
  /* 下向きの三角形（色を付ける辺） */
}

.point-top1box {
  background-color: #fffbe2;
  border-radius: 30px;
  padding: 1rem 0.5rem;
  margin: 0 1rem;
}

.triangle-down {
  width: 50px;
  height: 10px;
  border-left: 50px solid transparent;
  /* 左の透明な辺 */
  border-right: 50px solid transparent;
  /* 右の透明な辺 */
  border-top: 40px solid red;
  /* 下向きの三角形（色を付ける辺） */
}

.top1_box {
  background-color: #ffeebf;
  border: 3px solid #ff0000;
  border-radius: 20px;
  padding: 1rem;
}

.point-box02 {
  background-color: #ffffff;
  border: 3px solid #ff6600;
  border-radius: 20px;
  padding: 0.5rem;
  margin-top: 2rem;
}

.point-box02_text {
  background-color: #ff6600;
  border-radius: 50vw;
  padding: 0.25rem 1rem;
  width: 15rem;
  margin-top: -1.5rem;
  line-height: 1.5;
}

.osusume_top1 {
  background-color: #00b5b3;
  padding-top: 0;
}

/*-----------------------------------------------------
ランキング
-------------------------------------------------------*/
#ranking {}

.main_ttl {
  padding: 0.5rem 0;
  margin-bottom: 1.5rem;
}

/*各サービスを囲うボックス
-------------------------------------------------------*/
.box01 h2 img {
  position: absolute;
  left: 5px;
  width: 55px;
  height: auto;
}

.top3_ttl {
  padding-left: 3rem;
}

.box01 h2 {
  background: #5f5d5d;
  position: relative;
  margin-top: 0;
  padding: 15px 20px 15px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px 6px 0 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  font-weight: 700;
  font-size: 20px;
}

.box01 {
  border: 3px solid #5f5d5d;
  border-radius: 12px;
  background: #ffefd3;
  margin-bottom: 40px;
}

/*各サービスの比較項目
-------------------------------------------------------*/
.box02 {
  padding: 0 20px;
}

.rank_hikaku {
  background-color: #fff;
  border: 2px solid #f89c46;
  max-width: 350px;
  width: 100%;
}

.hikaku_border {
  border: 2px solid #f89c46;
}

.star_pic img {
  width: 2.5rem;
}

.hikaku_text_big {
  font-size: 1.5rem;
}

/*おすすめポイント
-------------------------------------------------------*/
h3.ranking_point {
  color: #ffffff;
  background: #5f5d5d;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00c0f9', endColorstr='#0358e6', GradientType=1);
  position: relative;
}

h3.ranking_point {
  font-size: 16px;
  text-align: left;
  padding: 15px 15px 15px 100px;
  margin: 0.5rem;
}

.ribbon_point {
  display: inline-block;
  position: absolute;
  top: -10px;
  left: 15px;
  margin: 0;
  padding: 10px 0;
  z-index: 2;
  width: 60px;
  text-align: center;
  color: #334667;
  font-size: 13px;
  background: #fff78b;
  border-radius: 2px 0 0 0;
}

.ribbon_point:before {
  position: absolute;
  content: '';
  top: 0;
  right: -7px;
  border: none;
  border-bottom: solid 10px #19364e;
  border-right: solid 7px transparent;
}

.ribbon_point:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 30px solid #fff78b;
  border-right: 30px solid #fff78b;
  border-bottom: 10px solid transparent;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  color: #ffd600;
}

/*最後の訴求の吹き出し
-------------------------------------------------------*/
/* ボックス全体 */
.box-019 {
  position: relative;
  margin-top: 2em;
  margin-bottom: 2em;
  padding: 2em 1.5em 1em 1.5em;
  border: 2px solid #61d0d1;
  border-radius: 8px;
  background-color: #fff;
}

/* 吹き出しラベル */
.tips-label {
  position: absolute;
  top: -1.2em;
  left: 1em;
  padding: 0.4em 1.2em;
  border-radius: 25px;
  background-color: #61d0d1;
  color: #333;
  font-size: 0.9em;
  font-weight: bold;
}

/* 吹き出し三角 */
.tips-label::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 8px;
  background-color: #61d0d1;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* 吹き出し本文 */
.tips-text {
  margin: 0;
  font-weight: bold;
}

/* PC画像のfigure余白リセット */
.box-019 .row figure {
  margin: 0;
}


/*-----------------------------------------------------
footer
-------------------------------------------------------*/
#Footer {
  color: #fff;
  background-color: #ff7b00;
  padding: 0 2em 7em;
}

#Footer p {
  font-size: 0.8rem;
}


/*-----------------------------------------------------
scroll-up
-------------------------------------------------------*/
.scroll-up {
  bottom: 125px;
}

/*-----------------------------------------------------
1位はこちら
-------------------------------------------------------*/
.fix-btn {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  /* スマホサイズに応じて調整 */
  z-index: 1000;
}
.fix_sp{
  width: 400px;
}