@charset "UTF-8";
/*
 *
 * style.scss
 *
 */
/*
 *
 * _media_query.scss
 *
 */
/* ------------------------------------------------------------
 ブレイクポイント
------------------------------------------------------------ */
/* ------------------------------------------------------------
 大きめPC
------------------------------------------------------------ */
/* ------------------------------------------------------------
 PC
------------------------------------------------------------ */
/* ------------------------------------------------------------
 タブレット
------------------------------------------------------------ */
/* ------------------------------------------------------------
 スマートフォン
------------------------------------------------------------ */
/* ------------------------------------------------------------
 小さめスマートフォン
------------------------------------------------------------ */
/* ------------------------------------------------------------
 ホバーエフェクト
------------------------------------------------------------ */
/*
 *
 * _variables.scss
 *
 */
/* ------------------------------------------------------------
 変数設定
------------------------------------------------------------ */
/* ------------------------------------------------------------
 カラーパレット
------------------------------------------------------------ */
/* ------------------------------------------------------------
 テーマカラー
------------------------------------------------------------ */
/* ------------------------------------------------------------
 背景色
------------------------------------------------------------ */
/* ------------------------------------------------------------
 テキスト
------------------------------------------------------------ */
/* 本文の見出し1 */
/* 本文の黒見出し */
/* 本文の色付きテキスト1 */
/* 本文の黒テキスト */
/* 本文中のリンク */
/* リンクホーバー時 */
/* ------------------------------------------------------------
 表
------------------------------------------------------------ */
/* ------------------------------------------------------------
 ボタン
------------------------------------------------------------ */
/* ------------------------------------------------------------
 独自リセット・共通スタイル
------------------------------------------------------------ */

html {
  font-size: 100%;
}

@media (max-width: 959px) {
  html {
    font-size: 94%;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 87.5%;
  }
}

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

a {
  text-decoration: none;
  transition-duration: 0.2s;
}

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

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

p {
  line-height: 1.9;
}

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

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

*:focus {
  outline: none;
}

.loading {
  position: fixed;
  z-index: 100000;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
}

.loading.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms;
}

.loading .circle {
  display: block;
  position: relative;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 8px solid #e0e0e0;
  border-top: 7px solid #0d2f80;
  border-radius: 50px;
  animation: loading 700ms linear 0ms infinite normal both;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


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

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

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

.pink {
  color: #fa4141;
  font-size: 1.4rem;
  font-weight: bold;
}

.pink1 {
  color: #fa4141;
  font-size: 1.2rem;
  font-weight: bold;
}

.sr {
  display: none;
}

.star5_rating {
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
  color: #CCCCCC;
  /* グレーカラー 自由に設定化 */
  /*font-size: 30px; フォントサイズ 自由に設定化 */
}

.star5_rating:before,
.star5_rating:after {
  content: '★★★★★';
}

.star5_rating:after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #ffcf32;
  /* イエローカラー 自由に設定化 */
}

.star5_rating[data-rate="5"]:after {
  width: 100%;
}

/* 星5 */
.star5_rating[data-rate="4.5"]:after {
  width: 90%;
}

/* 星4.5 */
.star5_rating[data-rate="4"]:after {
  width: 80%;
}

/* 星4 */
.star5_rating[data-rate="3.5"]:after {
  width: 70%;
}

/* 星3.5 */
.star5_rating[data-rate="3"]:after {
  width: 60%;
}

/* 星3 */
.star5_rating[data-rate="2.5"]:after {
  width: 50%;
}

/* 星2.5 */
.star5_rating[data-rate="2"]:after {
  width: 40%;
}

/* 星2 */
.star5_rating[data-rate="1.5"]:after {
  width: 30%;
}

/* 星1.5 */
.star5_rating[data-rate="1"]:after {
  width: 20%;
}

/* 星1 */
.star5_rating[data-rate="0.5"]:after {
  width: 10%;
}

/* 星0.5 */
.star5_rating[data-rate="0"]:after {
  width: 0%;
}

/* 星0 */

.output-date-time {
  text-align: right;
  padding-right: 5%;
}

@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}

/* ------------------------------------------------------------
  .ib inline-blockで改行
------------------------------------------------------------ */
.ib {
  display: inline;
}

@media (max-width: 959px) {
  .ib {
    display: inline-block;
  }
}

/* ------------------------------------------------------------
  body-wrapper
------------------------------------------------------------ */
.body-wrapper {
  overflow-x: hidden;
}

/*@media screen and (min-width: 768px) {
 .body-wrapper {
  overflow-x: hidden;
  width: 400px;
  margin: auto;
  border: solid 1px #ccc;
 }
} */
/* ------------------------------------------------------------
  header ヘッダー
------------------------------------------------------------ */
/* Reset style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

/* Normal header style */
.header_bg {
  background: #fff;
  width: 100%;
  height: 80px;
}

.header_contents {
  width: 100%;
  max-width: 1024px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_contents h1 {
  font-size: 22px;
  margin: 0 0 0 40px;
}

.header_nav_lists {
  display: flex;
}

.header_nav_lists li {
  margin: 0 40px 0 0;
}

.nav_link {
  font-size: 14px;
}

/* Responsive menu button */
.responsive_btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 40px 0 0;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu_line {
  background: #000;
  border-radius: 5px;
  width: 100%;
  height: 5px;
  margin: 4px 0;
}

/* Responsive style */
@media screen and (max-width: 768px) {
  .responsive_btn {
    display: flex;
  }

  .header_bg {
    position: relative;
  }

  .header_nav {
    background: #b5b5b6;
    width: 100%;
    height: 90vh;
    padding: 80px 0 0 0;
    position: absolute;
    top: 0;
    right: -100%;
    transition: .5s;
    z-index: 1000;
  }

  .header_nav_lists {
    display: block;
    text-align: center;
  }

  .header_nav_lists li {
    margin: 0 0 40px;
    text-align: center;
  }

  .nav_link {
    font-size: 20px;
  }
}

/* js function "menuToggle" starting only */
.menu_active {
  right: 0;
}

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

.main-visual .main-visual__bg {
  margin: auto;
  overflow: hidden;
}

.fv-pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .fv-pc {
    display: block;
  }

  .fv-sp {
    display: none;
  }
}


