@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; */
  font-family: 'Noto Sans JP', 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; */
}

h2 {
  font-weight: 900;
}

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: #195528;
  padding: 16px 32px;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.pc-menu-wrapper {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  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 .header__title a img {
  height: 50px;
}

.header__navi li a {
  color: #fff;
  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: 15px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }

  .menu-btn span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #fff;
    -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;
  }

  .gnavi__sp-style.active {
    opacity: 1;
  }
}

/* ------------------------------------------------------------
  main-visual メインビジュアル
------------------------------------------------------------ */
.main-visual {
  position: relative;
  padding-top: 70px;
}

.main-visual .main-visual__bg {
  width: 100%;
  /* height: 800px; */
  /* overflow: hidden; */
}

@media (max-width: 959px) {
  .main-visual .main-visual__bg {
    height: auto;
  }
}

/* ------------------------------------------------------------
  section
------------------------------------------------------------ */
@media (max-width: 880px) {
  .section {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.section .section__inner {
  margin: auto;
}

/* ------------------------------------------------------------
  section houjin&kojin
------------------------------------------------------------ */
.section.houjin {
  padding: 40px 0 40px 0;
  background-color: #E9F4E0;
}

.houjin-text {
  text-align: center;
  width: 100%;
  position: relative;
  padding-bottom: 20px;
  color: #195528;
  font-weight: 600;
  font-size: 180%;
}

.houjin-text span {
  background: linear-gradient(transparent 50%, yellow 50%);
  font-weight: 900;
  font-size: 1.5em;
  line-height: 1.8;
}

.houjin-flex {
  display: flex;
  width: 100%;
  gap: 10px;
  padding: 0 20px;
}

.houjin-flex a {
  width: calc(100% / 2);
  font-size: 18px;
  display: flex;
  text-align: center;
  flex-direction: column;
  background-color: #6eb72f;
  box-shadow: 0px 6px 0px #195528;
  color: white;
  padding: 20px 0;
  border-radius: 10px;
  font-weight: bold;
  position: relative;
  transition-duration: 0.3s;
  overflow: hidden;
}

.houjin-flex a:hover {
  transform: translateY(3px);
  box-shadow: 0px 0px 0px #195528;
  opacity: 0.75;
}

.houjin-flex a.houjin {
  background-color: #ff7600;
  box-shadow: 0px 6px 0px #873e00;
}

.houjin-flex a.houjin:hover {
  box-shadow: 0px 0px 0px #873e00;
}

.houjin-flex a>span {
  font-size: 24px;
}

@media (max-width: 768px) {
  .houjin-text {
    font-size: max(3.52vw, 22px);
  }

  .houjin-text span {
    font-size: max(4.5vw, 28px);
  }

  .houjin-flex {
    width: auto;
    flex-direction: column-reverse;
  }

  .houjin-flex a {
    width: 100%;
  }

  .houjin-flex a>span {
    font-size: max(3.52vw, 22px);
  }
}

@media (max-width: 500px) {
  .houjin-flex a {
    font-size: 4.2vw;
  }
}

@media (max-width: 400px) {
  /*.houjin-text span {
      font-size: 9vw;
  }*/
}

/* ------------------------------------------------------------
  section cta
------------------------------------------------------------ */
.section.cta {
  padding: 60px 0 0 0;
}

.cta-text {
  text-align: center;
  width: 100%;
  position: relative;
  padding-bottom: 20px;
  color: #195528;
  font-weight: 900;
  font-size: 180%;
}

.cta-image {
  display: none;
}

.section h2 {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.cta-text h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: yellow;
  z-index: -1;
}

.cta-text h2::after {
  content: '';
  display: block;
  width: 140px;
  height: 140px;
  background-image: url(../img/h2-man.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -150px;
  top: 0%;
  transform: translateY(-50%);
}

@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 span {
    font-size: 1.6rem;
  }

  .cta-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 140px;
    background-image: url(../img/h2-man.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 0px;
    top: 0%;
    transform: translateY(-50%);
  }
}

@media (max-width: 400px) {
  .cta-text h2 {
    font-size: 9vw;
  }

  .cta-text h2::after {
    display: none;
  }

  .section h2 {
    font-size: 9vw;
  }
}

/* ------------------------------------------------------------
  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 {


  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 {

  position: relative;
  top: 3px;

}

/* ------------------------------------------------------------
  ファクタリングとは
------------------------------------------------------------ */
.about__body {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}

.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;
  max-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%;
  left: 50%;
  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__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: 24px;
}

.footer__copyright {
  background: #195528;
  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: #6eb72f;
}

@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: #e9f4e0;
}

.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: #fbb03b;
  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;
}

/*メインビジュアル*/

.main-visual-wrraper {
  background: #dbeef7;
}

.main-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* 背景画像のスタイル */
.bg-image {
  height: 700px !important;
  width: auto !important;
  display: block;
}

/* オーバーレイ画像のスタイル */
.overlay-image {
  max-width: 650px;
  height: auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  margin-top: 25px;
}

@media (max-width: 1200px) {

  .overlay-image {
    max-width: 50%;
    /* 画面サイズが小さい時に最大幅を50%に縮小 */
    right: 10px;
    /* 画面右端に配置 */
  }
}

@media (max-width: 768px) {
  .overlay-image {
    max-width: 40%;
    /* 画面サイズが小さい時に最大幅を40%に縮小 */
    right: 5px;
    /* 画面右端に配置 */
  }
}

@media (max-width: 480px) {
  .overlay-image {
    max-width: 30%;
    /* 画面サイズが小さい時に最大幅を30%に縮小 */
    right: 5px;
    /* 画面右端に配置 */
  }
}

.additional-image {
  text-align: center;
  margin-top: 20px;
}

.additional-image img {
  max-width: 100%;
  height: auto;
}

/* 共通スタイル */
.main-visual-wrraper {
  position: relative;
  width: 100%;
  height: auto;
}

.main-visual__bg {
  position: relative;
  width: 100%;
  height: 100%;
}

.bg-image,
.bg-image-sp {
  width: 100%;
  height: auto;
  display: block;
}

.overlay-image-sp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
}

.pc-bg,
.pc-overlay {
  display: block;
}

.sp-bg,
.sp-overlay {
  display: none;
}

@media (max-width: 780px) {
  .main-visual{
    padding-top: 82px;
  }
  .pc-bg,
  .pc-overlay {
    display: none;
  }

  .sp-bg,
  .sp-overlay {
    display: block;
  }

  .bg-image-sp {
    width: 34.87vw;
    height: auto;
  }

  .overlay-image-sp {
      width: 63.33vw;
      top: 50%;
      left: auto;
      right: 3vw;
      transform: translate(0, -50%);
    }
}
@media (max-width: 767px) {
  .main-visual{
    padding-top: 70px;
  }
}


