@charset "utf-8";
/*-------------------------
  全体の設定
-------------------------*/
body {
  margin: 0px;
  padding: 0px;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
  font-size: 1rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  width: 100%;
}
h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form, figure, form {
  margin: 0px;
  padding: 0px;
}
ul {
  list-style-type: none;
}
img {
  border: none;
  height: auto;
}
iframe {
  width: 100%;
}
input, select {
  -webkit-appearance: none;
  appearance: none;
}
input[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
/*-------------------------
  共通設定
-------------------------*/
.text_color01 {
  color: #FAFF00;
}
.text_color02 {
  color: #FA6092;
}
.text_bg_color_01 {
  background: linear-gradient(transparent 60%, #FAFF00 60%);
}
.text_bg_color_gradation {
  padding: 0 2%;
  color: #fff;
  background: -moz-linear-gradient(65deg, #F13F79, #FFC778);
  background: -webkit-linear-gradient(65deg, #F13F79, #FFC778);
  background: linear-gradient(25deg, #F13F79, #FFC778);
}
.font_anton {
  font-family: 'Anton', sans-serif, cursive;
}
.font_notosans {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
/*-------------------------
  contents
-------------------------*/
#contents {
  width: 100%;
  background-color: #fff;
  position: relative;
  overflow-x: clip;
}
#main {
  background: #fff;
}
.inner, .search_inner {
  max-width: 750px;
  margin: 0 auto;
  box-sizing: border-box;
}
.align-center {
  text-align: center;
}
.sp {
  display: none;
}
@media screen and (max-width:768px) {
  .sp {
    display: block;
  }
  body {
    font-size: 14px;
  }
}
/*-------------------------
  header
-------------------------*/
header .btn-wrap a {
  font-size: 1rem;
  padding: 3% 5%;
  font-weight: bold;
}
header .btn-wrap a i {
  margin: 0 5px 0 0;
}
.fa-regular.fa-gem {
  font-family: "Font Awesome 5 Free"; 
  content: "\f3a5";
  font-style: normal;
}
.header-wrap {
  padding: 3% 0;
}
header {
  width: 100%;
}
.header-wrap {
  display: flex;
  vertical-align: middle;
  justify-content: space-between;
  padding: 3%;
}
.header-wrap a {
  width: 45%;
  display: flex;
  justify-content: center;
}
.header-wrap a img {
  width: 100%;
  height: auto;
}
header .btn-wrap {
  display: flex;
  vertical-align: middle;
}
header .btn-wrap a {
  display: block;
  margin: 0 15px 0 0;
  padding: 2% 5%;
  position: relative;
  white-space: nowrap;
  font-size: 1rem;
  text-decoration: none;
  color: #444;
}
header .btn-wrap a i {
  margin: 0 10px 0 0;
  color: #fa6092;
}
header .btn-wrap a.common i {
  color: #444;
}
header .btn-wrap a:last-child {
  margin: 0;
}
header .btn-wrap a:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 100;
  color: #666;
  font-size: 14px;
  font-weight: bold;
}
header img.logo {
  width: 100%;
  height: auto;
}
.hamburger-menu {
  display: flex;
  align-items: center;
  width: 64px;
  height: 68px;
  cursor: pointer;
  z-index: 3;
}
.hamburger-menu__line {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #ccc;
  position: relative;
  transition: all 0.5s;
}
.hamburger-menu__line::before, .hamburger-menu__line::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #ccc;
  position: absolute;
  transition: all 0.5s;
}
.hamburger-menu__line::before {
  transform: translateY(-24px);
}
.hamburger-menu__line::after {
  transform: translateY(24px);
}
.hamburger-menu.open .hamburger-menu__line {
  background-color: transparent;
}
.hamburger-menu.open .hamburger-menu__line::before {
  transform: rotate(45deg);
}
.hamburger-menu.open .hamburger-menu__line::after {
  transform: rotate(-45deg);
}
.hamburger-menu {
  width: 38px;
  height: 34px
}
.hamburger-menu__line {
  height: 3px;
}
.hamburger-menu__line:before {
  transform: translateY(-12px);
  height: 3px;
}
.hamburger-menu__line:after {
  transform: translateY(12px);
  height: 3px;
}
.nav-sp {
  width: 50vw;
  right: -50vw;
  padding: 60px 0px 0px;
}
/* ナビゲーション */
.nav-sp {
  position: absolute;
  top: 0;
  right: -50vw;
  width: 50vw;
  height: 200vh;
  padding: 60px 10px 0;
  background-color: rgba(255, 255, 255, 0.85);
  text-align: left;
  transition: right 0.5s;
  z-index: 2;
}
.nav-sp.open {
  right: 0;
}
.nav-sp a {
  display: inline-block;
  padding: 5px 0;
}
html.is-fixed, html.is-fixed body {
  height: 100%;
  overflow: hidden;
}
.svg-inline--fa {
  color: #FA6092;
  padding: 0 5%;
}
.svg-inline--fa.fa-w-18 {
  width: 2.125em;
}
.svg-inline--fa.fa-w-16 {
  width: 2.125em;
}
@media screen and (max-width:768px) {
  .header-wrap a {
    width: 55%;
  }
}
/*-------------------------
  footer
-------------------------*/
footer {
  width: 100%;
  text-align: center;
  background-color: #FA6092;
  color: white;
}
footer #footermenu .inner {}
footer #footermenu ul {
  float: left;
  width: 25%;
  padding-left: 16px;
}
footer #footermenu ul li {
  text-align: left;
  text-decoration: none;
}
footer #footermenu ul li a {
  font-size: 12px;
  color: #fff;
}
footer #about {
  padding: 8px 0px 0px;
}
footer #about a {
  color: #fff;
  font-size: 12px;
}
footer #copyright {
  padding: 8px 0px;
  font-size: 12px;
}