/*----------------------------------

追従バナー

---------------------------------- */

.floating-banner {
  position: fixed;
  z-index: 99999;
  bottom: 0;
  right: 8px;
  left: 8px;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0px;
  margin: 0 -8px;
  padding-top: 6px;
  padding-bottom: 3px;
}

.floating-banner:hover {
  opacity: .9;
}

.shadow {
  filter: drop-shadow(3px 3px 3px #777);
}

.floating-banner .count {
  min-width: 100px;
  text-align: center;
  background: linear-gradient(180deg, #ffdb2d 0%, #f7c124 100%);
  padding: 1px;
  font-size: 1.1rem;
  line-height: 1.7rem;
  border-radius: 5px;
  color: #555555;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .floating-banner {
    display: none;
  }

  .floating-box {
    display: none;
  }
}


/* ------------------------------------------------------------
  タイマー
------------------------------------------------------------ */

#timer_wrap {
  text-align: center;
  margin-top: 20px;
}

.balloon1 {
  position: relative;
  padding: 2px 10px;
  width: 60%;
  max-width: 250px;
  color: #fff;
  font-size: 1.0rem;
  font-weight: bold;
  text-align: center;
  background: #f39800;
  border-radius: 50px;
  margin: auto;
  margin-bottom: -5px;

}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top: 5px solid #f39800;
}

.balloon1 p {
  margin: 0;
  padding: 0;
  text-align: center;
}

#timer_wrap .inner {
  background: rgba(0, 0, 0, 0.8);
  width: 98%;
  max-width: 500px;
  margin: auto;
  color: #fff;
  font-size: 1.2rem;
  padding: 5px 2px;
  border-radius: 10px;
}

#timer_wrap .timerbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.time {
  font-weight: bold;
  font-size: 1.5rem;
  color: #fdf405;
}


.timer_in_box {
  border: solid 2px #0d2f80;
  background: #E7ECF8;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 4px;
  font-size: 0.9rem;
  margin-top: 5%;
}

.rank_container .timerbox {
  background: #333333;
  color: #fff;
  border-radius: 30px;
  padding: 0px 5px;
  font-size: 0.7rem;
  max-width: 80%;
}

.h {
  color: #fdf405;
  font-weight: bold;
  font-size: 1.1rem;
}

.m {
  color: #fdf405;
  font-weight: bold;
  font-size: 1.1rem;
}

.s {
  color: #fdf405;
  font-weight: bold;
  font-size: 1.1rem;
}

.end {
  font-size: .9rem;
}

/* ------------------------------------------------------------
  main
------------------------------------------------------------ */
article {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.main-contents {
  width: 550px;

}

.side {
  width: 300px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .side {
    display: none;
  }
}

/* ------------------------------------------------------------
  サイドバー
------------------------------------------------------------ */
.side-contents {
  background: #fcfaf4;
  padding-top: 20px;
}


/*フォーム全体*/
#form1 {
  position: relative;
  /*フォームの相対位置*/
  max-width: 95%;
  /*フォームのサイズ*/
  padding-bottom: 80px;
  /*フォームの下に余白*/
}

/*検索ボックス*/
#sbox {
  position: absolute;
  /*フォームの絶対位置*/
  left: 0;
  top: 0;
  outline: 0;
  /*クリック時の青い枠線消す*/
  height: 50px;
  /*検索ボックスの高さ*/
  padding: 0 10px;
  /*テキスト位置調整*/
  border-radius: 2px 0 0 2px;
  /*検索ボックスの角を丸める*/
  background: #eee;
  /*検索ボックスの背景カラー*/
  width: 80%;
}

/*検索ボタン*/
#sbtn {
  width: 70px;
  /*検索ボタンの横幅*/
  height: 50px;
  /*検索ボタンの縦幅*/
  position: absolute;
  /*検索ボタンの絶対位置*/
  left: 230px;
  /*検索ボタンの位置調整*/
  top: 0;
  border-radius: 0 2px 2px 0;
  /*検索ボタンの角を丸める*/
  background: #7fbfff;
  /*検索ボタンの背景カラー*/
  border: none;
  /*検索ボタンの枠線を消す*/
  color: #fff;
  /*検索ボタンのテキストカラー*/
  font-weight: bold;
  /*検索ボタンのテキスト太字*/
  font-size: 16px;
  /*検索ボタンのフォントサイズ*/
}

/*検索ボタンマウスオーバー時*/
#sbtn:hover {
  color: #666;
  /*検索ボタンマウスオーバー時のフォントカラー*/
}

.side h3 {
  background: #0d2f80;
  border-bottom: solid 3px #11234d;
  color: #fff;
  font-size: 18px;
  padding: 8px 8px;
}

.side-columm {
  padding: 0px 10px;
}

.side-columm li {
  background: #fff;
  padding: 10px;
  border-bottom: solid 1px #ccc;
}

.side-1 {
  padding-bottom: 20px;
}

.side-2 ol {
  padding: 20px;
}

.side-2 img {
  padding: 10px;
}

/* ------------------------------------------------------------
  サイドバー(スマホ)
------------------------------------------------------------ */
.side-sp {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .side-sp {
    display: none;
  }
}

.side-contents-sp {
  width: 100%;
  background: #fcfaf4;
  padding-top: 20px;
}

.side-sp h3 {
  background: #0d2f80;
  border-bottom: solid 3px #11234d;
  color: #fff;
  font-size: 18px;
  padding: 8px 8px;
}

.side-columm li {
  background: #fff;
  padding: 20px;
  border-bottom: solid 1px #ccc;
  width: 100%;
}

.side-1 {
  padding-bottom: 20px;
}

.side-2 ol {
  padding: 20px;
}

.side-2 img {
  padding: 10px;
}

.popup-sp {
  display: flex;
  width: 100%;
  justify-content: center;
}

.popup-sp a {
  width: 50%;
}

/* ------------------------------------------------------------
  section
------------------------------------------------------------ */

/* -----------------------------------@keyframes loop {

  0% {

    transform: translateX(100%);

  }

  to {

    transform: translateX(-100%);

  }

}



@keyframes loop2 {

  0% {

    transform: translateX(0);

  }

  to {

    transform: translateX(-200%);

  }

}


/* ------------------------------------------------------------
  診断
------------------------------------------------------------ */
.shindan {
  padding-top: 50px;
  padding-bottom: 50px;
}