.card-container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  border: 2px solid #6eb72f;
  border-radius: 10px;
  text-align: center;
  width: 250px;
  padding: 40px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  position: relative;
}

.card .title {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
}

.card .description {
  font-size: 16px;
}

.card img {
  width: 190px;
  height: auto;
  margin: 10px auto;
  display: block;
}

.card ol {
  display: flex;
  flex-direction: column;
  counter-reset: number;
  list-style-type: none;
  height: auto;
  gap: 10px;
  margin: 6px 0 10px;
}


.card ol li {
  border-bottom: dashed 1px #ff7600;
  position: relative;
  padding: 0 0.5em 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 769px) {
  .card ol li {
    flex: 1;
  }
}

.card ol li:before {
  /* 以下数字をつける */
  position: absolute;
  /* counter-increment: number;
  content: counter(number); */
  /*数字のデザイン変える*/
  display: inline-block;
  background: #ff7600;
  color: white;
  font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.card ol li:nth-child(1):before {
  content: "";
  background: url(../img/icon-rank01.svg) no-repeat center center;
  background-size: contain;
}
.card ol li:nth-child(2):before {
  content: "";
  background: url(../img/icon-rank02.svg) no-repeat center center;
  background-size: contain;
}
.card ol li:nth-child(3):before {
  content: "";
  background: url(../img/icon-rank03.svg) no-repeat center center;
  background-size: contain;
}

.card ol li a {
  width: auto;
  margin: auto;
}

.card ol li img {
  width: auto;
  margin: auto;
}

/* ボタンのスタイル */
.card .button {
  display: inline-block;
  background-color: #6eb72f;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
  overflow: hidden;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }

  100% {
    transform: translateY(0)
  }
}

.card .button:before {
  position: absolute;
  content: '';
  display: inline-block;
  top: 70px;
  left: 0;
  width: 600px;
  height: 100%;
  background-color: #fff;
}

/*アニメーション*/
.card .button::before {
  animation: kiran 3s ease-in-out infinite;
}

@-webkit-keyframes kiran {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    transform: scale(2) rotate(45deg);
    opacity: 1;
  }

  100% {
    transform: scale(8) rotate(45deg);
    opacity: 0;
  }
}

.card .button:hover {
  background-color: #228B22;
}

/* メディアクエリでレスポンシブ対応 */
@media (max-width: 1200px) {
  .card-container {
    justify-content: center;
  }

  .card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .card .description{
    font-size: 14px;
  }
  .card ol{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 0;
  }
  .card ol li{
    border: none;
    width: 48%;
    padding: 0;
    gap: 0;
    justify-content: center;
    align-items: center;
  }
  .card ol li a{
    margin: 0;
    width: calc(100% - 39px);
  }
  .card ol li img{
    width: auto;
    height: 100%;
    margin: 0;
  }
  .card ol li:before{
    position: relative;
    top: auto;
    transform: translateY(0);
    margin-right: 5px;
  }
  .card ol li:nth-child(1){
    border-bottom: dashed 1px #6EB72F;
    width: 100%;
    height: 65px;
  }
  .card ol li:nth-child(1) a{
    width: auto;
  }
  .card ol li:nth-child(1):before {
    width: 29px;
    height: 29px;
    margin-right: 15px;
  }
  .card ol li:nth-child(2),
  .card ol li:nth-child(3){
    height: 40px;
  }
}


/* CTAセクションのスタイル */
.cta-section {
  background-color: #195528;
  padding: 40px 20px;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 180%;
  margin-bottom: 20px;
  font-weight: normal;
  position: relative;
  width: fit-content;
  padding: 0 30px;
  margin: auto;
}

.cta-section h2::before,
.cta-section h2::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
}

.cta-section h2::before {
  left: 0;
  background-image: url('../img/decor-left.png');
}

.cta-section h2::after {
  right: 0;
  background-image: url('../img/decor-right.png');
}

.cta-section .cta-button {
  display: inline-block;
  background-color: #fff;
  color: #FF7600;
  padding: 20px 35px;
  border-radius: 20px;
  border: solid 2px #FF7600;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  transition: background-color 0.3s;
  position: relative;
  padding-right: 60px;
  margin: 20px 0;
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
  overflow: hidden;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }

  100% {
    transform: translateY(0)
  }
}

.cta-section .cta-button::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('../img/cta-arrow02.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-section .cta-button:hover {
  background-color: #FF6347;
  color: #fff;
  border: solid 2px #fff;
}
.cta-section .cta-button:hover::after {
  background-image: url('../img/cta-arrow.png');

}

.cta-section .cta-button.first-cta:before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -120px;
  left: 0;
  width: 600px;
  height: 100%;
  background-color: #fff;
}

/*アニメーション*/
.cta-section .cta-button.first-cta::before {
  animation: kiran 3s ease-in-out infinite;
}

@-webkit-keyframes kiran {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    transform: scale(2) rotate(45deg);
    opacity: 1;
  }

  100% {
    transform: scale(8) rotate(45deg);
    opacity: 0;
  }
}

@media (max-width: 500px) {
  .cta-section .cta-button {
    font-size: 4.2vw;
  }

  .cta-section .cta-button::after {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 430px) {
  .cta-section h2 {
    font-size: 5.5vw;
  }
}

@media (max-width: 380px) {
  .cta-section {
    padding: 30px 10px;
  }

  .cta-section h2 {
    font-size: 5vw;
    padding: 0 25px;
  }

  .cta-section .cta-button {
    padding: 20px 15px;
    width: 95%;
  }

  .cta-section .cta-button::after {
    width: 20px;
    height: 20px;
  }
}

/* 会社選びのポイントセクション */
.company-points {
  background-color: #e5f4f1;
  padding: 40px 20px;
}

.section__inner {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
}

.points-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.point-item {
  background-color: #fff;
  border: 2px solid #6eb72f;
  border-radius: 10px;
  padding: 40px 20px 20px;
  width: 30%;
  margin: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.point-content img.point-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.point-content img.content-image {
  display: block;
  /* margin: 0 auto 20px; */
  object-fit: cover;
  border-radius: 10px;
  width: auto;
  height: 100px;
  margin: 20px 20px;
}



.point-content p {
  margin-top: 40px;
  font-size: 1rem;
  color: #333;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .point-item {
    width: 45%;
  }

  .points-container:nth-of-type(2) .point-item {
    /* width: 45%; */
  }
  .points-container .point-item:nth-child(5) .point-content{
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .point-item {
    width: 90%;
    /* スマートフォンでは1つずつ */
  }
}

/* ポイントコンテンツのスタイル */
.point-content img.point-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  margin: 0 auto;
  display: block;
}


.point-item img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

/* 2. 「会社選びのポイント」のテキスト色と背景 */
.points-header {
  color: #195528;
  position: relative;
  display: inline-block;
  padding: 10px;
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(to right, transparent 0%, transparent 50%, yellow 50%, yellow 100%);
  /* 背景のアンカー */
  background-size: 200% 100%;
  background-position: right bottom;
  transition: background-position 0.5s ease;
}

.points-header::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('icon-lightbulb.png');
  background-size: contain;
  background-repeat: no-repeat;
}

