@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) {
}

/*-----------------------------------------------------
Bootstrap上書き
-------------------------------------------------------*/

/*font上書き
-------------------------------------------------------*/
@media only screen and (max-width: 767px){
p {
  font-size: 14px;
  line-height: 1.8em;
}}

/*container上書き
-------------------------------------------------------*/
.container{
  max-width: 900px;
}
@media only screen and (min-width: 576px) {
  .container{
  max-width: 540px;
}}

@media only screen and (min-width: 768px) {
  .container{
  max-width: 720px;
}}

@media only screen and (min-width: 992px) {
  .container{
  max-width: 900px;
}}

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

main{
  background-color: #fff;
}

a {
  text-decoration-line: none;
}

.alpha {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.alpha:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
a.alpha {
  display: inline-block;
  width: 100%;
}

small{
  line-height: 1em !important;
}


@media only screen and (max-width: 767px){
section {
  padding: 3rem 0;
}
p{
  font-size: 0.9rem;
}}


/*-----------------------------------------------------
フォント
-------------------------------------------------------*/
.text-bold{
  font-weight: bold;
}
.text-big{
  font-weight:bold;
  font-size: 1.5em;
}
.text-middle{
  font-weight:bold;
  font-size: 1.2em;
}
.text-small{
  font-size: 0.65em !important;
}
.yellow-marker{
  background: linear-gradient(transparent 60%, #f5dca0 60%);
}
.text-blue{
  color: #0067b3;
}
.text-indent{
  padding-left: 1rem;
  text-indent: -1rem;
}

@media only screen and (max-width: 767px){
.text-big2{
  font-weight:800;
  font-size: 1.2em;
}

.text-middle{
  font-weight:bold;
  font-size: 1.1em;
}}


/*-----------------------------------------------------
ヘッダー
-------------------------------------------------------*/
#Header{
  background-color: #0181bd;
}

@media screen and (max-width: 640px) {
header img{
    width: 50%;
    margin: 0 auto;
}}

/*-----------------------------------------------------
FV
-------------------------------------------------------*/
.fv {
  padding: 0;
}

@media only screen and (max-width: 767px){
  .fv {
  background-image: none;
  padding: 0;
}}


/*-----------------------------------------------------
比較表共通
-------------------------------------------------------*/
.hikaku_box {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed; /* ←これが重要！ */
  min-width: 100rem; /* ←横スクロール用 */
}
.td_sitename {
  font-size: 0.8rem;
}
/*----------------比較フォント-------------------------*/
.hikaku_red {
  color: #ff0000; /* 点数の赤色 */
}
.score_text{
  font-size: 1.8rem; /* 点数 */
}
.score_text_small { /* 点数の点と/00点 */
  font-size: 1rem;
}
.hikaku_text { /* 点数の説明 */
  font-size: 0.7rem;
  line-height: 1rem;
  margin-top: -5px; /* 上のテキストに少し食い込ませる */
}
.rank-pic{ /* サイトのスクショ */
  width: 65%;
}

@media only screen and (max-width: 767px){
.rank_name{ /* サイトのスクショ下のサイト名 */
  font-size: 0.8rem;
  font-weight: bold;
}
.score_text{
  font-size: 1.3rem;
}
.score_text_small{
  font-size: 0.8rem;
}
.hikaku_text{
  font-size: 0.65rem;
  font-weight: bold;
  line-height: 0.8rem;
  margin-top: -5px; 
}
.rank-pic{
  width: 90%;
}}

/*----------------公式遷移　CTA-------------------------*/
.hikaku_btn {
  display: inline-block;
  color: #fff;
  background: linear-gradient(90deg, 
    #00b2d1 0%,   
    #0f869b 100% 
  );
  border-bottom: 5px solid #114357; 
  border-radius: 5px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: all 0.1s ease;
  font-weight: bold;
}

.hikaku_btn:hover {
  background: #65c6d7;            /* ホバーで少し明るめ*/
  transform: translateY(3px);     
  border-bottom: 2px solid #114357;
}

/*----------------【スマホ】中央のスクロールヒントアイコン　jsでも管理 -------------------------*/
/* 横スクロール領域 */
.scroll_area {
  position: relative;
  overflow-x: auto; /* 横スクロールを有効に */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  /* flexを削除 */
  display: block;
  width: 100%;
}

.scroll_area:active {
  cursor: grabbing;
}

.scroll_hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important; /* ← 中央寄せの基本 */
  z-index: 10;
  pointer-events: none; /* 操作を邪魔しない */
  pacity: 1;
  transition: opacity 0.8s ease; /* 0.8秒かけて消える */
}
.scroll_hint.fade-out {
  opacity: 0;
}
.scroll_hint img {
  width: 4rem;
  opacity: 0.7;
  display: block; /* imgの余白をリセット */
  margin: 0 auto; /* 念のため中央寄せ */
}

