@charset "UTF-8";
/*
 *
 * style.scss
 *
 */
/*
 *
 * _media_query.scss
 *
 */ 
/* ------------------------------------------------------------
 ブレイクポイント
------------------------------------------------------------ */
/* ------------------------------------------------------------
 大きめPC
------------------------------------------------------------ */
/* ------------------------------------------------------------
 PC
------------------------------------------------------------ */
/* ------------------------------------------------------------
 タブレット
------------------------------------------------------------ */
/* ------------------------------------------------------------
 スマートフォン
------------------------------------------------------------ */
/* ------------------------------------------------------------
 小さめスマートフォン
------------------------------------------------------------ */
/* ------------------------------------------------------------
 ホバーエフェクト
------------------------------------------------------------ */
/*
 *
 * _variables.scss
 *
 */
/* ------------------------------------------------------------
 変数設定
------------------------------------------------------------ */
/* ------------------------------------------------------------
 カラーパレット
------------------------------------------------------------ */
/* ------------------------------------------------------------
 テーマカラー
------------------------------------------------------------ */
/* ------------------------------------------------------------
 背景色
------------------------------------------------------------ */
/* ------------------------------------------------------------
 テキスト
------------------------------------------------------------ */
/* 本文の見出し1 */
/* 本文の黒見出し */
/* 本文の色付きテキスト1 */
/* 本文の黒テキスト */
/* 本文中のリンク */
/* リンクホーバー時 */
/* ------------------------------------------------------------
 表
------------------------------------------------------------ */
/* ------------------------------------------------------------
 ボタン
------------------------------------------------------------ */
/* ------------------------------------------------------------
 独自リセット・共通スタイル
------------------------------------------------------------ */
html {
  font-size: 100%;
}
@media (max-width: 959px) {
  html {
    font-size: 94%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 87.5%;
  }
}

body {
  /* 游ゴシック体 */
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  scroll-padding-top:120px;
}

a {
  text-decoration: none;
  transition-duration: 0.2s;
}
@media (min-width: 960px) {
  a:hover {
    transition-duration: 0.2s;
  }
}