/* 3. 会社選びのポイントの左に小さい画像を配置 */
.points-container {
  text-align: center;
  margin-top: 40px;
}

/* 警告セクション全体 */
.warning-section {
  background-color: #ffda1a;
  padding: 40px 20px;
}

.warning-container {
  max-width: 1200px;
  margin: 0 auto;
  border: 2px solid #195528;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.warning-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.warning-icon {
  margin-right: 20px;
}

.warning-icon img {
  width: 50px;
  height: auto;
}

.warning-title {
  font-size: 2rem;
  color: #ea5514;
  font-weight: bold;
  background-size: 200% 100%;
  background-position: right bottom;
  transition: background-position 0.5s ease;
}

/* コンテンツ部分のスタイル */
.warning-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
}

.warning-image img {
  width: 150px;
  height: auto;
  margin-right: 20px;
}

.warning-text {
  max-width: 800px;
}

.warning-text p {
  margin: 10px 0;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .warning-content {
    flex-direction: column;
    align-items: center;
  }

  .warning-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .warning-title {
    font-size: 1.5rem;
  }

  .warning-image img {
    width: 100px;
  }

  .warning-text {
    max-width: 100%;
  }
}

/* セクション全体のスタイル */
.smooth-points-section {
  background-color: #ffffff;
  padding: 40px 20px;
}

.smooth-points-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 各ポイントのボックススタイル */
.smooth-point-item {
  border: 2px solid #195528;
  border-radius: 10px;
  background-color: #f8f8f8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.point-header {
  position: absolute;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px 0 0 10px;
  margin-top: -40px;
  margin-left: -20px;
  left: -13px;
}