/*-----------------------------------------------------
比較表PC
-------------------------------------------------------*/
#Hikaku-pc{
  padding: 2rem 0 0 0 !important;
  background-color: #fafdff;
}

@media only screen and (max-width: 767px){
  #Hikaku-pc{
  padding:1em 0 0 0 !important;
}}

 /* scrollさせる */
.scroll_area{
  width: 100%;
  overflow-x: auto;
  cursor: grab;  /* ドラッグ感を出す */
  user-select: none; /* ドラッグ中に文字が選択されないようにする */
  -webkit-user-drag: none;
}
.scroll_area:active {
  cursor: grabbing;
}

 /* 票の項目 */
.hikaku-pc th {
    border: solid 1px #898989;
    padding: 15px 10px;
    width: 10em;
    position: sticky;
    left: 0;
    z-index: 5;
    min-width: 12rem;
    max-width: 12rem;
    box-sizing: border-box;
}
.hikaku-pc .th_bg{
  color: #333;
  font-weight: bold;
  text-align: center;
  background-color: #e5e5e5;
}

 /* 票の内容 */
.hikaku-pc td {
  border: solid 1px #898989;
  padding: 3px;
  min-width: 12rem;
  max-width: 12rem;
  box-sizing: border-box;
}

 /* 2位の票の内容 */
.hikaku-pc .td_bg{
  color: #333;
  font-weight: bold;
  background-color: #fff;
}


/*1位
-------------------------------------------------------*/
 /* 票の横幅と細いボーダー線 */
.hikaku-pc .td_rank01{
  min-width: 20rem;
  max-width: 20rem;
  box-sizing: border-box;
}

 /* 1位の背景と太いボーダー線 */
.hikaku-pc .td_bg_rank01_top {
  font-weight: bold;
  background-color: #fbffdc;
}
.hikaku-pc .td_bg_rank01{
  color: #333;
  font-weight: bold;
  background-color: #fbffdc;
  padding: 0.25rem;
}
.hikaku-pc .td_bg_rank01_bottom{
  color: #333;
  font-weight: bold;
  background-color: #fbffdc;
  padding: 0.25rem;
}


/*-----------------------------------------------------
比較表スマホ
-------------------------------------------------------*/
#Hikaku-sp{
  padding: 2rem 0 0 0 !important;
  background-color: #fafdff;
}

.promotion-text {
    margin-top: 0;
    margin-bottom: 0rem;
}
@media only screen and (max-width: 767px){
  #Hikaku-sp{
  padding:1em 0 0 0 !important;
}

  .promotion-text {
    margin-top: 0;
    margin-bottom: 0rem;
}
}

 /* 【スマホ】項目の横幅の割合 */
.td_rank_left{
  width: 40%;
}
.td_rank_center{
  width: 20%;
  border: solid 1px #898989;
  box-sizing: border-box;
}
.td_rank_right{
  width: 20%;
}


/*【スマホ】タブ
-------------------------------------------------------*/
.rank-tab {
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.25rem;
}
.rank-tab > label {
    flex: 1 1;
    order: -1;
    min-width: 5rem;
    padding: 0.25rem;
    border-radius: 5px 5px 0 0;
    background-color: #b3b0a6; /* 選択していないタブの背景色 */
    color: #fff; /* 選択していないタブの文字色 */
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1rem;
    text-align: center;
    cursor: pointer;
}
.rank-tab > label:hover {
    opacity: .8;
}
.rank-tab input {
    display: none;
}
.rank-tab > div {
    display: none;
    width: 100%;
    padding: 0;
    background-color: #fff;
}
.rank-tab label:has(:checked) {
    background-color: #0181bd; /* 選択しているタブの背景色 */
    color: #FFF; /* 選択しているタブの文字色 */
}
.rank-tab label:has(:checked) + div {
    display: block;
}