.balloon3-right-btm {
  position: absolute;
  display: inline-block;
  margin: 1.5em 15px 1.5em 10px;
  padding: 12px 5px;
  width: 90px;
  height: 90px;
  text-align: center;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
  background: #f39800;
  border-radius: 50%;
  box-sizing: border-box;
  margin-top: -95px;
}

.balloon3-right-btm:before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #f39800;
  z-index: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.shindan_body {
  background: #E7ECF8;
  width: 90%;
  height: 250px;
  margin: auto;
  box-shadow: 0 0 1px gray;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border: solid 2px #0d2f80;

}

.shindan h2 {
  width: 90%;
  margin: auto;
  padding: 0.5rem 1rem;
  background: #0d2f80;
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: -2px;
}


.choose_box {
  position: relative;
  width: 100%;
}

.choose_box p {
  margin-top: 5%;
  margin-bottom: 10%;
  font-size: 20px;
  display: block;
  font-weight: 600;
  text-align: center;
}

.choose_box li {
  margin-top: 0px;
  list-style: none;
  flex: 1;
}

ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  color: #0d2f80;
  font-weight: bold;
}

.btn {
  display: inline-block;
  flex: wrap;
  min-width: 150px;
  color: #0d2f80;
  padding: 10px 20px;
  margin-bottom: 10px;
  text-align: center;
  background-color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #0d2f80;
  text-decoration: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.btn:hover {
  background-color: #0d2f80;
  color: #fff;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}

#q_04 .btn {
  padding: 5px 0;
}

.btn img {
  width: 60px;
}

.fit {
  position: absolute;
  left: 0px;
  top: -10px;
  width: 100%;
  text-align: center;
}

.fit p {
  margin-top: 5%;
  margin-bottom: 10%;
  font-size: 18px;
  display: block;
  font-weight: 600;
  text-align: center;
}


.result_btn {
  display: inline-block;
  flex: wrap;
  min-width: 200px;
  color: #fff;
  padding: 15px 20px;
  margin-bottom: 10px;
  text-align: center;
  background-color: #0d2f80;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 50px;
  cursor: pointer;
}

.result_btn:hover {
  background-color: #fff;
  color: #0d2f80;
  border: solid 2px #0d2f80;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}

.result_type0 {
  margin: auto;
  padding: 20px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.result_type1 {
  margin: auto;
  padding: 20px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}


.result_theme p {
  margin-top: 5%;
  margin-bottom: 2%;
  text-align: center;
  padding-top: 30px;
  color: #f39800;
  font-size: 18px;
}


.return-btn {
  margin-top: 25%;
  margin-left: 35%;
  margin-right: 35%;
  width: 30%;
  margin-bottom: 100px;
}

.return {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #2791d4;
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #2791d4;
}

.return:hover {
  border: 1px solid #2791d4;
  background-color: #fff;
  color: #2791d4;
  transition: 0.5s;
}
/* ------------------------------------------------------------
  絞込み検索
------------------------------------------------------------ */
.search {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fff;
}

input{
  display: none;
}

.bl_3daysSearchBlock_inner{
  width: 95%;
  margin: auto;
}

.bl_3daysSearchBlock_ttl_main{
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: left;
  background: #036eb8;
  padding: 10px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.bl_selectBlock{
  border: 1px solid #036eb8;
  background: #f1faff;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 30px;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  text-align: center;
  margin: auto;
}

.js_target{
  display: none;
}
.js_target.js_selected{
  display: block;
}
.bl_selectBlock label{
  display: inline;
}
.bl_selectBlock input{
  width: 100%;           /* 幅を100%に設定 */
  padding: 10px;        /* 内側の余白 */
  border: 1px solid #ccc; /* 枠線の色と太さ */
  border-radius: 4px;   /* 角を丸くする */
  font-size: 16px;      /* フォントサイズ */
  color: #333;          /* 文字の色 */
  background-color: #fff; /* 背景色 */
  outline: none;        /* フォーカス時のアウトラインを消す */
  transition: border 0.3s; /* 枠線の変化にアニメーションを追加 */
}

.bl_selectBlock input:focus {
  border-color: #007bff; /* フォーカス時の枠線の色 */

}

.bl_selectBlock_check {
  background: #fff;
  border: solid 1px #036eb8;
  border-bottom: solid 2px #898989;
  border-radius: 5px;
  padding: 10px;
  min-width: 140px;
  text-align: left;
  align-items: center;
}
.bl_selectBlock_check label .el_checkbox{
  position: relative;
  top: 3px;
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 5px;
  border: 1px solid #0073aa;
}
.bl_selectBlock_check label .el_checkbox_card{
  position: relative;
  top: 3px;
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 5px;
  border: 1px solid #0073aa;
  margin-bottom: 16px;
}

.bl_selectBlock_check label .el_checkbox:after{
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 4px;
  right: 4px;
}
.bl_selectBlock_check input[type=checkbox]:checked + label .el_checkbox_card:after{
  background-color: #0073aa;
}

.bl_selectBlock_check label .el_checkbox_card:after{
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 4px;
  right: 4px;
}
.bl_selectBlock_check input[type=checkbox]:checked + label .el_checkbox:after{
  background-color: #0073aa;
}
.el_searchResult{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #0073aa;
  margin-top: 20px;
  margin-bottom: 20px;
}

.bl_selectBlock_check label{
  cursor: pointer;
}

.bl_selectBlock_ttl{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 10px;
  letter-spacing: 0.1em;
  text-align: left;
  padding-left: 25px;
}

.bl_selectBlock_content{
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.bl_selectBlock_content img {
  width: 70px;
}

.bl_searchResultBlock{
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid #bdbdbd;
}
.bl_searchResultBlock_item{
  padding: 20px 0;
  box-sizing: border-box;
  border-bottom: 1px solid #bdbdbd;
  padding-left: 30px;
}
.bl_selectBlock_check{
  display: inline-block;
  margin-right: 5px;
  display: inline-block;
  margin-bottom: 20px;
}
.bl_selectBlock_check:last-child{
  margin-right: 0;
}
.bl_selectBlock_release{
  text-align: center;
  color: #fff;
  background-color: #bdbdbd;
  padding: 15px 0;
  max-width: 200px;
  margin: auto;
  margin-bottom: 30px;
}
.js_release{
  cursor: pointer;
}

.name {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 10px;
  padding-left: 5px;
}

.detail {
  display: flex;
  align-items: center;
  gap: 30px;
}
.detail img{
  width: 50%;
}
.detail li {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  background: orange;
  color: #fff;
  padding: 3px 10px;
  border-radius: 30px;
  margin-bottom: 8px;
}

/* ------------------------------------------------------------
  ランキング
------------------------------------------------------------ */
.ranking {
  position: relative;
  background: #E7ECF8;
}

.ranking h2 {
  width: 101%;
  margin: auto;
}

.rank_body {
  padding-bottom: 50px;
  height: 100%;
}

.rank_container {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  padding-bottom: 30px;
  margin-bottom: 60px;
}

.rank_ribon {
  position: absolute;
  top: -10px;
  left: 20px;
  display: inline-block;
  width: 60px;
  height: 40px;
  text-align: center;
  background: #fa4141;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

.rank_ribon:before,
.rank_ribon:after {
  position: absolute;
  content: '';
}

.rank_ribon:before {
  right: -10px;
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #d90606;
}

.rank_ribon:after {
  top: 90%;
  left: 0;
  display: block;
  border: 2.15em solid #fa4141;
  border-bottom-width: 10px;
  border-bottom-color: transparent;
}

.rank_ribon span {
  font-size: 32px;
}

.maru {
  position: absolute;
  top: 0.5%;
  left: 4%;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  line-height: 70px;
  text-align: center;
  background: #0d2f80;
  color: #fff;
  font-weight: bold;
  font-size: 36px;
}


.hyouka {
  margin-top: 10px;
  font-size: 24px;
  text-align: center;
  margin-left: 100px;
}

.rank_img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.rank_img img {
  width: 45%;
  height: 45%;
}



.syousai h3 {
  padding-bottom: 20px;
  font-size: 20px;
  text-decoration: underline 0.5px;
  color: #056ecc;
}

.koumoku {
  display: inline-block;
  background: #0d2f80;
  padding: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  border-radius: 30px;
  min-width: 90px;
  text-align: center;
  margin-bottom: 20px;
  margin-right: 15px;
}

.rank_table {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
}

.rank_table table {
  border: 1px solid #999;
  width: 100%;
  border-collapse: collapse;
}

.rank_table table th {
  padding: 0.8rem 0;
  border-right: 1px solid #999;
  background-color: #eee;
  border-bottom: 1px solid #999;
}

.rank_table table th:last-child {
  border-bottom: none;
}

.rank_table table td {
  padding: 0.8rem 0;
  border-bottom: 1px solid #999;
  font-size: 16px;
}

.rank_table img {
  width: 40px;
}

.box1 {
  border: 2px solid #0d2f80;
  border-radius: 5px;
  margin-top: 20px;
}

.box1 h3 {
  background: #0d2f80;
  color: #FFF;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  padding: 3px;
}

.box1 h3::after {
  position: absolute;
  content: '';
  top: 100%;
  left: calc(50% - 14px);
  border: 14px solid transparent;
  border-top: 14px solid #0d2f80;
  width: 0;
  height: 0;
}

.box1 .inner {
  padding: 0em .5em .5em;
}

.list-01 {
  list-style-type: none;
  padding-top: 0px;
  font-size: 16px;
}

.list-01 li {
  display: flex;
  align-items: center;
  gap: 0 10px;
  position: relative;
  padding: .3em .3em .3em 1.8em;
  margin-bottom: 5px;
}

.list-01 li::before,
.list-01 li::after {
  position: absolute;
  content: '';
}

.list-01 li::before {
  left: 0;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  background-color: #0d2f80;
}

.list-01 li::after {
  left: .6em;
  transform: translateX(-75%) rotate(-45deg);
  width: .3em;
  height: .3em;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}


.box30 {
  margin: 2em 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
  border: solid 1px rgba(0, 0, 0, 0.22);
  border-radius: 5px;
  background: #fff;
}

.box30 .box-title {
  font-size: 16px;
  background: #E7ECF8;
  padding: 4px;
  padding-left: 10px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.22);
}

.box30 div {
  padding: 15px 20px;
  margin: 0;
}

.ank {
  font-size: 12px;
  font-weight: 100;
  padding-left: 35px;
}

.prf {
  display: flex;
  align-items: center;
  gap: 10px;
}

.prf img {
  width: 20%;
}

.prf p {
  line-height: 1.3rem;
  font-weight: bold;
}

.gray {
  font-weight: 100;
  color: gray;
  font-size: 12px;
}

.modal-001__wrap input {
  display: none;
}

.modal-001__open-label,
.modal-001__close-label {
  cursor: pointer;
}

.modal-001__open-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: .8em 2em;
  border: none;
  border-radius: 5px;
  background-color: #dcdddd;
  color: #000000;
  font-weight: 600;
  font-size: 1em;
  border-bottom: solid 3px #898989;
  text-align: center;
}

.modal-001__open-label:hover {
  opacity: 0.6;
  outline: 1px solid #dcdddd;
}

.modal-001 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal-001__open-input:checked+label+input+.modal-001 {
  display: block;
  animation: modal-001-animation .6s;
}

.modal-001__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 650px;
  background-color: #fefefe;
  z-index: 2;
  border-radius: 5px;
}

.modal-001__close-label {
  background-color: #777;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 36px;
  height: 36px;
  line-height: 1.6;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: -15px;
  right: -2%;
  z-index: 99999;
  font-size: 1.3em;
}

.modal-001__content {
  max-height: 50vh;
  overflow-y: auto;
  padding: 39px 45px 40px;
}

.modal-001__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 1;
}

@keyframes modal-001-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.modal-002__wrap input {
  display: none;
}

.modal-002__open-label,
.modal-002__close-label {
  cursor: pointer;
}

.modal-002__open-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: .8em 2em;
  border: none;
  border-radius: 5px;
  background-color: #dcdddd;
  color: #000000;
  font-weight: 600;
  font-size: 1em;
  border-bottom: solid 3px #898989;
  text-align: center;
}

.modal-002__open-label:hover {
  opacity: 0.6;
  outline: 1px solid #dcdddd;
}

.modal-002 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal-002__open-input:checked+label+input+.modal-002 {
  display: block;
  animation: modal-002-animation .6s;
}

.modal-002__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 650px;
  background-color: #fefefe;
  z-index: 2;
  border-radius: 5px;
}

