@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 {
  width: 100%;             /* 基本は親要素に合わせて広がる */
  max-width: 350px;        /* ただし350pxで止める */
  padding: 0;              /* 内側の余白を削除 */
  margin-left: auto;       /* 左側の余白を自動（中央寄せ必須） */
  margin-right: auto;      /* 右側の余白を自動（中央寄せ必須） */
}
/* 親要素(.main-content: 400px)いっぱいに広げる設定 */
.container-fluid {
  width: 100%;             /* 親要素の幅(400px)に合わせる */
  max-width: 100%;         /* 制限を解除して親に追従させる */
  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-image: url("../images/left.png");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}

.side-bg-right {
  position: fixed;
  top: 0;
  height: 100vh;
  background-image: url("../images/right.png");
  background-size: cover;
  background-position: right;
  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;
  z-index: 100;
}

/*-----------------------------------------------------
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: #0096cdb3;
}
.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: flex-start;
}
.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-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: 14rem;
  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;
}
li {
  font-size: 14px;
}
.alpha:hover{
  opacity: 0.7;
}
/*-----------------------------------------------------
フォント
-------------------------------------------------------*/
.text-bold{
  font-weight: bold;
}
.text-bold02{
  font-weight: 900;
}
.text-blue{
  color: #0096cd;
}
.text-white{
  color: #fff;
}
.text-red{
  color: #ff000c;
}
.text-orange{
  color: #ff6c00;
}
.text-yellow{
  color: rgb(255, 217, 0);
}
.yellow-marker{
  background: linear-gradient(transparent 60%, #f5dca0 60%);
}

/*-----------------------------------------------------
背景
-------------------------------------------------------*/
.yellow-bg{
  background-color: #fffde8;
}
.bg-blue{
  background-color: #0096cd;
}
.bg-green{
  background-color: #00b5b3;
}
.bg-red{
  background-color: #ff0000;
}
.bg-gray{
  background-color: #fffae1;
}
.bg-white{
  background-color: #fffae1;
}

/*-----------------------------------------------------
タイトル
-------------------------------------------------------*/
.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 #ff6000;
  border-bottom: 4px solid #eb5900;
  border-left: 4px solid #ff9b00;
  border-radius: 9999px;

  background: linear-gradient(90deg, #ffa700 0%, #f78000 30%, #f98a00 70%, #ff6a00 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 #ff6000;
  border-bottom: 10px solid #eb5900;
  border-left: 4px solid #ff9b00;
  border-radius: 9999px;

  background: linear-gradient(90deg, #ffa700 0%, #f78000 30%, #f98a00 70%, #ff6a00 100%);
}

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

/*-----------------------------------------------------
比較表
-------------------------------------------------------*/
.hikaku{
  padding-top: 0;
}
.scroll_area {
    width: 100%;
    max-width: 100%;
}
.hikaku_mainttl {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 15px;
    padding: .8em 1.2em;
    border-radius: 50vw;
    background-color: #0096cd;
}
.hikaku_mainttl::before {
    position: absolute;
    bottom: -15px;
    width: 30px;
    height: 15px;
    background-color: #0096cd;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
.hikaku td p{
  font-size: 13px;
  line-height: 1.3;
}
.hikaku_box{
  margin-top: 3.5rem;
  min-width: 640px;
}
.hikaku_small_text{
  font-size: 0.65rem;
}
.hikaku_icon{
  margin-top: -1.8rem;
  width: 3.5rem;
  margin-bottom: 0.5rem;
}
.hikaku_icon02{
  width: 2.6rem;
  margin-top: -1.5rem;
  margin-bottom: 0.5rem;
}
.hikaku-indent{
  padding-left: 1.5rem;
  text-indent: -0.7rem;
}
/*背景とボーダー
-------------------------------------------------------*/
/*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;
}

.scroll_area {
    width: 100%;
    overflow-x: auto;
    display: block;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    /* 3カラム内でもはみ出させるための必須設定 */
    position: relative;
    z-index: 5;
}

.scroll_area:active {
    cursor: grabbing;
}

/* 画像がマウスのドラッグ（保存動作）を邪魔しないようにする */
.scroll_area img {
    pointer-events: none;
}

/* リンクボタン自体はクリックできるようにする */
.scroll_area a {
    display: block;
    pointer-events: auto;
}

/* PCで横スクロールバーを見せる（操作できることを伝える） */
.scroll_area::-webkit-scrollbar {
    height: 8px;
}
.scroll_area::-webkit-scrollbar-thumb {
    background: #0096cd;
    border-radius: 10px;
}

/*-----------------------------------------------------
ポイント
-------------------------------------------------------*/
.point{
  padding-bottom: 0.5rem;
}
.point01,.point02,.point03{
  padding: 1.5rem;
}
.point-box01{
  background-color:#fff8d8;
  border: 2px solid #ff6600;
  border-radius:20px;
  padding: 0.5rem;
}
.point-box01 h3{
  font-size: 1.15rem;
}

.triangle-down {
  width: 50px;
  height: 10px;
  border-left: 50px solid transparent; /* 左の透明な辺 */
  border-right: 50px solid transparent; /* 右の透明な辺 */
  border-top: 40px solid red; /* 下向きの三角形（色を付ける辺） */
}
.point-hukidashi {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 15px;
    padding: .8em 1.2em;
    border: 3px solid #007b91;
    border-radius: 5px;
    background-color: #ffffff;
    color: #333333;
    margin-top: 2rem;
}
.point-hukidashi::before,
.point-hukidashi::after {
    position: absolute;
    bottom: -15px;
    width: 30px;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
.point-hukidashi::before {
    background-color: #007b91;
}
.point-hukidashi::after {
    bottom: -11px;
    background-color: #ffffff;
}

.top1_box{
  background-color: #ffeebf;
  border: 3px solid #007b91;
  border-radius: 20px;
  padding: 1rem;
}
.point-box02{
  background-color: #ffffff;
  border: 3px solid #007b91;
  border-radius: 20px;
  padding: 0.5rem;
  margin-top: 2rem;
}
.point-box02_text{
  background-color: #007b91;
  border-radius: 50vw;
  padding: 0.25rem 1rem;
  width: 15rem;
  margin-top: -1.5rem;
  line-height: 1.5;
}
.osusume_top1{
  background-color: #0096cd;
  padding-top: 0;
}

.ecocarat ul{
  width: 100%;
  flex-wrap: wrap
}
.ecocarat li{
  width: 33%;
}
/*-----------------------------------------------------
ランキング
-------------------------------------------------------*/
#ranking{
}
.main_ttl{
  background-color: #0096cd;
  padding: 0.5rem 0;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/*各サービスを囲うボックス
-------------------------------------------------------*/
.box01 h2 img {
    position: absolute;
    left: 5px;
    width: 55px;
    height: auto;
}
.top3_ttl{
  padding-left: 3rem;
}
.box01 h2{
    background: #0096cd;
    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 #0096cd;
    border-radius: 12px;
    background: #ffefd3;
    margin-bottom: 40px;
}

/*各サービスの比較項目
-------------------------------------------------------*/
.box02{
  padding:0 20px;
}
.rankingRating{
    border: 1px solid #00b5b3;
    background-color: #fff;
    line-height: 1.8em;
    font-weight: bold;
    margin-top: 0.5em;
}
.chart_ttl{
  background-color: #00b5b3;
  padding: 0.5rem;
  color: #fff;
  font-size: 1rem;
}

/*おすすめポイント
-------------------------------------------------------*/
h3.ranking_point{
    color: #ffffff;
    background: #00b5b3;
    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;
}
.text-indent{
padding-left: 2rem;
    text-indent: -0.7rem;
}
/*最後の訴求の吹き出し
-------------------------------------------------------*/
/* ボックス全体 */
.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;
}

/*-----------------------------------------------------
流れ
-------------------------------------------------------*/
.step h3{
  font-size: 1.2rem;
  margin-bottom: 0.15rem;
}
.step p{
  line-height: 1.3;
}

/*-----------------------------------------------------
ラスト訴求
-------------------------------------------------------*/

/*-----------------------------------------------------
評価基準
-------------------------------------------------------*/
#Hyoukakizyun{
  background-color: #FFF;
}
.hyoukakizyun table {
  width: 100%;
}
.hyoukakizyun_score_text{
  font-size: 0.55rem;
  line-height: 1.25em;
}
.hyoukakizyun_score{
  font-size: 0.9rem;
  padding-top: 0.1rem;
}
.hyoukakizyun th{
  font-size: 1rem;
  padding: 0.35rem 0;
  width: auto;
  display: block;
  font-size: 0.7rem;
}
.hyoukakizyun_th_bg01{
  background-color: #EAEAEA;
  border: 1px solid #333;
}
.hyoukakizyun td{
  background-color: #fff;
  border: 1px solid #333;
  font-size: 0.65rem;
  width: 11rem;
  padding: 0.25rem 0;
  line-height: 1.05rem;
}

.hyoukakizyun tr {
  display: block;
 }


/* 評価基準表 */
#Hyoukakizyun02{
  background-color: #FFF;
  padding: 0 !important;
}