.point-label {
  position: relative;
  display: block;
  width: 80px;
  height: 30px;
  background-color: #195528;
  color: white;
  text-align: center;
  line-height: 30px;
  border-radius: 5px;
  margin-bottom: 10px;
  transform: rotate(-15deg);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.point-body {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.point-title {
  font-size: 1.5rem;
  color: #195528;
  font-weight: bold;
  margin-bottom: 10px;
}

.point-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

/* .point-icon img {
  width: 100px;
  height: auto;
  margin-right: 20px;
} */

@media (max-width: 768px) {
  .point-header{
    margin-left: auto;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    margin: 0;
  }
  .point-icon{
    width: 107px;
  }
  .point-icon img{
    margin: 0;
  }
}

.point-text p {
  margin: 10px 0;
  font-size: 1rem;
  line-height: 1.6;
}

.section-title {
  font-size: 2rem;
  color: #195528;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.point h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 100px;
  background-image: url(../img/company-choice2.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 360px;
  top: 20px;
  transform: translateY(-50%);
}

.cta-text2 {
  text-align: center;
  width: 100%;
  position: relative;
  padding-bottom: 20px;
  color: #195528;
  font-weight: 900;
  font-size: 180%;
}

.point h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: yellow;
  z-index: -1;
}

/*point*/
.section.point {
  padding: 60px 0;
  background: #e9f4e0;
}

/*attention*/
.section.attention .section__inner {
  padding: 60px;
}

.section.attention {
  background-color: #ffeb3b;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.attention-box {
  background-color: #fff;
  border: 2px solid #195528;
  padding: 40px 60px;
  box-shadow: 10px 10px 0px #195528;
  position: relative;
  text-align: center;
}

.attention-icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
}

.attention-icon img {
  width: 100%;
  height: auto;
}

.attention-title {
  font-size: 1.9rem;
  color: #ff7600;
  margin-top: 20px;
  font-weight: bold;
}

.attention-text {
  font-size: 1rem;
  color: #333;
  margin-top: 20px;
  text-align: left;
}

.attention-top-left {
  position: absolute;
  top: -50px;
  left: -40px;
  width: 150;
  height: 150px;
}

@media (max-width: 570px) {
  .section.attention .section__inner {
    padding: 30px;
  }
}

@media (max-width: 400px) {
  .attention-box {
    padding: 40px 20px;
  }

  .attention-top-left {
    width: 130px;
    height: 130px;
    left: -20px;
  }

  .section.attention .section__inner {
    padding: 20px;
  }

  .section.attention {
    padding: 40px 10px;
  }
}

/* 審査をスムーズに進めるポイントセクションのスタイル */
.section.smooth {
  background-color: #fff;
  padding: 40px 20px;
}

.smooth-head {
  text-align: center;
  width: 100%;
  position: relative;
  padding-bottom: 20px;
  color: #195528;
  font-weight: 900;
  font-size: 180%;
}

.smooth-head h2::before {
  content: '';
  position: absolute;
  bottom: 5;
  left: 0;
  width: 100%;
  height: 20%;
  background-color: yellow;
  z-index: -1;
}

.smooth-head h2 span {
  font-size: 150%;
  color: #ff7600;
}

.section.smooth .section__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.smooth-item {
  background-color: #fff;
  border: 2px solid #195528;
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.smooth-header {
  background-color: #195528;
  padding: 20px;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
}

.smooth-header-point {
  position: absolute;
  bottom: -10px;
  left: 40px;
  width: 100px;
  height: auto;
}

.smooth-header-point img {
  width: 100%;
  height: auto;
}

.smooth-content {
  padding: 20px;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  text-align: center;
  justify-content: space-around;
  gap: 25px;
}

.smooth-content p {
  margin-bottom: 20px;
  text-align: left;
}

.smooth-image {
  width: 100%;
  height: auto;
  max-width: 150px;
}

h2.sp {
  display: none;
}

.spbr {
  display: none;
}

@media (max-width: 700px) {
  h2.sp {
    display: inline-block;
  }

  h2.pc {
    display: none;
  }

  .spbr {
    display: block;
  }

  .smooth-header-point {
    left: 10px;
  }
}

@media (max-width: 520px) {
  .smooth-header-point {
    display: none;
  }
}

@media (max-width: 460px) {
  h2.sp {
    font-size: 7vw;
  }

  .smooth-content {
    flex-direction: column-reverse;
  }
}

/* ファクタリング会社一覧セクションのスタイル */
.section.list {
  background-color: #e9f4e0;
  padding: 40px 20px;
}

.section.list .section__inner {
  margin: 0 auto;
  text-align: center;
}

.list-head {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  position: relative;
  padding-bottom: 20px;
  color: #195528;
  font-weight: 900;
  font-size: 180%;
}

.list-head h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: yellow;
  z-index: -1;
}

.list-detail {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #333;
}

.rank-image {
  /* width: 80%; */
  width: 46px;
  margin-bottom: -5px;
  position: relative;
  z-index: 2;
}

.company-img {
  padding: 0 0.3em;
  position: relative;
  z-index: 1;
  margin-bottom: -5px;
}
.company-img + .stars{
  position: relative;
  z-index: 3;
  margin-bottom: 10px;
}

.company-btn {
  font-size: 13px;
  color: #fff;
  background: #e97129;
  border-radius: 100px;
  width: 80%;
  padding: 3px;
  margin: 5px auto 0;
}

.stars {
  color: #f9c158;
}

.trust {
  display: flex;
  justify-content: center;
  text-align: left;
}

@media (max-width: 440px) {
  .list-head h2 {
    font-size: 8vw;
  }
}

@media (max-width: 325px) {
  .section.list {
    padding: 40px 10px;
  }
}

/* テーブルのスタイル */
.table-wrapper {
  overflow-x: auto;
  max-width: 863px;
  margin: 0 auto;
}

.factoring-table {
  border-collapse: collapse;
  margin: 0 auto;
  min-width: 863px;
  overflow-x: scroll;
  background: #fff;
  font-weight: bold;
}

.factoring-table th,
.factoring-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

/* テーブルヘッダーのスタイル */
.factoring-table thead th {
  background-color: #195528;
  color: #fff;
  font-weight: bold;
}

/* 列の幅の設定 */
.factoring-table th:nth-child(1),
.factoring-table td:nth-child(1) {
  width: 17%;
}

.factoring-table th:nth-child(2),
.factoring-table td:nth-child(2) {
  width: 12%;
}

/* .factoring-table th:nth-child(3),
.factoring-table td:nth-child(3) {
  width: 16%;
}

.factoring-table th:nth-child(4),
.factoring-table td:nth-child(4) {
  width: 12%;
}

.factoring-table th:nth-child(5),
.factoring-table td:nth-child(5) {
  width: 9%;
} */

.factoring-table th:nth-child(6),
.factoring-table td:nth-child(6) {
  width: 18%;
}

.factoring-table th:nth-child(7),
.factoring-table td:nth-child(7) {
  width: 10%;
}

.factoring-table th:nth-child(8),
.factoring-table td:nth-child(8) {
  width: 17%;
}

/* 公式サイトのリンクスタイル */
.factoring-table a.cta-link {
  background: #6eb72f;
  color: #FFF;
  font-weight: bold;
  padding: 0.5em;
  transition: color 0.3s, border-bottom-color 0.3s;
  border-radius: 5px;
  text-decoration: none;
  /* 下線を消す */
  display: inline-block;
  position: relative;
  overflow: hidden;
  animation: kachikachi;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes kachikachi {
  0% {
    box-shadow: 0 6px 0 #195528;
    transform: translatey(0);
  }

  40% {
    box-shadow: 0 6px 0 #195528;
    transform: translatey(0);
  }

  50% {
    box-shadow: 0 0 0 #195528;
    transform: translatey(8px);
  }

  60% {
    box-shadow: 0 6px 0 #195528;
    transform: translatey(0);
  }

  100% {
    box-shadow: 0 6px 0 #195528;
    transform: translatey(0);
  }
}

.factoring-table a.cta-link:before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -30px;
  left: 0;
  width: 200px;
  height: 100%;
  background-color: #fff;
}

/*アニメーション*/
.factoring-table a.cta-link::before {
  animation: kiran 3s ease-in-out infinite;
}

@-webkit-keyframes kiran {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    transform: scale(2) rotate(45deg);
    opacity: 1;
  }

  100% {
    transform: scale(8) rotate(45deg);
    opacity: 0;
  }
}

/* 会社名リンク用のスタイル */
.factoring-table .company-img a {
  background: none;
  color: inherit;
  padding: 0;
  display: inline-block;
  text-decoration: none;
  width: 100%;
}

.factoring-table .company-img a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* 優先度を上げる場合のスタイル */
.factoring-table .company-img a:not(.cta-link) {
  background: none !important;
  color: inherit !important;
}

.factoring-table tbody tr:nth-child(even){
  background: #F9F9F9;
}

/* ファクタリング利用事例 */
.section.case {
  background-color: #f9f9f9;
  padding: 40px 20px;
}

.section.case .section__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* 利用事例のボックスコンテナ */
.case-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

/* 利用事例のボックス */
.case-item {
  background-color: #fff;
  border: 1px solid #195528;
  border-radius: 10px;
  overflow: hidden;
  max-width: 300px;
  width: calc(33.33% - 40px);
  min-width: 250px;
  text-align: left;
}