.modal-002__close-label {
  background-color: #777;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 36px;
  height: 36px;
  line-height: 1.6;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: -15px;
  right: -2%;
  z-index: 99999;
  font-size: 1.3em;
}

.modal-002__content {
  max-height: 50vh;
  overflow-y: auto;
  padding: 39px 45px 40px;
}

.modal-002__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 1;
}

@keyframes modal-002-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.modal-003__wrap input {
  display: none;
}

.modal-003__open-label,
.modal-003__close-label {
  cursor: pointer;
}

.modal-003__open-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: .8em 2em;
  border: none;
  border-radius: 5px;
  background-color: #dcdddd;
  color: #000000;
  font-weight: 600;
  font-size: 1em;
  border-bottom: solid 3px #898989;
  text-align: center;
}

.modal-003__open-label:hover {
  opacity: 0.6;
  outline: 1px solid #dcdddd;
}

.modal-003 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal-003__open-input:checked+label+input+.modal-003 {
  display: block;
  animation: modal-003-animation .6s;
}

.modal-003__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 650px;
  background-color: #fefefe;
  z-index: 2;
  border-radius: 5px;
}

.modal-003__close-label {
  background-color: #777;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 36px;
  height: 36px;
  line-height: 1.6;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: -15px;
  right: -2%;
  z-index: 99999;
  font-size: 1.3em;
}

