@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Opti&family=Roboto:wght@700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

html *{
  box-sizing: border-box;
  max-width: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body{
  width: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100vh;
  max-width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  color: #3e3e3e;
  margin: 0;
  padding: 0;
  background-image: url(material/bg_img.jpg);
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center -100px;
  opacity: 0;
  transition: opacity 1s ease; 
  background-color: #faf6f2;
  position: relative;
  min-height: 100vh;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9); /* 透明度のある白 */
  z-index: 9999; /* オーバーレイを最前面に配置 */
  display: none; /* 初期状態では非表示 */
}


div {
  display: block;
}

#container {
  width: 100%;
  height: 100vh;
}

.inner {
  width: 750px;
  margin: 0 auto;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form, figure, form {
  margin: 0px;
  padding: 0px;
  letter-spacing: 0px;
}
h1 {
  font-size: 1.1em;
  font-family:'Roboto',"Kaisei Opti", sans-serif;
}
h2 {
  padding-bottom: 3px;
  font-family:'Roboto',"Zen Kaku Gothic New", sans-serif;
}

button {
  font-family:'Roboto',"Zen Kaku Gothic New", sans-serif;
}
a:active {
  background-color: transparent !important;
}


header {
  margin: 0;
  border-top: 10px solid;
  width: 100%;
  border-image: linear-gradient(to right, #b1b8db, #ffcbe4, #93628f, #2a3175);
  border-image-slice: 1;
  position: relative;
  z-index: 1;
  display: flex;
}

.crown_1 {
  position: absolute;
  top: 4vw;
  right: 23vw;
  width: 8vw;
  z-index: 99;
  transform: rotate(10deg);
}

.header_logo {
  width: 20vw;
  margin:  1vw auto 0 0;
  text-align: center;
}
.header_logo img {
  margin: 0 auto;
}

 main {
   margin: 0 0 1vw 0;
   min-height: 100vh;
 }

section {
  display: block;
  padding: 0 10px;
}
.title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  
}
.first_title_box {
  background-color: #fff;
  color: #3e3e3e;
  border-radius: 20px;
  margin: 20px auto;
}
section.title {
  padding: 10px;
  width: 730px;
}
.title_person {
  width: 100px;
}

.title_slash {
  width: 3vw;
  height: 3vw;
  margin: 0 2vw;
}

/* 大リボン帯デザイン */
.ribbon {
  display: inline-block;
  position: relative;
  height: 60px;
  text-align: center;
  box-sizing: border-box;
  z-index: 1;
}
.ribbon:before {/*左側のリボン端*/
  content: '';
  position: absolute;
  width: 50px;
  bottom: -25px;
  left: -70px;
  z-index: 0;
  height: 60px;
  border: 30px solid #2a3175;
  border-left-color: transparent;/*山形に切り抜き*/
  border-radius: 3px;
}

.ribbon:after {/*右側のリボン端*/
  content: '';
  position: absolute;
  width: 50px;
  bottom: -25px;
  right: -70px;
  z-index: 0;
  height: 60px;
  border: 30px solid #2a3175;
  border-right-color: transparent;/*山形に切り抜き*/
  border-radius: 3px;
}

.ribbon h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 600px;
  padding: 5px 0;
  margin: 0 auto 50px;
  font-size: 30px;
  color: #FFF;
  background: #2a3175;/*真ん中の背景色*/
  border-radius: 3px;
  letter-spacing: 2px;
}

.big_ribbon_title {
  text-align: center;
  margin: 10px auto 30px auto;
  width: 100%;
}
h2 i.fa-solid {
  margin: 5px 10px 0 10px ;
}
.sub_title {
  text-align: center;
}

/* ここまで */

/* 小リボン帯デザイン */
h2.small_ribbon_h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  position: relative;
  text-align: center;
  font-size: 30px;
  background: #2a3175;
  color: #FFF;
  box-sizing: border-box;
  margin: 0 0 30px;
  line-height: 1;
}

h2.small_ribbon_h2:before {
  top: 0;
  left: 0;
  border-width: 30px 0px 30px 15px;
  border-color: transparent transparent transparent #faf6f2;
  border-style: solid;
}

h2.small_ribbon_h2:before, h2.small_ribbon_h2:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

h2.small_ribbon_h2:after {
  top: 0;
  right: 0;
  border-width: 30px 15px 30px 0px;
  border-color: transparent #faf6f2 transparent transparent;
  border-style: solid;
}
/* ここまで */