@media (max-width: 768px) {
  .case-item {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 646px) {
  .form-group .koumoku {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .section.case {
    padding: 40px 10px;
  }

  .case-head h2 {
    font-size: 8vw;
  }
}



.case-header {
  background-color: #fff;
  color: #195528;
  font-size: 1.5rem;
  padding: 10px;
  text-align: center;
}

@media (min-width: 769px) {
  .case-header {
    background-color: #195528;
    color: #fff;
  }
}

.case-content {
  padding: 20px;
}

.case-icon {
  display: block;
  margin: 0 auto 20px;
  width: 80px;
  height: auto;
}

.case-content ul {
  position: relative;
  padding-top: 10px;
  margin: 0;
  list-style: none;
}

.case-content ul::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: repeating-linear-gradient(to right,
      #6eb72f,
      #6eb72f 2px,
      transparent 2px,
      transparent 4px);
}

.case-content ul li {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.case-content ul li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: repeating-linear-gradient(to right,
      #6eb72f,
      #6eb72f 2px,
      transparent 2px,
      transparent 4px);
}

.case-content ul li span {
  color: #6eb72f;
  font-weight: bold;
  min-width: 35%;
}

.case-content ul .highlight {
  color: #ea5514;
  font-weight: bold;
  font-size: 1.4rem;
}

.case-content p {
  font-size: 0.9rem;
  color: #555;
}

.case-content {
  display: none;
}

@media (max-width: 768px) {
  .case-content {
    display: none;
  }

  /* アコーディオン用のスタイル */
  .case-header::after {
    content: '+';
    position: absolute;
    right: 30px;
    font-size: 20px;
    transition: transform 0.3s ease-in-out;
  }

  .case-header.active::after {
    content: '-';
    transform: rotate(180deg);
  }

  .case-header.active+.case-content {
    display: block;
  }

  .accordion-header+.accordion-content {
    display: none;
  }
}

/*about*/
.section.about {
  background-color: #e9f4e0;
  padding: 40px 20px;
}

.about-text {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.about-text p {
  text-align: left;
  width: 50%;
}

@media (max-width: 800px) {
  .about-text {
    display: flex;
    flex-direction: column;
  }

  .about-text p {
    width: 100%;
  }
}

/* 検索セクションのスタイル */
.section.search {
  background-color: #e9f4e0;
  padding: 40px 20px;
  border-radius: 10px;
}

.search-head {
  font-size: 180%;
  font-weight: 900;
}

.search-head h2 {
  color: #195528;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .search-head h2 {
    font-size: 6vw;
  }
}

/* 検索フォームのスタイル */
.search-form {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #195528;
}

.form-group {
  flex: 1 1 calc(50% - 40px);
  text-align: left;
  display: flex;
  border-bottom: 1px solid #195528;
  background: #fff;
}

.form-group:last-child {
  border-bottom: none;
}

.form-group.full-width {
  flex: 1 1 100%;
  text-align: center;
}

.form-group .koumoku {
  font-size: 1.2rem;
  background: #477753;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 0.5em 1em;
  min-width: 25%;
  max-width: 25%;
  font-size: 1em;
  text-align: center;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 10px;
}

.options label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.options input[type="radio"] {
  margin-right: 5px;
}

.search-button {
  background-color: #6eb72f;
  color: #fff;
  font-size: 1.2rem;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  position: relative;
  animation: dokundokun 1300ms ease infinite;
}

@keyframes dokundokun {
  0% {
    transform: scale(1);
  }

  15% {
    transform: scale(1.2);
  }

  30% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.2);
  }

  70% {
    transform: scale(1);
  }
}

.search-button::before {
  content: "";
  position: absolute;
  right: 45px;
  top: 60%;
  /* transform: translateY(-50%); */
  background-image: url(../img/search-point.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-button::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/search-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-button:hover {
  background-color: #228B22;
}

@media (max-width: 768px) {
  .form-group {
    flex: 1 1 100%;
    max-width: none;
    font-size: 80%;
  }

  .form-group .koumoku {
    min-width: 30%;
    max-width: 30%;
    margin-right: 0px;
  }

  .options {
    gap: 0px 10px;
  }
}

@media (max-width: 375px) {
  .search-button {
    width: 100%;
  }

  .search-button::before {
    display: none;
  }

}

.section.qa {
  padding: 40px 20px;
  border-radius: 10px;
}

.qa-head {
  font-size: 180%;
  font-weight: 900;
}

.qa-head h2 {
  color: #195528;
  margin-bottom: 20px;
}

.qa-head h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: yellow;
  z-index: -1;
}

.qa-container {
  width: 100%;
}

.question-title {
  background: #E9F4E0;
  cursor: pointer;
  font-size: 16px;
  padding: 20px 40px 20px 60px;
  position: relative;
  border-radius: 10px;
  color: #195528;
  font-weight: bold;
  text-align: left;
  background-image: url('path/to/question-mark.png');
  background-size: 30px 30px;
  background-position: 20px center;
  background-repeat: no-repeat;
}

.question-title:before {
  position: absolute;
  display: block;
  content: '';
  top: 18px;
  left: 15px;
  width: 30px;
  height: 30px;
  background-image: url(../img/question.png);
  background-size: cover;
  background-position: center;
}

/* 基本スタイル：閉じている時は "+" を表示 */
.question-title:after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  font-size: 26px;
  color: #195528;
  transition: all .3s ease-in-out;
}

/* 開いた状態： "-" を表示 */
.question-title.open:after {
  content: '-';
  font-size: 26px;
}

.answer-text {
  background: #fff;
  display: none;
  padding: 20px 40px;
  position: relative;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  text-align: left;
}

.qa-list {
  margin-bottom: 20px;
}

.qa-list:last-child {
  margin-bottom: 0;
}


/* フッターのスタイル */
.footer {
  background-color: #195528;
  padding: 20px 0;
  text-align: center;
  color: white;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-button {
  display: inline-block;
  padding: 10px 70px;
  border: 1px solid white;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s, color 0.3s;
}

.footer-button:hover {
  background-color: white;
  color: #195528;
}

.footer p {
  font-size: 0.8rem;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-button {
    margin-bottom: 10px;
  }
}

/* 利用事例ボックス */
.case-head {
  text-align: center;
  width: 100%;
  position: relative;
  padding-bottom: 20px;
  color: #195528;
  font-weight: 900;
  font-size: 180%;
}

.case-head h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: yellow;
  z-index: -1;
}

.about-head {
  text-align: center;
  width: 100%;
  position: relative;
  padding-bottom: 50px;
  color: #195528;
  font-weight: 900;
  font-size: 180%;
}

.about-head h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: yellow;
  z-index: -1;
}

.search-head h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: yellow;
  z-index: -1;
}

/* SP余白調整 */
.sp-only {
  display: none;
}