.modal-003__content {
  max-height: 50vh;
  overflow-y: auto;
  padding: 39px 45px 40px;
}

.modal-003__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 1;
}

@keyframes modal-003-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.modal-004__wrap input {
  display: none;
}

.modal-004__open-label,
.modal-004__close-label {
  cursor: pointer;
}

.modal-004__open-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: .8em 2em;
  border: none;
  border-radius: 5px;
  background-color: #dcdddd;
  color: #000000;
  font-weight: 600;
  font-size: 1em;
  border-bottom: solid 3px #898989;
  text-align: center;
}

.modal-004__open-label:hover {
  opacity: 0.6;
  outline: 1px solid #dcdddd;
}

.modal-004 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal-004__open-input:checked+label+input+.modal-004 {
  display: block;
  animation: modal-003-animation .6s;
}

.modal-004__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 650px;
  background-color: #fefefe;
  z-index: 2;
  border-radius: 5px;
}

.modal-004__close-label {
  background-color: #777;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 36px;
  height: 36px;
  line-height: 1.6;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: -15px;
  right: -2%;
  z-index: 99999;
  font-size: 1.3em;
}

.modal-004__content {
  max-height: 50vh;
  overflow-y: auto;
  padding: 39px 45px 40px;
}

.modal-004__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 1;
}

@keyframes modal-004-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


.modal-005__wrap input {
  display: none;
}

.modal-005__open-label,
.modal-005__close-label {
  cursor: pointer;
}

.modal-005__open-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: .8em 2em;
  border: none;
  border-radius: 5px;
  background-color: #dcdddd;
  color: #000000;
  font-weight: 600;
  font-size: 1em;
  border-bottom: solid 3px #898989;
  text-align: center;
}

.modal-005__open-label:hover {
  opacity: 0.6;
  outline: 1px solid #dcdddd;
}

.modal-005 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal-005__open-input:checked+label+input+.modal-005 {
  display: block;
  animation: modal-005-animation .6s;
}

.modal-005__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 650px;
  background-color: #fefefe;
  z-index: 2;
  border-radius: 5px;
}

.modal-005__close-label {
  background-color: #777;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 36px;
  height: 36px;
  line-height: 1.6;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: -15px;
  right: -2%;
  z-index: 99999;
  font-size: 1.3em;
}

.modal-005__content {
  max-height: 50vh;
  overflow-y: auto;
  padding: 39px 45px 40px;
}

.modal-005__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 1;
}

@keyframes modal-005-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


.modal-006__wrap input {
  display: none;
}

.modal-006__open-label,
.modal-006__close-label {
  cursor: pointer;
}

.modal-006__open-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: .8em 2em;
  border: none;
  border-radius: 5px;
  background-color: #dcdddd;
  color: #000000;
  font-weight: 600;
  font-size: 1em;
  border-bottom: solid 3px #898989;
  text-align: center;
}

.modal-006__open-label:hover {
  opacity: 0.6;
  outline: 1px solid #dcdddd;
}

.modal-006 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal-006__open-input:checked+label+input+.modal-006 {
  display: block;
  animation: modal-006-animation .6s;
}

.modal-006__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 650px;
  background-color: #fefefe;
  z-index: 2;
  border-radius: 5px;
}

.modal-006__close-label {
  background-color: #777;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 36px;
  height: 36px;
  line-height: 1.6;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: -15px;
  right: -2%;
  z-index: 99999;
  font-size: 1.3em;
}

.modal-006__content {
  max-height: 50vh;
  overflow-y: auto;
  padding: 39px 45px 40px;
}

.modal-006__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 1;
}

@keyframes modal-006-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


.modal-007__wrap input {
  display: none;
}

.modal-007__open-label,
.modal-007__close-label {
  cursor: pointer;
}

.modal-007__open-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: .8em 2em;
  border: none;
  border-radius: 5px;
  background-color: #dcdddd;
  color: #000000;
  font-weight: 600;
  font-size: 1em;
  border-bottom: solid 3px #898989;
  text-align: center;
}

.modal-007__open-label:hover {
  opacity: 0.6;
  outline: 1px solid #dcdddd;
}

.modal-007 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal-007__open-input:checked+label+input+.modal-007 {
  display: block;
  animation: modal-007-animation .6s;
}

.modal-007__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 650px;
  background-color: #fefefe;
  z-index: 2;
  border-radius: 5px;
}

.modal-007__close-label {
  background-color: #777;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 36px;
  height: 36px;
  line-height: 1.6;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: -15px;
  right: -2%;
  z-index: 99999;
  font-size: 1.3em;
}

.modal-007__content {
  max-height: 50vh;
  overflow-y: auto;
  padding: 39px 45px 40px;
}

