@charset "UTF-8";

/* ------------------------------------------------------------
 独自リセット・共通スタイル
------------------------------------------------------------ */

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: 1000;
  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 #f7931e;
  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 */

@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;
}

/* ------------------------------------------------------------
  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;
 }
}

/* ------------------------------------------------------------
  タイマー
------------------------------------------------------------ */

#timer_wrap {
  text-align: center;
  position: absolute;
  top: 75%;
  left: 4%;
}

#timer_wrap .inner {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  max-width: 500px;
  margin: auto;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 5px;
  border-radius: 10px;
}

#timer_wrap .timerbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.time {
  font-weight: bold;
  font-size: 1rem;
  color: #fdf405;
  animation: flash 2s linear infinite;
}

@keyframes flash {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
  
  60% {
    opacity: 1;
  }
  
  100% {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
#timer_wrap {
  top: 65%;
  left: 20%;
}

#timer_wrap .inner {
  max-width: 800px;;
  font-size: 1.8rem;
  padding: 2px 15px;
}

.time {
  font-size: 2.6rem;
}
}


.timer_in_box {
  border: solid 2px #f7931e;
  background: #fffbe5;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 4px;
  font-size: 0.9rem;
  padding-left: 10px;
  margin-bottom: 20px;
}

.timer_in_box .timerbox {
  background: #333333;
  color: #fff;
  border-radius: 30px;
  padding: 0px 5px;
  font-size: 1rem;
  color: #fdf405;
  font-weight: bold;
}

/* ------------------------------------------------------------
  main
------------------------------------------------------------ */
article {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.main-contents {
  width: 550px;

}

.side {
  width: 350px; 
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
.side {
  display: none;
 }
}

/* ------------------------------------------------------------
  サイドバー
------------------------------------------------------------ */
.side-contents {
  background: #fff1e1;
  padding-top: 20px;
}

.side h3 {
  background: #f7931e;
  border-bottom:solid 3px #f16a24;
  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: #fff1e1;
  padding-top: 20px;
}

.side-sp h3 {
  background: #f7931e;
  border-bottom:solid 3px #f16a24;
  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;
}

/* ------------------------------------------------------------
  診断
------------------------------------------------------------ */
.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: -55px;
}

.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: #fffbe5;
  width: 90%;
  height: 250px;
  margin: auto;
  box-shadow: 0 0 1px gray;
  border-radius: 10px;
  border: solid 2px #f7ce00;

}

.shindan h2 {
  width: 90%;
  margin: auto;
  padding: 1rem 1rem;
  background: #28923e;
  font-size: 22px;
  text-align: center;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}


.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: #f7ce00;
  font-weight: bold;
} 

.btn {
  display: inline-block;
  flex: wrap;
  min-width: 150px;
  color: #f39800;
  padding: 5px 20px;
  margin-bottom: 10px;
  text-align: center;
  background-color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #f39800;
  text-decoration: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.btn:hover {
  background-color: #f39800;
  color: #fff;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
}



.fit {
  position: absolute;
  left: 0px;
  top: -10px;
  width: 100%;
  text-align: center;
}

.fit p {
  margin-top: 5%;
  margin-bottom: 5%;
    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: #8cc63f;
  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: #8cc63f;
  border: solid 2px #8cc63f;
    -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;
}

/* ------------------------------------------------------------
  検索
------------------------------------------------------------ */
#search {
  padding: 5% 0;
}

/* まず、全ての質問項目を非表示にする */
.search_content {
  display: none;
}

/* .activeクラスが付いた質問項目だけを表示し、アニメーションを適用する */
.search_content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.form__body2 {
  background-color: #ffb84d;
  width: 95%;
  margin: auto;
  border-radius: 5px;
  padding: 3%;
}
.form__body2 h2 {
  text-align: center;
  font-size: 2rem;
  line-height: 2rem;
  color: #fff;
  text-shadow: 0px 2px 3px rgb(255, 12, 4);
}
.form__body2 h2 span {
  font-size: 1rem;
}
.form__inner {
  background-color: #fff;
  margin-top: 5%;
  padding-bottom: 5%;
}
.select-box {
  padding: 5% 3% 0;
}
.search_content {
  display: block; /* .activeと同じスタイルを適用 */
  animation: fadeIn 0.3s ease; /* .activeと同じスタイルを適用 */
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.radio-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 5% 0;
  padding-bottom: 3%;
  border-bottom: #999999 1.5px dashed;
}
.radio {
  border: solid 1px #999999;
  border-radius: 5px;
  background-color: #fff;
  color: #999999;
  padding: 5px;
  font-weight: bold;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.radio-content input {
  margin: 0;
  margin-right: 5px;
}
/* 選択済みの場合、色を濃くする */
.radio:has(> .radio-input:checked) {
  background-color: #e4fcbe;
  border-color: #4CAF50;
  color: #333;
}
.radio-input {
  appearance: none; /* デフォルトスタイルを無効化 */
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #b3b3b3; /* 未選択時のボーダー色 */
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
}

/* チェック時のスタイル */
.radio-input:checked {
  border-color: #8cc63f; /* 緑のボーダー */
  background-color: #8cc63f; /* 緑の背景 */
}

/* 中に白い丸を表示 */
.radio-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white; /* 白い丸 */
  border-radius: 50%;
}
.card_bland label span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
}
.radio-content label img {
  width: 40px;
  height: auto;
}

input[type="checkbox"] {
  accent-color: #8cc63f; /* チェックボックスの色を緑に */
}
/* チェック時のスタイル */
.radio:has(.check-input:checked) {
  background-color: #e4fcbe;
  color: #333333;
}