/*-------------------------
  FV
-------------------------*/
section.fv .section_title {
  text-align: center;
}
section.fv .compare_h2 {
  position: relative;
  width: 100%;
  margin: 5% auto;
  padding: 13% 0 7%;
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 3.5rem;
  background: url(../images/compare_h2_bg.png) no-repeat;
  background-size: 80% auto;
  background-position: top;
}
.compare_h2_subtext {
  position: absolute;
  top: 8%;
  left: 0;
  right: 0;
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
}
section.fv .compare_h2 .fontsize_L {
  font-size: 4rem;
}
section.fv .text_accent {
  font-size: 5rem;
  padding: 0 0.5%;
}
section.fv img {
  width: 100%;
  height: auto;
}
section.fv {
  position: relative;
  padding: 0 0 15%;
  background: -moz-radial-gradient(#ffffff 20%, #FFF3FC 70%);
  background: -webkit-radial-gradient(#ffffff 20%, #FFF3FC 70%);
  background: radial-gradient(#ffffff 20%, #FFF3FC 70%);
}
.fv_pr {
  position: absolute;
  font-size: 0.75rem;
  right: 2%;
  top: 16%;
  padding: 0.5% 2%;
  border: solid 1px #333;
  background: #fff;
  line-height: 1;
}
@media screen and (max-width:768px) {
  .fv_pr {
    right: 5%;
    top: 11%;
  }
  section.fv .compare_h2 {
    padding: 15% 0 8%;
    font-size: 1.6rem;
    line-height: 2rem;
    background: url(../images/compare_h2_bg.png) no-repeat;
    background-size: 90% auto;
    background-position: top;
  }
  section.fv .compare_h2 .compare_h2_subtext {
    font-size: 1.2rem;
  }
  section.fv .compare_h2 .fontsize_L {
    font-size: 2.6rem;
  }
}
/*-------------------------
  point
-------------------------*/
section.point {
  margin: 0 auto;
  color: #333;
}
section.point .point_h2 {
  position: relative;
  width: 90%;
  height: auto;
  margin: 0 auto 5%;
  padding: 5% 0;
  font-weight: bold;
  line-height: 3.8rem;
}
section.point .point_h2 img {
  width: 100%;
  height: auto;
}
section.point dl {
  position: relative;
  width: 100%;
  margin: 0 auto 5%;
  z-index: 0;
}
section.point dl:last-of-type {
  margin: 0 auto;
}
section.point dl dt {
  position: relative;
  padding: 0 0 0 12%;
  margin: 0 auto 5%;
  font-size: 2rem;
  font-weight: 700;
}
section.point dl dt:before {
  position: absolute;
  display: inline-block;
  width: 13%;
  height: 73px;
  top: -20%;
  left: 0;
  z-index: -1;
}
section.point dl:first-of-type dt:before {
  content: '';
  background: url(../images/icon_point_01.svg) no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: -1;
}
section.point dl:nth-of-type(2) dt:before {
  content: '';
  background: url(../images/icon_point_02.svg) no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: -1;
}
section.point dl:last-of-type dt:before {
  content: '';
  background: url(../images/icon_point_03.svg) no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: -1;
}
section.point dl dd {
  display: inline-block;
}
section.point dl dd img {
  width: 100%;
  height: auto;
}
section.point dl dd:first-of-type {
  vertical-align: middle;
  width: 35%;
}
section.point dl dd:last-child {
  vertical-align: middle;
  width: 58%;
  margin: 0 0 0 5%;
  font-size: 1.2rem;
}
section.point dl:nth-of-type(2) dd.point_text {
  vertical-align: middle;
  width: 54%;
  margin: 0 5% 0 0;
  font-size: 1.2rem;
}
section.point dl:nth-of-type(2) dd.point_image {
  vertical-align: middle;
  width: 35%;
}
section.point .point_conclusion {
  padding: 10% 0 0;
  background: url(../images/point_conclusion_bg.jpg) no-repeat;
  background-size: 100% auto;
}
section.point .point_conclusion ul {
  width: 90%;
  margin: 0 auto;
}
section.point .point_conclusion ul li {
  display: inline-block;
}
section.point .point_conclusion ul li:first-of-type {
  display: inline-block;
  vertical-align: middle;
  width: 35%;
}
section.point .point_conclusion ul li:last-of-type {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 64%;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 3rem;
}
section.point .point_conclusion ul li:first-of-type img {
  width: 100%;
  height: auto;
}
@media screen and (max-width:768px) {
  section.point dl dt {
    padding: 0 0 0 13%;
    font-size: 1.6rem;
  }
  section.point dl dt:before {
    width: 13%;
    height: 73px;
    top: -20%;
    left: 0;
    z-index: -1;
  }
  section.point dl:first-of-type dt:before {
    content: '';
    background: url(../images/icon_point_01.svg) no-repeat;
    background-size: 82% auto;
    background-position: 10px 10px;
  }
  section.point dl:nth-of-type(2) dt:before {
    content: '';
    background: url(../images/icon_point_02.svg) no-repeat;
    background-size: 82% auto;
    background-position: 10px 10px;
  }
  section.point dl:last-of-type dt:before {
    content: '';
    background: url(../images/icon_point_03.svg) no-repeat;
    background-size: 82% auto;
    background-position: 10px 10px;
  }
  section.point dl dd:first-of-type {
    width: 35%;
  }
  section.point dl dd:last-child {
    width: 58%;
    margin: 0 0 0 5%;
    font-size: 1rem;
  }
  section.point dl:nth-of-type(2) dd.point_text {
    width: 50%;
    margin: 0 3% 0;
    font-size: 1rem;
  }
  section.point dl:nth-of-type(2) dd.point_image {
    width: 35%;
  }
  section.point .point_conclusion {
    padding: 10% 0 0;
  }
  section.point .point_conclusion ul li:first-of-type {
    width: 32%;
  }
  section.point .point_conclusion ul li:last-of-type {
    width: 67%;
    font-size: 0.85rem;
    line-height: 1.6rem;
  }
}
/*-------------------------
 method
-------------------------*/
section.method {
  margin: 0 auto;
  padding: 0 0 15%;
  color: #333;
  background: -moz-radial-gradient(rgb(255 162 184 / 20%) 20%, rgb(183 152 205 / 20%) 70%);
  background: -webkit-radial-gradient(rgb(255 162 184 / 20%) 20%, rgb(183 152 205 / 20%) 70%);
  background: radial-gradient(rgb(255 162 184 / 20%) 20%, rgb(183 152 205 / 20%) 70%);
}
section.method .method_h2 {
  position: relative;
  width: 90%;
  height: auto;
  margin: 0 auto 5%;
  padding: 8% 0 0;
  font-weight: bold;
  line-height: 3.8rem;
}
section.method .method_h2 img {
  width: 100%;
  height: auto;
}
section.method .open_text {
  width: 90%;
  margin: 0 auto 5%;
  text-align: center;
}
section.method .open_text .fontsize_L {
  font-size: 1.6rem;
  font-weight: bold;
}
section.method .table_method_wrap {
  width: 100%;
  margin: 0 auto;
  color: #333;
}
section.method .table_method {
  width: 95%;
  margin: 0 auto;
}
section.method .table_method {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  border-collapse: separate;
  border-spacing: 2;
  font-size: 1.2rem;
  font-weight: bold;
}
section.method .table_method th {
  padding: 3% 0;
  color: #fff;
  font-size: 1rem;
  background: #FA6092;
  letter-spacing: 0.1em;
}
section.method .table_method tr:nth-of-type(2) td {
  font-size: 1rem;
}
section.method .table_method tr:nth-of-type(2) td dl dt {
  padding: 0 0 5%;
}
section.method .table_method tr:nth-of-type(2) td dl dd {
  width: 35%;
  margin: 0 auto;
}
section.method .table_method tr:nth-of-type(2) td dl dd img {
  width: 100%;
  height: auto;
}
section.method .table_method tr:first-of-type th {
  background: none;
}
section.method .table_method tr:first-of-type td span {
  display: inline-block;
  vertical-align: middle;
}
section.method .table_method tr:first-of-type td .method_icon {
  padding: 0 5% 0 0;
}
section.method .table_method tr:first-of-type td .method_text {
  font-size: 1.4rem;
}
section.method .table_method tr:first-of-type td:first-of-type .method_text {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #B798CD 0%, #FFA2B8 100%);
  background: -webkit-linear-gradient(-45deg, #B798CD 0%, #FFA2B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.method .table_method tr:first-of-type td span img {
  width: auto;
  height: 100px;
}
section.method .table_method th:nth-child(5) {
  font-size: 0.5rem;
}
section.method .table_method tr td:first-of-type {
  position: relative;
  z-index: 2;
  padding: 3%;
  background: #FFFEE4;
}
section.method .table_method tr td:last-of-type {
  background: #FFF;
}
section.method .table_method tr td.ev__01:after {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  content: '◎';
  color: #F7C7DC;
  font-size: 3.5rem;
  z-index: -1;
  top: 50%;
  right: 10px;
  margin-top: -16%;
}
section.method .close_text {
  width: 90%;
  margin: 3% auto;
  text-align: left;
}
section.method .close_text span {
  font-weight: bold;
  line-height: 2rem;
}
section.method h3 {
  display: block;
  width: 35%;
  margin: 5% auto 3%;
  padding: 0 5%;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  background: #FA6092;
  border-radius: 100px;
}
section.method .arrow {
  width: 8%;
  margin: 3% auto;
}
section.method .method_image_area {
  position: relative;
}
section.method .method_image_area ul {
  width: 90%;
  margin: 0 auto;
}
section.method .method_image_area ul li {
  position: relative;
  display: inline-block;
  width: 32%;
  padding: 0 1%;
}
section.method .method_image_area ul li:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f00e";
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  right: 5%;
  top: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
section.method .method_image_area ul li img {
  width: 100%;
  height: auto;
}
section.method .method_image_area p.note {
  width: 90%;
  text-align: right;
  font-size: 0.75rem;
}
section.method .arrow img {
  width: 100%;
  height: auto;
}
section.method .recommend_text {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
section.method .recommend_set_job_box {
  position: relative;
  width: 85%;
  margin: 3% auto 0;
  padding: 5%;
  border-radius: 30px;
  background: #fff;
}
section.method .recommend_set_job_box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  border: 5px solid transparent;
  background: linear-gradient(135deg, #B798CD 0%, #B798CD 20%, #B798CD 40%, #FFA2B8 60%, #FFA2B8 80%, #FFA2B8 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
}
section.method .recommend_set_job_box:after {
  content: "";
  position: absolute;
  width: 97%;
  margin: 0 auto;
  height: 95%;
  top: 2.5%;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #B798CD 0%, #B798CD 20%, #B798CD 40%, #FFA2B8 60%, #FFA2B8 80%, #FFA2B8 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
}
section.method .recommend_set_job_box ul {
  width: 100%;
  margin: 0 auto;
}
section.method .recommend_set_job_box ul li {
  display: inline-block;
  vertical-align: top;
  width: 49%;
  margin: 0 auto;
}
section.method .recommend_set_job_box ul li:first-of-type {
  width: 39%;
  margin: 0 3% 0 0;
}
section.method .recommend_set_job_box ul li:first-of-type img {
  width: 100%;
  height: auto;
}
section.method .recommend_set_job_box ul li dl dt {
  margin: 0 auto 5%;
  font-size: 2.2rem;
  font-weight: 700;
  text-decoration: underline;
}
section.method .recommend_set_job_box ul li dl dt span {
  padding: 0 3% 0 0;
}
section.method .recommend_set_job_box a {
  color: #fff;
  text-decoration: none;
}
section.method .recommend_set_job_box a .fontsize_S {
  font-size: 1.2rem;
}
section.method .recommend_item_header_score {
  margin: 0 auto 5%;
  font-weight: bold;
}
section.method .color-score {
  padding: 0 0 0 3%;
  font-weight: bold;
  color: #fa6092;
}
section.method .star_icon {
  display: inline-block;
  width: 50%;
}
section.method .star_icon img {
  display: inline-block;
  width: 20%;
  height: auto;
  vertical-align: -0.5rem;
}
section.method .recommend_set_job_box {
  font-weight: 700;
}
section.method .recommend_set_button {
  display: block;
  text-align: center;
  margin: 3% auto 0;
  width: 100%;
  background: #FFA500;
  box-shadow: 0 5px 0 #D08600;
  line-height: 1.2;
  padding: 2%;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  border-radius: 100px;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}
section.method .recommend_set_button:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  right: 5%;
  top: 52%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
/*  method modal
------------------------------*/
.modalBox03 {
  display: flex;
  justify-content: space-between;
}
.modalBox03 .modalLeftBox, .modalBox03 .modalRightBox {
  position: relative;
  width: 49%;
  z-index: 100;
}
.modalBox03 .modalLeftBox dl dd:hover, .modalBox03 .modalRightBox dl dd:hover {
  opacity: .6;
}
.modalBox03 .modalLeftBox .modalArea, .modalBox03 .modalRightBox .modalArea {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.modalBox03 .modalLeftBox .modalArea .modalBg, .modalBox03 .modalRightBox .modalArea .modalBg {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modalBox03 .modalLeftBox .modalArea .modalCont, .modalBox03 .modalRightBox .modalArea .modalCont {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 5%;
  max-width: 850px;
  max-height: 650px;
  z-index: 100;
}
.modalBox03 .modalCont {
  position: relative;
  z-index: 100;
}
.modalBox03 .modalCont p {
  width: 75%;
  margin: 0 auto;
  padding: 8% 0;
}
.modalBox03 .modalCont p img {
  width: 100%;
  height: auto;
}
@media screen and (max-width:768px) {
  section.method {
    padding: 0 0 15%;
    color: #333;
  }
  section.method .method_h2 {
    width: 95%;
  }
  section.method .open_text .fontsize_L {
    font-size: 1.4rem;
  }
  section.method .table_method {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    border-collapse: separate;
    border-spacing: 2;
    font-size: 0.85rem;
    font-weight: bold;
  }
  section.method .table_method th {
    padding: 3% 0;
    color: #fff;
    font-size: 1rem;
    background: #FA6092;
    letter-spacing: 0.1em;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    vertical-align: middle;
    height: 155px;
    justify-content: center;
    align-items: center;
    text-orientation: upright;
    letter-spacing: 0.2em;
    display: flex;
    width: 100%;
  }
  section.method .table_method tr:first-of-type th {
    height: 75px
  }
  section.method .table_method tr:first-of-type td:first-of-type .method_icon {
    padding: 0 5% 0 0;
    vertical-align: middle;
  }
  section.method .table_method tr:first-of-type td span img {
    width: auto;
    height: 36px;
  }
  section.method .table_method tr:nth-of-type(2) td {
    font-size: 0.75rem;
  }
  section.method .table_method tr:nth-of-type(2) td dl dt {
    padding: 0 0 5%;
  }
  section.method .table_method tr:nth-of-type(2) td dl dd {
    width: 35%;
    margin: 0 auto;
  }
  section.method .table_method tr:nth-of-type(2) td dl dd img {
    width: 100%;
    height: auto;
  }
  section.method .table_method tr:first-of-type th {
    background: none;
  }
  section.method .table_method th:nth-child(5) {
    font-size: 0.5rem;
  }
  section.method .table_method tr td:first-of-type {
    width: 45%;
    position: relative;
    z-index: 2;
    padding: 3% 0;
    background: #FFFEE4;
  }
  section.method .table_method tr td:last-of-type {
    width: 45%;
    background: #FFF;
  }
  section.method .table_method tr td.ev__01:after {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    content: '◎';
    color: #F7C7DC;
    font-size: 5.5rem;
    z-index: -1;
    top: 50%;
    right: 10px;
    margin-top: -45%;
  }
  section.method .close_text {
    width: 90%;
    margin: 3% auto;
    text-align: left;
  }
  section.method .close_text span {
    font-weight: bold;
    line-height: 2rem;
  }
  section.method h3 {
    display: block;
    width: 56%;
    margin: 5% auto;
    padding: 0 5%;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    background: #FA6092;
    border-radius: 100px;
  }
  section.method .arrow {
    width: 8%;
    margin: 3% auto;
  }
  section.method .arrow img {
    width: 100%;
    height: auto;
  }
  section.method .recommend_text {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
  }
  section.method .recommend_set_job_box {
    position: relative;
    width: 95%;
    margin: 3% auto 0;
    padding: 8% 5%;
    border-radius: 30px;
    background: #fff;
  }
  section.method .recommend_set_job_box:after {
    content: "";
    position: absolute;
    width: 94%;
    97%;
    margin: 0 auto;
    height: 93%;
    top: 3.5%;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #B798CD 0%, #B798CD 20%, #B798CD 40%, #FFA2B8 60%, #FFA2B8 80%, #FFA2B8 100%) border-box border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
  }
  section.method .recommend_set_job_box ul {
    width: 100%;
    margin: 0 auto;
  }
  section.method .recommend_set_job_box ul li {
    display: inline-block;
    vertical-align: middle;
    width: 56%;
    margin: 0 auto;
  }
  section.method .recommend_set_job_box ul li:first-of-type {
    width: 39%;
    margin: 0 3% 0 0;
  }
  section.method .recommend_set_job_box ul li:first-of-type img {
    width: 100%;
    height: auto;
  }
  section.method .recommend_set_job_box ul li dl dt {
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: underline;
  }
  section.method .recommend_set_job_box ul li dl dt span {
    padding: 0 3% 0 0;
  }
  section.method .recommend_set_job_box ul li dl dd {
    font-size: 0.75rem;
  }
  section.method .recommend_set_job_box a {
    color: #fff;
    text-decoration: none;
  }
  section.method .recommend_set_job_box a .fontsize_S {
    font-size: 0.8rem;
  }
  section.method .recommend_item_header_score {
    margin: 0 auto;
    font-weight: bold;
  }
  section.method .color-score {
    padding: 0 0 0 3%;
    font-weight: bold;
    color: #fa6092;
  }
  section.method .star_icon {
    display: inline-block;
    width: 50%;
  }
  section.method .star_icon img {
    display: inline-block;
    width: 20%;
    height: auto;
    vertical-align: -0.5rem;
  }
  section.method .recommend_set_job_box {
    font-weight: 700;
  }
  section.method .recommend_set_button {
    display: block;
    text-align: center;
    margin: 3% auto 0;
    width: 100%;
    background: #FFA500;
    box-shadow: 0 5px 0 #D08600;
    line-height: 1.2;
    padding: 2%;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    border-radius: 100px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
  }
  section.method .recommend_set_button:before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-size: 1rem;
    font-weight: 900;
    color: #ffffff;
    right: 5%;
    top: 52%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .modalBox03 .modalLeftBox .modalArea .modalCont, .modalBox03 .modalRightBox .modalArea .modalCont {
    max-height: 350px;
  }
}
/*-------------------------
  compare
-------------------------*/
section.compare .tab_compare_table {
  position: relative;
  z-index: 0;
  width: 90%;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #FA6092;
  text-align: center;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.2rem;
  font-weight: bold;
}
section.compare .tab_compare_table th {
  padding: 3% 0;
  color: #fff;
  background: #FA6092;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.2em;
  display: flex;
  vertical-align: middle;
  width: 100%;
  height: 163px;
  justify-content: center;
  align-items: center;
}
section.compare .tab_compare_table tr:nth-child(4) th, section.compare .tab_compare_table tr:nth-child(5) th {
  font-size: 0.8rem;
}
section.compare .tab_compare_table tr:nth-child(3) td {
  font-size: 1rem;
}
section.compare .tab_compare_table tr td {
  width: 31%;
  position: relative;
  z-index: 0;
  padding: 2%;
  border-bottom: 1px solid #FA6092;
}
section.compare .tab_compare_table tr td.ev__01:after {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  content: '◎';
  color: #F7C7DC;
  font-size: 5rem;
  z-index: -2;
  top: 50%;
  margin-top: -30%;
}
section.compare .tab_compare_table tr td.ev__02:after {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  content: '○';
  color: rgba(255, 165, 0, 0.3);
  font-size: 5rem;
  z-index: -1;
  top: 50%;
  margin-top: -30%;
}
section.compare .tab_compare_table tr td.ev__03:after {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  content: '△';
  color: rgba(34, 199, 127, 0.3);
  font-size: 5rem;
  z-index: -1;
  top: 50%;
  margin-top: -30%;
}
section.compare .tab_compare_table tr td:nth-of-type(1) {
  background: #FFFEE4;
}
section.compare .tab_compare_table tr:nth-of-type(4) .fontsize_L {
  font-size: 1.4rem;
}
section.compare .tab_compare_table tr:nth-of-type(4) th span {
  font-size: 0.8rem;
}
section.compare .tab_compare_table tr:nth-of-type(5) .fontsize_s {
  font-size: 1rem;
}
section.compare .tab_compare_table tr:nth-of-type(5) td:last-child {
  font-size: 1rem;
}
section.compare .tab_compare_table tr:last-of-type td a:last-child {
  color: #FA6092;
}
section.compare .tab_compare_table tr:nth-of-type(1) a {
  color: #333;
}
ranking_texttr td .compare_logo {
  color: #333;
}
section.compare .tab_compare_table .ranking_text {
  font-size: 1.6rem;
  color: #FA6092;
}
section.compare .tab_compare_table .compare_logo {
  padding: 5% 0;
}
section.compare .compare_table_score {
  font-size: 1.6rem;
  font-weight: bold;
  color: #FA6092;
}
section.compare .compare_table_score_starimg {
  width: 100%;
  margin: 3% auto 5%;
}
section.compare .compare_table_score_starimg li {
  display: inline-block;
  width: 16%;
  margin: 0 auto;
}
section.compare .kuchikomi_link {
  display: block;
  text-align: center;
  margin: 0 auto 0;
  width: 95%;
  background: #FE9400;
  box-shadow: 0 5px 0 #F76400;
  line-height: 1.2;
  padding: 5% 10%;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  border: none;
}
section.compare .kuchikomi_link:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
section.compare .kuchikomi_link:after {
  content: "";
  display: block;
  width: 20px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 2s ease-in-out infinite;
}
section.compare .compare_review_contents {
  font-size: 1rem;
  line-height: 1.75em;
}
section.compare a.compare_table_textlink {
  display: block;
  text-align: center;
  margin: 0 auto -5%;
  width: 95%;
  background: #22C77F;
  box-shadow: 0 5px 0 #419A73;
  line-height: 1.2;
  padding: 8% 10%;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  border-radius: 100px;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  border: none;
}
section.compare a.compare_table_textlink:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
/*  kuchikomi modal
------------------------------*/
.modalBox01 {
  display: flex;
  justify-content: space-between;
}
.modalBox01 .modalLeftBox, .modalBox01 .modalRightBox {
  position: relative;
  width: 49%;
  z-index: 100;
}
.modalBox01 .modalLeftBox dl dd:hover, .modalBox01 .modalRightBox dl dd:hover {
  opacity: .6;
}
.modalBox01 .modalLeftBox .modalArea, .modalBox01 .modalRightBox .modalArea {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.modalBox01 .modalLeftBox .modalArea .modalBg, .modalBox01 .modalRightBox .modalArea .modalBg {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modalBox01 .modalLeftBox .modalArea .modalCont, .modalBox01 .modalRightBox .modalArea .modalCont {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 10% 5%;
  max-width: 850px;
  max-height: 650px;
  z-index: 100;
}
.modalCont {
  position: relative;
  z-index: 100;
}
.modalCont ul {
  max-height: 515px;
  overflow-y: scroll;
}
.modalBox01 .modalLeftBox .modalArea .modalCont > *:first-child, .modalBox01 .modalRightBox .modalArea .modalCont > *:first-child {
  margin-top: 0;
}
.modalBox01 {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}
.modalBox01 li {
  margin: 0 5% 3%;
}
.modalBox01 li dl {
  width: 99%;
  display: inline-block;
  vertical-align: middle;
  padding: 3% 5%;
  font-size: 1rem;
  border: solid 2px #E869A0;
  border-radius: 10px;
  text-align: left;
}
.modalBox01 dt {
  position: relative;
  margin: 0 auto 2%;
  padding: 0 0 3% 20%;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
}
.modalBox01 dt span {
  color: #fa6092;
  display: inline-block;
}
.modalBox01 dt span img {
  width: 100%;
  height: auto;
}
.modalBox01 dt {
  margin: 0 auto 2%;
  padding: 0;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
}
.modalBox01 dt span:first-of-type {
  display: inline-block;
  vertical-align: middle;
  width: 14%;
  padding: 0 3% 0 0;
}
.js-modal-close {
  position: absolute;
  top: 3%;
  right: 5%;
  font-size: 2rem;
}
@media screen and (max-width:768px) {
  section.compare .tab_compare_table {
    font-size: 1rem;
  }
  section.compare .tab_compare_table th {
    width: 100%;
    height: 142px;
    font-size: 1rem;
  }
  section.compare .tab_compare_table tr:first-of-type td {
    vertical-align: top;
  }
  section.compare .tab_compare_table tr td {
    padding: 3% 1%;
    font-size: 1rem;
  }
  section.compare .tab_compare_table tr td.ev__01:after {
    font-size: 3.5rem;
    top: 50%;
    margin-top: -40%;
  }
  section.compare .tab_compare_table tr td.ev__02:after {
    font-size: 3.5rem;
    top: 50%;
    margin-top: -40%;
  }
  section.compare .tab_compare_table tr td.ev__03:after {
    font-size: 3.5rem;
    top: 50%;
    margin-top: -40%;
  }
  section.compare .tab_compare_table tr:nth-child(3) td {
    font-size: 0.85rem;
  }
  section.compare .tab_compare_table tr:nth-of-type(4) .fontsize_L {
    font-size: 1.2rem;
  }
  section.compare .tab_compare_table tr:nth-of-type(4) th span {
    font-size: 0.8rem;
  }
  section.compare .tab_compare_table tr:nth-of-type(5) th {
    font-size: 0.8rem;
  }
  section.compare .tab_compare_table tr:nth-of-type(5), section.compare .tab_compare_table tr:nth-of-type(6), section.compare .tab_compare_table tr:nth-of-type(7) {
    font-size: 1.2rem;
  }
  section.compare .tab_compare_table tr:nth-of-type(5) .fontsize_s {
    font-size: 0.8rem;
  }
  section.compare .tab_compare_table tr:nth-of-type(5) td:last-child {
    font-size: 0.8rem;
  }
  section.compare .tab_compare_table tr:last-of-type td a:last-child {
    font-size: 0.8rem;
  }
  section.compare .tab_compare_table tr:nth-of-type(1) a {
    font-size: 0.8rem;
  }
  section.compare .tab_compare_table .ranking_text {
    font-size: 1.6rem;
  }
  section.compare .tab_compare_table .compare_logo {
    padding: 12% 0;
  }
  section.compare .compare_table_score {
    font-size: 1.6rem;
  }
  section.compare .compare_table_score_starimg {
    width: 100%;
    margin: 3% auto 5%;
  }
  section.compare .compare_table_score_starimg li {
    width: 16%;
  }
  section.compare .kuchikomi_link {
    width: 95%;
    padding: 8% 10%;
    font-size: 0.75rem;
  }
  section.compare a.compare_table_textlink {
    font-size: 0.75rem;
  }
  section.compare .kuchikomi_link:before {
    font-size: 0.5rem;
    right: 5%;
    top: 50%;
  }
  section.compare a.compare_table_textlink:before {
    top: 55%;
    font-size: 0.65rem;
  }
  /*  modal
  ------------------------------*/
  .modalBox01 {
    display: flex;
    justify-content: space-between;
  }
  .modalBox01 .modalLeftBox, .modalBox01 .modalRightBox {
    position: relative;
    width: 49%;
    z-index: 100;
  }
  .modalBox01 .modalLeftBox dl dd:hover, .modalBox01 .modalRightBox dl dd:hover {
    opacity: .6;
  }
  .modalBox01 .modalLeftBox .modalArea, .modalBox01 .modalRightBox .modalArea {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .modalBox01 .modalLeftBox .modalArea .modalBg, .modalBox01 .modalRightBox .modalArea .modalBg {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 100%;
  }
  .modalBox01 .modalLeftBox .modalArea .modalCont, .modalBox01 .modalRightBox .modalArea .modalCont {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 15% 5%;
    max-width: 850px;
    max-height: 600px;
    z-index: 100;
  }
  .modalCont {
    position: relative;
    z-index: 100;
  }
  .modalBox01 .modalLeftBox .modalArea .modalCont > *:first-child, .modalBox01 .modalRightBox .modalArea .modalCont > *:first-child {
    margin-top: 0;
  }
  .modalBox01 {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
  }
  .modalBox01 li dl {
    width: 99%;
    display: inline-block;
    vertical-align: middle;
    padding: 3% 5%;
    font-size: 1rem;
    border-radius: 10px;
    text-align: left;
  }
  .modalBox01 dt {
    position: relative;
    margin: 0 auto 2%;
    padding: 0 0 3% 20%;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.4;
  }
  .modalBox01 dt span {
    display: inline-block;
  }
  .modalBox01 dt span img {
    width: 100%;
    height: auto;
  }
  .modalBox01 dt {
    margin: 0 auto 2%;
    padding: 0;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.4;
  }
  .modalBox01 dt span:first-of-type {
    display: inline-block;
    vertical-align: middle;
    width: 16%;
    padding: 0 3% 0 0;
  }
  .js-modal-close {
    position: absolute;
    top: 0;
    right: 5%;
    font-size: 2rem;
  }
  .compare_review_contents {
    font-size: 1rem;
    line-height: 1.75em;
  }
  a.compare_table_textlink {
    margin: 0 auto -5%;
    width: 95%;
    padding: 8% 10%;
    font-size: 0.8rem;
  }
  a.compare_table_textlink:before {
    font-size: 0.5rem;
    right: 5%;
    top: 50%;
  }
}
/*-------------------------
 ranking
-------------------------*/
section.ranking {
  padding: 0 0 10%;
  background: #FFFEE4
}
section.ranking .ranking_h2 {
  position: relative;
  width: 90%;
  height: auto;
  margin: 0 auto;
  padding: 8% 0 3%;
  font-weight: bold;
  line-height: 3.8rem;
}
.ranking_h2_subtext {
  position: absolute;
  top: 9%;
  left: 0;
  right: 0;
  font-size: 1.8rem;
  text-align: center;
}
section.ranking .ranking_h2 img {
  width: 100%;
  height: auto;
}
section.ranking .ranking_item_header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 135px;
  padding: 3% 0 3%;
  margin: 0 0 20px;
  color: #fff;
  border-radius: 8px 8px 0 0;
  background: #FA6092;
}
section.ranking .ranking_item p.lead_text {
  width: 90%;
  margin: 0 auto 3%;
  font-size: 1.6rem;
  font-weight: 700;
}
section.ranking .ranking_item {
  position: relative;
  width: 95%;
  height: auto;
  padding: 0 0 5%;
  border-radius: 10px;
  background: #fff;
  border: solid 1px #FA6092;
  margin: 0 auto 40px;
  box-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
}
section.ranking .ranking_item_header_rank {
  position: absolute;
  top: 18%;
  left: 3%;
  width: 14%;
}
section.ranking .ranking_item_header_rank img {
  width: 100%;
  height: auto;
}
section.ranking h3.ranking_item_header_h3 {
  margin: 0 0 3%;
  padding: 0 0 0 20%;
  font-size: 2.6rem;
  line-height: 1;
  color: #fff;
}
section.ranking .ranking_item_header_score span.color-score {
  display: inline;
  vertical-align: middle;
  color: #ffff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0 0 0 20%;
}
section.ranking .ranking_item_header_score .star_icon {
  position: absolute;
  top: 8%;
  width: 30%;
  padding: 0 0 0 1%;
}
section.ranking .ranking_item_header_score span.star_icon img {
  width: 12%;
  height: auto;
}
section.ranking .ranking_item_spec01 {
  padding: 0 5%;
  margin: 0 0 3%;
}
section.ranking .ranking_item_spec_area01 {
  margin: 5% auto 0;
}
section.ranking .ranking_item_spec01 .ranking_banner {
  margin: 0 0 3%;
}
section.ranking .ranking_item_header_score {
  position: relative;
  width: 100%;
  font-weight: bold;
  margin: 0 0 0 19%;
}
section.ranking img.ranking_item_banner {
  width: 80%;
  height: auto;
  text-align: center;
}
section.ranking .ranking_banner img {
  width: 100%;
  height: auto;
}
section.ranking .ranking_item_spec_area01 dl {
  display: inline-block;
  vertical-align: top;
  width: 32.8%;
  margin: 0 auto;
}
.ranking_item_spec01_area__label, .ranking_item_spec01_amount__label {
  padding: 10px 0;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  color: #fff;
  background: #E869A0;
}
.ranking_item_spec01_area__cont, .ranking_item_spec01_amount__cont {
  margin: 0 0 2%;
  padding: 2% 0;
  font-weight: bold;
  text-align: center;
  background: #FDF0F5;
  z-index: 2;
}
.ranking_item_spec02_workstyle__label, .ranking_item_spec01_aaa__label {
  position: absolute;
  color: #E869A0;
  font-weight: bold;
  background: #fff;
  line-height: 1;
  display: inline-block;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  padding: 0 5px;
  font-size: 24px;
}
.ranking_item_spec01_amount__cont {
  position: relative;
  z-index: 2;
  height: 95px;
}
.ranking_item_spec01_amount__cont ul li {
  display: inline-block;
  vertical-align: middle;
  width: 45%;
  font-size: 1rem;
  color: #E869A0;
  font-weight: bold;
  border-radius: 5px;
  border: 1px solid #E869A0;
  background: #fff;
  text-align: center;
  line-height: 2;
}
.ranking_item_spec_area01 dd.row01 {
  padding: 17%;
}
.ranking_item_spec_area01 dd.row02 {
  padding: 10% 0;
}
.ranking_item_spec_area01 dd.row03 {
  padding: 5%;
}
.ranking_item_spec_area01 ul {
  width: 90%;
  margin: 0 auto;
  padding: 1% 0 4.5%;
}
.ranking_item_spec_area01 ul li {
  display: inline-block;
  vertical-align: middle;
  width: 48%;
  font-size: 1rem;
  color: #fa6092;
  font-weight: bold;
  border-radius: 5px;
  border: 1px solid #fa6092;
  background: #fff;
  text-align: center;
  line-height: 2;
}
.ranking_item_spec_area01 ul li.gray {
  color: #999;
  border: 1px solid #999;
  background: #eeeeee;
}
.ranking_item_spec01_amount__cont:after {
  position: absolute;
  width: 100%;
  top: -30%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  content: '◎';
  color: #F7C7DC;
  font-size: 5.5rem;
  z-index: -1;
}
.ranking_item_spec01_amount__cont.ev__02:after {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  content: '○';
  color: rgba(255, 165, 0, 0.3);
  font-size: 5rem;
  z-index: -1;
  top: 46%;
  margin-top: -30%;
}
.ranking_item_spec01_amount__cont.ev__03:after {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  content: '△';
  color: rgba(34, 199, 127, 0.3);
  font-size: 5rem;
  z-index: -1;
  top: 50%;
  margin-top: -30%;
}
.ranking_item_spec02_workstyle__box, .ranking_item_spec01_aaa__box {
  position: relative;
  width: 100%;
  margin: 0 0 30px;
  padding: 20px 10px 10px;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  border-radius: 10px;
  border: solid 2px #E869A0;
}
.ranking_item_spec02_workstyle__box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ranking_item_spec02_workstyle__box ul.multiple-column {
  justify-content: flex-start;
}
.ranking_item_spec02_workstyle__box ul li {
  flex-basis: calc(25% - 10px);
  margin: 0 10px 0 0;
  padding: 8px 0px;
  line-height: 1;
  border-radius: 100px;
  font-weight: normal;
  font-size: 20px;
  white-space: nowrap;
  color: #E869A0;
  background: #FFEEEF;
  border: solid 2px #E869A0;
}
.ranking_item_spec02_workstyle__box ul li.off {
  background: #f5f5f5;
  color: #bbb;
  border: solid 1px #bbb;
  font-weight: normal;
}
.ranking_item_spec_area02 dt {
  color: #fff;
  padding: 1% 0;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  background: #E869A0;
}
.ranking_item_spec_area02 dd {
  margin: 0 auto 3%;
  padding: 1% 0 2%;
  background: #FFFAE0;
}
.ranking_item_spec_area02 dd ul {
  width: 90%;
  margin: 0 auto;
}
.ranking_item_spec_area02 dd ul li {
  display: inline-block;
  vertical-align: middle;
  width: 24%;
  font-size: 1rem;
  color: #E869A0;
  font-weight: bold;
  border-radius: 5px;
  border: 1px solid #E869A0;
  background: #fff;
  text-align: center;
  line-height: 2;
}
section.ranking .ranking_item_recommend_point__box {
  position: relative;
  width: 90%;
  margin: 5% auto;
  padding: 0 0 3%;
  border-radius: 10px;
  background: #fff;
  margin: 0 auto 5%;
  border: 2px solid #B798CD;
}
h3.ranking_item_spec03_h3 {
  position: relative;
}
h3.ranking_item_spec03_h3 {
  width: 100%;
  top: 0;
  margin: 0 auto;
  text-align: center;
  left: 50%;
  border-radius: 8px 8px 0 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  padding: 2%;
  line-height: 1;
  background: #B798CD;
  color: #fff;
  font-size: 1.4rem;
}
ul.ranking_item_spec03_point {
  padding: 0 5% 0 10%;
  margin: 3% auto 0;
}
ul.ranking_item_spec03_point li {
  position: relative;
  margin: 0 0 10px;
  font-weight: bold;
  font-size: 1.2rem;
}
ul.ranking_item_spec03_point li:last-of-type {
  margin: 0;
}
ul.ranking_item_spec03_point li:before {
  position: absolute;
  content: '\f058';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: -29px;
  color: #22C77F;
}
section.ranking .ranking_hensyubu__box {
  width: 90%;
  margin: 3% auto 5%;
  padding: 5%;
  border: 2px solid #FA6092;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #FFF3FC calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #FFF3FC calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}
section.ranking .ranking_hensyubu__box h3 {
  position: relative;
  color: #FA6092;
  background: none;
  text-align: left;
  margin: 0 auto 3%;
  padding: 0 6% 2%;
  border-bottom: 2px solid #FA6092;
}
section.ranking .ranking_hensyubu__box h3:before {
  position: absolute;
  content: '\f304';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: 0;
  color: #FA6092;
}
section.ranking .ranking_hensyubu__box p {
  font-size: 1rem;
  line-height: 2rem;
  margin: 0 auto;
}
.tenpo_accordion {
  max-width: 90%;
  margin: 5% auto;
}
.tenpo_accordion .accordion_one {
  max-width: 100%;
  margin: 0 auto;
}
.tenpo_accordion .accordion_one .accordion_header {
  background-color: #FA6092;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  padding: 20px 11%;
  text-align: center;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
}
.tenpo_accordion .accordion_one:first-of-type .accordion_header {
  border-radius: 8px;
}
.tenpo_accordion .accordion_one .btn02 {
  padding: 1%;
}
.tenpo_accordion .accordion_one:nth-of-type(1) .accordion_inner .accordion_header {
  background-color: #FA6092;
}
.tenpo_accordion .accordion_one .accordion_header:hover {
  opacity: .8;
}
.tenpo_accordion .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.tenpo_accordion .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.tenpo_accordion .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.tenpo_accordion .accordion_one .accordion_header .i_box .one_i:before, .tenpo_accordion .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: '';
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.tenpo_accordion .accordion_one .accordion_header .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}
.tenpo_accordion .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}
.tenpo_accordion .accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.tenpo_accordion .accordion_one .accordion_inner {
  display: none;
  padding: 0;
  box-sizing: border-box;
  /* background: #FFF3FC; */
}
.tenpo_accordion .accordion_one .accordion_inner .box_one {
  height: 300px;
}
.tenpo_accordion .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
}
h3.ranking_item_review__h3 {
  width: 90%;
  margin: 0 auto 3%;
  border-radius: 300px;
  background: -moz-linear-gradient(65deg, #F13F79, #FFC778);
  background: -webkit-linear-gradient(65deg, #F13F79, #FFC778);
  background: linear-gradient(25deg, #F13F79, #FFC778);
  text-align: center;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  font-size: 1.4rem;
  position: relative;
}
h3.ranking_item_review__h3 i {
  margin: 0 5px 0 0;
  color: #FFDFE1;
}
span.ranking_item_review__h3_notice {
  position: absolute;
  font-size: 20px;
  font-weight: normal;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
li.ranking_item_review {
  position: relative;
}
ul.ranking_item_review__wrap li.ranking_item_review:not(:last-child) {
  margin: 0 0 20px;
  padding: 0 0 20px;
}
ul.ranking_item_review__wrap li.ranking_item_review:not(:last-child):after {
  position: absolute;
  display: block;
  content: '';
  background: #ccc;
  height: 2px;
  width: calc(100%);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.ranking_item_review__profile {
  padding: 0 0 10px 84px;
  position: relative;
  font-size: 24px;
}
.ranking_item_review__profile:before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 64px;
  height: 64px;
  background: url(../images/kg_ranking_item_review-icon.png);
  left: 0;
  background-repeat: no-repeat;
}
.ranking_item_review__profile_title {
  line-height: 1.25;
  font-weight: bold;
  color: #E869A0;
}
.ranking_item_review__box {
  position: relative;
  margin: 0 0 20px;
}
/* slick */
.ranking_item_review__box .sliderArea {
  max-width: 100%;
  height: 235px;
  margin: 0 auto;
  padding: 0 25px;
}
.ranking_item_review__box .sliderArea ul {
  width: 95%;
  margin: 0 auto;
}
.ranking_item_review__box .sliderArea.w300 {
  max-width: 300px;
}
.ranking_item_review__box .slick-slide {
  position: relative;
  margin: 0 5px;
}
.ranking_item_review__box .slick-slide img {
  width: 100%;
  height: auto;
}
.ranking_item_review__box .slick-prev, .slick-next {
  z-index: 1;
  top: 45%;
}
.ranking_item_review__box .slick-prev:before, .slick-next:before {
  position: absolute;
  color: #000;
  font-size: 2rem !important;
  opacity: 1 !important;
  background: linear-gradient(90deg, #f24d79, #fb8f7a 30%, #ffbd79);
  background: -webkit-linear-gradient(0deg, #f24d79, #fa8d7a 30%, #febc78);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  top: -5%;
}
.ranking_item_review__box .slick-prev:before {
  left: -10%;
}
.slick-next:before {
  right: -10%;
}
.ranking_item_review__box .slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}
.ranking_item_review__box .slick-active {
  opacity: 1;
}
.ranking_item_review__box .slick-current {
  opacity: 1;
}
.ranking_item_review__box .thumb {
  margin: 20px 0 0;
}
.ranking_item_review__box .thumb .slick-slide {
  cursor: pointer;
}
.ranking_item_review__box .thumb .slick-slide:hover {
  opacity: .7;
}
/* slick end */
.slider02 li dl {
  width: 99%;
  display: inline-block;
  height: 230px;
  vertical-align: middle;
  padding: 3% 5%;
  font-size: 1rem;
}
.slider02 li dl:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 225px;
  border-radius: 15px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #f24d79 0%, #f24d79 20%, #f24d79 40%, #ffbd79 60%, #ffbd79 80%, #ffbd79 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
}
.slider02 dt {
  margin: 0 auto 2%;
  padding: 0;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  color: #f24a79;
}
.slider02 dt span:first-of-type {
  display: inline-block;
  vertical-align: middle;
  width: 16%;
  padding: 0 3% 0 0;
}
.compare_review_contents {
  font-size: 0.85rem;
  line-height: 1.75em;
}
p.ranking_item_notice {
  margin: 15px 0 0;
  color: #666;
}
.ranking_item_review__box {
  margin: 0 0 5%;
}
.grad-btn {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  width: 100px;
  margin: auto;
  padding: 5px 0;
  border-radius: 4px;
  background: #E869A0;
  color: #fff;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: 0 0 3px rgb(0 0 0 / 30%);
  font-weight: bold;
}
ul.ranking_item_review__wrap {
  padding: 10px;
  border: solid 2px #E869A0;
  position: relative;
  height: 120px;
}
ul.ranking_item_review__wrap::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
  content: "";
  z-index: 1;
}
section.ranking .campaign {
  width: 90%;
  margin: 3% auto;
}
section.ranking .campaign img {
  width: 100%;
  height: auto;
}
section.ranking .count_down {
  width: 90%;
  margin: 3% auto;
}
section.ranking .count_down span {
  padding: 0 0 0 1%;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
section.ranking .count_down dl {
  text-align: center;
  border: 2px solid #F53968;
  border-radius: 5px;
}
section.ranking .count_down dl dt {
  display: inline-block;
  vertical-align: middle;
  width: 35%;
  margin: 0 auto;
  padding: 2% 0;
  color: #FAFF00;
  background: #F53968;
  font-weight: bold;
}
section.ranking .count_down dl dd {
  display: inline-block;
  vertical-align: middle;
  width: 64.4%;
  margin: 0 auto;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F53968;
}
section.ranking a.ranking_item_linkbutton:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  right: 5%;
  top: 52%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
section.ranking a.ranking_item_linkbutton {
  display: block;
  text-align: center;
  margin: 0 auto 0;
  width: 90%;
  background: #22C77F;
  box-shadow: 0 5px 0 #419A73;
  line-height: 1.4;
  padding: 25px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  border-radius: 100px;
  font-size: 1.6rem;
  position: relative;
  overflow: hidden;
}
section.ranking a.ranking_item_linkbutton:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  right: 5%;
  top: 52%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
section.ranking a.ranking_item_linkbutton .fontsize_S {
  font-size: 1.4rem;
}
section.ranking a.button_orange {
  display: block;
  text-align: center;
  margin: 0 auto 0;
  width: 90%;
  background: #FFA500;
  box-shadow: 0 5px 0 #D08600;
  line-height: 1.2;
  padding: 25px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  font-size: 1.6rem;
  position: relative;
  overflow: hidden;
}
a.ranking_item_linkbutton span {
  font-size: 2rem;
}
.ranking_item_linkbutton_subtitle {
  display: inline-block;
  line-height: 1;
  margin: 0 auto 3%;
  font-weight: bold;
}
.ranking_item_linkbutton_subtitle {
  position: relative;
}
.ranking_item_linkbutton_subtitle::before, .ranking_item_linkbutton_subtitle::after {
  content: "";
  display: inline-block;
  border: 1px dashed #1D2655;
  width: 1px;
  height: 40px;
  position: absolute;
  top: -45%;
}
.ranking_item_linkbutton_subtitle::before {
  left: -20%;
  transform: rotate(-30deg);
}
.ranking_item_linkbutton_subtitle::after {
  right: -20%;
  transform: rotate(30deg);
}
/*  tenpo_modal
------------------------------*/
.modalBox02 {
  display: flex;
  justify-content: space-between;
}
.modalBox02 .modalLeftBox, .modalBox .modalRightBox {
  position: relative;
  width: 49%;
  z-index: 100;
}
.modalBox02 .modalLeftBox dl dd:hover, .modalBox02 .modalRightBox dl dd:hover {
  opacity: .6;
}
.modalBox02 .modalLeftBox .modalArea, .modalBox02 .modalRightBox .modalArea {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.modalBox02 .modalLeftBox .modalArea .modalBg, .modalBox02 .modalRightBox .modalArea .modalBg {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modalBox02 .modalLeftBox .modalArea .modalCont, .modalBox02 .modalRightBox .modalArea .modalCont {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 3% 5%;
  max-width: 850px;
  max-height: 750px;
  z-index: 100;
}
.modalCont {
  position: relative;
  z-index: 100;
}
.modalCont ul {
  max-height: 515px;
  overflow-y: scroll;
}
.modalBox02 .modalLeftBox .modalArea .modalCont > *:first-child, .modalBox02 .modalRightBox .modalArea .modalCont > *:first-child {
  margin-top: 0;
}
.modalBox02 {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}
.modalBox02 .modal_tenpo_info .head {
  border-bottom: 2px solid #fa6092;
  margin: 0 auto 5%;
  padding: 2% 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fa6092;
}
.modalBox02 .modal_tenpo_info .map {
  margin: 0 auto 3%;
}
.modalBox02 .modal_tenpo_info table {
  width: 100%;
  margin: 0 auto 5%;
}
.modalBox02 .modal_tenpo_info table th {
  width: 35%;
  background: #FFF3FC;
  line-height: 3rem;
}
.modalBox02 .modal_tenpo_info table td {
  width: 65%;
  padding: 0 0 0 3%;
}
.modalBox02 a.ranking_item_linkbutton {
  display: block;
  text-align: center;
  margin: 0 auto 0;
  width: 90%;
  background: #22C77F;
  box-shadow: 0 5px 0 #419A73;
  line-height: 1.4;
  padding: 3%;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  border-radius: 100px;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}
.modalBox02 a.ranking_item_linkbutton:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  right: 5%;
  top: 52%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.js-modal-close {
  position: absolute;
  top: 3%;
  right: 5%;
  font-size: 1.6rem
}
@media screen and (max-width:768px) {
  section.ranking {
    padding: 0 0 10%;
  }
  section.ranking .ranking_h2 {
    width: 90%;
    margin: 0 auto;
    padding: 10% 0 5%;
    line-height: 3.8rem;
  }
  section.ranking .ranking_h2 .ranking_h2_subtext {
    top: 5%;
    font-size: 1rem;
  }
  section.ranking .ranking_h2 img {
    width: 100%;
    height: auto;
  }
  h2.ranking_h2 {
    font-size: 2rem;
    margin: 0 0 30px;
    font-size: 2rem;
    line-height: 3.8rem;
  }
  section.ranking .ranking_item p.lead_text {
    width: 90%;
    margin: 0 auto 3%;
    font-size: 1.2rem;
    font-weight: 700;
  }
  section.ranking .ranking_item {
    width: 95%;
    height: auto;
    padding: 0 0 12%;
    position: relative;
    margin: 0 auto 40px;
  }
  section.ranking .ranking_item:nth-of-type(2), section.ranking .ranking_item:nth-of-type(3) {
    height: 1950px;
  }
  section.ranking .ranking_item_header_rank {
    top: 18%;
    left: 3%;
    width: 14%;
  }
  section.ranking .ranking_item_header_rank img {
    width: 100%;
    height: auto;
  }
  section.ranking .ranking_item_header_score span.color-score {
    font-size: 1rem;
    font-weight: 500;
    padding: 0 0 0 28%;
    margin: -5% auto 0;
  }
  section.ranking .ranking_item_header_score .star_icon {
    top: 5%;
    width: 30%;
  }
  section.ranking .ranking_item_header_score span.star_icon img {
    width: 12%;
    height: auto;
  }
  section.ranking .ranking_item_header {
    height: 80px;
    padding: 3% 0 2%;
    margin: 0 0 5%;
    border-radius: 8px 8px 0 0;
  }
  section.ranking h3.ranking_item_header_h3 {
    margin: 0 0 2%;
    padding: 0 0 0 20%;
    font-size: 1.6rem;
    line-height: 1;
  }
  section.ranking .ranking_item_header_score .star_icon {
    position: absolute;
    top: 8%;
    width: 30%;
  }
  section.ranking .ranking_item_header_score span.star_icon img {
    width: 18%;
    height: auto;
  }
  section.ranking .ranking_item_spec01 {
    padding: 0 5%;
    margin: 0 0 3%;
  }
  section.ranking .ranking_item_spec01 .ranking_banner {
    margin: 0 0 3%;
  }
  section.ranking .ranking_item_header_score {
    position: relative;
    width: 100%;
    font-weight: bold;
    margin: 0 0 0 19%;
  }
  section.ranking img.ranking_item_banner {
    width: 80%;
    height: auto;
    text-align: center;
  }
  section.ranking .ranking_banner img {
    width: 100%;
    height: auto;
  }
  section.ranking .ranking_item_spec_area01 dl {
    display: inline-block;
    vertical-align: top;
    width: 32%;
    margin: 0 auto;
  }
  .ranking_item_spec01_area__label, .ranking_item_spec01_amount__label {
    padding: 10px 0;
    font-size: 0.85rem;
  }
  .ranking_item_spec01_area__cont, .ranking_item_spec01_amount__cont {
    margin: 0 0 2%;
    padding: 2% 0;
  }
  .ranking_item_spec02_workstyle__label, .ranking_item_spec01_aaa__label {
    line-height: 1;
    display: inline-block;
    top: -15px;
    left: 50%;
    padding: 0 5px;
    font-size: 24px;
  }
  .ranking_item_spec01_amount__cont {
    position: relative;
  }
  .ranking_item_spec01_amount__cont ul li {
    display: inline-block;
    vertical-align: middle;
    width: 45%;
    font-size: 1rem;
    color: #E869A0;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid #E869A0;
    background: #fff;
    text-align: center;
    line-height: 2;
  }
  .ranking_item_spec_area01 dd {
    display: inline-block;
    vertical-align: middle;
    background: #FDF0F5;
    width: 100%;
    height: 95px;
    justify-content: center;
    align-items: center;
    display: flex;
    vertical-align: middle;
  }
  .ranking_item_spec_area01 dd.row01 {
    padding: 30% 0;
  }
  .ranking_item_spec_area01 dd.row02 {
    fo padding: 25% 0;
  }
  .ranking_item_spec_area01 dd.row03 {
    padding: 14% 5%;
  }
  .ranking_item_spec_area01 ul {
    width: 90%;
    margin: 0 auto;
    padding: 1% 0 4.5%;
  }
  .ranking_item_spec_area01 ul li {
    display: inline-block;
    vertical-align: middle;
    width: 48%;
    font-size: 1rem;
    color: #E869A0;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid #E869A0;
    background: #fff;
    text-align: center;
    line-height: 2;
  }
  .ranking_item_spec_area01 ul li.gray {
    color: #999;
    border: 1px solid #999;
    background: #eeeeee;
  }
  .ranking_item_spec01_amount__cont dd {
    position: relative;
    z-index: 2;
  }
  .ranking_item_spec01_amount__cont:after {
    top: 50%;
    margin: -45% auto 0;
    content: '◎';
    color: #F7C7DC;
    font-size: 3.5rem;
  }
  .ranking_item_spec01_amount__cont.ev__02:after {
    top: 50%;
    margin: -45% auto 0;
    font-size: 3.5rem;
    content: '○';
    color: rgba(255, 165, 0, 0.3);
  }
  .ranking_item_spec01_amount__cont.ev__03:after {
    top: 50%;
    margin: -45% auto 0;
    font-size: 3.5rem;
    content: '△';
    color: rgba(34, 199, 127, 0.3);
  }
  .ranking_item_spec02_workstyle__box, .ranking_item_spec01_aaa__box {
    position: relative;
    width: 100%;
    margin: 0 0 30px;
    padding: 20px 10px 10px;
    font-weight: bold;
    text-align: center;
    font-size: 24px;
    border-radius: 10px;
    border: solid 2px #E869A0;
  }
  .ranking_item_spec02_workstyle__box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ranking_item_spec02_workstyle__box ul.multiple-column {
    justify-content: flex-start;
  }
  .ranking_item_spec02_workstyle__box ul li {
    flex-basis: calc(25% - 10px);
    margin: 0 10px 0 0;
    padding: 8px 0px;
    line-height: 1;
    border-radius: 100px;
    font-weight: normal;
    font-size: 20px;
    white-space: nowrap;
    color: #E869A0;
    background: #FFEEEF;
    border: solid 2px #E869A0;
  }
  .ranking_item_spec02_workstyle__box ul li.off {
    background: #f5f5f5;
    color: #bbb;
    border: solid 1px #bbb;
    font-weight: normal;
  }
  .ranking_item_spec_area02 dt {
    color: #fff;
    padding: 1% 0;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    background: #E869A0;
  }
  .ranking_item_spec_area02 dd {
    margin: 0 auto 3%;
    padding: 1% 0 2%;
    background: #FFFAE0;
  }
  .ranking_item_spec_area02 dd ul {
    width: 90%;
    margin: 0 auto;
  }
  .ranking_item_spec_area02 dd ul li {
    display: inline-block;
    vertical-align: middle;
    width: 24%;
    font-size: 1rem;
    color: #E869A0;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid #E869A0;
    background: #fff;
    text-align: center;
    line-height: 2;
  }
  section.ranking .ranking_item_recommend_point__box {
    position: relative;
    width: 90%;
    margin: 5% auto;
    padding: 0 0 3%;
    border-radius: 10px;
    background: #fff;
    margin: 0 auto 5%;
    border: 2px solid #B798CD;
  }
  h3.ranking_item_spec03_h3 {
    position: relative;
  }
  h3.ranking_item_spec03_h3 {
    width: 100%;
    top: 0;
    margin: 0 auto;
    text-align: center;
    left: 50%;
    border-radius: 8px 8px 0 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    padding: 3%;
    line-height: 1;
    background: #B798CD;
    color: #fff;
    font-size: 1.2rem;
  }
  ul.ranking_item_spec03_point {
    padding: 0 5% 0 10%;
    margin: 5% auto 3%;
  }
  ul.ranking_item_spec03_point li {
    margin: 0 0 2%;
    font-size: 1rem;
    line-height: 1.4em;
  }
  ul.ranking_item_spec03_point li:before {
    left: -8%;
  }
  section.ranking .ranking_hensyubu__box {
    margin: 3% auto 5%;
    padding: 8% 5%;
  }
  section.ranking .ranking_hensyubu__box h3 {
    margin: 0 auto 3%;
    padding: 0 10% 4%;
  }
  section.ranking .ranking_hensyubu__box p {
    font-size: 1rem;
    line-height: 2rem;
    margin: 0 auto;
  }
  .tenpo_accordion {
    max-width: 90%;
    margin: 5% auto;
  }
  .tenpo_accordion .accordion_one {
    max-width: 100%;
    margin: 0 auto;
  }
  .tenpo_accordion .accordion_one .accordion_header {
    font-size: 26px;
    font-weight: bold;
    padding: 20px 11%;
    text-align: center;
    position: relative;
    z-index: +1;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .tenpo_accordion .accordion_one:first-of-type .accordion_header {
    border-radius: 8px;
  }
  .tenpo_accordion .accordion_one:first-of-type .accordion_header {
    margin: 3% auto 0;
  }
  .tenpo_accordion .accordion_one:nth-of-type(1) .accordion_inner .accordion_header {
    background-color: #FA6092;
  }
  .tenpo_accordion .accordion_one .accordion_header:hover {
    opacity: .8;
  }
  .tenpo_accordion .accordion_one .accordion_header .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 5%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
  }
  .tenpo_accordion .accordion_one .accordion_header .i_box .one_i {
    display: block;
    width: 18px;
    height: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
    position: relative;
  }
  .tenpo_accordion .accordion_one .accordion_header.open .i_box {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
  .tenpo_accordion .accordion_one .accordion_header .i_box .one_i:before, .tenpo_accordion .accordion_one .accordion_header .i_box .one_i:after {
    display: flex;
    content: '';
    background-color: #fff;
    border-radius: 10px;
    width: 18px;
    height: 4px;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
  }
  .tenpo_accordion .accordion_one .accordion_header .i_box .one_i:before {
    width: 4px;
    height: 18px;
    top: 0;
    left: 7px;
  }
  .tenpo_accordion .accordion_one .accordion_header.open .i_box .one_i:before {
    content: none;
  }
  .tenpo_accordion .accordion_one .accordion_header.open .i_box .one_i:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .tenpo_accordion .accordion_one .accordion_inner {
    display: none;
    padding: 0;
    box-sizing: border-box;
  }
  .tenpo_accordion .accordion_one .accordion_inner .box_one {
    height: 300px;
  }
  .tenpo_accordion .accordion_one .accordion_inner p.txt_a_ac {
    margin: 0;
  }
  h3.ranking_item_review__h3 {
    width: 90%;
    margin: 0 auto 3%;
    border-radius: 300px;
    background: -moz-linear-gradient(65deg, #F13F79, #FFC778);
    background: -webkit-linear-gradient(65deg, #F13F79, #FFC778);
    background: linear-gradient(25deg, #F13F79, #FFC778);
    text-align: center;
    color: #fff;
    line-height: 1;
    padding: 10px 0;
    font-size: 1.2rem;
    position: relative;
  }
  h3.ranking_item_review__h3 i {
    margin: 0 5px 0 0;
    color: #FFDFE1;
  }
  span.ranking_item_review__h3_notice {
    position: absolute;
    font-size: 20px;
    font-weight: normal;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  li.ranking_item_review {
    position: relative;
  }
  ul.ranking_item_review__wrap li.ranking_item_review:not(:last-child) {
    margin: 0 0 20px;
    padding: 0 0 20px;
  }
  ul.ranking_item_review__wrap li.ranking_item_review:not(:last-child):after {
    position: absolute;
    display: block;
    content: '';
    background: #ccc;
    height: 2px;
    width: calc(100%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .ranking_item_review__profile {
    padding: 0 0 10px 84px;
    position: relative;
    font-size: 24px;
  }
  .ranking_item_review__profile:before {
    position: absolute;
    content: '';
    display: inline-block;
    width: 64px;
    height: 64px;
    background: url(../images/kg_ranking_item_review-icon.png);
    left: 0;
    background-repeat: no-repeat;
  }
  .ranking_item_review__profile_title {
    line-height: 1.25;
    font-weight: bold;
    color: #E869A0;
  }
  .ranking_item_review__box {
    position: relative;
    margin: 0 0 20px;
  }
  /* slick */
  .ranking_item_review__box .sliderArea {
    max-width: 100%;
    height: 265px;
    margin: 0 auto;
    padding: 0 25px;
  }
  .ranking_item_review__box .slick-track {
    /* width: 750px!important; */
  }
  .ranking_item_review__box .sliderArea ul {
    width: 95%;
    margin: 0 auto;
  }
  .ranking_item_review__box .sliderArea.w300 {
    max-width: 300px;
  }
  .ranking_item_review__box .slick-slide {
    position: relative;
    margin: 0 5px;
  }
  .ranking_item_review__box .slick-slide img {
    width: 100%;
    height: auto;
  }
  .ranking_item_review__box .slick-prev, .slick-next {
    z-index: 1;
  }
  .ranking_item_review__box .slick-prev:before, .slick-next:before {
    position: absolute;
    color: #000;
    font-size: 2rem !important;
    opacity: 1 !important;
    background: linear-gradient(90deg, #f24d79, #fb8f7a 30%, #ffbd79);
    background: -webkit-linear-gradient(0deg, #f24d79, #fa8d7a 30%, #febc78);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: -5%;
  }
  .ranking_item_review__box .slick-prev:before {
    left: -10%;
  }
  .slick-next:before {
    right: -10%;
  }
  .ranking_item_review__box .slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
  }
  .ranking_item_review__box .slick-active {
    opacity: 1;
  }
  .ranking_item_review__box .slick-current {
    opacity: 1;
  }
  .ranking_item_review__box .thumb {
    margin: 20px 0 0;
  }
  .ranking_item_review__box .thumb .slick-slide {
    cursor: pointer;
  }
  .ranking_item_review__box .thumb .slick-slide:hover {
    opacity: .7;
  }
  /* slick end */
  .slider02 li dl {
    width: 99%;
    display: inline-block;
    height: 255px;
    vertical-align: middle;
    padding: 3% 5%;
    font-size: 1rem;
  }
  .slider02 li dl:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    height: 265px;
  }
  .slider02 dt {
    margin: 0 auto 2%;
    padding: 0;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.4;
  }
  .slider02 dt span:first-of-type {
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    padding: 0 3% 0 0;
  }
  .compare_review_contents {
    font-size: 0.8rem;
    line-height: 1.75em;
  }
  p.ranking_item_notice {
    margin: 15px 0 0;
    color: #666;
  }
  .ranking_item_review__box {
    margin: 0 0 5%;
  }
  .grad-btn {
    z-index: 2;
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    width: 100px;
    margin: auto;
    padding: 5px 0;
    border-radius: 4px;
    background: #E869A0;
    color: #fff;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
    font-weight: bold;
  }
  ul.ranking_item_review__wrap {
    padding: 10px;
    border: solid 2px #E869A0;
    position: relative;
    height: 120px;
  }
  ul.ranking_item_review__wrap::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /*グラデーションで隠す高さ*/
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
    content: "";
    z-index: 1;
  }
  section.ranking .campaign {
    width: 90%;
    margin: 5% auto;
  }
  section.ranking .campaign img {
    width: 100%;
    height: auto;
  }
  section.ranking .count_down {
    width: 90%;
    margin: 5% auto;
  }
  section.ranking .count_down span {
    padding: 0 0 0 1%;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
  section.ranking .count_down dl {
    text-align: center;
    border: 2px solid #F53968;
    border-radius: 5px;
  }
  section.ranking .count_down dl dt {
    display: inline-block;
    vertical-align: middle;
    width: 35.6%;
    margin: 0 auto;
    padding: 2% 0;
    color: #FAFF00;
    background: #F53968;
    font-weight: bold;
    line-height: 1.2em;
  }
  section.ranking .count_down dl dd {
    display: inline-block;
    vertical-align: middle;
    width: 63.4%;
    margin: 0 auto;
    font-size: 1.2rem;
    font-weight: bold;
    color: #F53968;
  }
  section.ranking a.ranking_item_linkbutton {
    width: 95%;
    padding: 3%;
    font-size: 1.2rem;
  }
  section.ranking a.ranking_item_linkbutton .fontsize_S {
    font-size: 1rem;
  }
  section.ranking a.ranking_item_linkbutton:before {
    font-size: 1.2rem;
  }
  a.ranking_item_linkbutton span {
    font-size: 2rem;
  }
  .ranking_item_linkbutton_subtitle {
    display: inline-block;
    line-height: 1;
    margin: 0 auto 3%;
    font-weight: bold;
  }
  .ranking_item_linkbutton_subtitle {
    position: relative;
  }
  .ranking_item_linkbutton_subtitle::before, .ranking_item_linkbutton_subtitle::after {
    content: "";
    display: inline-block;
    border: 1px dashed #1D2655;
    width: 1px;
    height: 40px;
    position: absolute;
    top: -45%;
  }
  .ranking_item_linkbutton_subtitle::before {
    left: -20%;
    transform: rotate(-30deg);
  }
  .ranking_item_linkbutton_subtitle::after {
    right: -20%;
    transform: rotate(30deg);
  }
  .modalBox02 .modalLeftBox .modalArea .modalCont, .modalBox02 .modalRightBox .modalArea .modalCont {
    max-height: 650px
  }
  .modalBox02 .modalLeftBox .modalArea .modalCont, .modalBox02 .modalRightBox .modalArea .modalCont {
    padding: 8% 5%;
  }
  .modalBox02 .modal_tenpo_info table th {
    width: 25%;
  }
  .modalBox02 .modal_tenpo_info table th, .modalBox02 .modal_tenpo_info table td {
    font-size: 0.85rem
  }
}
/*-------------------------
  recommend
-------------------------*/
section.recommend {
  width: 100%;
  max-width: 2000px;
  margin: 0 0 40px;
  padding: 0px 10px 0px;
  position: relative;
}
.recommend_wrap {
  border: solid 1px #E869A0;
  padding: 30px 20px 20px;
  margin: 20px 0 0;
}
h2.recommend_h2 {
  font-size: 16px;
  position: absolute;
  color: #E869A0;
  top: -20px;
  left: -7px;
  background: #fff;
  line-height: 1;
  padding: 10px;
}
h2.recommend_h2 i {
  margin: 0 3px 0 0;
  font-size: 24px;
}
span.recommend_h2_big {
  font-weight: bold;
  font-size: 20px;
}
.reccomend_item_balloon {
  background: #FFEEEF;
  font-weight: bold;
  padding: 5px 0px;
  text-align: center;
  font-size: 16px;
  margin: 0 0 15px;
}
img.reccomend_item_logo {
  display: block;
  width: 80%;
  margin: 0 auto 15px;
}
p.reccomend_item_description {
  background-color: #fff; /* 背景色 */
  background-image: linear-gradient(180deg, #f5f5f5 1px, transparent 1px); /* 罫線の色と太さ */
  background-size: 100% 2.0em; /* 行の高さ */
  line-height: 2.0em; /* 文字の高さ */
  padding-bottom: 4px; /* 最終行の下にも罫線を引く */
  font-size: 14px;
}
section.recommend .reccomend_item:first-child {
  padding: 0 0 20px;
  border-bottom: solid 2px #f5f5f5;
}
section.recommend .reccomend_item:last-child {
  padding: 20px 0 0px;
}
a.reccomend_item_cvbutton {
  margin: 15px auto 0;
  padding: 15px 0px;
  width: 100%;
  text-align: center;
  background: rgb(181, 181, 181);
  background: linear-gradient(47deg, rgba(65, 207, 145, 1) 0%, rgba(65, 154, 115, 1) 100%);
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  border: solid 1px rgba(65, 154, 115, 1);
}
/*-------------------------
 qa
-------------------------*/
section.qa {
  padding: 8% 0;
  background: #FFFAFC;
}
section.qa h2 {
  width: 100%;
  margin: 0 auto 5%;
  font-size: 2.6rem;
  text-align: center;
  display: inline-block;
  background: linear-gradient(135deg, #B798CD 0%, #FFA2B8 100%);
  background: -webkit-linear-gradient(-45deg, #B798CD 0%, #FFA2B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.qa h2 span {
  display: block;
  width: 10%;
  margin: 0 auto;
}
section.qa h2 img {
  width: 100%;
  height: auto;
}
.accordion_container {
  max-width: 90%;
  margin: 0 auto 2%;
}
.accordion_title {
  background-color: #B798CD;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  padding: 20px 5%;
  text-align: left;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
  border-radius: 8px;
}
.accordion_title:hover {
  opacity: 0.8;
}
.icon_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.icon {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.accordion_title.open .icon_wrap {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.icon:before, .icon:after {
  display: flex;
  content: '';
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.icon:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}
.accordion_title.open .icon_wrap .icon:before {
  content: none;
}
.accordion_title.open .icon_wrap .icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.accordion_inner {
  display: none;
  padding: 3% 5%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 0 0 8px 8px;
}
.ac_inner_wraper {
  height: 100px;
}
p.txt_a_ac {
  margin: 0;
  line-height: 2rem;
}
p.txt_a_ac span {
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .accordion_title {
    font-size: 1rem;
  }
  .icon_wrap {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    right: 3%;
  }
}
@media screen and (max-width:768px) {
  section.qa h2 {
    font-size: 2rem;
  }
  section.qa h2 span {
    width: 15%;
  }
  .accordion_title {
    font-size: 1rem;
  }
  .accordion_inner {
    margin: 0 auto 5%;
  }
  .ac_inner_wraper {
    height: auto;
  }
  p.txt_a_ac {
    margin: 0;
    line-height: 1.6rem;
  }
  p.txt_a_ac span {
    font-weight: bold;
  }
}
/*-------------------------
  selecter_top
-------------------------*/
section.selecter_top {
  width: 750px;
  margin: 5% auto;
  padding: 0 20px;
}
section .selecter_top_box {
  margin: 0 auto 8%;
  padding: 0 0 5%;
  border: 2px solid #FE9400;
  border-radius: 20px;
}
section .selecter_top_box ul {
  width: 80%;
  margin: 5% auto 0;
}
section .selecter_top_box ul li {
  display: inline-block;
  width: 47%;
  margin: 0 1% 3%;
  padding: 0;
}
.selecter_top h2 {
  padding: 2% 0;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  background-color: #FE9400;
  border-radius: 15px 15px 0 0;
}
section .selecter_top_box .select {
  position: relative;
  position: relative;
  border: 1px solid #FE9400;
  border-radius: 10px;
  vertical-align: middle;
}
section .selecter_top_box select {
  position: relative;
  vertical-align: middle;
  width: 100%;
  padding: 7% 8%;
  padding-right: 1em;
  border: none;
  outline: 0;
  background: none;
  background-image: none;
  box-shadow: none;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}
section .selecter_top_box li::before {
  position: absolute;
  top: 25%;
  right: 13%;
  width: 0;
  height: 0;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  font-size: 1rem;
  color: #FE9400;
  pointer-events: none;
}
section .selecter_top_box select::-ms-expand {
  display: none;
}
section .selecter_top_box .search_result_text {
  margin: 0 auto 3%;
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
}
section .selecter_top_box .search_result_text .fontsize_S {
  font-size: 1.4rem;
}
section .selecter_top_box .search_btn {
  display: block;
  text-align: center;
  margin: 3% auto 0;
  width: 50%;
  background: #5282FB;
  box-shadow: 0 5px 0 #1567B4;
  line-height: 1.2;
  padding: 2%;
  font-weight: bold;
  border-radius: 100px;
  font-size: 1.2rem;
  position: relative;
}
section .selecter_top_box .search_btn a {
  text-decoration: none;
  color: #fff;
}
section .selecter_top_box .search_btn:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  right: 5%;
  top: 52%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width:768px) {
  section.selecter_top {
    width: 90%;
    margin: 5% auto;
    padding: 0;
  }
  section .selecter_top_box {
    margin: 0 auto 8%;
    padding: 0 0 5%;
    border-radius: 10px;
  }
  section .selecter_top_box ul {
    width: 94%;
    margin: 5% auto 0;
  }
  section .selecter_top_box ul li {
    width: 47%;
    margin: 0 1% 3%;
    padding: 0;
  }
  .selecter_top h2 {
    padding: 2% 0;
    font-size: 1.2rem;
    border-radius: 5px 5px 0 0;
  }
  section .selecter_top_box .select {
    border-radius: 5px;
    vertical-align: middle;
  }
  section .selecter_top_box select {
    width: 100%;
    padding: 7% 8%;
    padding-right: 1em;
    outline: 0;
    text-indent: 0.01px;
    font-size: 0.75rem;
  }
  section .selecter_top_box li::before {
    top: 25%;
    right: 13%;
    font-size: 1.6rem;
    font-size: 0.75rem;
  }
  section .selecter_top_box .search_result_text {
    margin: 0 auto 3%;
    font-size: 2rem;
  }
  section .selecter_top_box .search_result_text .fontsize_S {
    font-size: 1.2rem;
  }
  section .selecter_top_box .search_btn {
    width: 65%;
    padding: 3% 5%;
    font-size: 1rem;
  }
  section .selecter_top_box .search_btn:before {
    font-size: 1rem;
  }
}
/*====================================================================
.tenpo_accordion .accordion_one
====================================================================*/
.tenpo_accordion .accordion_one {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
.tenpo_accordion .accordion_one .accordion_header {
  background-color: #fa6092;
  /* border-bottom: 1px solid #fff; */
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  padding: 3%;
  text-align: center;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
}
.tenpo_accordion .accordion_one .accordion_inner .btn_02 {
  max-width: 95%;
  margin: 1% auto;
  padding: 2%;
  background-color: rgb(250 96 146 / 75%);
}
.tenpo_accordion .accordion_one:nth-of-type(1) .accordion_inner .accordion_header {
  max-width: 95%;
  margin: 1% auto;
  padding: 2%;
  background-color: rgb(250 96 146 / 75%);
}
.tenpo_accordion .accordion_one:nth-of-type(1) .accordion_inner .accordion_inner .accordion_header {
  background-color: #fff;
}
.tenpo_tonai_wrap {
  width: 100%;
}
.tenpo_tonai_wrap table {
  width: 100%;
}
.tenpo_tonai_wrap table tr {
  width: 100%;
  padding: 3%;
}
.tenpo_tonai_wrap table th {
  width: 35%;
  margin: 0 5% 0 0;
  padding: 3%;
  background: #FFF3FC;
  text-decoration: underline;
  font-size: 0.8rem;
}
.tenpo_tonai_wrap table td {
  width: 110%;
  font-size: 0.75rem;
  padding: 0 0 0 3%;
}
.tenpo_accordion .accordion_one .accordion_header:hover {
  opacity: .8;
}
.tenpo_accordion .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.tenpo_accordion .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.tenpo_accordion .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.tenpo_accordion .accordion_one .accordion_header .i_box .one_i:before, .tenpo_accordion .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: '';
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.tenpo_accordion .accordion_one .accordion_header .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}
.tenpo_accordion .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}
.tenpo_accordion .accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.tenpo_accordion .accordion_one .accordion_inner {
  display: none;
  padding: 0;
  box-sizing: border-box;
}
.tenpo_accordion .accordion_one .accordion_inner .box_one {
  height: 300px;
}
.tenpo_accordion .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .tenpo_accordion .accordion_one .accordion_header {
    font-size: 18px;
  }
  .tenpo_accordion .accordion_one .accordion_header .i_box {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}
@media screen and (max-width: 767px) {
  .tenpo_accordion .accordion_one .accordion_header {
    font-size: 16px;
    text-align: left;
    padding: 15px 60px 15px 15px;
  }
}