.modal-007__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 1;
}

@keyframes modal-007-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.modal-008__wrap input {
  display: none;
}

.modal-008__open-label,
.modal-008__close-label {
  cursor: pointer;
}

.modal-008__open-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: .8em 2em;
  border: none;
  border-radius: 5px;
  background-color: #dcdddd;
  color: #000000;
  font-weight: 600;
  font-size: 1em;
  border-bottom: solid 3px #898989;
  text-align: center;
}

.modal-008__open-label:hover {
  opacity: 0.6;
  outline: 1px solid #dcdddd;
}

.modal-008 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal-008__open-input:checked+label+input+.modal-008 {
  display: block;
  animation: modal-008-animation .6s;
}

.modal-008__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 650px;
  background-color: #fefefe;
  z-index: 2;
  border-radius: 5px;
}

.modal-008__close-label {
  background-color: #777;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 36px;
  height: 36px;
  line-height: 1.6;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: -15px;
  right: -2%;
  z-index: 99999;
  font-size: 1.3em;
}

.modal-008__content {
  max-height: 50vh;
  overflow-y: auto;
  padding: 39px 45px 40px;
}

.modal-008__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 1;
}

@keyframes modal-008-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


.modal-009__wrap input {
  display: none;
}

.modal-009__open-label,
.modal-009__close-label {
  cursor: pointer;
}

.modal-009__open-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: .8em 2em;
  border: none;
  border-radius: 5px;
  background-color: #dcdddd;
  color: #000000;
  font-weight: 600;
  font-size: 1em;
  border-bottom: solid 3px #898989;
  text-align: center;
}

.modal-009__open-label:hover {
  opacity: 0.6;
  outline: 1px solid #dcdddd;
}

.modal-009 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal-009__open-input:checked+label+input+.modal-009 {
  display: block;
  animation: modal-009-animation .6s;
}

.modal-009__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 650px;
  background-color: #fefefe;
  z-index: 2;
  border-radius: 5px;
}

.modal-009__close-label {
  background-color: #777;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 36px;
  height: 36px;
  line-height: 1.6;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: -15px;
  right: -2%;
  z-index: 99999;
  font-size: 1.3em;
}

.modal-009__content {
  max-height: 50vh;
  overflow-y: auto;
  padding: 39px 45px 40px;
}

.modal-009__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 1;
}

@keyframes modal-009-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}



.balloon {
  position: relative;
  padding: 0px 10px;
  min-width: 120px;
  max-width: 250px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background: #f39800;
  border-radius: 30px;
  margin: auto;
}

.balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 10px solid transparent;
  border-top: 10px solid #f39800;
}


.readmore-wrap {
  position: relative;
  width: 100%;
  margin: auto;
  margin-bottom: 50px;
}

.readmore-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -55px;
  width: 200px;
  margin: 0 auto;
  padding: 15px;
  background-color: #eee;
  border-radius: 5px;
  color: #333;
  border: 1px solid #aaa;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  z-index: 10;
}

.readmore-text {
  position: relative;
  overflow: hidden;
  height: 0px;
}

.readmore-check {
  display: none;
}

.readmore-check:checked+.readmore-btn {
  display: none;
}

.readmore-check:checked~.readmore-text {
  height: auto;
}

.under_no9 th {
  padding: 10px 5px;
}

.under_no9 td {
  padding: 10px 0px;
}

.under_no9 tr:first-child {
  background: #dcdddd;
  font-weight: bold;
}

.under_no9 th,
td {
  border: solid 1px #b5b5b6;
}

.under_no9 {
  width: 100%;
  background: #fff;
  border-collapse: collapse;
  text-align: center;
}

.small-btn {
  position: relative;
  display: inline-block;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 5px 5px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  font-size: 12px;
  background: orange;
  border-radius: 5px;
  line-height: 1.5rem;
}

.small-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}


.rank_btn {
  margin: 0 auto;
  margin-top: 100px;
  padding: 15px 15px;
  width: 300px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  background: #fa4141;
  border-radius: 10px;
  line-height: 1.5rem;
  border-bottom: solid 5px #d82525;
  overflow: hidden;
}

.rank_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

.rank_body {
  width: 95%;
  margin: auto;
  margin-top: 40px;
}

.sougou {
  background: #dcdddd;
  padding: 3px;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 15px;
}

.line2 {
  border-bottom: solid 2px #dcdddd;
  padding-top: -15px;
}


/* solid015 */
.button_solid015 {
  text-align: center;
  margin-top: 30px;
}

.button_solid015 p {
  margin-bottom: 5px;
  font-weight: 600;
  color: #036eb8;
  letter-spacing: 0.04rem;
  background: linear-gradient(transparent 60%, #ff6 60%);
  display: inline-block;
  position: relative;
  font-size: 1.0rem;
}

.button_solid015 p:before,
.button_solid015 p:after {
  display: inline-block;
  position: absolute;
  top: 45%;
  width: 20px;
  height: 3px;
  border-radius: 5px;
  background-color: #036eb8;
  content: "";
}

.button_solid015 p:before {
  left: -20px;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
}

.button_solid015 p:after {
  right: -20px;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
}

.shiny-btn2 {
  position: relative;
  display: inline-block;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 15px 15px;
  min-width: 320px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  font-size: 20px;
  background: #fa4141;
  filter: drop-shadow(0px 2px 4px #ccc);
  border-radius: 10px;
  line-height: 1.5rem;
  border-bottom: solid 5px #d82525;
  overflow: hidden;
  animation: pekopeko 2s infinite;
}

@keyframes pekopeko {
  0% {
    top: 0px;
  }

  10% {
    top: 3px;
  }

  20% {
    top: 0px;
  }

  30% {
    top: 3px
  }

  40% {
    top: 0px;
  }
}

.shiny-btn2:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

.shiny-btn2::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  transition: 0.2s;
  animation: shiny-btn2 4s ease-in-out infinite;
}

@-webkit-keyframes shiny-btn2 {
  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;
  }
}

.cta-small {
  font-size: 10px;
}

/* ------------------------------------------------------------
  利用方法
------------------------------------------------------------ */
.riyou {
  background: #ebf4ea;
  padding-top: 50px;
  padding-bottom: 50px;
}