@media (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
p {
  line-height: 1.9;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

img {
  display: inline-block;
  vertical-align: bottom;
  /*max-width: none;*/
}

*:focus {
  outline: none;
}

/* ------------------------------------------------------------
  .strong 文字装飾
------------------------------------------------------------ */
.strong {
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.topic1 {
  background:linear-gradient(transparent 60%, #ff6 60%);
  font-weight: bold;
  color: red;
}

/* ------------------------------------------------------------
  .ib inline-blockで改行
------------------------------------------------------------ */
.ib {
  display: inline;
}
@media (max-width: 959px) {
  .ib {
    display: inline-block;
  }
}

/* ------------------------------------------------------------
  body-wrapper
------------------------------------------------------------ */
.body-wrapper {
  overflow-x: hidden;
  min-width: 1120px;
}
@media (max-width: 959px) {
  .body-wrapper {
    min-width: unset;
  }
}

/* ------------------------------------------------------------
  header ヘッダー
------------------------------------------------------------ */
.header {
  background: #fff;
  padding: 16px 32px;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.pc-menu-wrapper{
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto;
}
.header .header__title {
  font-size: 2rem;
  color: #000;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.header .header__title a {
  color: #000;
}
.header__navi li a{
  color:#000;
  font-size: 1rem;
}
@media (max-width: 959px) {
  .header .header__title {
    font-size: 1.7rem;
  }
}
@media (max-width: 767px) {
  .header{
    padding: 10px;
  }
  .header .header__title {
    font-size: 1.3rem;
  }
}
.header .header__title span {
  padding: 6px 0px;
  font-size: 0.8rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}
@media (max-width: 400px) {
  .header .header__title span {
    padding: 3px 0px;
    font-size: 0.6rem;
  }

}
.header__navi ul{
  display: flex;
}
.header__navi li{
  padding-left: 20px;
  font-size: 1.2rem;
}
/* ------------------------------------------------------------
  スマホハンバーガーメニュー
------------------------------------------------------------ */
/*ここから下がハンバーガーメニューのスタイル*/
.menu-btn,.gnavi__sp-style {
  display: none;
}
@media screen and (max-width: 768px) {
/*pcメニューは非表示*/
.header__navi{
  display: none;
}
.gnavi__sp-style {
  display: block;
}

/*メニューボタン　展開前*/
.menu-btn {
  display : block;
  position: fixed;
  z-index : 3;
  right : 10px;
  top   : 10px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.menu-btn span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.menu-btn span:nth-of-type(1) {
  top: 10px;
}
.menu-btn span:nth-of-type(2) {
  top: 20px;
}
.menu-btn span:nth-of-type(3) {
  top: 30px;
}
  
/*メニューボタン　展開後*/
.menu-btn.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.menu-btn.active span:nth-child(2),
.menu-btn.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/*スマホ用のメニュー*/
.gnavi__sp-style {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background-color: rgba(0,0,0,0.7);
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  align-items: center;
}
.gnavi__sp-style ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.gnavi__sp-style ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
.gnavi__sp-style ul li:last-of-type {
  padding-bottom: 0;
}
.gnavi__sp-style ul li:hover{
  background :#ddd;
}
.gnavi__sp-style ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
  font-size: 18px;
  font-weight: 500;
}
.gnavi__sp-style.active {
  opacity: 1;
}
}
/* ------------------------------------------------------------
  main-visual メインビジュアル
------------------------------------------------------------ */
.main-visual {
  position: relative;
  padding-top: 70px;
}
@media (max-width: 768px) {
  .main-visual {
    padding-top: 50px;
  }
}
@media (max-width: 400px) {
  .main-visual {
    padding-top: 50px;
  }
}
.main-visual .main-visual__bg {
  width: 100%;
  height: 800px;
  overflow: hidden;
}
@media (max-width: 959px) {
  .main-visual .main-visual__bg {
    height: auto;
  }
}
.main-visual .main-visual__bg picture, .main-visual .main-visual__bg img {
  width: 100%;
  height: auto;
}


/* ------------------------------------------------------------
  section
------------------------------------------------------------ */
@media (max-width: 880px) {
  .section {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.section .section__inner {
  margin: auto;
}
/* ------------------------------------------------------------
  section cat
------------------------------------------------------------ */
.section.cta {
  padding: 40px 0 0 0;
}
.cta-text{
  text-align: center;
  width: 100%;
  position: relative;
  padding-bottom: 20px;
}
.cta-text::before{
  content:'';
  display: inline-block;
  background-image: url(https://factoring-rank-guide.org/webp/cta-woman.webp);
  background-size: cover;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cta-button {
  width: 220px;
  position: absolute;
  right: -100px;
  bottom: 20px;
}
.cta-button img{
  width: 100%;
}
.cta-image{
  display: none;
}
.section.cta .section__inner {
  max-width: 880px;
  position: relative;/*cta-button用*/
}
.sp-br{
  display: none;
}
@media (max-width: 1000px) {
  .cta-text::before{
    display: none;
  }
  .cta-image{
    display: block;
    width: 100px;
    padding-left: 10px;
  }
  .cta-image img{
    width: 100%;
  }
  .cta-button {
    min-width: 220px;
    position: static;
  }
  .sp-cta-wrapper{
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
  }

}
@media (max-width: 768px) {
  .sp-br{
    display: block;
  }
  .cta-text p{
    font-size: 1rem;
  }
  .cta-text h2{
    font-size: 1.2rem;
    margin-top: 20px;
  }
  .cta-text span{
    font-size: 1.6rem;
  }
}
/* ------------------------------------------------------------
  main inner
------------------------------------------------------------ */
.main__contents {
  background-color: ;
}
@media (max-width: 767px) {
  .main__contents {
    padding-bottom: 56px;
  }
}
.main__contents .section__inner {
  max-width: 880px;
  padding: 40px 0;
}

/* ------------------------------------------------------------
  box design
------------------------------------------------------------ */

.box__head {
  background: #0071bc;
  color: #fff;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.2;
  padding: 16px 48px;
  font-size: 2rem;
  text-align: center;
}
@media (max-width: 959px) {
  .box__head {
    font-size: 2.1rem;
  }
}
@media (max-width: 767px) {
  .box__head {
    font-size: 1.5rem;
    padding: 16px 32px;
  }
}
@media (max-width: 959px) {
  .box__head .bg {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .box__head .bg {
    font-size: 0.75rem;
  }
}
@media (max-width: 499px) {
.main.pc {
    display: none;
  }
}
.main.sp {
  display: none;
}
@media (max-width: 499px) {
.main.sp {
    display: block;
  }
}
/* ------------------------------------------------------------
  お急ぎの方はこちらをチェック
------------------------------------------------------------ */
.check {
  background-color: #c7e3f0;
  padding-bottom: 80px;
}

.check__box {
  max-width: 800px;
  margin: auto;
  margin-top: 80px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
}

@media (max-width: 959px) {
  .check__box {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .check__box {
    max-width: 90%;
  }
}
@media (max-width: 499px) {
  .check__box {
    max-width: 90%;
    
  }
}

.check__body {
  padding: 0px 20px;
  text-align: center;
  display: flex;
}
@media (max-width: 959px) {
  .check__body {
    padding: 32px 32px;
  }
}
@media (max-width: 767px) {
  .check__body {
    padding: 32px 16px;
    flex-direction: column;
  }
}
@media (max-width: 499px) {
  .check__body {
    padding: 32px 12px;
    
  }
}

.check__item1{
  width: 100%;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
  display: flex;
}
@media (max-width: 959px) {
  .check__item1 {
    padding: 32px 32px;
  }
}
@media (max-width: 767px) {
  .check__item1 {
    padding: 32px 16px;
    flex-direction: column;
  }
}
@media (max-width: 499px) {
  .check__item1 {
    padding: 32px 12px;
    
  }
}

.sougou1 {
  padding: 20px 20px;
  width: 70%;
}

@media (max-width: 959px) {
  .sougou1 {
    padding: 0px 32px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sougou1 {
    padding: 0px 16px;
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 499px) {
  .sougou1 {
    padding: 0px 12px;
    width: 100%;
  }
}

.sougou2 {
  padding: 0px 20px;
}

.check__item{
  width: 100%;
  padding: 40px 20px;
}
@media (max-width: 767px) {rank__company
  .check__item{
    width: 100%;
    padding: 40px 20px;
  }
}
.rank__image img{
  width: 100%;
  border: 1px solid #000000;
}
.check__item__rank p{
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}
.big-text{
  font-size: 2.3rem;
  line-height: 1.9;
  font-style: italic;
}
.rank__company p{
  margin: 10px 0;
  padding: 5px;
  background-color:#0071bc;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
}
.rank__text{
  position: relative;
}
.rank__text li{
  text-align: left;
  font-size: 1.2rem;
  padding: 5px 0;
}
.rank__cta{
  text-align: center;
}

.columm__image {
  text-align: center;
  margin-bottom: 30px;
}

.columm__image img{
  width: 60%;
}

/***元設定***/
.check-button{
  padding: 10px 20px;
  color: #fff;
  background-color: #fbb03b;
  box-shadow: 2px 2px 4px gray;

}
/***リンクボタンの設定***/
.check-button {
  display:block;/*ブロック要素へ変換*/
  margin:auto;/*ボタン中央寄せ*/
  width: 250px;/*ボタンの幅*/
  border:1px solid #666;/*枠線の太さ・種類・色*/
  background-color:#fbb03b;/*ボタンの色*/
  padding: .5rem;/*ボタンの高さ*/
  color:#fff;/*文字の色*/
  border-radius:30px;/*角の丸み*/
  text-decoration: none;/*リンクの下線を消す*/
  text-align: center;/*文字中央寄せ*/
  overflow: hidden;/*はみ出た部分を表示しない*/
  position: relative;/*位置（起点）*/
}
/*光らせる*/
.check-button::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: kirari 3s ease-in-out infinite;
}
@keyframes kirari {
    0% {transform: scale(0) rotate(45deg); opacity: 0; }
    80% {transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% {transform: scale(4) rotate(45deg); opacity: 1; }
    100% {transform: scale(50) rotate(45deg); opacity: 0; }
}

/* ホバーした */
.check-button:hover{
 
  /* 透明度を上げることで、画像の色を薄く見せる。*/
  opacity:0.5;
 
  /* リンクをホバーしたときのカーソルにする。*/
  cursor: pointer;
}
 
/* クリックした瞬間 */
.check-button:active{
 
  /* 要素を若干下に下げることで、押した感じを出す。*/
 
  /* 今いる位置から相対的に3px下に配置する。*/
  position: relative;
  top: 3px;
 
}

.check-button-block {
  position: relative;
  text-align: center;
  color: #ea5514;
  font-weight: bold;
}




/***元設定***/
.details-button{
  color: #1a0dab;
  border-bottom: 2px solid #1a0dab;
}

/***詳細ボタンの設定***/
.details-button {
  text-align: center;/*文字中央寄せ*/
}

/* ホバーした */
.details-button:hover{
 
  /* 透明度を上げることで、画像の色を薄く見せる。*/
  opacity:0.5;
 
  /* リンクをホバーしたときのカーソルにする。*/
  cursor: pointer;
}
 
/* クリックした瞬間 */
.details-button:active{
 
  /* 要素を若干下に下げることで、押した感じを出す。*/
 
  /* 今いる位置から相対的に3px下に配置する。*/
  position: relative;
  top: 3px;
 
}

/* ------------------------------------------------------------
  ファクタリングとは
------------------------------------------------------------ */
.about__body {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  align-items: center;
}
.about__item{
  width: 50%;
}
.about__item img{
  width: 100%;
}
.about__item p{
  padding: 0 20px;
  text-align: left;
  line-height: 1.8;
  font-size: 0.9rem;
}
.about__link{
  margin-top: 30px;
}
.about__link p{
  text-align: right;
  font-weight: bold;
  margin-bottom: 15px;
}
.about__link a{
  color: #1a0dab;
  border-bottom: 2px solid #1a0dab;
}
@media (max-width: 780px) {
  .about__body {
   flex-direction: column;
  }
  .about__item{
    width: 100%;
  }
  .about__item p:nth-child(1){
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .about__item p{
    padding: 0px;
  }
}
@media (max-width: 380px) {
  .about__link p{
    font-size: 0.8rem;
  }
}
/* ------------------------------------------------------------
  こんな方におすすめです
------------------------------------------------------------ */
.osusume__body {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.osusume__item{
  width: 50%;
  display: flex;
  align-items: center;
  padding: 20px;
}
.icon-image{
  width: 30%;
}
.icon-image img{
  width: 100%;
}
.osusume-text{
  text-align: left;
  padding-left: 10px;
  width: 70%;
}
@media (max-width: 767px) {
  .osusume__body {
    flex-direction: column;
    align-items: center;
  }
  .osusume__item{
    width: 80%;
  }
}
@media (max-width: 499px) {
  .osusume__item{
    width: 100%;
  }
  .osusume__item .icon-image{
  }
}
/* ------------------------------------------------------------
  ぴったりのファクタリング会社診断
------------------------------------------------------------ */
.form {
  background-color: #c7e3f0;
  padding-bottom: 30px;
}

.small-text{
  font-size: 1rem;
}
.form__body {
  max-width: 800px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  padding: 0px 20px;
  text-align: center;
  display: flex;
  margin-top: 20px;
  margin-bottom: 80px;
}

@media (max-width: 780px) {
  .form__body {
   width: 90%;
  }
}
@media (max-width: 420px) {
  .form__body {
   width: 90%;
  }
}
@media (max-width: 380px) {
  .form__body {
   width: 90%;
  }
}

.diagnose{
  width: 100%;
}
.diagnose p{
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 15px 0;
}
.radio__wrap{
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 5px;
}
.diagnose label{
  width: 30%;
  display: inline-block;
  border: 1px solid #000;
  border-radius: 10px;
  text-align: left;
  padding: 10px;
}
button {
  padding: 0;
  border: none;
  background: transparent;
  width: 300px;
  margin: 15px 0 20px 0;
}
button img{
  width: 100%;
}
@media (max-width: 767px) {
  .diagnose label{
    width: 40%;
  }  
}
@media (max-width: 499px) {
  .diagnose p {
    font-size: 1.2rem;
  }
  .diagnose label {
    width: 45%;
    margin-bottom: 10px;
  } 
}
@media (max-width: 423px) {
  .diagnose p {
    font-size: 1rem;
  }
  .diagnose label {
    font-size: 0.8rem;
    padding: 5px;
  } 
}
/* ------------------------------------------------------------
  優良ファクタリング会社一覧
------------------------------------------------------------ */
.list__body {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}
.list__item__wrapper{
  display: flex;
  flex-wrap: wrap;
}
.list__item{
  width: 50%;
  display: flex;
  align-items: center;
  padding: 20px;
}
.icon-image{
  width: 30%;
}
.icon-image img{
  width: 100%;
}
.list-text{
  width: 70%;
  text-align: left;
  padding-left: 10px;
}
.list__midashi{
  width: 100%;
}
.under-line{
  border-bottom: 2px solid #000;
}
.minimum-text{
  font-size: 0.8rem;
}
.mt40{
  margin-top: 40px;
}
@media (max-width: 767px) {
  .list__item__wrapper{
    flex-direction: column;
    align-items: center;
  }
  .list__item{
    width: 80%;
  }
}
@media (max-width: 499px) {
  .list__item{
    width: 100%;
  }  
}
/* ------------------------------------------------------------
  table-wrapper
------------------------------------------------------------ */
.table-wrapper {
  margin-top: 40px;
}
@media (max-width: 959px) {
  .table-wrapper {
    margin-top: 12px;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    width: 100%;
  }
}


.tableWrap {
    width: 100%;
    margin: auto;
    font-size: 14px;
    margin-top: 50px;
}

.tableWrap tr {
  border-bottom: 1px solid #333;
}
.tableWrap th {
  background: ;
}
.tableWrap td th{
  border: 5px solid #fff;
  border-collapse: collapse;
}
.tableWrap th {
    text-align: center;
    min-width: 130px;
    padding: 10px;
    height: 50px;
    border-right: 1px solid #333;
  }
  .tableWrap th:last-child {
    border-right: unset;
  }

.tableWrap td {
    text-align: center;
    min-width: 220px;
    padding: 10px;
    height: 50px;
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
  }
  .tableWrap td:last-child {
    border-right: unset;
  }
  .tableWrap .tr-last td:last-child {
    border-bottom: unset;
  }
.tableWrap {
      display: block;
      overflow-x: scroll;
      white-space: nowrap;
      border: 1px solid #333;
      border-collapse: collapse;
    }
.tableWrap img {
    max-width: 170px;
    display: block;
    margin: auto;
    max-height: 40px;
}
.tableWrap .official {
    color: #fff;
    background-color: #fbb03c;
    display: block;
    width: 50%;
    margin: auto;
    border-radius: 20px;
    margin-top: 7px;
    box-shadow: 1px 1px 4px gray;
}

.table-link {
  color: #1a0dab;
  border-bottom: 2px solid #1a0dab;
}

.no1-img {
  position: absolute;
  left: 5%;
  top: -10%;
}

.tr-1 th {
  background-color: #e66379;
  color: #fff;
  font-size: 1.2rem;
  height: 70px;
}

.tr-1 td {
  background-color: #f7d9d9;
  color: #000;
}

.tr-2 th {
  background-color: #f3c3c9;
  color: #000;
  font-weight: 300;
}

.tr-2 td {
  background-color: #f3c3c9;
  color: #000;
}

.tr-3 th {
  background-color: #61c9ce;
  color: #fff;
  font-size: 1.2rem;
  height: 70px;
}

.tr-3 td {
  position: relative;
  background-color: #b7dfe6;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
}

.tr-4 th {
  background-color: #d1eae7;
  color: #000;
  font-weight: 300;
}

.tr-4 td {
  background-color: #d1eae7;
}

.tr-5 th {
  background-color: #e8e5f1;
  color: #000;
  font-weight: bold;
}

.tr-5 td {
  background-color: #e8e5f1;
}

.tr-6 th {
  background-color: #fff;
  color: #000;
  font-weight: 300;
}

.tr-6 td {
  background-color: #fff;
}

.tr-7 th {
  background-color: #eee;
  color: #000;
  font-weight: 300;
}

.tr-7 td {
  background-color: #eee;
}

/*---丸のCSS-------*/
.circle{
  position:relative;
  width:26px;
  height:26px;
  margin:0 auto;
  border-radius: 50%;
  border:2px solid #ff8c00;
}

/*----------バツのCSS-----------*/
.batu {
position: relative;
width: 26px; /* 幅 */
height: 26px; /* 高さ */
display: block;
  margin:0 auto;
}

.batu::before,.batu::after{
content: "";
position: absolute;
top: 50%; /* 横棒のy位置 */
left: 50%; /* 横棒のX位置 */
width: 2px; /* 横棒の幅 */
height: 26px; /* 横棒の長さ */
background: #2770bc; /* 横棒の色 */
}
.batu::before{
  transform: translate(-50%,-50%)rotate(45deg);
}
.batu::after{
  transform: translate(-50%,-50%)rotate(-45deg);
}

/*--------二重丸のcss---------*/
.nijuumaru{
  position: relative;
  width: 26px;
  height: 26px;
  margin:0 auto;
  border-radius: 50%;
  border: 2px solid #e60012;
}
.nijuumaru:after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #e60012;
}

/*------------三角形のCSS-----------*/  
.triangle{
  position:relative;
  text-align: center;
  margin:0 auto;
  margin-bottom: 5px;
  width:0;
  height:0;
  margin-bottom: 17px;
  
}
.triangle::before{
 
  margin:0 auto;
  position:absolute;
 width:0;
 height:0;
 top:-12.4px;
 bottom:0;
 left:-11px;
 right:0;
 content:"";
  border: 12px solid transparent;
  border-bottom: 20px solid #6b6b6b;
}
.triangle::after{
  margin:0 auto;
  content: "";
  position: absolute;
  top:-4.4px;
  left:-7px;
  width:0;
  height:0;
  border:8px solid transparent;
}
.tr-1 .triangle::after{
  border-bottom: 14px solid #f7d9d9;
}
.tr-6 .triangle::after{
  border-bottom: 14px solid white;
}
.tr-7 .triangle::after{
  border-bottom: 14px solid #eee;
}
.hikaku table tr:nth-child(even) td .triangle::after{
  border-bottom:14px solid #f3f3f3;
}

.cir-comment{
  margin:0 auto;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  color:#ff8c00;
  padding-top:4px;
}
.batu-comment{
  margin:0 auto;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  color:#2770bc;
  padding-top:4px;
}
.niju-comment{
  margin:0 auto;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  color:#e60012;
  padding-top:4px;
}
.tri-comment{
  margin:0 auto;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  color:#6b6b6b;
  padding-top:7px;
}
@media (max-width: 600px) {
  .tableWrap .detail {
    width: 200px;
    padding: 10px;
}
  .tableWrap .official {
  width: 80%;
}
  .tableWrap td {
    min-width: 160px;
}
  .tableWrap img {
    max-width: 130px;
    max-height: 40px;
  }
}

/* ------------------------------------------------------------
  comparison-table
------------------------------------------------------------ */
.comparison-table {
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #000;
  width: 100%;
}
.comparison-table thead th {
  background: #F2F2F2;
  color: #000;
  padding: 5px 8px;
  text-align: center;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.95rem;
}
.comparison-table thead tr th:not(:last-child) {
  border-right: 1px solid #000;
}
.comparison-table tbody {
  text-align: center;
}
.comparison-table tbody tr{
  border-top: 1px solid #000;
}
.comparison-table tbody tr th,
.comparison-table tbody tr td:not(:last-child) {
  border-right: 1px solid #000;
}
.comparison-table tbody tr td:nth-child(3) {
  font-size: 1.2rem;
}
.comparison-table tbody tr td:nth-child(4) {
  font-size: 1.6rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.comparison-table tbody tr.hidden-row {
  display: none;
}
.comparison-table tbody th {
  text-align: center;
  width: 200px;
}
.comparison-table tbody th a {
  display: block;
}
.comparison-table tbody th a img {
  width: 100%;
}
@media (min-width: 960px) {
  .comparison-table tbody th a:hover {
    opacity: 0.75;
  }
}
.comparison-table tbody td {
  color: #000;
  padding: 8px;
  line-height: 1.3;
}
.comparison-table tbody td ul li {
  text-align: left;
  font-size: 0.85rem;
  line-height: 1.5;
}
.comparison-table tbody td ul li + li {
  margin-top: 4px;
}
.comparison-table tbody td:nth-child(2) {
  width: 100px;
}
.comparison-table tbody td:nth-child(3) {
  width: 180px;
}
.comparison-table tbody td:nth-child(4) {
  width: 140px;
}
.comparison-table tbody td:nth-child(5) {
  width: 200px;
}
.comparison-table tbody td:nth-child(6) {
  width: 120px;
}
.detail{
  width: 200px;
  background-color: #2770bc;
  color: #fff;
  padding: 10px 40px;
  font-size: 1.2rem;
  border-radius: 5px;
  box-shadow: 2px 2px 4px gray;
}
.detail:hover{
 
  /* 透明度を上げることで、画像の色を薄く見せる。*/
  opacity:0.5;
 
  /* リンクをホバーしたときのカーソルにする。*/
  cursor: pointer;
}
 
/* twitter画像をクリックした瞬間 */
.detail:active{
 
  /* 要素を若干下に下げることで、押した感じを出す。*/
 
  /* 今いる位置から相対的に3px下に配置する。*/
  position: relative;
  top: 3px;
 
}

.image__link{
  max-width: 800px;
  margin: auto;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
.link__image{
  width: 50%;
  padding: 1rem;
}
.link__image img{
  width: 100%;
}
@media (max-width: 767px) {
  .image__link{
    flex-direction: column;
    align-items: center;
  }
  .link__image{
    width: 80%;
  }
}
@media (max-width: 499px) {
  .link__image{
    width: 100%;
  }  
}

/* ------------------------------------------------------------
  modal
------------------------------------------------------------ */
.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  z-index: 100;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  overflow-y: auto;
}
@media (max-width: 959px) {
  .modal {
    width: calc(100% - 80px);
  }
}
@media (max-width: 767px) {
  .modal {
    width: calc(100% - 64px);
    max-height: calc(100% - 160px);
  }
}
@media (max-width: 499px) {
  .modal {
    width: calc(100% - 32px);
  }
}
.modal.is-active {
  transition-duration: 0.25s;
  transition-delay: 0.25s;
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.modal .modal__inner {
  padding: 0 0 32px;
}
@media (max-width: 499px) {
  .modal .modal__inner {
    padding: 0 0 24px;
  }
}
.modal .modal__head {
  text-align: center;
  background: #4169e1;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 12px 32px;
}
@media (max-width: 959px) {
  .modal .modal__head {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .modal .modal__head {
    font-size: 1.4rem;
  }
}
.modal .disclaimer-head {
  color: #1e1e1e;
  font-size: 1.2rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 24px 32px 0;
  display: flex;
  align-items: center;
}
.modal .disclaimer-head::before {
  content: "";
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 12px;
  background: #E1B941;
}
@media (max-width: 499px) {
  .modal .disclaimer-head {
    margin: 24px 24px 0;
  }
}
.modal p {
  color: #313131;
  font-size: 0.85rem;
  line-height: 1.8;
  margin: 12px 32px 0;
}
@media (max-width: 499px) {
  .modal p {
    margin: 12px 24px 0;
  }
}

.modal-bg {
  position: fixed;
  z-index: 99;
  background: transparent;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.6);
}
.modal-bg.is-active {
  transition-duration: 0.25s;
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.modal-close-button {
  position: fixed;
  z-index: 99;
  background: transparent;
  top: 64px;
  right: 64px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  cursor: pointer;
  width: 64px;
  height: 64px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 959px) {
  .modal-close-button {
    top: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    padding: 8px;
  }
}
@media (max-width: 767px) {
  .modal-close-button {
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    padding: 8px;
  }
}
@media (max-width: 499px) {
  .modal-close-button {
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    padding: 8px;
  }
}
.modal-close-button.is-active {
  transition-duration: 0.25s;
  transition-delay: 0.25s;
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.modal-close-button img {
  width: 100%;
}

/* ------------------------------------------------------------
  admin-table
------------------------------------------------------------ */
.admin-table {
  border: 1px solid #D0D0D0;
  font-size: 0.9rem;
  color: #313131;
  border-collapse: collapse;
  margin: 32px 32px 0;
  width: calc(100% - 64px);
}
@media (max-width: 499px) {
  .admin-table {
    margin: 24px 24px 0;
    width: calc(100% - 48px);
  }
}
.admin-table tr th {
  background: #F2F2F2;
  color: #313131;
  padding: 12px 16px;
  text-align: center;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 35%;
  font-size: 0.85rem;
  white-space: nowrap;
}
@media (max-width: 499px) {
  .admin-table tr th {
    width: 25%;
  }
}
.admin-table tr td {
  background: #fff;
  padding: 12px 16px;
  width: 65%;
}
@media (max-width: 499px) {
  .admin-table tr td {
    width: 75%;
  }
}
.admin-table tr:not(:first-child) {
  border-top: 1px solid #D0D0D0;
}

/* ------------------------------------------------------------
  page-top
------------------------------------------------------------ */
.page-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 64px;
  height: 64px;
  z-index: 98;
  opacity: 0;
  transform: translateY(100px);
  transition-duration: 0.3s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page-top {
    bottom: 80px;
    right: 32px;
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 499px) {
  .page-top {
    bottom: 100px;
    right: 24px;
    width: 48px;
    height: 48px;
    transform: translateY(160px);
  }
}
.page-top.is-active {
  opacity: 1;
  transform: translateY(0);
}
.page-top img {
  width: 100%;
}

/* ------------------------------------------------------------
  footer
------------------------------------------------------------ */
.footer {
  padding-top: 72px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .footer {
    /*margin-top: 32px;*/
  }
}

.footer__nav ul {
  margin: auto;
  display: flex;
  justify-content: center;
}
.footer__nav ul li {
  cursor: pointer;
  transition-duration: 0.25s;
  background: #fff;
}
.footer__nav ul li span {
  display: block;
  color: #4D4D4D;
  width: 150px;
  border: 1px solid #4D4D4D;
  font-size: 0.85rem;
  text-align: center;
  padding: 4px 0px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
@media (max-width: 499px) {
  .footer__nav ul li span {
    width: 110px;
  }
}
.footer__nav ul li:hover {
  opacity: 0.75;
}
.footer__nav ul li + li {
  margin-left: 10px;
}

.footer__copyright {
  background: #4CAF50;
  color: #fff;
  padding: 10px 0;
  font-size: 1rem;
  margin-top: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__copyright {
    margin-top: 24px;
  }
}/*# sourceMappingURL=style.css.map */
/* ------------------------------------------------------------
  column
------------------------------------------------------------ */
.section .column {
    margin-top: 48px;
}
.column__contents .section__inner {
  max-width: 880px;
  padding: 40px 0;
}


@media (max-width: 767px) {
    .section .column {
        margin-top: 36px;
    }
  }

.section.columnlist .section__inner {
    max-width: 880px;
  }

  .column {
    position: relative;
    background: #fff;
  }
  
  .column .column__head {
    background: #0071bc;
    color: #fff;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 48px;
    font-size: 2.4rem;
  }
  
  @media (max-width: 959px) {
    .column .column__head {
      font-size: 2.1rem;
    }
  }
  
  @media (max-width: 767px) {
    .column .column__head {
      font-size: 1.5rem;
      padding: 16px 32px;
    }
  }
  
  .column .column__head .bg {
    background: #fff;
    color: #4169e1;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 1.25rem;
    margin-bottom: 8px;
  }
  
  @media (max-width: 959px) {
    .column .column__head .bg {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 767px) {
    .column .column__head .bg {
      font-size: .75rem;
    }
  }
  
  
  .column__body {
    background: #fff;
    padding: 48px 48px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  }


.column_list {
	list-style-type: none;
  padding-left: 60px;
}

.column_list a {
	color: #000;
	text-decoration: none;
}

.column_list a:hover {
	color: #4169e1;
}

.column_list_item {
	position: relative;
	margin: 7px 0 7px 0px;
	font-weight: bold;
  padding: 5px 0;
	border-bottom: solid 1px #000;
}
.column_list_item::before{
  content: '';
  display: inline-block;
  background-size: contain;
  width: 50px;
  height: 40px;
  position: absolute;
  left: -60px;
  bottom: -5px;

}
@media (max-width: 499px) {
  .column__body {
    background: #fff;
    padding: 20px 20px 20px 10px;
   }
}
/* ------------------------------------------------------------
  cta-links
------------------------------------------------------------ */
.cta-links-s{
  background-color: #c7e3f0;
}

.cta-links{
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
}
.ds{
  filter: drop-shadow(3px 3px 2px rgba(0,0,0,0.3));
}
@media (max-width: 499px) {
  .cta-links{
    flex-direction: column;
  }
}
/* ------------------------------------------------------------
  ランキングページ
------------------------------------------------------------ */
.rank {
  background-color: #c7e3f0;
}

.rank__inner {
  max-width: 900px;
  margin: auto;
}

@media (max-width: 780px) {
  .rank__inner {
   width: 90%;
  }
}
@media (max-width: 420px) {
  .rank__inner {
   width: 90%;
  }
}
@media (max-width: 380px) {
  .rank__inner {
   width: 90%;
  }
}

.head__title {
  padding-top: 105px;
  background-color: #0071bc;
}
@media (max-width: 768px) {
  .head__title {
    padding-top: 75px;
  }
}
@media (max-width: 400px) {
  .head__title {
    padding-top: 65px;
  }
}
.head__title h1{
  text-align: center;
  padding: 40px 0;
  color: #fff;
  font-size: 3rem;
}
.catch__copy{
  color: #ea5514;
  font-size: 24px;
  font-weight: bold;
  width: 95%;
  margin: 0 auto;
}

/*rank1*/
.no1{
  position: relative;
}
.no1 .circle {
  background: #eece29;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  color: #fff;
  font-size: 52px;
  text-align: center;
  line-height: 80px;
  position: absolute;
  top: -20px;
  left: -10px;
}
/*rank2*/
.no2{
  position: relative;
}
.no2 .circle {
  background: #cdd3d8;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  color: #fff;
  font-size: 52px;
  text-align: center;
  line-height: 80px;
  position: absolute;
  top: -20px;
  left: -10px;
}
/*rank3*/
.no3{
  position: relative;
}
.no3 .circle {
  background: #975d35;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  color: #fff;
  font-size: 52px;
  text-align: center;
  line-height: 80px;
  position: absolute;
  top: -20px;
  left: -10px;
}
/*rank4*/
.no4{
  position: relative;
}
.no4 .circle {
  background: #13ae67;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  color: #fff;
  font-size: 52px;
  text-align: center;
  line-height: 80px;
  position: absolute;
  top: -20px;
  left: -10px;
}
/*rank5*/
.no5{
  position: relative;
}
.no5 .circle {
  background: #13ae67;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  color: #fff;
  font-size: 52px;
  text-align: center;
  line-height: 80px;
  position: absolute;
  top: -20px;
  left: -10px;
}
.rank__body {
  background: #fff;
  padding: 40px 20px;
  margin-bottom: 80px;
}
.rank_item_wrapper{
  display: flex;
}
.rank_item_image{
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rank_item_image img{
  width: 100%;
  padding: 1.5rem;
}
.rank_item_detail{
  width: 50%;
  padding: 1.5rem;
}
/*pc table*/
.rank_table{
  width: 95%;
  margin: 0 auto;
  text-align: center;
  padding-top: 30px;
}
.rank_table table{
  border:1px solid #999;
  width: 100%;
  border-collapse: collapse;
}
.rank_table table tr:first-child{
  border-bottom: 1px solid #999;
}
.rank_table table th{
  padding: 1rem 0;
  border-right: 1px solid #999;
  background-color: #eee;
}
.rank_table table th:last-child{
  border-right: none;
}
.rank_table table td{
  padding: 1rem 0;
  border-right: 1px solid #999;
}
.rank_table table td:last-child{
  border-right: none;
}
/*sp table*/
.sp_rank_table{
  display: none;
}
.sp_rank_table{
  width: 95%;
  margin: 0 auto;
  text-align: center;
  padding-top: 30px;
}
.sp_rank_table table{
  border:1px solid #999;
  width: 100%;
  border-collapse: collapse;
}
.sp_rank_table table th{
  padding: 1rem 0;
  border-right: 1px solid #999;
  background-color: #eee;
  border-bottom:1px solid #999 ;
}
.sp_rank_table table th:last-child{
  border-bottom: none;
}
.sp_rank_table table td{
  padding: 1rem 0;
  border-bottom: 1px solid #999;
}
@media (max-width: 546px) {
  .rank_table{
    display: none;
  }
  .sp_rank_table{
    display: block;
  }
  .rank_item_wrapper {
    flex-direction: column;
  }
  .rank_item_image {
    width: 100%;
  }
  .rank_item_detail {
    width: 100%;
  }
}

/* ------------------------------------------------------------
  back-links
------------------------------------------------------------ */
.rank_back-links{
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  padding: 1rem 0;
}
.ds{
  filter: drop-shadow(3px 3px 2px rgba(0,0,0,0.3));
}
.link__button {
  width:50%;
  text-align: center;
}
.link__button a{
  text-align: center;
  background-color: #0071bc;
  width: 300px;
  display: inline-block;
  padding: 1rem;
  border-radius: 10px;
  color: #fff;
  box-shadow: 2px 2px 4px grey;
}
@media (max-width: 668px) {
  .rank_back-links{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .link__button {
    width: 80%;
  }
  .link__button:first-child {
    margin-bottom: 20px;
  }
  .rank_back-links .link__button a {
    width: 100%;
  }
}

/* ------------------------------------------------------------
  column
------------------------------------------------------------ */
.column__contents .section__inner {
  max-width: 880px;
  padding: 40px 0;
}

.column__contents h2{
  text-align:center;
  padding: 40px 0;
  font-size: 2rem;
}

.column__contents h3{
  border-bottom: 2px solid #000000;
}

.column_midashi{
  padding:40px 0;
  font-size: 1.5rem;
}
.column_text{
  font-size: 1rem;
}

.column_back-links{
  max-width: 800px;
    margin: 0 auto;
    display: flex;
    padding: 5rem 0;
}
@media (max-width: 668px) {
  .column_back-links{
    flex-direction: column;
    align-items: center;
  }
  .link__button {
    width: 80%;
  }
  .link__button:first-child {
    margin-bottom: 20px;
  }
  .column_back-links .link__button a {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .head__title h1 {
    font-size: 2.5rem;
}
}

/* ------------------------------------------------------------
  contack form
------------------------------------------------------------ */
.contact__contents {
  background-color: #dbe6ed;
}
.contact__contents h2 {
  padding: 2.5rem 0;
  text-align: center;
}

.contact-article {
  margin: 0 auto;
  max-width: 720px;
  background: #fff;
  padding: 30px;
}
.contact-article p {
  text-align: center;
}


.contact_cont{
margin: 0 0 40px 0;

}

.form-wrapper p {
  margin: 10px 0 30px 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
}

.form-item label .title {
  display: flex;
  /*
  width: 100%;
  max-width: 248px;
  */
  width: 30%;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 7px;
}

.form-item label .title:after {
  content: "必須";
  display: inline-block;
  width: 48px;
  height: 25px;
  margin-right: 8px;
  padding: 2px 4px;
  background: rgb(255, 0, 0);
  text-align: center;
  line-height: 12px;
  font-size: 14px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-item label input {
  width: 100%;
  padding: 14px;
  border-radius: 4px;
  border: solid 1px #E6E6E6;
  font-size: 15px;
  font-weight: 300;
}

.form-item label textarea {
  width: 100%;
  height: 232px;
  margin-bottom: 5px;
  padding: 14px;
  border-radius: 4px;
  border: solid 1px #E6E6E6;
  font-size: 15px;
  font-weight: 300;
}

.Form-Btn {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  width: 250px;
  display: block;
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  background-color: #0071bc;;
  box-shadow: 2px 2px 4px grey;
  border: none;
}

.contact_body-wrapper{
  background: #dbe6ed;
}

.contact_back-links {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  padding: 1rem 0;
}

.contact_footer {
  padding-top: 20px;
  background: #dbe6ed;
}

.form-item label{
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin: 15px 0;
}

.form-item div{
  width: 65%;
}

.form-wrapper{
  padding: 10px 0;
}
@media (max-width: 767px) {
  .form-item label{
    display: block;
  }
  .form-item label .title {
    width: 100%;
  }
  .form-item div{
    width: 100%;
  }
}
@media (max-width: 668px) {
  .contact_back-links{
    flex-direction: column;
    align-items: center;
  }
  .link__button {
    width: 80%;
  }
  .link__button:first-child {
    margin-bottom: 20px;
  }
  .contact_back-links .link__button a {
    width: 100%;
  }
}

/* ------------------------------------------------------------
  company
------------------------------------------------------------ */
.company__contents .section__inner {
  max-width: 880px;
  padding: 40px 0;
}
.menseki_cont, .unei_cont {
  margin: 0;
  padding-top: 60px;
  padding-bottom: 50px;
}

.unei_cont .inner {
  display: flex;
  justify-content: center;
}

.inner {
  line-height: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
}

.unei_cont .inner table {
  background-color: #fff;
  width: 700px;
  border-collapse: collapse;
}

.unei_cont .inner table th {
  background-color: #f6f6f6;
  width: 30%;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}

.unei_cont .inner table td {
  padding: 30px;
}

.unei_cont .inner table th, .unei_cont .inner table td {
  border: 1px solid #5c5c5c;
  padding-top: 10px;
  padding-bottom: 10px;
}

.company__contents{
  background-color: #dbe6ed;
}
.disclaimer_text p{
  margin: 2rem 0;
}
.disclaimer_text{
  text-align: center;
}

.company_footer{
  padding-top: 20px;
  background: #dbe6ed;
}

.company_back-links{
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  padding: 1rem 0;
}
@media (max-width: 668px) {
  .company_back-links{
    flex-direction: column;
    align-items: center;
  }
  .link__button {
    width: 80%;
  }
  .link__button:first-child {
    margin-bottom: 20px;
  }
  .company_back-links .link__button a {
    width: 100%;
  }
}
/* ------------------------------------------------------------
  トップへ戻る
------------------------------------------------------------ */
#topBtn {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 0px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
  width: 60px;
  height: 60px;
}

@-webkit-keyframes fadein {
  from {bottom: -50px; opacity: 0;}
  to {bottom: 20px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: -50px; opacity: 0;}
  to {bottom: 20px; opacity: 1;}
}
/* ------------------------------------------------------------
  診断ボタンを光らせる
  ------------------------------------------------------------ */
 .reflection{
display:inline-block;
position:relative;
overflow:hidden;
}
 
.reflection:after {
content:"";
height:100%;
width:30px;
position:absolute;
top:-180px;
left:0;
background-color: #fff;
opacity:0;
-webkit-transform: rotate(45deg);
-webkit-animation: reflection 3s ease-in-out infinite;
}
 
@keyframes reflection {
0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.form-button:hover{
 
  /* 透明度を上げることで、画像の色を薄く見せる。*/
  opacity:0.5;
 
  /* リンクをホバーしたときのカーソルにする。*/
  cursor: pointer;
}
 
/* クリックした瞬間 */
.form-button:active{
 
  /* 要素を若干下に下げることで、押した感じを出す。*/
 
  /* 今いる位置から相対的に3px下に配置する。*/
  position: relative;
  top: 3px;
 
}

/* ------------------------------------------------------------
  重視&フッターボタン
  ------------------------------------------------------------ */
.image-button:hover{
 
  /* 透明度を上げることで、画像の色を薄く見せる。*/
  opacity:0.5;
 
  /* リンクをホバーしたときのカーソルにする。*/
  cursor: pointer;
}
 
/* クリックした瞬間 */
.image-button:active{
 
  /* 要素を若干下に下げることで、押した感じを出す。*/
 
  /* 今いる位置から相対的に3px下に配置する。*/
  position: relative;
  top: 3px;
 
}

.box{
  border: 2px solid #0071bc;
  border-radius: 5px;
  position: relative;
  margin-top: 1em;
}
.box h3{
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
  top: -0.8em;
}
.box span{
  padding: 0 .5em;
  background: #FFF;
}
.box .inner{
  padding: 1.2em .5em .5em
}

.list-text-under{
  background:linear-gradient(transparent 60%, #ff6 60%);
  font-weight: bold;
  margin: auto;
  text-decoration: underline;
}

/* 目次 */
.toc-005 {
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 3px;
    background-color: #f2f2f2;
}

.toc-005 div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px 0;
    background-color: #0071bc;
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
}

.toc-005 div::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 5px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M3.8%2017.2h-3c-.5%200-.8.4-.8.8v3c0%20.4.3.8.8.8h3c.4%200%20.8-.3.8-.8v-3c-.1-.4-.4-.8-.8-.8zm0-15h-3c-.5%200-.8.4-.8.8v3c0%20.4.3.8.8.8h3c.4%200%20.8-.3.8-.8V3c-.1-.4-.4-.8-.8-.8zm0%207.6h-3c-.5%200-.8.3-.8.7v3c0%20.4.3.8.8.8h3c.4%200%20.8-.3.8-.8v-3c-.1-.4-.4-.7-.8-.7zM23.2%2018h-15c-.4%200-.8.3-.8.8v1.5c0%20.4.3.8.8.8h15c.4%200%20.8-.3.8-.8v-1.5c0-.5-.3-.8-.8-.8zm0-15h-15c-.4%200-.7.3-.7.8v1.5c0%20.4.3.7.7.7h15c.5%200%20.8-.3.8-.8V3.8c0-.5-.3-.8-.8-.8zm0%207.5h-15c-.4%200-.8.3-.8.8v1.5c0%20.4.3.8.8.8h15c.4%200%20.8-.3.8-.8v-1.5c0-.5-.3-.8-.8-.8z%22%2F%3E%3C%2Fsvg%3E');
    content: '';
}

.toc-005 ol {
    list-style-type: disc;
    margin: 0;
    overflow: hidden;
}

.toc-005 > ol {
    padding: 1em 1em 1em 3em;
}

.toc-005 ol ol {
    margin-top: 5px;
    padding-left: 1.1em;
}

.toc-005 li {
    padding: 5px 0;
    font-weight: 600;
}

.toc-005 ol ol li {
    font-weight: 500;
    font-size: .9em;
}

.toc-005 a {
    color: #333;
    text-decoration: none;
}


/* 吹き出し */
.balloon5 {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
}

.balloon5 .faceicon {
  float: left;
  margin-right: -90px;
  width: 80px;
}

.balloon5 .faceicon img{
  width: 100%;
  height: auto;
  border: solid 3px #d7ebfe;
  border-radius: 50%;
}

.balloon5 .chatting {
  width: 100%;
}

.says {
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 105px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #d7ebfe;
}

.says:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #d7ebfe;
}

.says p {
  text-align: left;
  margin: 0;
  padding: 0;
}

/* ------------------------------------------------------------
  カウントダウンタイマー
------------------------------------------------------------ */

.timer_in_box{
  /* display: flex; */
  margin: 1rem 0;
  align-items: center;
}

.time-p {
  font-size: 1.0rem;
  /* background: linear-gradient(180deg, #ffdb2d 0%, #f7c124 100%);
  padding: 20px 4px; */
  font-weight: bold;
  color: #F00;
}

.timer_in_box .timerbox {
  margin: auto;
  padding: 5px 4px;
  width: 250px;
  background: #3F3F3F;
  border: 1px solid #666;
  color: #fbb03b;
  font-size: 0.8rem;
  border-radius: 25px;
  -webkit-border-radius:25px;
  -moz-border-radius:25px;
}

.h {
  color: #fbb03b;
  font-weight: bold;
  font-size: 1.2rem;
}

.m {
  color: #fbb03b;
  font-weight: bold;
  font-size: 1.2rem;
}

.s {
  color: #fbb03b;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ------------------------ */
/* 2025/06/24追加
--------------------------- */
.header__logo{
  width: 261px;
}
.main-visual .main-visual__bg{
  background: #DCF2DD;
}
.main-visual__bg picture{
  display: flex;
  justify-content: center;
}
.main-visual__img{
  width: 459px!important;
  height: auto!important;
}

.box__head {
  background: #4CAF50;
}
.box__head .main{
  position: relative;
}

@media (max-width: 668px) {
}

/* c-contents
--------------------------- */
html{
  overflow-x: hidden;
}
.body-wrapper{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.c-contents{
  width: 100%;
  margin: 0 auto;
  padding: 30px 10px 40px;
}
@media (min-width: 769px) {
  .c-contents{
    max-width: 870px;
    padding: 40px 10px 50px;
  }
}
.c-container.is-bg-green{
  background: #DCF2DD;
}

.c-c-contents__page-title{
  border-left: solid 6px #4CAF50;
  background: rgba(238, 238, 238, 0.6);
  padding:5px 0 5px 16px ;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-top: 20px;
  font-size: 18px;
}
@media (min-width: 769px) {
  .c-c-contents__page-title{
    padding:8px 0 8px 24px ;
    margin-bottom: 20px;
    margin-top: 30px;
    font-size: 24px;
  }
}
.c-c-contents__page-title:first-child{
  margin-top: 0;
}
.c-c-contents__page-text{
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 769px) {
  .c-c-contents__page-text{
    font-size: 18px;
  }
}

/* c-comparing-table
--------------------------- */
.c-comparing__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}
.c-comparing__table th,
.c-comparing__table td {
  padding: 5px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}
@media (min-width: 769px) {
  .c-comparing__table th,
  .c-comparing__table td {
    padding: 8px;
    font-size: 16px;
  }
}

.c-comparing__table thead th:first-child{
  width: 19%;
}
@media (max-width: 450px) {
  .c-comparing__table thead th:first-child{
    width: 70px;
  }
}
@media (min-width: 769px) {
  .c-comparing__table thead th:first-child{
    width: 20%;
  }
}
.c-comparing__title{
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: #F5F5F5;
  width: 100%;
  min-height: 6em;
  padding-top: 9px;
  padding-bottom: 9px;
  border-radius: 5px;
  font-size: 13px!important;
  font-size: min(calc((13 / 375) * 100vw), 13px)!important;
}
@media (min-width: 769px) {
  .c-comparing__title{
    border-radius: 8px;
    font-size: 16px!important;
  }
}
.c-comparing__read{
  font-size: min(calc((12 / 375) * 100vw), 12px);
  margin-bottom: 8px;
  background: #F57C00;
  padding: 5px 0;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
}
@media (min-width: 769px) {
  .c-comparing__read{
    font-size: 15px;
    margin-bottom: 10px;
    padding: 8px 3px;
  }
}
.c-comparing__name{
  font-size: min(calc((10 / 375) * 100vw), 10px);
  line-height: 1.4;
  margin-top: 5px;
  white-space: nowrap;
  font-weight: 600;
}
@media (min-width: 769px) {
  .c-comparing__name{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin-top: 10px;
    white-space: normal;
    min-height: 3em;
  }
}
@media (min-width: 769px) {
  .c-comparing__symbol{
    width: 45px;
  }
}
.c-comparing__symbol-text {
  font-size: min(calc((12 / 375) * 100vw), 12px);
  line-height: 1.4;
  padding-top: 5px;
}
@media (min-width: 769px) {
  .c-comparing__symbol-text {
    font-size: 15px;
    padding-top: 8px;
  }
}
.c-comparing__symbol-text .is-small{
  font-size: 14px;
}
.c-comparing__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #F57C00;
  color: #fff;
  height: 35px;
  border-radius: 5px;
  transition: all 0.4s;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 0 #c66603;
  position: relative;
}
@media (min-width: 769px) {
  .c-comparing__btn {
    font-size: 16px;
    height: 45px;
    max-width: 85%;
    margin: 0 auto;
  }
}
.c-comparing__btn::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #ffffff;
  border-right: 0;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}
.c-comparing__btn:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.c-comparing__table tr:last-child .c-comparing__title{
  min-height: 4rem;
}
.c-comparing__table tbody td{
  vertical-align: middle;
}
@media (min-width: 769px) {
  .c-comparing__table tbody td{
    border-right: solid 1px #ddd ;
    border-bottom: solid 1px #ddd;
  }
  .c-comparing__table tbody td:last-child{
    border-right: none;
  }
  .c-comparing__table tbody tr:last-child td{
    border-bottom: none;
  }
}

/* スマホ時スクロール */
@media (max-width: 768px) {
  .c-comparing__scroll-wrap.is-scroll {
    width: 100%;
    overflow-x: scroll;
    margin-bottom: 5px;
    position: relative;
  }
  .c-comparing__scroll-wrap.is-scroll .c-comparing__table {
    /* width: 600px; */
  }
  .c-comparing__scroll-wrap.is-scroll .c-comparing__table tbody th{
    background: #fff;
    position: sticky;
    left: 0;
    z-index: 2;
  }
  .c-comparing__scroll-wrap.is-scroll .c-comparing__table thead th:first-child{
    background: #fff;
    position: sticky;
    left: 0;
    z-index: 2;
  }
}

/* p-rank
--------------------------- */
.p-rank{
  width: 100%;
}
.p-rank__item{
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}
@media (min-width: 769px) {
  .p-rank__item{
    border-radius: 8px;
  }
}
.p-rank__item + .p-rank__item{
  margin-top: 30px;
}
@media (min-width: 769px) {
  .p-rank__item + .p-rank__item{
    margin-top: 40px;
  }
}
.p-rank__header{
  background: #4CAF50;
  padding: 14px;
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .p-rank__header{
    padding: 16px 25px;
  }
}
.p-rank__num{
  width: 36px;
  margin-right: 6px;
}
@media (min-width: 769px) {
  .p-rank__num{
    width: 50px;
    margin-right: 8px;
  }
}
.p-rank__title{
  max-width: calc(100% - 42px);
  padding-top: 4px;
}
@media (min-width: 669px) {
  .p-rank__title{
    max-width: calc(100% - 58px);
  }
}
.p-rank__title a{
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  line-height: 1.4;
}
@media (min-width: 669px) {
  .p-rank__title a{
    font-size: 28px;
  }
}
.p-rank__thumb{
  padding: 30px 20px 0;
}
@media (min-width: 669px) {
  .p-rank__thumb{
    padding: 40px 20px 0;
  }
}
.p-rank__thumb a{
  display: flex;
  justify-content: center;
}
@media (min-width: 669px) {
  .p-rank__thumb img{
    max-width: none;
    width: 60%;
  }
}
.p-rank__body{
  padding: 0 10px 35px;
}
@media (min-width: 669px) {
  .p-rank__body{
    padding: 0 25px 45px;
  }
}
.p-rank__table{
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: solid 1px #ddd;
  border-right: solid 1px #ddd;
  margin-top: 30px;
}
@media (min-width: 669px) {
  .p-rank__table{
    margin-top: 40px;
  }
}
.p-rank__table th,
.p-rank__table td{
  border-left: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  text-align: center;
  vertical-align: middle;
}
.p-rank__table th{
  padding: 8px;
  font-size: 15px;
  background: #edf6ed;
}
@media (min-width: 669px) {
  .p-rank__table th{
    font-size: 16px;
  }
}
.p-rank__table th:nth-child(2){
  width: 38%;
}
@media (min-width: 669px) {
  .p-rank__table th:nth-child(2){
    width: auto;
  }
}
.p-rank__table td{
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}
@media (min-width: 669px) {
  .p-rank__table td{
    font-size: 18px;
  }
}
.p-rank__table-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4em;
  background: rgba(255, 255, 255, 0.8);
}
.p-rank__table .is-bg-double{
  background: url(../img/icon-double-circle.svg) no-repeat center center;
  background-size: 45px auto;
}
@media (min-width: 669px) {
  .p-rank__table .is-bg-double{
    background-size: 55px auto;
  }
}
.p-rank__table .is-bg-circle{
  background: url(../img/icon-circle.svg) no-repeat center center;
  background-size: 45px auto;
}
@media (min-width: 669px) {
  .p-rank__table .is-bg-circle{
    background-size: 55px auto;
  }
}
.p-rank__table .is-bg-circle .p-rank__table-inner{
  background: rgba(255, 255, 255, 0.3);
}
.p-rank__table .is-bg-triangle{
  background: url(../img/icon-triangle.svg) no-repeat center center;
  background-size: 45px auto;
}
@media (min-width: 669px) {
  .p-rank__table .is-bg-triangle{
    background-size: 55px auto;
  }
}
.p-rank__point{
  margin-top: 30px;
  border-radius: 5px;
  overflow: hidden;
  border: solid 2px #4CAF54;
}
@media (min-width: 669px) {
  .p-rank__point{
    margin-top: 40px;
    border-radius: 8px;

  }
}
.p-rank__point-title{
  background: #4CAF54;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 5px 0;
}
@media (min-width: 669px) {
  .p-rank__point-title{
    font-size: 24px;
    padding: 8px 0;
  }
}
.p-rank__point-list{
  padding: 15px 10px;
}
@media (min-width: 669px) {
  .p-rank__point-list{
    padding: 25px 20px;
  }
}
.p-rank__point-list li{
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  padding-left: 22px;
  margin-bottom: 8px;
  background: #fff url(../img/icon-check.svg) no-repeat 0 3px;
  background-size: 16px auto;
}
@media (min-width: 669px) {
  .p-rank__point-list li{
    font-size: 18px;
    padding-left: 30px;
    margin-bottom: 10px;
    background: #fff url(../img/icon-check.svg) no-repeat 0 5px;
    background-size: 20px auto;
  }
}
.p-rank__point-list li span{
  background: linear-gradient(transparent 60%, #ffd4a8 60%);
}
.p-rank__cta{
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 669px) {
  .p-rank__cta{
    margin-top: 30px;
  }
}
.p-rank__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  padding: 10px 0;
  max-width: 300px;
  background: #F57C00;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  border-radius: 8px;
  transition: all 0.4s;
  box-shadow: 0 8px 0 #c66603;
  position: relative;
}
@media (min-width: 669px) {
  .p-rank__btn {
    padding: 15px 0;
    max-width: 500px;
    font-size: 24px;
    color: #fff;
  }
}
.p-rank__btn span{
  font-size: 14px;
}
@media (min-width: 669px) {
  .p-rank__btn span{
    font-size: 16px;
  }
}
.p-rank__btn::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #ffffff;
  border-right: 0;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 669px) {
  .p-rank__btn::after {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 9px solid #ffffff;
    right: 16px;
  }
}
.p-rank__btn:hover {
  box-shadow: none;
  transform: translateY(8px);
}
.p-rank__btn-read{
  font-size: 15px;
  font-weight: bold;
  position: relative;
}
@media (min-width: 669px) {
  .p-rank__btn-read{
    font-size: 18px;
  }
}
.p-rank__btn-read::before,
.p-rank__btn-read::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 18px;
  background: #000;
  position: absolute;
}
@media (min-width: 669px) {
  .p-rank__btn-read::before,
  .p-rank__btn-read::after {
    height: 20px;
  }
}
.p-rank__btn-read::before{
  transform: rotate(-35deg);
  left: -12px;
  bottom: 4px;
}
@media (min-width: 769px) {
  .p-rank__btn-read::before{
    left: -14px;
    bottom: 5px;
  }
}
.p-rank__btn-read::after{
  transform: rotate(35deg);
  right: -10px;
  bottom: 4px;
}
@media (min-width: 769px) {
  .p-rank__btn-read::after{
    right: -12px;
    bottom: 5px;
  }
}
.p-step{
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .p-step{
    max-width: 750px;
  }
}


.pc-none{
  display: none;
}
@media print, screen and (max-width: 768px) {
  .pc-none{
    display: block;
  }
}
.sp-none{
  display: block;
}
@media print, screen and (max-width: 768px) {
  .sp-none{
    display: none;
  }
}

/* c-page
--------------------------- */
.c-page{
  padding-top: 57px;
}
@media (min-width: 769px) {
  .c-page{
    padding-top: 70px;
  }
}