/*【スマホ】タブ下項目
-------------------------------------------------------*/
.hikaku_box_sp{
  background-color: #fafdff !important;
  overflow-x: hidden; /* 横スクロールは無効 */
  position: relative; /* スクロールヒントのアイコンを出すため */
}

/*【スマホ】縦スクロールの設定 */
.hikaku_scroll_wrap {
  /*overflow-x: auto;*/
  -webkit-overflow-scrolling: touch; /* スマホで慣性スクロール */
  position: relative;
}
.hikaku-sp_ttl {
  position: sticky;
  top: 0;
  background: #fff; /* 背景つけないと下の行が透ける */
  z-index: 2;
}
/* 【スマホ】スクロールバーを隠す（iOS/Android） */
.hikaku_scroll_wrap::-webkit-scrollbar {
  display: none;
}

.hikaku-sp_ttl_td{
  color: #FFF;
  background-color: #0181bd;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  padding: 0.25rem;
  font-size: 0.8rem;
  font-weight: bold;
  height: 3rem;
}
.hikaku-sp table{
  width: 100%;
}

/*【スマホ】票の内容 */
.hikaku-sp .crown_pic{
  width: 2.5rem; /* 順位のアイコン */　
}
/*【スマホ】2位以降の票の内容 */
.td_bg_rank_sp{
  background-color: #fff;
  border: solid 1px #898989;
  box-sizing: border-box;
}

/*スマホ1位
-------------------------------------------------------*/
/* 【スマホ】1位の背景と太いボーダー線 */
.td_bg_rank01_top_sp {
  background-color: #fbffdc;
}
.td_bg_rank01_sp {
  color: #333;
  background-color: #fbffdc;
}
.td_bg_rank01_bottom_sp {
  color: #333;
  font-weight: bold;
  background-color: #fbffdc;
}


/*-----------------------------------------------------
メインコンテンツ
-------------------------------------------------------*/

/*見出しtitle*/
.main_ttl{
  padding: 0.5em;/*アイコン分のスペース*/
  line-height: 1.4;/*行高*/
  color: #0181bd;/*文字色*/
  border-top: dotted 1px #0181bd;
  border-bottom: dotted 1px #0181bd;
  background: #fffff4;
  margin-bottom: 2.5rem;
}
/*CTAボタン*/
a.btn_12 {
  display: flex; 
  justify-content: center;
  align-items: center;
  width: 97%;
  margin: auto;
  padding: 12px 36px;
  position: relative;

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

  border: none;
  border-right: 4px solid #7d750d;
  border-bottom: 10px solid #7d750d;
  border-left: 4px solid #bfb30d;
  border-radius: 9999px;

  background: linear-gradient(90deg, 
    #edd452 0%,   
    #c1a82f 30%,  
    #e3c038 70%,  
    #a59309 100%  
  );
}

@media screen and (max-width: 767px){
.main_ttl{
  margin-bottom: 1.5rem;
}}

/*-----------------------------------------------------
ランキング
-------------------------------------------------------*/
#ranking{
  background-color: #fafdff;
}

/*各サービスを囲うボックス
-------------------------------------------------------*/
.box01 h2 img {
    position: absolute;
    left: 5px;
    width: 55px;
    height: auto;
}
.top3_ttl{
  padding-left: 3rem;
}
.box01 h2{
    background: #0181bd;
    position: relative;
    margin-top: 0;
    padding: 15px 20px 15px;
    color: #fff;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    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 #0181bd;
    border-radius: 12px;
    background: #fff;
    margin-bottom: 40px;
}
.box01_end{
  margin-bottom: 0;
}
/*各サービスの比較項目
-------------------------------------------------------*/
.box02{
  padding:20px ;
}