.riyou_body {
  width: 90%;
  margin: auto;
  margin-top: 60px;
}

.riyou_box {
  position: relative;
  background: #fff;
  border: solid 2px #0d2f80;
  border-radius: 5px;
  margin-bottom: 30px;
}

.number {
  position: absolute;
  width: 20%;
  top: -10%;
  left: -3%;
}

@media screen and (min-width: 768px) {
  .number {
    width: 12%;
  }
}

.riyou_contents {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 20px;
  padding: 30px 20px 20px 10px;

}

.riyou_contents img {
  width: 100px;
  max-height: 100px;
}

.riyou_text h3 {
  color: #0d2f80;
  font-size: 18px;
  border-bottom: solid 2px #0d2f80;
}

.riyou_text p {
  margin-top: 10px;
  line-height: 1.5rem;
  font-size: 14px;
}

/* ------------------------------------------------------------
  安心ポイント
------------------------------------------------------------ */
.anshin {
  padding-top: 50px;
  padding-bottom: 100px;
  background: #e9e5e0;
}

.anshin h2 {
  padding: 0 10px;
}

.anshin_box {
  position: relative;
  background: #fff;
  border: solid 2px #f39800;
  border-radius: 5px;
  margin-bottom: 30px;
}

.anshin_contents {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 20px;
  padding: 30px 20px 20px 10px;

}

.anshin_contents img {
  width: 100px;
  max-height: 100px;
  padding-top: 10px;
}

.anshin_text h3 {
  color: #f39800;
  font-size: 18px;
  border-bottom: solid 2px #f39800;
}

.anshin_text p {
  margin-top: 10px;
  line-height: 1.5rem;
  font-size: 14px;
}



/* ------------------------------------------------------------
  よくある質問
------------------------------------------------------------ */
.qa {
  padding-top: 20px;
  padding-bottom: 50px;
  width: 95%;
  margin: auto;
}

.cp_qa {
  margin-top: 20px;
}

.cp_qa *,
.cp_qa *:after,
.cp_qa *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cp_qa .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 1em 0;
  color: #1b2538;
}

.cp_qa .cp_actab input {
  position: absolute;
  opacity: 0;
}

/* 質問 */
.cp_qa .cp_actab label {
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  display: block;
  margin: 0 0 0 0;
  padding: 1em 2em 1em 2.5em;
  cursor: pointer;
  text-indent: 1em;
  border-radius: 0.5em;
  background: #E7ECF8;
}

.cp_qa .cp_actab label::before {
  font-family: serif;
  font-size: 1.5em;
  margin-left: -2em;
  padding-right: 0.5em;
  content: 'Q';
}

.cp_qa .cp_actab label:hover {
  transition: all 0.3s;
  color: #0d2f80;
}

/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
  font-size: 1.7em;
  font-weight: bold;
  line-height: 2em;
  position: absolute;
  top: 0;
  right: 0;
  content: '＋';
  display: inline-block;
  width: 2em;
  height: 2em;
  -webkit-transition: transform 0.4s;
  transition: transform 0.4s;
}

/* 答え */
.cp_qa .cp_actab .cp_actab-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0 0 0 2.5em;
  -webkit-transition: max-height 0.2s;
  transition: max-height 0.2s;
  border-radius: 0 0 0.5em 0.5em;
}

.cp_qa .cp_actab .cp_actab-content::before {
  font-family: serif;
  font-size: 1.5em;
  position: absolute;
  margin: 0.4em 0 0 -1em;
  padding: 0;
  content: 'A';
}

.cp_qa .cp_actab .cp_actab-content p {
  margin: 1em 1em 1em 0;
}

/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked~.cp_actab-content {
  max-height: 40em;
  border: 10px solid rgba(27, 37, 56, 0.1);
}

/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked~label {
  color: #0d2f80;
  border-radius: 0.5em 0.5em 0 0;
}

/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type=checkbox]:checked+label::after {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}


/* ------------------------------------------------------------
  コラム
------------------------------------------------------------ */
.columm {
  padding-top: 50px;
  padding-bottom: 50px;
}

.columm_body {
  width: 95%;
  margin: auto;
}

.columm_body h2 {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: left;
  background: #036eb8;
  padding: 10px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.columm_box {
  border: solid 1px #036eb8;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 20px;
}

.columm_box li {
  font-size: 16px;
  text-decoration: underline #595757;
  margin-bottom: 10px;
}

/* ------------------------------------------------------------
  footer
------------------------------------------------------------ */
#footer {
  position: relative;
  margin-top: 40px;
  color: #fff;
}

#footer a {
  text-decoration: none;
  color: #333333;
}

#footer a:hover {
  text-decoration: underline;
}

#footer .primary {
  padding: 40px 20px;
  background: #E7ECF8;
}

#footer .secondary {
  display: flex;
  padding: 20px 20px;
  background: #0d2f80;
}

@media screen and (max-width: 767px) {
  #footer .primary {
    padding: 20px 20px;
    background: #E7ECF8;
  }

  #footer .secondary {
    display: block;
    padding: 20px 20px;
  }
}

.primary-inner {
  max-width: 800px;
  margin: auto;
}

/* footer-logo */

#footer .logo {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  font-size: 26px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #footer .logo {
    font-size: 16px;
  }
}


/* navi */

.navi-row {
  display: flex;
  margin-top: 40px;
}

#footer .navi {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer .navi li {
  display: inline-block;
  margin: 0 20px 0 0;
  padding: 0;
}

#footer .navi li:first-child {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .navi-row {
    display: block;
    margin-top: 15px;
  }

  #footer .navi {
    font-size: 12px;
  }

  #footer .navi li {
    margin-top: 5px;
    font-size: 12px;
  }
}

/* sns-navi */

#footer .sns-navi {
  margin: 0 0 0 auto;
  padding: 0;
}

#footer .sns-navi li {
  display: inline-block;
  margin: 0 20px 0 0;
  padding: 0;
  font-size: 20px;
}

#footer .sns-navi li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  #footer .sns-navi {
    margin: 20px 0 0;
    padding: 0;
  }

  #footer .sns-navi li {
    margin: 0 20px 0 0;
    padding: 0;
    font-size: 18px;
  }
}


/* copyright */