/* ホバーで押し込むボタンアニメ */
a.btn_anime {
  overflow: hidden;
  position: relative;
  top: 0;
  transition: top 0.3s ease-in-out;
}
a.btn_anime:hover {
  top: 5px;
  box-shadow: 0 0 #ed4681; /* 影を0pxにする */
  transition: top 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
a.btn_anime p{
  overflow: hidden;
  position: relative;
  top: 0;
  transition: top 0.3s ease-in-out;
}
a.btn_anime p:hover {
  top: 3px;
  box-shadow: 0 0 #ed4681; /* 影を0pxにする */
  transition: top 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
p.btn_anime{
  overflow: hidden;
  position: relative;
  top: 0;
  transition: top 0.3s ease-in-out;
}
p.btn_anime:hover {
  top: 3px;
  box-shadow: 0 0 #ed4681; /* 影を0pxにする */
  transition: top 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
/* ここまで */

/* テキストデコレーション一式 */
.point_col__ne {
  color: #2a3175;
}
.point_col__gold {
  color: #c69c6d;
}
.point_col__gy {
  color: #3e3e3e;
}
.point_col__pl {
  color: #b05398;
}
.point_col__pk {
  color: #ed4681;
}

.point_col__bk_bold {
  font-weight: 700;
  color: #3e4153;
  font-size: 105%;
}
.point_col__bk {
  color: #3e4153;
}

.emphasis {
  font-size: 120%;
  font-family:'Roboto',"Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
.emphasis-2 {
  font-size: 120%;
  font-family:'Roboto',"Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  border-bottom: solid 1px #c69c6d;
}
.emphasis-3 {
  font-size: 120%;
  font-family:'Roboto',"Kaisei Opti", sans-serif;
  font-weight: 700;
}

.text-bold {
  font-weight: 700;
}

.text_opacity {
  opacity: 0.5;
}
span.emphasis {
  font-size: 110%;
  font-weight: 700;
}
span.weak {
  font-size: 80%;
}
.small_font {
  font-size: small;
  font-weight: 400;
}
.emphasis a {
  text-decoration: underline;
}
.bigger_emphasis {
  font-size: 160%;
  font-weight: 700;
  letter-spacing: 5px;
}
.point_col__gold_Gradationline {
  display: inline-block;
  background: linear-gradient(90deg, #c69c6d, #f3d7ab 30%, #c69c6d);
  background: -webkit-linear-gradient(0deg, #c69c6d, #f3d7ab 30%, #c69c6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 点滅文字デザイン */
.text_flash {
  animation: flash 3.5s ease-in-out infinite;
}
@keyframes flash {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}


/* テキストデコレーションここまで */

/* 光るボタンデザイン */
.shiny-btn::after {
  content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 50px;
    height: 50px;
    background-image: linear-gradient(100deg,  rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes shiny {
  0% {
      transform: scale(0) rotate(25deg);
      opacity: 0;
  }

  50% {
      transform: scale(1) rotate(25deg);
      opacity: 1;
  }

  100% {
      transform: scale(50) rotate(25deg);
      opacity: 0;
  }
}

/* スライドインアニメーション */
.slideinRight {
  animation: slideinRight 0.8s forwards;
}
.slideinLeft {
  animation: slideinLeft 0.8s forwards;
}

@keyframes slideinLeft {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideinRight {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* section__compare */

.privilege_area_small{
  display: flex;
  align-items: last baseline;
}
.privilege_area_small img.small_rabbit {
  width: 15px;
  margin: 5px 5px 0 0;
}
p.privilege_area_p {
  line-height: 1;
  font-size: 14px;
  text-align: left !important;
}

section.small_screen_compare {
  display: none;
}
section.compare {
  padding: 0 10px 10px 10px;
  margin: 0 0 60px;
  overflow: hidden;
}
section.responsive_compare {
  display: none;
}

h2.compare_title {
  background: #fff;
  text-align: center;
  border: 5px solid #b1b8db;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  margin-bottom: 0;
  padding: 10px 0 0 0;
  font-size: 30px;
  font-weight: 700;
  font-family:'Roboto',"Zen Kaku Gothic New", sans-serif;
  box-shadow: 2px -2px 3px #6666662e;
}
.compare_title.triangle {
  position: relative;
}

.compare_title.triangle:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  box-sizing: border-box;
  border-right: 25vw solid transparent;
  border-left: 25vw solid transparent;
  border-top: 20px solid #fff;
  z-index: 9;
}

.compare_table_wrap {
  padding: 35px 5px 5px 5px;
  background-image: linear-gradient(to bottom, #b1b8db, #ffcbe4, #93628f, #2a3175);
  border-image-slice: 1;
  border-radius: 0 0 20px 20px;
  box-shadow: 2px 2px 3px #6666662e;
}
.compare_table_comment  {
  display: flex;
  justify-content: center;
  width: 50%;
  padding: 5px 0;
  color: #fff;
  background-color: #2a3175;
  border-radius: 25px;
  font-size: 20px;
  margin: 0 auto 15px auto;
  font-weight: 700;
  font-family:'Roboto',"Zen Kaku Gothic New", sans-serif;
}

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

table.compare_table {
  background: #fff;
  width: 100%;
  border-collapse: collapse;
  border-radius: 0 0 20px 20px;
}
table.compare_table td.border_none {
  border: none;
}
table {
  display: table;
  box-sizing: border-box;
  text-indent: initial;
  white-space-collapse: collapse;
  text-wrap: wrap;
  line-height: normal;
  font-weight: 700;
  font-size: medium;
  font-style: normal;
  color: -internal-quirk-inherit;
  text-align: start;
  border-spacing: 2px;
  border-color: #666666;
  font-variant: normal;
  border-collapse: collapse;
}
table:last-child {
  border: none;
}

tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
}

tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}

table.compare_table th {
  background: #fff;
  color: #2a3175;
  padding: 10px 0px;
  font-size: 20px;
  border-bottom: 5px solid;
  border-image: linear-gradient(to right, #b1b8db, #ffcbe4, #93628f, #2a3175);
  border-image-slice: 1;
  line-height: 1;
}
table.compare_table th.point_col__pl {
  color: #b05398;
}


th {
  display: table-cell;
  vertical-align: inherit;
  font-weight: 700;
  text-align: -internal-center;
}


table.compare_table tr td:not(:last-child) {
  border-right: dotted 2px #E6E6E6;
}

table.compare_table td {
  padding: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  border-bottom: solid 1px #E6E6E6;
  position: relative;
}
.break-on-small-screen{
  display: none;
}

td {
  display: table-cell;
  vertical-align: inherit;
}

a:-webkit-any-link {
  color: -webkit-link;
  cursor: pointer;
  text-decoration: none;
  color: #3e3e3e;
}


img.compare_table_logo {
  width: 150px;
  display: block;
  margin: 10px auto 10px;
}

img {
  border: none;
  height: auto;
}

table.compare_table tr td:not(:last-child):before {
  content: '';
  position: absolute;
  display: block;
  width: 2px;
  height: 15px;
  background: #fff;
  right: -2px;
  top: 0px;
}
p.impact-text {
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-weight: 600;
  height: 30px;
  font-family:'Roboto',"Zen Kaku Gothic New", sans-serif;
}
p.impact-text-ranking {
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  padding-bottom: 5px;
  letter-spacing: 3px;
  font-family:'Roboto',"Zen Kaku Gothic New", sans-serif;
}
.ranking_item__img {
  text-align: center;
}

a.compare_table_textlink {
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-radius: 20px;
  background: #ed4681;
  text-align: center;
  box-shadow: 0 5px 0 #d31373;
  text-shadow: 0 1px 1px #d31373;
  line-height: 1;
  width: 140px;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  margin: 0 0 5px;
}


table.compare_table tr td:not(:last-child):after {
  content: '';
  position: absolute;
  display: block;
  width: 2px;
  height: 15px;
  background: #fff;
  right: -2px;
  bottom: 0px;
}

span.compare_table_score {
  color: #2a3175;
  font-size: 28px;
  font-family:'Roboto',"Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

span.compare_table_score:before {
  content: '★';
  color: #c69c6d;
}
span.compare_table_hit_score {
  color: #2a3175;
  font-size: 25px;
  font-family:'Roboto',"Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
span.compare_table_employees {
  color: #3e3e3e;
  font-size: 25px;
  font-weight: 700;
  font-family:'Roboto',"Zen Kaku Gothic New", sans-serif;
}


span.compare_table_hit_score:before {
  content: '★';
  color: #c69c6d;
}
p.benefits_text:before {
  content: '・';
  color: #3e3e3e;
}
.text_left {
  text-align: left;
}
.benefits_text_wrap {
  margin-bottom: 10px;
}

a.compare_table_review {
  color: #2a3175;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 1px;
}

.compare_table_review_wrap {
  border: solid 2px #2a3175;
  border-radius: 10px;
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.compare_table_review {
  color: #c69c6d;
  font-weight: bold;
  font-size: 50px;
}


u {
  text-decoration: none;
  display: block;
  text-align: center;
}

ul {
  display: block;
  list-style-type: none;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

ul.comparison_table_license_list li {
  font-size: 16px;
  width: calc(100% - 10px);
  border: solid 2px #b05398;
  background: #fff;
  color: #b05398;
  font-weight: bold;
  margin: 0 auto 4px;
  line-height: 1;
  padding: 6px 0;
  border-radius: 10px;
}
.comparison_table_license_list {
  font-size: 16px;
  font-weight: bold;
  color: #3e3e3e;
}

.comparison_table_license_list_double {
  color: #b05398;
  font-weight: bold;
  font-size: 25px;
  padding-left: 3px;
}

a.reviews_item_comment_a {
  color: #b05398;
  font-weight: bold;
  font-size: 110%;
  text-decoration: underline;
}

.privilege_area {
  background-color: #ffeff780;
}
/* section__ranking */

.small_ribbon_h2.small_screen_ranking_title {
  display: none;
}
.ranking_item_title {
  width: fit-content;
}
.ranking_item_title a{
  position: relative;
  z-index: 0;
}
.ranking_item_title a:hover{
  text-decoration: none;
  color: #b05398;
}
.ranking_item_title a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 0;
  height: 2px;
  background: #b05398;
  bottom: -1px;
  transform: scale(0,1);
  transform-origin: left top;
  transition: transform 0.3s;
  z-index: 1;
}
.ranking_item_title a:hover::after {
  transform: scale(1,1);
  width: 100%;
}
.ranking_item {
  padding: 20px 3px 3px;
  border-radius: 20px;
  background-image: linear-gradient(to right, #b1b8db, #ffcbe4, #93628f, #2a3175);
  position: relative;
  margin: 50px 0 40px;
  box-shadow: 2px 0 3px #6666662e;
}
.border_Gradationline {
  border-bottom: 10px solid;
  border-image: linear-gradient(to right, #b1b8db, #ffcbe4, #93628f, #2a3175);
  width: fit-content;
  margin: 0 auto 15px auto;
  border-image-slice: 1;

}
.white_bg {
  background-color: #FFF;
  padding: 0 20px 20px 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.ranking_item__header {
  border-bottom: dotted 2px #b2895f;
  padding: 10px 0 10px;
  margin: 0 0 1vw;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
.ranking_link_1 {
  margin: 3vw auto 0 auto;
  text-align: center;
}

.readmore {
  position: relative;
  margin: 0 auto;
  padding: 0 0 75px;
}

.readmore label {
  position: absolute;
  display: table;
  left: 50%;
  bottom:2vw;
  margin: 0 auto;
  width: 250px;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  background-color: #2a3175;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
}

.readmore label::before{
  content: 'もっとクチコミを見る';
}

.readmore input[type="checkbox"]:checked ~ label::before {
  content: '閉じる';
}

.readmore input[type="checkbox"]{
  display: none;
}

.readmore-content {
  position: relative;
  height: 10px;
  overflow: hidden;
}


.readmore input[type="checkbox"]:checked ~ .readmore-content {
  height: auto;
}

/* ランキング順位リボンデザイン */
.ranking_item_wrap {
  padding: 0;
}
.ribbon__ranking__1 {  
  display: inline-block;
  position: absolute;
  top: -25px;
  left: 0;
  margin: 0;
  padding: 10px 0;
  z-index: 2;
  width: 60px;
  text-align: center;
  font-size: 30px;
  color: white;
  text-shadow: 1px 1px 3px #c69c6d;
  background-image: linear-gradient(to bottom,#c69c6d, #f3d7ab 30%, #c69c6d);
  border-radius: 3px 3px 0 0;
  font-family:'Roboto',"Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.ribbon__ranking__1:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 30px solid #c69c6d;
  border-right: 30px solid #c69c6d;
  border-bottom: 10px solid transparent;
}
.ribbon__ranking__2 {  
  display: inline-block;
  position: absolute;
  top: -25px;
  left: 0;
  margin: 0;
  padding: 10px 0;
  z-index: 2;
  width: 60px;
  text-align: center;
  text-shadow: 1px 1px 3px #c0c0c0;
  font-size: 30px;
  color: white;
  background: #c0c0c0;
  border-radius: 3px 3px 0 0;
  font-family:'Roboto',"Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.ribbon__ranking__2:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 30px solid #c0c0c0;
  border-right: 30px solid #c0c0c0;
  border-bottom: 10px solid transparent;
}
.ribbon__ranking__3 {  
  display: inline-block;
  position: absolute;
  top: -25px;
  left: 0;
  margin: 0;
  padding: 10px 0;
  z-index: 2;
  width: 60px;
  text-align: center;
  font-size: 30px;
  color: white;
  background: #2a3175;
  border-radius: 3px 3px 0 0;
  font-family:'Roboto',"Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.ribbon__ranking__3:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 30px solid #2a3175;
  border-right: 30px solid #2a3175;
  border-bottom: 10px solid transparent;
}



h3.ranking_item_header_h3 {
  padding: 10px 0 0 0;
  font-size: 30px;
  line-height: 1;
  font-family:'Roboto',"Kaisei Opti", sans-serif;
  font-weight: 700;
}
span.blank_space {
  width: 80px;
}
.spec_wrap{
  display: flex;
  align-items: center;
  margin-top: 1vw;
}

.spec_item.spec_item_first:not(:last-child) {
  border-right: solid 2px #E6E6E6;
}

.service_icon {
  display: flex;
  align-items: center;
}
a.service_icon img {
  width: 140px;
  filter: drop-shadow(2px 2px 3px #aaa);
  margin-right: 2vw;
}
a.shiharai-link {
  color: #b05398;
  border-bottom: 1px solid #93628f;
}
a.shiharai-link:hover{
  color: #93628f;
}

.ranking_header_purely{
  display: flex;
  flex-direction: column;
  margin-left: 100px;
}
.ranking_header_will{
  display: flex;
  flex-direction: column;
  margin-left: 100px;
}
.ranking_header_charis{
  display: flex;
  flex-direction: column;
  margin-left: 100px;
}
.ranking_header_vernis{
  display: flex;
  flex-direction: column;
  margin-left: 100px;
}
.ranking_header_excite{
  display: flex;
  flex-direction: column;
  margin-left: 100px;
}

.ranking_score {
  max-width: 100%;
}
.ranking_score_p {
  text-align: right;
  font-weight: bold;
  letter-spacing: 1px !important;
}
li.ranking_item__spec {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  background: #fff;
  border: solid 2px #b05398;
  border-radius: 20px;
  position: relative;
}
.ranking_item__spec.reviews_wrap {
  margin-top: 3vw;
  border: solid 2px #2a3175;
}
p.ranking_item__spec_label {
  padding: 3px 0;
  background: #2a3175;
  color: #fff;
  border-radius: 17px 17px 0 0;
  text-align: center;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
}
.ranking_item__spec_label.bg_col_pl {
  background-color: #b05398;
}
.spec_item.spec_item_wrap {
  margin-top: 2vw;
}
.spec_item__p{
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.spec_item__p_child{
  text-align: left;
}
.spec_item__p_child p {
  font-size: 20px;
  font-weight: 500;
}
.ranking_item__spec_item i {
  color: #c69c6d;
  padding-right: 10px;
}
p.ranking_item__spec_item {
  line-height: 1.5;
  white-space: nowrap;
}
.service_summary {
  margin-left: 1em;
}
.service_summary_item_right {
  margin-left: 20px;
  font-size: 15px;
  font-weight: 500;
}

.service_summary li {
  list-style: none;
  display: flex;
  line-height: 1.3;
  padding: 5px 0;
}
.service_summary_item {
  display: flex;
  align-items: flex-start;
  margin-left: 20px;
  border-bottom: 1px solid #c0c0c0;
}
.service_summary_item i {
  font-size: 1.2em;
  color: #b05398;
}
.ranking_item__point {
  padding: 30px 20px 10px;
  border-radius: 20px;
  background: #faf6f2;
  position: relative;
  margin: 4vw 0 0 0;
}

h4.ranking_item__point_h4 {
  position: absolute;
  top: -20px;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  padding: 0.7vw 4vw;
  line-height: 1;
  background: #c69c6d;
  border-radius: 100px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
i.check_icon_bu {
  color: #b1b8db;
  font-size: 1.5em;
  margin-right: 15px;
}

.reviews_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  position: relative;
  padding: 10px 0;
}
.reviews_item::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: calc(100% - 30px);
  border-bottom: dotted 2px gray;
}


.ranking_item__point_item_list {
  display: flex;
  margin: 20px auto;
}
.reviews_item_person {
  text-align: center;
  display: block;
  width: 10vw;
}
.reviews_item_person img {
  width: calc(80% - 10px);
}

.reviews_item_comment.reviews_item_right {
  text-align: left;
  width: 100%;
  
}
.reviews_item_comment p {
  margin-bottom: 5px;
  padding-right: 10px;
}

.comment_icon {
  font-size: 1.5em;
  margin-right: 5px;
}


.ranking_item__footer {
  text-align: center;
  margin: 40px 0 20px;
}
.ranking_item__footer h3 {
  margin: 10px 0;
  font-size: 1.5em;
}
a.ranking_item__btn {
  width: calc(100% - 10px);
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.5;
  border-radius: 20px;
  letter-spacing: 5px;
}

.rabbit_wh {
  width: 20px;
  margin: 0 20px;
}


/* 条件検索フォーム */
.progressbar {
  position: relative;
  margin: 1vw auto 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 500px;
  font-family: 'Roboto',"Kaisei Opti", sans-serif;
  font-weight: 500;
}
.progressbar li {
  position: relative;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  width: 80px;
  color: #c69c6d78;
}
.progressbar li:before {
  display: block;
  width: 10px;
  height: 10px;
  margin: 7px auto 10px auto;
  content: '';
  text-align: center;
  border-radius: 50%;
  background-color: #faf6f2;
}
.progressbar li:after {
  position: absolute;
  z-index: 9;
  top: 11px;
  left: -165px;
  width: 200px;
  height: 2px;
  content: '';
  background-color: #faf6f2;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active,
.progressbar li.complete{
  color: #c69c6d;
}
.progressbar li.active:before,
.progressbar li.complete:before {
  background-color: #c69c6d;
}
.progressbar li.active:after,
.progressbar li.complete:after {
  background-color: #c69c6d;
}


.form_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2vw;
  margin-top: 2vw;
}

.form_box_item {
  width: 100%;
  border-radius: 0 0 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #FFF;
  position: relative;
  margin-top: 0;
  border: 3px solid #b1b8db;
}


.form_box_item {
  display: none;
  box-shadow: 2px 2px 3px #6666662e;
}
.form_box_title {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #b1b8db;
  width: 100%;
  border-radius: 20px 20px 0 0;
  padding: 1vw 0 0 0;
  box-shadow: 2px -2px 3px #6666662e;
}
.form_box_title_img {
  width: 100px;
  margin: 0 20px 0 20px;
}
.form_box_title_sub {
  background-color: #FFF;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 0;
  width: 300px;
  margin: 0 auto;
  color: #3e3e3e;
}
.form_box_title_sub.triangle {
  position: relative;
}
.form_box_title_sub.triangle:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  box-sizing: border-box;
  border-right: 1vw solid transparent;
  border-left: 1vw solid transparent;
  border-top: 10px solid #fff;
  z-index: 9;
}
.form_box_title_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
}
h2.form_box_title_h2 {
  color: #FFF;
  text-shadow: 2px 2px 0 #9ba2bc;
  font-size: 40px;
  padding-top: 10px;
}

h4.small_ribbon_h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 40px;
  position: relative;
  text-align: center;
  font-size: 20px;
  background: #2a3175;
  color: #FFF;
  box-sizing: border-box;
  margin: 1vw auto 0 auto;
  line-height: 1;
}

h4.small_ribbon_h4:before {
  top: 0;
  left: 0;
  border-width: 20px 0px 20px 10px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}

h4.small_ribbon_h4:before, h4.small_ribbon_h4:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

h4.small_ribbon_h4:after {
  top: 0;
  right: 0;
  border-width: 20px 10px 20px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
.form_box_item_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  border-radius: 20px;
  margin: 1vw auto 2vw auto;
}
.form_box_item_inner.slideinRight.form_box_item_inner_first {
  flex-direction: row;
}
.form_box_btn {
	font-size: 1.5em;
	border: 1px solid #b05398;
	text-align: center;
	width: 80%;
	margin: 10px;
  letter-spacing: 8px;
}
.form_box_btn.btn9.form_box_btn_first{
  width: 300px;
}
.form_box_btn span {
	color: #3e3e3e;
  background-color: #FFF;
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
	box-sizing: border-box;
  transition: 0.5s;
  font-family:'Roboto',"Kaisei Opti", serif;
}

.form_box_item_others button span {
  font-size: 18px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 1px;
  line-height: 1.6;
}


.form_box_item.active {
  display: block;
}
.return_btn {
  width: 10vw;
  height: 3vw;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  background-color: #b1b8db;
  border-radius: 20px;
  text-align: center;
  border: none;
  transition: 1s;
  font-size: 20px;
  text-shadow: 2px 2px 0px #9ba2bc;
  margin: 0 auto 2vw auto;
}

.return_btn:hover {
  transition: 0.3s;
  text-shadow: 2px 2px 0px #9ba2bc;
  background-color: #9ba2bc;
}
button {
  padding: 0;
}




/* section__category */
section.category {
  margin: 80px 0 80px;
}
.category_wrap {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  border-radius: 20px;
}
.category_fv img{
  width: 70%;
}
.category_fv {
  width: 100%;
  display:flex;
  justify-content: center;
  margin: 3vw 0;
}
.category_main_text_title{
  padding: 0.7vw 4vw;
  line-height: 1;
  background: #c69c6d;
  border-radius: 100px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  width: 60%;
  margin: 0 auto 2vw auto;
  text-align: center;
}
.category_item_btn {
	font-size: 1.5em;
	border: 1px solid #b05398;
	text-align: center;
	width: 20vw;
	margin: 10px auto;
  letter-spacing: 8px;
}
.category_item_btn span {
	color: #3e3e3e;
  background-color: #FFF;
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
	box-sizing: border-box;
  transition: 0.5s;
  font-family:'Roboto',"Kaisei Opti", serif;
}
.btn9 {
	position: relative;
}
.btn9::before {
	content: "";
	border: 14px solid transparent;
	border-top: 0 solid #b1b8db;
	border-right: 14px solid #b1b8db;
	position: absolute;
	top: 3px;
	right: 3px;
}
a.btn9 span:hover{
  color: #b05398;
  background-color: #f8f9fc;
  transition: 0.5s;
}
button.btn9 span:hover{
  color: #b05398;
  background-color: #f8f9fc;
  transition: 0.5s;
}

/* section__guide */
.dot_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3vw;
}
.dot_wrap.dot_wrap_toppage {
  margin-top: 0;
}
.dot {
  width: 6px;
  height: 6px;
  background-color: #c69c6d;
  border-radius: 50%;
  margin-bottom: 20px;
}

.guide-box {
  background-color: #FFF;
  border: 1px solid #c69c6d;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 500px;
  border-bottom-right-radius: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2vw;
}
.guide_logo {
  width: 100px;
  margin: 5vw 0 1vw 0;
}
.guide_item_first_wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  flex-direction: column;
}
.big_ribbon_title.guide_ribbon_title {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.guide_item_first {
  background-color: #f8f9fc;
  border-radius: 20px;
  width: 90%;
}
.guide_item_first p{
  padding: 50px 0 30px 0;
  text-align: center;
}

.ribbon_bu {
  display: inline-block;
  position: relative;
  height: 60px;
  text-align: center;
  box-sizing: border-box;
  z-index: 1;
}
.ribbon_bu:before {/*左側のリボン端*/
  content: '';
  position: absolute;
  width: 30px;
  top: 20%;
  left: -15%;
  z-index: 1;
  height: 45px;
  border: 22px solid #2a3175;
  border-left-color: transparent;/*山形に切り抜き*/
  border-radius: 3px;
}

.ribbon_bu:after {/*右側のリボン端*/
  content: '';
  position: absolute;
  width: 30px;
  top: 20%;
  right: -15%;
  z-index: 1;
  height: 45px;
  border: 22px solid #2a3175;
  border-right-color: transparent;/*山形に切り抜き*/
  border-radius: 3px;
}

.ribbon_bu h2 {
  display: inline-block;
  position: relative;
  z-index: 1;
  width: 300px;
  text-align: center;
  padding: 5px 0;
  margin: 0 auto 50px;
  font-size: 20px;
  color: #FFF;
  background: #2a3175;/*真ん中の背景色*/
  border-radius: 3px;
  letter-spacing: 5px;
}


.guide_item_wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.guide_item_wrap.guide_wrap_margin {
  margin-top: 1vw;
}
.ranking_item__point.guide_item__point {
  width: 90%;
}
.fa-solid.fa-circle-check.check_icon_bu {
  padding: 5px 0 0 3px;
}
.point_item_p {
  margin-bottom: 10px;
}

/* section_process */
.process {
  margin: 3vw 0 3vw 0;
  display: grid;
  grid-template-rows: auto;
}
.ribbon.process_title_ribbon:before {/*左側のリボン端*/
  border: 30px solid #2a3175;
  border-left-color: transparent;/*山形に切り抜き*/
}

.ribbon.process_title_ribbon:after {/*右側のリボン端*/
  border: 30px solid #2a3175;
  border-right-color: transparent;/*山形に切り抜き*/
}

.ribbon.process_title_ribbon h2 {
  text-shadow: none;
  background: #2a3175;/*真ん中の背景色*/
}


.process_item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.rabbit_bg {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  top: 0px;
  left: 50px;
  margin: 0;
  z-index: 2;
  width: 70px;
  height: 80px;
  text-align: center;
  font-size: 30px;
  color: white;
  background-image: url(material/rabbit.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  
}
.rabbit_bg_text {  
  text-align: center;
  font-size: 25px;
  color: white; 
  font-family:'Roboto',"Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.process_item_text {
  width: 95%;
  padding: 30px 0;
  background-color: #fff;
  text-align: center;
  margin: 2vw 0;
  border-radius: 20px;
}

.checkpoint_box_parent{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.checkpoint_box {
  background-color: #f8f9fc;
  border-radius: 20px;
  width: 70%;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.checkpoint_box.checkpoint_box_2 {
  padding: 40px 0 20px 0;
}
.checkpoint_box_li_wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.checkpoint_box_li{
  display: flex;

}
.checkpoint_box_li li {
  list-style: none;
  text-align: left;
}
.checkpoint_box_parent.process_item_h4_parent {
  position: relative;
  margin: 45px 0 20px 0;
}
h4.ranking_item__point_h4 {
  position: absolute;
  top: -20px;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 350px;
  padding: 10px 0;
  text-align: center;
  line-height: 1;
  background: #c69c6d;
  border-radius: 100px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
section.last_title_box {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding-top: 2vw;
  border: 5px solid #b1b8db;
  border-top: none;
  margin: 0 auto 3vw auto;
  box-shadow: 2px 2px 3px #6666662e;
}
.last_title_box_h2 {
  background-color: #b1b8db;
  padding: 10px;
  border-radius: 20px 20px 0 0;
  width: 730px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  box-shadow: 2px -2px 3px #6666662e;
}
.last_title_box_text {
  display: flex;
  width: 100%;
  padding: 0 30px;
  justify-content: space-between;
  align-items: center;
}
.ranking_item__footer.last_title_box_btn {
  width: calc(100% - 10px);
  margin: 1vw;
}
.last_title_slash {
  width: 20px;
}



/* footer */

footer {
  display: flex;
  padding: 2vw 0 0 0;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0;
  margin-top: 5vw;
  border-bottom: 15px solid;
  width: 100%;
  border-image: linear-gradient(to right, #b1b8db, #ffcbe4, #93628f, #2a3175);
  border-image-slice: 1;
  height: 115px;
  background-color: #2a3175;
}
footer p {
  padding: 0 10px 10px 0;
  font-size: 14px;
  color: #fff;
}
footer img  {
  width: 18vw;
  padding: 0 0 10px 20px;
}


/* バナー */
.banner-container {
  position: -webkit-sticky;
  position: sticky;
  z-index: 999;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.banner {
  width: 730px;
  max-width: 100%;
  padding: 0px;
  text-align: center;
  height: 100px;
}

.banner a {
  width: 100%;
  display: block;
  height: 100px;
  transition:0.3s ease-in-out;
}
.banner-container a:hover {
  opacity: 0.9;
  transition: 0.3s ease-in-out;
}


/* 星評価スタイル */
.star5_rating{
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
  color: #ccc;
}

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

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

/* サブページ共通 */
.subpage_header_logo {
  width: 18vw;
  margin: 1vw auto 0 0;
  outline-color: transparent!;
}

.subpage_top_title {
  margin-top: 10px;
}

.ranking_item.subpage_ranking_item {
  margin-top: 10px;
}

/* category_page */

.category_main_text {
  text-align: center;
}
.category_main_text p {
  margin: 3vw 0;
  line-height: 2;
}
.category_icon i {
  font-size: 5vw;
  color: #b1b8db;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3vw 0 2vw 0;
}

/* 絞り込み検索ページ */
.subpage_sub_title {
  margin: 1vw auto 2vw auto;
}


.big_sub_title {
  text-align: center;
  background-color: #2a3175;
  border-radius: 50px;
  padding: 15px 0;
  width: 30vw;
  margin: 0 auto;
}

.big_sub_title p{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 25px;
  padding: 0 0 10px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  padding: 0;
  letter-spacing: 3px;
}

.big_sub_title.triangle {
  position: relative;
}
.big_sub_title.triangle:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  box-sizing: border-box;
  border-right: 1vw solid transparent;
  border-left: 1vw solid transparent;
  border-top: 10px solid #2a3175;
  z-index: 9;
}
.sub_title.sub_title_2 h1 {
  margin-top: 1vw;
  font-size: 25px;
}

.objective_illustration_2{
  display: none;
}

/* ↓ここからレスポンシブ */

@media screen and (max-width: 768px){
  #container {
    width: 100%;
    margin: 0;
}

  body {
    font-size: 14px;
    background-position: center calc(0% - -3vw);
}
.header_logo  {
  width: 35vw;
  margin-top: 2vw;
  padding: 0;
}
#header_line_svg {
  display: none;
}
.crown_1 {
  width: 13vw;
  top: 10vw;
  right: 2vw;
}
h1 {
  font-size: 20px;
}
header {
  width: 100%;
  padding: 0 10px;
}
  .inner {
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}
.last_title_box_h2 {
  padding: 10px;
  border-radius: 20px 20px 0 0;
  width: 95%;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  box-shadow: 2px -2px 3px #6666662e;
}

section.title {
  padding: 10px;
  width: 95%;
  margin: 3vw auto 0 auto;
}
.title {
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  font-size: 1.2em;
  width: 100%;
}
.title_slash {
  width: 20px;
  height: 20px;
  margin: 0 5px;
}

.ribbon {
  height: 50px;
}
.ribbon:before {/*左側のリボン端*/
  width: 20px;
  left: -50px;
  bottom: -10px;
  height: 45px;
  border: 22px solid #2a3175;
  border-left-color: transparent;/*山形に切り抜き*/
}

.ribbon:after {/*右側のリボン端*/
  width: 35px;
  height: 45px;
  bottom: -10px;
  right: -50px;
  border: 22px solid #2a3175;
  border-right-color: transparent;/*山形に切り抜き*/
}

.ribbon h2 {
  font-size: 24px;
  margin-bottom: 20px;
  width: 400px;
}
.big_ribbon_title {
  margin-bottom: 10px;
}

p.compare_title {
  font-size: 1.5em;
  padding: 10px 0;
}

.break-on-small-screen {
  display: block;
}


/* サービス比較テーブル */
.service-logo-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
p.impact-text {
  height: 20px;
  font-size: 16px;
}
p.impact-text-ranking {
  font-size: 20px;
  padding-bottom: 5px;
  letter-spacing: 1px;
}
img.compare_table_logo {
  width: 150px;
  height: 80px;
  object-fit: contain;
}
section.compare {
  display: none;
}
section.small_screen_compare {
  display: block;
  margin: 5vw 0 5vw 0;
}

p.scroll_hint {
  color: #FFF;
  font-size: 15px;
  font-weight: 600;
  padding: 3px 0 3px 5px;
}
.privilege_area {
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
}




h2.compare_title {
  font-size: 1.8em;
}
.compare_table_comment  {
  width: 80%;
  font-size: 1.2em;
  margin: 0 auto 15px auto;
}
.compare_title.triangle:after {
  border-right: 45vw solid transparent;
  border-left: 45vw solid transparent;
  border-top: 20px solid #fff;
  z-index: 9;
}
.small_compare_wrap {
  padding-top: 8vw;
  padding-bottom: 5px;
  background-image: linear-gradient(to bottom, #b1b8db, #ffcbe4, #93628f, #2a3175);
  border-image-slice: 1;
  border-radius: 0 0 20px 20px;
  box-shadow: 2px 2px 3px #6666662e;
  position: relative;
}
.js-scrollable{
  overflow-x: scroll;
  width: calc(100% - 10px);
  margin: 0 auto;
  height: fit-content;
  padding-bottom: 10px;
  border-radius: 0 0 20px 20px;
  background-color: #FFF !important;
}
.small_compare {
  border-collapse: separate;
  white-space: nowrap;
  margin: 0 auto;
  display: flex;
  flex: 1;
}
.small_compare_item {
  min-width: 200px;
  padding: 5px;
  border-right: 2px dotted #E6E6E6;
}
.absolute_title_area {
  height: 30px;
  margin: 10px auto 10px auto;
  text-align: center;
  font-size: 15px;
}
.absolute_title_first {
  margin: 10px auto 10px auto;
}
.absolute_title {
  position: absolute;
  background-color: #b1b8db;
  border-radius: 20px;
  width: 300px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #FFF;
  letter-spacing: 5px;
}
a.compare_table_textlink {
  width: 100%;
  border-radius: 10px;
}
.bg_col_gold {
  background-color: #c69c6d;
}
.score_area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% - 10px);
  margin: 0 auto;
}
span.compare_table_score {
  font-size: 2em;
}
.compare_table_review_wrap {
  border: solid 2px #2a3175;
  border-radius: 10px;
  margin: 5px 0;
  padding: 10px;
}
ul.comparison_table_license_list li {
  font-size: 16px;
  text-align: center;
  width: 100%;
}
.comparison_table_license_list {
  padding: 5px;
}
.score_area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: calc(100% - 10px);
  margin: 0 auto;
}
span.compare_table_hit_score {
  font-size: 1.8em;
}
.compare_table_review {
  font-size: 40px;
  line-height: 1;
}
span.compare_table_employees {
  font-size: 1.6em;
}



/* 小リボンタイトル帯 */
h2.small_ribbon_h2 {
  height: 40px;
  line-height: 1.2;
  font-size: 1.5em;
  margin: 15px 0;
}

h2.small_ribbon_h2:before {
  border-width: 20px 0px 20px 15px;
}

h2.small_ribbon_h2:after {
  border-width: 20px 15px 20px 0px;
}

h2.small_ribbon_h2_2 {
  height: 60px;
}
h2.small_ribbon_h2_2:before {
  border-width: 30px 0px 30px 15px;
}

h2.small_ribbon_h2_2:after {
  border-width: 30px 15px 30px 0px;
}
h2 i.fa-solid {
  margin: 5px 5px 0 0;
}
/* 診断コンテンツフォーム */
.progressbar {
  margin: 1vw auto 0 auto;
  width: 300px;
}

.progressbar li:after {
  left: -65px;
  width: 100px;
}
.form_box {
  margin-top: 5vw;
}
.form_box_title_sub {
  font-size: 16px;
  padding: 10px 0;
  width: 200px;
}
.form_box_title_sub.triangle:after {
  border-right: 3vw solid transparent;
  border-left: 3vw solid transparent;
}
h2.form_box_title_h2 {
  font-size: 20px;
  padding-top: 20px;
}
.form_box_title_img {
  width: 80px;
  margin: 0 10px 0 10px;
}

h4.small_ribbon_h4 {
  width: 95%;
  height: 30px;
  font-size: 16px;
  margin-top: 3vw;
}
h4.small_ribbon_h4:before {
  border-width: 15px 0px 15px 5px;
}
h4.small_ribbon_h4:after {
  border-width: 15px 5px 15px 0px;
}
.form_box_btn.btn9.form_box_btn_first {
  width: 90%;
  font-size: 16px;
}
.form_box_first_left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
}
.form_box_first_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
}
.form_box_item_inner.slideinRight.form_box_item_inner_first {
  justify-content: center;
  align-items: stretch;
}
.form_box_item_inner {
  width: 90%;
  border-radius: 20px;
  margin: 1vw auto;
}

.return_btn {
  width: 30vw;
  height: 10vw;
  font-size: 16px;
  margin: 0 auto 2vw auto;
}
.form_box_item_others button span {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0px;
}


/* ランキング */
.white_bg{
  padding: 0 10px 10px 10px;
}

.big_ribbon_title.small_screen_off {
  display: none;
}
.small_ribbon_h2.small_screen_ranking_title {
  display: flex;
}
section.ranking {
  margin: 0 0 20px;
}
.ranking_item{
  margin-top: 25px;
}
.ranking_item__header {
  padding: 20px 0 10px;
  margin: 0 0 10px;
}
h3.ranking_item_header_h3 {
  font-size: 1.6em;
  padding: 0 0 0 20px;
}
span.blank_space {
  width: 30px;
}
.ribbon__ranking__1 {  
  padding: 3px 0;
  top: -30px;
  left: -5px;
  width: 44px;
  font-size: 30px;
}
.ribbon__ranking__1:after {
  border-left: 22px solid #c69c6d;
  border-right: 22px solid #c69c6d;
  border-bottom: 7px solid transparent;
}
.ribbon__ranking__2 {  
  padding: 3px 0;
  top: -30px;
  left: -5px;
  width: 44px;
  font-size: 30px;
}
.ribbon__ranking__2:after {
  border-left: 22px solid #c0c0c0;
  border-right: 22px solid #c0c0c0;
  border-bottom: 7px solid transparent;
}
.ribbon__ranking__3 {  
  padding: 3px 0;
  top: -30px;
  left: -5px;
  width: 44px;
  font-size: 30px;
}

.ribbon__ranking__3:after {
  border-left: 22px solid #2a3175;
  border-right: 22px solid #2a3175;
  border-bottom: 7px solid transparent;
}

.spec_wrap {
  display: block;
}
.spec_item {
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spec_item.spec_item_first:not(:last-child) {
  border: none;
}
.service_summary_item {
  margin-left: 0;
}
.service_summary {
  margin-left: 0;
}
.service_summary_item_right {
  font-size: 1em;
  font-weight: 500;
  margin-left: 10px;
}
.ranking_item__spec_item i {
  padding-right: 5px;
}
.reviews_item.reviews_item_last::after {
  margin-bottom: 10px;
}
.reviews_item {
  display: block;
  margin: 0 auto 5px auto;
}
.comment_icon {
  font-size: 1em;
}
.reviews_item_person {
  width: 100px;
  margin: 5px auto;
  display: block;
}

.reviews_item_comment_star {
  padding-right: 0;
  display: flex;
  justify-content:center;
  align-items: center;
  flex-direction: column;
}
.reviews_item_comment p {
  padding: 0;
}

.reviews_item_comment.reviews_item_right {
  padding: 0 10px;
}

h4.ranking_item__point_h4{
  font-size: 16px;
}
.service_summary li {
  font-weight: 300 !important;
}

.ranking_item__footer h3 {
  margin: 20px 0;
  font-size: 1.2em;
}
a.ranking_item__btn {
  font-size: 20px;
  width: 90%;
  padding: 20px 10px;
  line-height: 1.5;
  letter-spacing: 2px;
}
p.ranking_item__spec_label {
  font-size: 1.2em;
}
.spec_item__p_child p {
  font-size: 1em;
  font-weight: 500;
}
.readmore {
  padding: 0 0 45px;
}

.ranking_header_purely{
  margin-left: 35px;
}
.ranking_header_will{
  margin-left: 35px;
}
.ranking_header_charis{
  margin-left: 35px;
}
.ranking_header_vernis{
  margin-left: 35px;
}
.ranking_header_excite{
  margin-left: 35px;
}

/* カテゴリー別ランキング */

section.category {
  margin: 0 0 50px 0;
}
.category_wrap > * {
  width: calc(50% - 5px);
}

.category_wrap {
  width: 100%;
  justify-content: center;
  align-items: center;
}
.category_item_btn {
  margin: 5px 0;
}

i.check_icon_bu {
  font-size: 1.5em;
  margin-right: 10px;
}

.category_main_text_title {
  width: 70%;
  padding: 10px 0;
  margin: 5vw auto 2vw auto;
}

/* 初心者ガイド */
.dot {
  width: 5px;
  height: 5px;
  margin-bottom: 10px;
}
.dot_wrap.dot_wrap_toppage {
  margin-top: 10px;
}
.dot_wrap {
  margin-top: 25px;
}
.guide-box {
  padding-bottom: 4vw;
}
.guide_logo {
  width: 80px;
  margin: 8vw 0 3vw 0;
}
.guide_item_first p {
  padding: 50px 10px 30px 10px;
}

.ranking_item__point {
  padding: 20px 10px 10px 10px;
  margin-top: 8vw;
}
.ranking_item__spec.reviews_wrap {
  margin-top: 7vw;
}

/* ３ステップ手順 */
.title.process_title {
  margin-bottom: 5vw;
}
.small_ribbon_h2.small_screen_ranking_title.small_screen_process_title {
  display: flex;
  background-color: #2a3175;
  text-shadow: none;
  margin-bottom: 20px;
}
.rabbit_wh {
  width: 14px;
  margin: 0 10px;
}
.process_item_text {
  margin: 5vw 0;
}
.process_item_text p {
  padding: 0 10px;
}

.checkpoint_box {
  width: 90%;
}
.fa-solid.fa-circle-check.check_icon_bu {
  padding: 3px 0 0 0;
}

.checkpoint_box.checkpoint_box_2 {
  padding: 30px 0 20px 0;
}
.checkpoint_box_parent.process_item_h4_parent {
  margin: 35px 0 20px 0;
}
.ranking_item__footer {
  text-align: center;
  margin: 20px 0 20px 0;
}
.rabbit_bg {
  top: 0px;
  left: 25px;
}

.ranking_item__footer.last_title_box_btn {
  width: 100%;
  margin: 0 auto;
}
.last_title_box_text {
  padding: 10px 0;
  display: flex;
  justify-content: center;
}
.last_title_box_text > .title_person {
  display: none;
}

/* footer */
footer {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 120px;
  border-bottom: 10px solid;
}
footer img  {
  width: 160px;
  padding: 3vw 0 0 0;
}
footer p {
  font-size: small;
  padding: 0;
  margin: 2vw 0;
}
section.last_title_box  {
  margin-bottom: 4vw;
  margin-top: 0;
}

/* バナー */

.banner {
  height: 60px;
}

.banner a {
  height: 60px;
}

/* サブページ */
.subpage_header_logo {
  width: 30vw;
  margin: 1vw auto 0 0;
  padding: 0;
}

.category_icon i {
  margin-top: 5vw;
  font-size: 10vw;
}

.category_main_text p {
  font-size: 18px;
  margin: 8vw 0;
}

/* 絞り込み検索ページ */
.subpage_sub_title {
  margin: 1vw auto 5vw auto;
}

.big_sub_title_wrap {
  margin-top: 5vw;
}
.big_sub_title {
  width: 80vw;
}
.big_sub_title p{
  font-size: 17px;
}
.big_sub_title.triangle:after {
  top: 99%;
  border-right: 3vw solid transparent;
  border-left: 3vw solid transparent;
}
.sub_title.sub_title_2 h1 {
  margin-top: 3vw;
  font-size: 25px;
}

}



@media screen and (max-width: 430px){

  #backGuide img {
    width: 300px;
  }

  .objective_illustration_1{
    display: none;
  }
  
  .objective_illustration_2{
    display: block;
  }
  .ribbon_bu h2{
    width: 220px;
    font-size: 16px;
  }
  .ribbon_bu:after {
    width: 15px;
    height: 40px;
    border: 20px solid #2a3175;
    border-right-color: transparent;
    border-radius: 3px;
  }
  .ribbon h2 {
    width: 260px;
    font-size: 20px;
  }
  .title_person {
    width: 60px;
  }
  
  h1 {
      font-size: 16px;
    }
  
  .title_slash {
      width: 16px;
      height: 16px;
      margin: 0 2px;
    }

    .category_fv img {
      width: 100%;
  }

.category_main_text p {
    font-size: 16px;
  }
  .category_main_text_title {
    width: 90%;
    padding: 10px;
  }

    
  }
  