.hyoukakizyun02 table {
  width: 100%;
}

.hyoukakizyun02 td {
  padding: 0.5em;
  font-size: 1rem;
  color: #333;
}
.hyoukakizyun02_bg_black {
  background-color: #EAEAEA;
  color: #333;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  width: 10rem;
}

.hyoukakizyun02_bg_white {
  background-color: #FFF;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
}

/* アコーディオン */
/* アコーディオンのヘッダー部分 */
.hyoukakizyun02 .accordion-button {
  background-color: #f5f5f5; /* 背景色 */
  color: #333; /* 文字色 */
  font-weight: bold; /* 太字 */
  border: 1px solid #333;
}

/* アコーディオン開閉時の色（展開されている時） */
.hyoukakizyun02 .accordion-button:not(.collapsed) {
  background-color: #EAEAEA; /* 展開中の背景色 */
  color: #333; /* 展開中の文字色 */
}

/* アコーディオン本体（中身） */
.hyoukakizyun02 .accordion-body {
  background-color: #fff; /* 内側の背景色 */
  border: 1px solid #333;
  padding: 1.5em;
}

.hyoukakizyun02 tr, .hyoukakizyun02 th, .hyoukakizyun02 td {
      display: block;
}

.hyoukakizyun02 td {
      font-size: 0.9em;
  }
  .hyoukakizyun02_bg_black {
  width: auto;
}

/*-----------------------------------------------------
footer
-------------------------------------------------------*/
#Footer{
  color: #fff;
  background-color: #0096cd;
  padding: 0 2em 7em;
}
#Footer p{
  font-size: 0.8rem;
}
#Footer a{
  color: #fff;
}

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

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