@media screen and (max-width: 500px) {
  .sp-only {
    display: block;
  }

  .section.houjin {
    padding: 15px 0 35px;
  }

  .houjin-text {
    padding-bottom: 10px;
  }

  .houjin-flex {
    gap: 16px;
  }

  .houjin-flex a {
    padding: 14px 0;
  }

  .section.cta {
    padding: 40px 0 0 0;
  }

  .section.cta {
    padding: 20px 0 0 0;
  }

  .cta-text {
    padding-bottom: 0;
  }

  .cta-text>p {
    line-height: 1;
  }

  .card-container {
    margin: 40px auto 10px;
  }

  .card {
    padding: 30px 20px 14px 20px;
  }

  .cta-section .cta-button {
    margin: 20px 0 0;
  }

  .cta-section {
    padding: 26px 20px;
  }

  .section.point {
    padding: 20px 0;
  }

  .cta-text2 {
    padding-bottom: 0;
  }

  .points-container {
    text-align: center;
    margin-top: 20px;
  }

  .point-content{
    margin-top: -12px;
  }

  .point-content img.content-image {
    margin: 0;
  }

  .point-item {
    padding: 40px 0 10px;
    width: 100%;
    margin-top: 6px;
    margin-bottom: 6px;
  }

  .point-header {
    padding: 4px 20px;
  }

  .point-content{
    flex-direction: row;
    gap: 18px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding-left: 16px;
  }

  .point-content p {
    margin-top: 0;
    text-align: left;
    order: 2;
  }
  .point-content img.content-image{
    order: 1;
    width: 65px;
    object-fit: contain;
    height: auto;
    margin: 0;
  }

  .section.attention {
    padding: 40px 10px 20px;
  }

  .attention-box {
    padding: 40px 20px 20px;
  }

  .attention-top-left {
    top: -60px;
    left: -30px;
  }

  .section.attention .section__inner {
    padding: 20px 10px;
  }

  .section.smooth {
    padding: 26px 20px;
  }

  .section.smooth .section__inner {
    gap: 16px;
  }

  .smooth-head {
    padding-bottom: 0;
  }

  .smooth-head h2 span {
    line-height: 1;
  }

  .smooth-header {
    padding: 10px 20px;
  }

  .smooth-content {
    padding: 18px 10px;
    gap: 14px;
  }

  .smooth-content p {
    margin-bottom: 0;
  }

  .section.list {
    padding: 26px 20px 20px;
  }

  .list-head {
    margin-bottom: 0;
  }

  .table-wrapper {
    padding-bottom: 10px;
  }

  .factoring-table th,
  .factoring-table td {
    padding: 0;
  }

  .factoring-table th:nth-child(1),
  .factoring-table td:nth-child(1) {
    padding: 10px;
  }

  .section.case {
    padding: 20px 10px 26px;
  }

  .case-container {
    gap: 14px;
    margin-top: 0;
  }

  .section.about {
    padding: 20px 20px 26px;
  }

  .about-head {
    padding-bottom: 24px;
  }

  .section.search {
    padding: 26px 20px 20px;
  }

  button {
    margin: 15px 0 0 0;
  }

  .section.qa {
    padding: 20px 20px 30px;
  }

  .qa-list {
    margin-bottom: 12px;
  }

  .question-title {
    padding: 16px 40px 16px 60px;
  }

  .answer-text {
    padding: 20px;
  }
}

@media screen and (max-width: 400px) {
  .section.cta {
    padding: 26px 0 0 0;
  }

  .attention-box {
    padding: 30px 20px 20px;
  }
}
@media (min-width: 768px) {
  .card-container .card:nth-child(1) {
    order: 2;
  }
  .card-container .card:nth-child(3) {
    order: 1;
  }
  .card-container .card:nth-child(2) {
    order: 3;
  }
  .card-container .card:nth-child(4) {
    order: 4;
  }
}
.fixed-bnr {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}
.fixed-bnr img {
  width: 250px;
  height: auto;
}
.fixed-bnr__btn {
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
  background: #fff;
  cursor: pointer;
}
.fixed-bnr__btn::before,
.fixed-bnr__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 18px;
  background: #195528;
}
.fixed-bnr__btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.fixed-bnr__btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 767px) {
  .fixed-bnr {
    width: 130px;
    right: 5px;
    bottom: 5px;
  }
  .fixed-bnr__btn {
    width: 30px;
    height: 30px;
  }
  .fixed-bnr__btn::before,
  .fixed-bnr__btn::after {
    height: 22px;
  }
}

/* 2025/09/01追加 */
.factoring-table th:nth-child(3),
.factoring-table td:nth-child(3) {
  width: 11%;
}
.factoring-table th:nth-child(7),
.factoring-table td:nth-child(7) {
  width: 15%;
}
@media (max-width: 780px) {
  .factoring-table{
    table-layout: fixed;
    min-width: 850px;
  }
  .factoring-table thead th:first-child,
  .factoring-table tbody td:first-child {
    position: sticky;
    left: -1px;
    z-index: 2;
  }
  .factoring-table tbody td:first-child {
    background: #fff;
  }
  .factoring-table tbody tr:nth-child(even) td:first-child {
    background: #F9F9F9;
  }
  .factoring-table thead th:first-child {
    width: 11%;
    z-index: 3;
  }
  .factoring-table th:nth-child(7),
  .factoring-table td:nth-child(7) {
    width: 17%;
  }
}

.rank-tab-wrap{
  margin-top: 20px;
}
.rank-content__panel {
  display: none;
}
.rank-content__panel.active {
  display: block;
}