.rankingRating{
    border: 1px solid #d8d8d8;
    padding: 17px;
    line-height: 1.8em;
    font-weight: bold;
}
.rankingRatingItem {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.rankingRatingItem:after {
    content: "";
    border-top: 1px solid #d8d8d8;
    width: 100%;
    position: absolute;
}
.rankingRatingItem dt,
.rankingRatingItem dd{
    background: #fff;
    position: relative;
    z-index: 1;
    padding: 0 10px;
    font-size: 0.9em;
    line-height: 1.25rem;
}

dl {
    margin-top: 0;
    margin-bottom: 0.5em !important;
}
/*星*/
.star{
  font-size: 20px;
  color: #ffcc00;
}

@media screen and (max-width: 767px){
  .rankingRatingItem div {
  line-height: 1.3em;
}
  .rankingRating {
  margin-top: 0.5em;
}}

/*おすすめポイント
-------------------------------------------------------*/

h3.ranking_point{
    color: #333;
    background: #61d0d1;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00c0f9',endColorstr='#0358e6',GradientType=1);
    position: relative;
}
h3.ranking_point{
    font-size: 18px;
    text-align: left;
    padding: 15px 15px 15px 100px;
    margin-bottom: 20px;
}
@media screen and (max-width: 767px){
  h3.ranking_point{
    font-size: 16px;
    text-align: left;
    padding: 15px 15px 15px 100px;
    margin-bottom: 20px;
}}
.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;
}


@media (max-width:767px) {
.main {
    width: 100%;
    padding: 0 15px;
}
a.btn_12 {
    padding: 1rem 2rem 1rem 2rem;
    line-height: 1.3em;
}
.box02 {
    padding: 20px 10px;
}}

/*-----------------------------------------------------
イントロダクション
-------------------------------------------------------*/
.introduction_ttl{
  padding: 0.5em;/*文字周りの余白*/
  line-height: 1.3;/*行高*/
  background: #75d6d7;/*背景色*/
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;/*左側の角を丸く*/
  font-size: 1.3rem;
  padding-left: 2rem;
  text-indent: -1.6rem;
}
.introduction_ttl:before {
  content: '●';
  color: white;
  margin-right: 8px;
}
.introduction-icon {
    display: flex;
    align-items: center;
    gap: 0 22px;
}
.introduction-icon img {
    max-width: 70px;
    aspect-ratio: 1 / 1; /* 正円に固定 */
    border: 3px solid #0badfe;
    border-radius: 50%;
}
.introduction-icon p {
    position: relative;
    padding: .8em 1em;
    border-radius: 5px;
    background-color: #f2f2f2;
    color: #333333;
    margin-bottom: 0;
    line-height: 1.35em;
}
.introduction-icon p::before {
    position: absolute;
    left: -0.8rem;
    width: 1rem;
    height: 1rem;
    background-color: #f2f2f2;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    content: '';
    top: 50%;
    transform: translateY(-50%);
}
.introduction li {
  font-size: 14px;
}
.blue_box{
  background-color: #dff2ff;
  border: 2px solid #0067b3;
  padding: 1rem 0.5rem;
  border-radius: 20px;
}
.border_box{
  border: 3px solid #eff4ff;
  border-radius: 20px;
  padding: 1rem;
}
.introduction_point_ttl{
  position: relative;
  padding: 0.5rem 0.5rem 0.5rem 4rem;
}
.introduction_point_box{
  padding: 0.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.introduction_point_ttl:before {
  font-family: "Font Awesome 5 Free";
  content: "\f041";
  display: inline-block;
  position: absolute;
  padding: 0em;
  color: white;
  background: #81a1e4;
  font-weight: 900;
  width: 30px;
  text-align: center;
  height: 30px;
  line-height: 30px;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.29);
  border-bottom: solid 2px #4967b4;
}
@media (max-width:767px){
  .introduction_ttl{
    font-size: 1.2rem;
    display: block;
}
.introduction_point_ttl:before {
  width: 1.2rem;
  height: 1.2rem;
  line-height: 1.2rem;
}}

/* アコーディオン */
.introduction .accordion-item {
    border: none;
}
.introduction .accordion-button {
  background-color: #eff4ff;
  color: #474747;
  border-radius: 10px !important;
  font-size: 1rem;
}