.form_button {
  text-align: center;
  margin-top: 5%;
}
.form__body2 button {
  background-color: #f57e11;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  min-width: 300px;
  padding: 3%;
  cursor: pointer;
  position: relative;
}
.form__body2 button::after {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}


/* ------------------------------------------------------------
  ランキング
------------------------------------------------------------ */
.ranking {
  position: relative;
  background: #f9e178;
}

.ranking h2 {
  position: absolute;
  width: 101%;
  margin: auto;
  top: -1%;
  left: -1%;
}

.rank_body {
  padding-top: 150px;
  padding-bottom: 50px;
  height: 100%;
}

.rank_container {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  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:60px;
 width:60px;
 border-radius:50%;
 line-height:60px;
 text-align:center;
 background: #f7931e;
 color: #fff;
 font-weight: bold;
 font-size: 36px;
}


.hyouka {
  margin-top: 10px;
  font-size: 22px;
  text-align: center;
  margin-left: 100px;
}

.rank_img {
  display: flex;
  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: #f7931e;
  padding: 5px;
  color: #fff;
  font-size: 12px;
  font-weight:;
  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 ;
  min-width: 140px;
}

@media screen and (min-width:768px) {
.rank_table table th{
  min-width: 180px;
}
}

.rank_table table th:last-child{
  border-bottom: none;
}

.rank_table table td:last-child{
  border-bottom: none;
  border-left: none;
  border-right: none;
}

.rank_table table td{
  padding: 0.8rem 0;
  border-bottom: 1px solid #999;
  font-size: 16px;
}
.rank_table img {
  width: 210px;
}


.icon-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.icon-list img{
  width: 40px;
}


.box1{
  border: 2px solid #8cc63f;
  border-radius: 5px;
  margin-top: 20px;
}
.box1 h3{
  background: #8cc63f;
  color: #FFF;
  text-align: center;
  margin: 0;
  position: relative;
  padding: 3px;
}
.box1 h3::after {
  position: absolute;
  content: '';
  top: 100%;
  left: calc( 50% - 14px );
  border: 14px solid transparent;
  border-top: 14px solid #8cc63f;
  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: #8cc63f;
}

.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: #fffbe5;
  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: 95%;
  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: 95%;
  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: 95%;
  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: 95%;
  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: 95%;
  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;
    }
}

.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;
}

.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: 0em .5em .5em;
  text-align: center;
}

.inner ol li {
  margin-bottom: 10px;
  text-align: left;
}

.gift {
  background: #8cc63f;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 2px 4px;
  border-radius: 8px;
  margin-right: 5px;
}

.topic2 {
  font-weight: bold;
  color: #fa4141;
}

.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;
}

.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;
}
.button_solid015 p {
    margin-bottom: 5px;
    font-weight: 600;
    color: #f7931e;
    letter-spacing: 0.04rem;
    display: inline-block;
    position: relative;
}
.button_solid015 p:before, .button_solid015 p:after {
    display: inline-block;
    position: absolute;
    top: 45%;
    width: 20px;
    height: 3px;
    border-radius: 5px;
    background-color: #f7931e;
    content: "";
}
.button_solid015 p:before {
    left: -30px;
    -webkit-transform: rotate( 50deg );
    transform: rotate( 50deg );
}
.button_solid015 p:after {
    right: -30px;
    -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;
}
.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;
}

.heading06 {
  position: relative;
  padding-top: 50px;
  padding-bottom: 0px;
  font-size: 1.8rem;
  text-align: center;
  border-bottom: 1px solid #ec6432;
  color: #ec6432;
  margin-bottom: 30px;
}

.heading06 span {
  position: relative;
  z-index: 2;
}

.heading06::before {
  content: attr(data-en);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(236,100,50,0.2);
  font-size: 80px;
  font-style: italic;
}

/* ------------------------------------------------------------
  利用方法
------------------------------------------------------------ */
.riyou {
  background: #fff1e1;
  padding-top: 50px;
  padding-bottom: 50px;
}

.riyou_body {
  width: 90%;
  margin: auto;
  margin-top: 60px;
}

.riyou_box {
  position: relative;
  background: #fff;
  border: solid 2px #f7931e;
  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: #f7931e;
  font-size: 18px;
  border-bottom: solid 2px #f7931e;
}

.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: 50px;
  padding-bottom: 50px;
  width: 95%;
  margin: auto;
}

.cp_qa {
  margin-top: 50px;
}

.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: #fffbe5;
}
.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: #f39800;
}
/* --質問の＋アイコン */
.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: #f39800;
  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%;
}

/* ------------------------------------------------------------
  footer
------------------------------------------------------------ */
#footer {
  position: relative;
  margin-top: 40px;
  color: #fff;
}
#footer a {
  text-decoration: none;
  color: #fff;
}
#footer a:hover {
  text-decoration: underline;
}
#footer .primary {
  padding: 40px 20px;
  background: #fbb03b;
}
#footer .secondary {
  display: flex;
  padding: 20px 20px;
  background: #f7931e;
}

@media screen and (max-width: 767px) {
  #footer .primary {
    padding: 20px 20px;
  }
  #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 #f7931e;
}

.columm_page p {
  width: 90%;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.columm_page h3 {
  padding: 1rem 2rem;
  color: #fff;
  background: #f7931e;
  -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: 140px;
  min-height: 150px;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 5px;
}

.radio__wrap {
  background: #fff;
  height: 150px;
  padding: 10px;
}

.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;
}