.rank-tab {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.rank-tab__item{
  width: 43.91%;
  font-size: 24px;
  text-align: center;
  background-color: #999;
  color: #fff;
  padding: 12px 0;
  border-radius: 10px 10px 0 0;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.4s;
}
.rank-tab__item:hover,
.rank-tab__item.active{
  background-color: #6eb72f;
}
.rank-tab__item.active{
  width: 54.92%;
  padding: 18px 0 ;
}
.rank-content__panel{
  padding: 24px 23px 35px;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  background: #fff;
  border: solid 1px #6EB72F;
}
.rank-content__item{
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.13);
}
.rank-content__item + .rank-content__item{
  margin-top: 35px;
}
.rank-content__title{
  display: flex;
  align-items: center;
  text-align: left;
  height: 70px;
  padding: 0 77px;
  background: #195528;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}
.rank-content__title small{
  font-size: 20px;
  line-height: 1;
}
.rank-content__no{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  position: absolute;
  left: -15px;
  top: -15px;
}
.rank-content__panel .rank-content__item:nth-child(1) .rank-content__title{
  height: 75px;
}
.rank-content__panel .rank-content__item:nth-child(1) .rank-content__no{
  width: 80px;
  height: 80px;
  left: -13px;
  top: -13px;
}
.rank-content__panel .rank-content__item:nth-child(2) .rank-content__title{
  background: #248339;
}
.rank-content__panel .rank-content__item:nth-child(2) .rank-content__btn{
  background-color: #FF9F3F;
}
.rank-content__panel .rank-content__item:nth-child(3) .rank-content__title{
  background: #74BD4A;
}
.rank-content__panel .rank-content__item:nth-child(3) .rank-content__btn{
  background-color: #FF9F3F;
}
.rank-content__title a{
  color: #fff;
}
.rank-content__thumb{
  border: solid 1px #eee;
  margin-bottom: 30px;
}
.rank-content__thumb img{
  width: 100%;
  height: auto;
}
.rank-content__body{
  padding: 30px;
  background: #fff;
}
.rank-content__table{
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
  border-left: solid 1px #ddd;
  border-top: solid 1px #ddd;
  margin-bottom: 45px;
}
.rank-content__table th,
.rank-content__table td{
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  vertical-align: middle;
  text-align: center;
  padding: 10px;
}
.rank-content__table th{
  background: #E9F4E0;
}
.rank-content__recommend{
  position: relative;
  padding:40px 30px 20px;
  border-radius: 5px;
  background: #F5F5F5;
}
.is-flag-title{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 60px;
  margin: 0 auto;
  background-image:
  url(../img/bg-title-flag01.png),
  url(../img/bg-title-flag02.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left center,
  right center;
  background-size: 20px 60px,  20px 60px;
  padding: 0 20px;
}
.is-flag-title span{
  width: 100%;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #195528;
  font-weight: 600;
  font-size: 20px;
}
.rank-content__recommend-title{
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.rank-content__recommend-title img{
  width: 250px;
  height: auto;
}
.rank-content__recommend-title span{
  font-size: 18px;
}
.rank-content__list li{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 5px;
  position: relative;
  text-align: left;
  padding-left: 24px;
}
.rank-content__list li::before{
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 15px;
  border: solid #6eb72f;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.rank-content__list li .is-marker{
  background:linear-gradient(transparent 60%, #FFFF01 60%);
  font-weight: bold;
}
.rank-content__btn{
  display: inline-block;
  width: 450px;
  background-color: #ff7600;
  color: white;
  padding: 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  transition: background-color 0.3s;
  position: relative;
  border: 2px solid white;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  padding-right: 40px;
  margin: 30px 0 10px;
  overflow: hidden;
  transition: all 0.4s;
}
.rank-content__btn::before{
  position: absolute;
  content: '';
  display: inline-block;
  top: -120px;
  left: 0;
  width: 600px;
  height: 100%;
  background-color: #fff;
  animation: kiran 3s ease-in-out infinite;
}
.rank-content__btn::after{
content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../img/cta-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rank-content__btn:hover{
  background-color: #FF6347;
}
.rank-content__table .pc-none{
    display: none;
  }

.rank-content__btn.is-fq-bottom{
  width: 600px;
  padding: 25px;
  margin-top: 61px;
  margin-bottom: 30px;
}

@media (max-width: 780px) {
  .rank-tab-wrap{
    margin-top: 0;
  }
  .rank-tab {
    padding: 0 20px;
  }
  .rank-tab__item{
    font-size: 16px;
    padding: 8px 0;
    border-radius: 5px 5px 0 0;
  }
  .rank-tab__item.active{
    padding: 10px 0;
  }
  .rank-content__panel{
    padding: 30px 9px 0;
  }
  .rank-content{
    padding: 0 20px;
  }
  .rank-content__item{
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.13);
  }
  .rank-content__item + .rank-content__item{
    margin-top: 25px;
  }
  .rank-content__title{
    height: 40px;
    padding: 0 40px;
    background: #195528;
    font-size: 18px;
  }
  .rank-content__no{
    width: 40px;
    height: 40px;
    border-radius: 40px;
    font-size: 20px;
    left: -4px;
    top: -10px;
  }
  .rank-content__thumb{
    margin-bottom: 15px;
  }
  .rank-content__body{
    padding: 10px;
    background: #fff;
  }
  .rank-content__table .pc-none{
    display: block;
  }
  .rank-content__table{
    margin-bottom: 20px;
  }
  .rank-content__table th,
  .rank-content__table td{
    padding: 5px;
    font-size: 14px;
  }
  .rank-content__table th:nth-child(3){
    width: 33%;
  }
  .rank-content__recommend{
    position: relative;
    padding: 40px 14px 15px;
  }
  .is-flag-title{
    width: 200px;
    height: 40px;
    background-size: 14px auto,  14px auto;
    padding: 0 14px;
  }
  .is-flag-title span{
    width: 100%;
    height: 33px;
    font-size: 16px;
  }
  .rank-content__recommend-title{
    top: -11px;
    width: 194px;
  }
  .rank-content__recommend-title span{
    font-size: 16px;
  }
  .rank-content__list li{
    font-size: 15px;
    padding-left: 16px;
    margin-bottom: 3px;
  }
  .rank-content__list li::before{
    top: 5px;
    width: 6px;
    height: 13px;
  }
  .rank-content__btn{
    width: 100%;
    padding: 15px;
    border-radius: 16px;
    font-size: 18px;
    margin: 15px 0 10px;
  }
  .rank-content__btn::after {
    width: 20px;
    height: 20px;
  }
  .rank-content__panel .rank-content__item:nth-child(1) .rank-content__title{
    height: 43px;
  }
  .rank-content__panel .rank-content__item:nth-child(1) .rank-content__no{
    width: 48px;
    height: 48px;
    left: -5px;
    top: -11px;
  }
  .rank-content__title{
    padding-left: 51px;
    font-size: 17px;
  }
  .rank-content__title small{
    font-size: 12px;
    line-height: 1;
  }
  .rank-content__btn.is-fq-bottom{
    width: 100%;
    padding: 20px;
    margin-top: 38px;
    margin-bottom: 10px;
  }
}

.card .title.sp-none{
  display: block;
}
.card .title.pc-none{
  display: none;
}
.card__sp-toggle{
  display: block;
}
.title__inner{
  display: contents;
}
.card .sp-none{
  display: block;
}
@media (max-width: 780px) {
  .card-container {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .card {
    padding-bottom: 10px;
    margin-bottom: 0;
    width: 100%;
  }
  .card .title__inner{
    display: block;
    width: 100%;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 2;
  }
  .card .title__inner::after{
    display: block;
    content: "+";
    font-size: 30px;
    font-weight: 100;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
  .card .title__inner.is-open::after{
    content: "−";
  }
  .card .title.sp-none{
    display: none;
  }
  .card .title.pc-none{
    display: flex;
  }
  .card .title.is-flag-title{
    height: 50px;
    top: 0;
    left: 0;
    transform: translateX(0);
    position: relative;
  }
  .card .title.is-flag-title span{
    height: 33px;
    font-size: 18px;
  }
  .card__sp-toggle{
    padding-top: 20px;
    display: none;
  }
  .card .sp-none{
    display: none;
  }
  .title__inner + .card__sp-toggle{
    margin-bottom: -20px;
  }
}

@media screen and (max-width: 500px) {
  .card {
    padding-bottom: 20px;
  }
}

/* 口コミモーダル */
.c-repute__btn {
  margin: 30px auto 0;
  font-size: 20px;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  color: #444;
}
@media (max-width: 780px) {
  .c-repute__btn {
    font-size: 14px;
    margin-top: 15px;
  }
}
.c-repute__modal {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  height: 100dvh;
  overflow: hidden;
  overscroll-behavior: contain;
  color: #444;
}
.c-repute__modal img{
  width: 100%;
  height: auto;
}

.c-repute__modal.is-open {
  display: block;
}
.c-repute__modal{
  padding: 0 17px;
}
@media (max-width: 780px) {
  .c-repute__modal{
    padding: 0 24px;
  }
}
.c-repute__modal-header {
  max-width: 850px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  padding-top: 12px;
  display: flex;
  justify-content: flex-end;
}
.c-repute__modal-close{
  width: 35px;
  height: 35px;
  margin: 0;
}
@media (max-width: 780px) {
  .c-repute__modal-close{
    width: 24px;
  }
}
.c-repute__modal-inner {
  max-width: 850px;
  margin: 0 auto;
  padding-bottom: 16px;
  background: #fff;
}
.c-repute__modal-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #6EB72F;
  font-size: 20px;
  padding: 12px 0;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 780px) {
  .c-repute__modal-title {
    font-size: 15px;
    padding: 4px 0;
  }
}
.c-repute__modal-body {
  width: 100%;
  position: absolute;
  top: 46px;
  bottom: 0;
  right: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0 11px 11px;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}
@media (max-width: 780px) {
.c-repute__modal-body {
  padding:0 24px 24px;
}

}
.c-repute-item {
  margin: 16px 14px 0;
  padding: 16px 12px;
  border: solid 1px #6EB72F;
  border-radius: 8px;
  line-height: 1.2;
}
.c-repute-item__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 9px;
  margin-bottom: 16px;
}
.c-repute-item__thumb {
  width: 50px;
  margin-right: 10px;
}
.c-repute-item__title {
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

/* 20251126改修 */
@media screen and (min-width: 781px), print {
  .main-visual__bg{
    display: flex;
    align-items: center;
    justify-content: center;
    width:  calc((700/1200) * 100vw);
    max-width: 1200px;
    margin: 0 auto;
  }
  .pc-bg .bg-image{
    /* 既存サイズwidth:558px 80%サイズで調整 */
    width: calc((446/1200) * 100vw)!important;
    /* 既存サイズheight:700px 80%サイズで調整 */
    height: calc((560/1200) * 100vw)!important;
    max-width: 446px;
    max-height: 560px;
    margin-left: 0;
  }
  .pc-overlay .overlay-image{
    position: relative;
    transform: none;
    /* 既存サイズwidth:650px 80%サイズで調整 */
    width: calc((520/1200) * 100vw)!important;
    max-width: 520px;
    margin-top: calc((37/1200) * 100vw);
    margin-left: calc((-8/1200) * 100vw);
    right: auto;
  }
}
@media screen and (min-width: 1200px), print {
  .pc-overlay .overlay-image{
    margin-top: 37px;
    margin-left: -8px;
  }
}

.factoring-table th:first-child, .factoring-table tbody td:first-child{
  position: relative;
}
.factoring-table th:first-child{
  font-size: .9em;
}
@media (max-width: 780px) {
.factoring-table th:first-child{
  position: sticky;
  left: 0;
  z-index: 10;
}
}
.factoring-table th:nth-child(1){
  width: 10%;
}
.factoring-table td:nth-child(1) {
  width: 18%;
}
.factoring-table th:nth-child(2),
.factoring-table td:nth-child(2) {
  width: 18%;
}
.factoring-table th:nth-child(3),
.factoring-table td:nth-child(3) {
  width: 18%;
}
.factoring-table th:nth-child(4),
.factoring-table td:nth-child(4) {
  width: 18%;
}
.factoring-table th:nth-child(5),
.factoring-table td:nth-child(5) {
  width: 18%;
}
.factoring-table th{
  background-color: #195528;
  color: #fff;
}
.factoring-table td{
  width: 5%;
  padding: 10px;
}
.factoring-table a.cta-link{
  margin: 0.5em 0 1em;
}
.factoring-table .rank-image{
  margin: 0;
  margin-bottom: 8px;
}
.factoring-table .company-flex{
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: .2s ease opacity;
  height: 100%;
}
.factoring-table .company-flex:hover{
  opacity: 0.7;
}
.factoring-table .company-td01 .company-img{
  width: 90%;
}
.factoring-table .company-td02 .company-img{
  width: 100%;
}
.factoring-table .company-td03 .company-img{
  width: 90%;
}
.factoring-table .company-td04 .company-img{
  width: 90%;
}
.factoring-table .company-td05 .company-img{
  width: 90%;
}
.factoring-table .company-img{
  padding: 0;
  margin: 0;
}
.factoring-table .trust{
  text-align: center;
}
.factoring-table .maru{
  display: block;
  height: calc((100/750) * 100vw);
  margin: 0 auto;
  margin-bottom: calc((6/750) * 100vw);
}
.factoring-table .nijumaru{
  display: block;
  height: calc((100/750) * 100vw);
  margin: 0 auto;
  margin-bottom: calc((6/750) * 100vw);
}
.factoring-table .tri{
  display: block;
  height: calc((90/750) * 100vw);
  margin: 0 auto;
  margin-top: calc((8/750) * 100vw);
  margin-bottom: calc((8/750) * 100vw);
}
@media screen and (min-width: 781px), print {
  .factoring-table .maru{
    height: calc((50/1200) * 100vw);
    margin-bottom: calc((2/1200) * 100vw);
  }
  .factoring-table .nijumaru{
    height: calc((50/1200) * 100vw);
    margin-bottom: calc((2/1200) * 100vw);
  }
  .factoring-table .tri{
    height: calc((45/1200) * 100vw);
    margin-top: calc((6/1200) * 100vw);
    margin-bottom: calc((6/1200) * 100vw);
  }
}
@media screen and (min-width: 781px), print {
  .factoring-table .maru{
    height: 50px;
    margin-bottom: 2px;
  }
  .factoring-table .nijumaru{
    height: 50px;
    margin-bottom: 2px;
  }
  .factoring-table .tri{
    height: 45px;
    margin-top: 6px;
    margin-bottom: 6px;
  }
}