#footer .copyright {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #footer .copyright {
    width: 100%;
    margin: 10px 0 0;
    text-align: center;
    font-size: 12px;
  }
}

body {
  margin: 0;
  padding: 0;
}


/* ------------------------------------------------------------
  以下コラムページ
------------------------------------------------------------ */
.columm_page {
  width: 95%;
  margin: auto;
  padding-top: 50px;
  margin-bottom: -50px;
}

.columm_page h2 {
  padding: 1rem 1rem;
  border-left: 6px double #0d2f80;
}

.columm_page p {
  width: 90%;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.columm_page h3 {
  padding: 1rem 2rem;
  color: #fff;
  background: #0d2f80;
  -webkit-box-shadow: 5px 5px 0 gray;
  box-shadow: 5px 5px 0 gray;
}

.columm_page h4 {
  padding: 1rem 2rem;
  border-left: 5px solid #000;
  background: #f4f4f4;
}

.design01 {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.0rem;
  margin-top: -30px;
  margin-bottom: 30px;
}

.design01 th {
  padding: 10px;
  background: #e9faf9;
  border: solid 1px #778ca3;
}

.design01 td {
  padding: 10px 2px;
  border: solid 1px #778ca3;
  font-size: 0.8rem;
}

/* ------------------------------------------------------------
  以下運営者情報ページ
------------------------------------------------------------ */
.admin {
  max-width: 800px;
  padding-top: 20px;
  text-align: center;
  margin: auto;
  margin-bottom: 30px;

}

.admin_page {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-bottom: 50px;
}

.admin_page h3 {
  padding: 0.5rem 2rem;
  border-left: 5px solid #000;
  background: #f4f4f4;
  margin-top: 30px;
  text-align: left;
}

.admin_page p {
  text-align: left;
  margin-top: 10px;
  padding-left: 10px;
  font-size: 16px;
}

.privacy_text {
  margin-top: 20px;
  border: solid 1px gray;
  padding: 10px;
  font-size: 12px;
  text-align: left;
}


.sns {
  display: flex;
  justify-content: center;
  justify-content: space-evenly;
  margin-bottom: 20px;
}

.sns a {
  width: 10%;
}



.kodawari-h2 {
  position: relative;
  margin: 30px;
  text-align: center;
  padding-top: 40px;
}

.kodawari-h2:before,
.kodawari-h2:after {
  position: absolute;
  z-index: 0;
  bottom: -10px;
  display: block;
  content: '';
  border: 1em solid #d90606;
}

.kodawari-h2:before {
  left: -30px;
  border-left-width: 15px;
  border-left-color: transparent;
}

.kodawari-h2:after {
  right: -30px;
  border-right-width: 15px;
  border-right-color: transparent;
}

.kodawari-h2 span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1rem 2rem;
  color: #fff;
  background: #fa4141;
}

.kodawari-h2 span:before,
.kodawari-h2 span:after {
  position: absolute;
  bottom: -10px;
  display: block;
  width: 10px;
  height: 10px;
  content: '';
  border-style: solid;
  border-color: #b70505 transparent transparent transparent;
}

.kodawari-h2 span:before {
  left: 0;
  border-width: 10px 0 0 10px;
}

.kodawari-h2 span:after {
  right: 0;
  border-width: 10px 10px 0 0;
}




/* ------------------------------------------------------------
  絞込み検索
------------------------------------------------------------ */
.form__body {
  width: 85%;
  padding: 10px 0px;
  margin: auto;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .form__body {
    width: 95%;
  }
}

.diagnose {
  width: 100%;
}

.diagnose label {
  display: inline-block;
  width: 100%;
  text-align: left;
  margin-bottom: 5px;
}

.form_inner {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}

.jouken {
  background: #e5e5e5;
  min-width: 120px;
  min-height: 180px;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 5px;
}

.radio__wrap {
  background: #fff;
  height: 180px;
  padding: 10px;
}

.radio__wrap.radio-input {
  display: inline;
}

.form_button {
  margin: auto;
  text-align: center;
  margin-top: 20px;
}

.form_button button {
  background: #f39800;
  width: 250px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  border-bottom: solid 5px #dd8300;
  cursor: pointer;
}

/* iframe追加 */
iframe {
  border: unset;
  margin: auto;
  width: 100%;
}

/* 電話CTA追加 */

.cta_tel {
  border: none;
  margin: auto;
  width: 100%;
}

.button_solid016 {
  text-align: center;
}

.shiny-btn3 {
  text-decoration: none;
  position: relative;
  display: inline-block;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  margin-top: 20px;
  padding: 8px 15px;
  min-width: 320px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  font-size: 20px;
  background: #f39800;
  filter: drop-shadow(0px 2px 4px #ccc);
  border-radius: 50px;
  line-height: 1.5rem;
  border-bottom: solid 5px #dd7e00;
  overflow: hidden;
  box-sizing: border-box;
}

.cta-small2 {
  font-size: 14px;
  font-weight: 300;
}

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


.box2{
  border: 2px solid #ffd700;
  border-radius: 5px;
  margin-top: 30px;
}
.box2 h3{
  background: #fffbe5;
  color: #000000;
  text-align: center;
  margin: 0;
  position: relative;
  padding: 3px;
}

.box2 .inner{
  padding: 1em .5em .5em;
  text-align: center;
}

.inner ol li {
  margin-bottom: 10px;
  text-align: left;
}

.gift {
  background: #e52780;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 2px 4px;
  border-radius: 8px;
  margin-right: 5px;
}

.topic2 {
  font-weight: bold;
  color: #fa4141;
  text-decoration: underline;
}


.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  position: relative;
  background-color: #fff;
  min-width: 350px;
  max-width: 350px;
  margin: 10% auto;
  padding: 5px;
  border: 1px solid #888;
  border-radius: 5px;
  text-align: center;
}

.close-button {
  position: absolute;
  top: 0px;
  right: 5px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.circle1{
  display:inline-block;
  width:60px;
  height:60px;
  margin:20px;
  border-radius:100%;
  box-sizing:border-box;
  border:10px dotted #a4e0ea;
  animation:4s linear infinite rotation;
}
@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 25px solid transparent;
  border-left: 25px solid transparent;
  border-top: 20px solid #036eb8;
  border-bottom: 0;
  margin: auto;
}

.aria-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}