.introduction .accordion-button:not(.collapsed) {
  background-color: #eff4ff;
  color: #474747;
}

/* 本体部分 */
.introduction .accordion-body {
  background-color: #fff;
  border: 2px solid #eff4ff;
  padding: 1rem;
}

/* アコーディオン開閉時のボーダー・シャドウを消す */
.introduction .accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
  outline: none !important;
}

/* 開いた状態でも枠線が出ないようにする */
.introduction .accordion-button:not(.collapsed) {
  box-shadow: none !important;
  border-color: transparent !important;
}

@media only screen and (max-width: 767px) {
 .introduction .accordion-button {
    font-size: 0.85rem;
}
.introduction .accordion-body {
  font-size: 0.85rem;
}}

/*-----------------------------------------------------
評価基準
-------------------------------------------------------*/
#Hyoukakizyun{
  background-color: #FFF;
}
.hyoukakizyun table {
  width: 100%;
}
.hyoukakizyun_score_text{
  font-size: 0.8rem;
  line-height: 1.25em;
}
.hyoukakizyun_score{
  font-size: 1.5rem;
  padding-top: 0.5rem;
}
.hyoukakizyun th{
  font-size: 1rem;
  padding: 1.5rem 0.5rem;
  width: 12rem;
}
.hyoukakizyun_th_bg01{
  background-color: #EAEAEA;
  border: 1px solid #333;
}
.hyoukakizyun td{
  background-color: #fff;
  border: 1px solid #333;
  font-size: 0.9rem;
  width: 11rem;
  padding: 0.5rem 0;
  line-height: 1.05rem;
}

@media only screen and (max-width: 767px){
.hyoukakizyun tr {
  display: block;
  margin-bottom: 0.5rem;
 }
.hyoukakizyun th{
display: block;
padding: 0.5rem 0;
font-size: 0.9rem;
width: auto;
}
.hyoukakizyun td{
  border: 1px solid #333;
  font-size: 0.65rem;
}
.hyoukakizyun_score_text{
  font-size: 0.65rem;
  line-height: 1.25em;
}
.hyoukakizyun_score{
  font-size: 1.2rem;
  padding-top: 0.1rem;
}}

/* 評価基準表 */
#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;
}


@media only screen and (max-width: 767px) {
  .hyoukakizyun02 tr, .hyoukakizyun02 th, .hyoukakizyun02 td {
      display: block;
  }
}
@media only screen and (max-width: 767px) {
  .hyoukakizyun02 td {
      font-size: 0.9em;
  }
  .hyoukakizyun02_bg_black {
  width: auto;
}}

/*-----------------------------------------------------
フッター
-------------------------------------------------------*/
.footer {
  background-color: #0181bd !important;
  color:#fff;
  padding: 14px 0 90px 0;
}

.precautions{
  padding-left: 2em;
}

.footer ul {
  list-style: none;
  padding: 0 0 0 2em !important;
}

@media (max-width:991px) {
  footer {
    font-size: 12px;
    padding: 14px 0 90px 0;
  }
  
}
@media (max-width:480px) {
  footer {
    font-size: 10px;
    padding: 14px 0 90px 0;
  }
}
.footer_m a{
  color: #fff !important;
  text-decoration: none;
  text-align:center;
}
.footer_m a:hover{
  color: #000!important;
}

/*-----------------------------------------------------
ページトップへ移動
-------------------------------------------------------*/
.Page-top {
    position: fixed;
    right: 0;
    bottom: 5%;
    right: 1%;
}

@media (max-width: 767px) {
    .Page-top {
        bottom: 15% !important;
    }
}

/*-----------------------------------------------------
1位はこちら
-------------------------------------------------------*/
.fix-btn {
    position: fixed;
    right: 0;
    bottom: 40%; /* 調整可 */
    z-index: 9999;
    width: auto;   /* 幅を画像に合わせる */
    text-align: right; /* 右端寄せ */
}

.fix-btn img.d-md-block {
    width: 80px;   /* お好みのサイズ */
    height: auto;
    display: block;
}

@media (max-width: 767px) {
    .fix-btn {
        position: fixed;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 100%; /* スマホサイズに応じて調整 */
    }
}


