@charset "utf-8";

/* Common */
.has-character {
  position: relative;
}

.has-character__item {
  position: absolute;
}

.has-character__item[data-character='cellulite'] {
  right: 16px;
  bottom: 24px;
  width: 180px;
  transform: rotate(5deg);
  -webkit-transform: rotate(5deg);
  -moz-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  -o-transform: rotate(5deg);
}

.has-character__item[data-character='recommended'] {
  right: 16px;
  bottom: 38px;
  width: 120px;
  transform: rotate(5deg);
}

@media (max-width: 991.98px) {
  .has-character__item[data-character='cellulite'] {
    display: none;
  }

  .has-character__item[data-character='recommended'] {
    display: none;
  }
}

/* navigation */
.navigation {
  position: fixed;
  top: 64px;
  left: 100%;
  width: 100%;
  height: calc(100vh - 48px);
  overflow-y: auto;
  transform: translateX(0%);
  transition: transform 0.25s ease-out;
  z-index: 9998;
}

.navigation.show {
  transform: translateX(-100%);
}

@media (max-width: 575.98px) {
  .navigation {
    top: 48px;
  }
}

/* button */
.button {
  width: 40%;
  height: 60px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  /* border-radius: 30px; */
}

.button[data-button-color='green'] {
  color: #fff;
  background-image: linear-gradient(180deg, rgb(152 249 34), rgb(36 195 0));
}

.button[data-button-color='grey'] {
  color: #fff;
  background: #919191;
}

.under_button {
  width: 40%;
  text-align: center;
  display: inline-block;
  padding: 1rem 0.5rem;
  border: solid 2px #3baf90;
  font-weight: bold;
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none;
  border-radius: 60px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.under_button[data-button-color='green'] {
   background-color: #00a608;
  box-shadow: 4px 4px #054800;
  font-size: 1rem;
  color: #fff;
  border: solid 2px #fff;
}

@media screen and (max-width: 777px) {
  .under_button {
    width: 90%;
  }
}

.button>* {
  pointer-events: none;
}

.button--lg {
  width: 100%;
}

.button--sm {
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.button[data-button-color='red'] {
  background-color: #00a608;
  box-shadow: 4px 4px #054800;
  font-size: 1rem;
  color: #fff;
  border: solid 2px #fff;
}


.button[data-button-color='blue'] {
  background-color: #666;
  box-shadow: 4px 4px #444;
  border: solid 2px #fff;
  font-size: 1rem;
  color: #FFF;
  text-decoration: none;
}

@media (max-width: 575.98px) {
  .button {
    height: 50px;
    font-size: 0.75rem;
  }
}

.search_btn_box{
  display: flex;
  gap: 1rem;
}

.search_btn_box .button{
  border-radius: 30px;
}


/* list */
.list {
  border-radius: 4px;
  padding: 8px;
}

.list:not(:last-child) {
  margin-bottom: 8px;
}

.list[data-list='white'] {
  background: #fff;
}

.list-head {
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  border-radius: 4px;
}

/* main */
main {
  padding-top: 64px;
}

.main-section {
  padding: 32px 0;
}

.main-section__inner {
  margin: auto;
  max-width: 1200px;
}

.main-visual {
  width: 100%;
  height: 340px;
  background: url(../images/main-visual-back.png) no-repeat center / auto 100% #ffeaf0;
}

.main-visual-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-visual img {
  max-width: 100%;
  max-height: 100%;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.main-title[data-main-title-color='white'] {
  color: #fff;
}

.main-title[data-main-title-color='pink'] {
  color: #df97a8;
}

.main-title[data-main-title-color='green'] {
  color: #72bd6f;
}

.main-title[data-main-title-color='blue'] {
  color: #3ca2f9;
}

.main-title[data-main-title-color='brown'] {
  color: #dbc9ad;
}

.main-title[data-main-title-color='yellow'] {
  color: #ffd32b;
}

.dbc9adub-title[data-main-sub-title-color='pink'] {
  border-top: 1px solid #df97a8;
  border-bottom: 1px solid #df97a8;
  color: #df97a8;
}

.main-sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.main-sidebar-title[data-main-sidebar-title-color='pink'] {
  color: #df97a8;
}

.main-sidebar-content {
  background: #ffeaf0;
  border-radius: 4px;
  margin-bottom: 32px;
}

@media (min-width: 992px) {
  .main-visual-title-sp {
    display: none;
  }
}

@media (min-width: 768px) {
  .main-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
  }

  .main-content {
    width: 60%;
    padding-top: 16px;
  }

  .main-sidebar {
    width: 40%;
    padding-top: 16px;
    padding-left: 16px;
  }

  .main-sidebar-content {
    position: sticky;
    top: 80px;
  }
}

@media (max-width: 991.98px) {
  .main-visual-baloon {
    display: none;
  }

  .main-visual-container {
    justify-content: center;
  }

  .main-visual-title-pc {
    display: none;
  }
}

@media (max-width: 575.98px) {
  main {
    padding-top: 48px;
  }

  .main-section {
    padding: 16px 0;
  }

  .main-visual {
    height: 120px;
  }

  .main-visual img {
    width: auto;
    height: 80px;
  }

  .main-title {
    font-size: 3rem;
  }
}

/* icon */
.search-perpendicular {
  transform: rotate(45deg);
}

/* search form */
.search-form-table {
  width: 100%;
  font-size: 0.75rem;
  margin-bottom: 20px;
}

.search-form-table th,
.search-form-table td {
  padding: 8px;
  font-size: .8rem;
  line-height: 1.5rem;
  font-weight: bold;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #ffa200;
  
}

.search-form-table td ul li {
  font-size: .8rem;
}

.search-form-table th {
  width: 30%;
  background-color: #ffe555;
  text-align: center;
}

.search-form {
  border-radius: 4px;
}

.search-form-axis li:not(:last-child) {
  margin-right: 8px;
}

.search-form-detail {
  border-top: 1px dashed #df97a8;
}

/* ranking table */
.ranking-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ranking-title img {
  width: 64px;
}

.ranking-table {
  width: 100%;
  font-size: 0.75rem;
}

.ranking-table th,
.ranking-table td {
  width: calc(100% / 8);
  min-width: calc(350px / 3);
  padding: 8px;
  font-size: 1rem;
  vertical-align: middle;
  border: 1px solid #ffbc00;
  text-align: center;
}

.ranking-table th {
  background: #fff350;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 5px;
}

.ranking-table img {
  width: auto;
}

.ranking-table td .button {
  font-size: 1.2rem;
  text-decoration: none;
}

.ranking-table em {
  font-size: 1rem;
  font-weight: 700;
}

.ranking-table small {
  font-size: 0.5rem;
}

@media (max-width: 575.98px) {
  .ranking-title img {
    width: auto;
  }
}

/* ranking-table-o */
.ranking-table-o {
  width: 100%;
  font-size: 0.75rem;
  overflow: scroll;
  border-collapse: separate;
  border-spacing: 4px;
}

.ranking-table-o-wrapper {
  margin-left: -4px;
  margin-right: -4px;
}

.ranking-table-o .ci,
.ranking-table-o .no,
.ranking-table-o .do,
.ranking-table-o .ta,
.ranking-table-o .hy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  font-size: 4rem;
}

.ranking-table-o tbody {
  width: max-content;
}

.ranking-table-o-ttl {
  width: 100%;
  height: 50px;
  background-color: #ffa311;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  display: block;
  text-align: center;
  font-weight: bold;
}

.ranking-table-o th,
.ranking-table-o td {
  position: relative;
  width: calc(100% / 6);
  min-width: calc(500px / 6);
  padding: 0px;
  font-size: 1.6rem;
  font-weight: bold;
  vertical-align: middle;
  text-align: center;
  line-height: 1.3;
  /* min-width: 119px; */
  border-radius: 4px;
}

.ranking-table-o tr td {
  min-width: 119.8px;
}

.ranking-table-o th {
  background: #a6245b;
  font-weight: 700;
  position: sticky;
  left: 0;
  color: #fff;
  z-index: 1;
}

.ranking-table-o td {
  background: #fff5f9;
  padding: 1.5rem;
  white-space: nowrap;
}

.ranking-table-o img {
  width: auto;
  /* max-height: 93px; */
}

.ranking-table-o td .button {
  font-size: 2rem;
  text-decoration: none;
}

.ranking-table-o em {
  font-size: 1.3rem;
  font-weight: 700;
}

.ranking-table-o small {
  font-size: 0.85rem;
}

.table-ttl-o {
  border: none !important;
  color: #fff;
  background: #ffa311 !important;
  font-size: 1.5rem !important;
}

.ranking-table-o td .rank-ttl {
  display: block;
  text-decoration: none;
  position: relative;
}

.ranking-table-o td .rank-ttl .rank-nam {
  position: absolute;
  top: -10px;
  left: -7px;
  width: 28px;
}

.ranking-table-o td .rank-ttl p {
  margin: 0;
  font-size: 1.2rem;
  color: #000;
  background: #fff;
  /* height: 75px; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  width: 100%;
  min-width: 85px;
  height: 40px;
}

@media (min-width: 768px) {
  .ranking-table-o td .rank-ttl .rank-nam {
    position: absolute;
    top: 0px;
    left: 0;
    width: 37px;
  }
}

/* auditor */
.auditor {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #df97a8;
  overflow: hidden;
}

.auditor__head {
  background: #df97a8;
  color: #fff;
  text-align: center;
  padding: 8px;
}

/* point */
.point-list-item {
  background: #ffeaf0;
  border-radius: 4px;
}

.point-list-item:not(:last-child) {
  margin-bottom: 8px;
}

.point-number {
  width: 48px;
  height: 48px;
  font-weight: 700;
  color: #ffa311;
  font-size: 2rem;
}

.point-detail {
  padding: 16px;
}

.point-detail__title {
  font-weight: 700;
}

.point-diagonal {
  transform: rotate(45deg);
}

/* box */
.box {
  width: 100%;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px dashed #df97a8;
}

.box-header {
  color: #fff;
  background: #f4acbb;
  font-weight: 700;
  box-shadow: -8px 0px 0px 8px #f4acbb inset, 0px 0px 0px 9px #cc5075 inset;
}

.box-title-name {
  font-weight: 700;
  font-size: 1.25rem;
}

.box-title-catch {
  font-size: 0.75rem;
}

.box-evaluation {
  box-shadow: 0px 0px 0px 4px #ffeaf0 inset, 0px 0px 0px 6px #fff inset;
  background: #ffeaf0;
  width: 200px;
}

.box-evaluation-result {
  font-size: 0.75rem;
}

.box-evaluation-result em {
  font-size: 1.25rem;
  font-weight: 700;
}

.box-sub-title {
  color: #fff;
  background: #1b3667;
  font-weight: 700;
}

.box-table {
  width: 100%;
  font-size: 0.75rem;
  border-collapse: separate;
  border-spacing: 2px;
  border: 4px solid #df97a8;
}

.box-table th,
.box-table td {
  padding: 8px;
  border: 1px solid #df97a8;
  width: calc(100% / 4);
}

.box-table th {
  background: #ffeaf0;
  font-weight: 700;
}

.box-point-list-item:not(:last-child) {
  margin-bottom: 8px;
}

/* word of mouth */
.word-of-mouth {
  font-size: 0.75rem;
  border-bottom: 1px solid #f4acbb;
  margin-bottom: 8px;
}

/* used */
.used-box {
  width: 100%;
  margin: 0 auto;
  border: 3px solid #ffd507;
  padding: 10px;
  background: #fffbe8;
}

.use-flex {
  width: 80%;
  margin: 16px auto;
}

.use-flex img {
  width: 50%;
}

.used-ttl {
  font-size: 1.8rem;
  color: #ffd507;
  font-weight: bold;
  text-align: center;
  padding: 4px;
}

/* detail-wapper */
.detail-wapper {
  width: 100%;
}

.detail-img {
  width: 100%;
}

.detail-img_col {
  padding: 10px 10px 0 0;
}

.detail-img_col div {
  padding-left: 10px;
}

.detail-table-wapper {
  width: 100%;
}

.detail-table-wapper table tr th,
.detail-table-wapper table tr td {
  padding: 3px;
  border-collapse: collapse;
  border: 1px solid #333;
}

.detail-table-wapper table tr th {
  background: #ededed;
  color: #000;
  font-weight: 700;
}

.detail-table-wapper table tr td {
  background: #fff;
  padding-left: 20px;
  line-height: 1.6;
}

.detail-table-wapper02 {
  width: 100%;
}

.detail-table-wapper02 table {
  border-collapse: separate;
  border-spacing: 4px;
}

.detail-table-wapper02 table tr td {
  width: 50%;
  background: #fff;
  text-align: center;
  padding: 8px;
  font-weight: 700;
}

@media (max-width: 575.98px) {

  .detail-table-wapper table tr th,
  .detail-table-wapper table tr td {
    font-size: 1.2rem;
  }

  .detail-table-wapper02 table tr td {
    font-size: 1rem;
  }

  .ranking-table-o th,
  .ranking-table-o td {
    font-size: 1.6rem;
  }

  .use-flex {
    width: 100%;
  }
}

.mouth-ttl {
  text-align: center;
  padding: 8px;
  background: #ff7d6a;
  font-weight: bold;
  color: #fff;
}

.mouth-wapper {
  border: 1px solid #ff7d6a;
}

.mouth-wapper .mouth-box .mouth-inner-ttl {
  padding: 8px;
  background: #fff2ed;
}

.mouth-wapper .mouth-box .mouth-inner-box {
  padding: 8px;
  font-size: 1.4rem;
}

.link-txt {
  font-weight: bold;
  font-size: 110%;
  color: #f46d90;
  text-decoration: underline;
}

.search__ttl {
  width: 95%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
  background: #18c2bf;
  padding: 8px 0;
  border-bottom: solid 5px #069e9b;
  border-right: solid 5px #069e9b;
  position: relative;
  font-weight: bold;
  border-radius: 1rem;
}

.search-box {
}

.fa-plus {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

@media (min-width: 576px) {
  .search__ttl {
    font-size: 2rem;
    padding: 10px 0;
  }
}

/* recbox-wrapper */
.recbox-wrapper {
  position: relative;
  padding-bottom: 0;
  background: #fbffe1;
  border-right: solid 3px #ccee00;
  border-bottom: solid 3px #ccee00;
}

.recbox-wrapper__list ul {
  margin: 0;
}

.recbox-wrapper__list ul li {
  position: relative;
  padding: 10px 10px 10px 20px;
  line-height: 1.8;
  border-bottom: dashed 2px #ccee00;
  list-style: none;
}

.recbox-wrapper__list ul li:before {
  content: '▶';
  position: absolute;
  left: -4px;
  display: inline-block;
  width: 22px;
  height: 22px;
  color: #000;
}

.recbox-wrapper__list ul li:last-child {
  border-bottom: initial;
}

/* 口コミ */
.review-wrapper {
  background: #fbffe1;
  position: relative;
}

.review-wrapper__ttl,
.point__ttl {
  width: 100%;
  position: relative;
}

.review-wrapper__ttl::after,
.point__ttl::after {
  content: '';
  height: 50%;
  background: #fff;
  width: calc(100% + 5px);
  position: absolute;
  top: 0;
  left: 0;
}

.review-wrapper__ttl h2,
.point__ttl h2 {
  font-weight: bold;
  background: #ccee00;
  color: #1b3664;
  max-width: 300px;
  text-align: center;
  font-weight: bold;
  line-height: 1.6;
  padding: 10px;
  margin: 0 auto 20px 0;
  position: relative;
  z-index: 1;
}

.point__ttl h2 {
  background: #eefe84;
}

.recbox-wrapper .reviewbox:last-child {
  border-bottom: none;
}

.reviewbox__img {
  width: 15%;
  max-width: 100%;
}

.reviewbox__name {
  margin-left: 15px;
}

.review-star {
  color: #ffc000;
}

.reviewbox__name p {
  margin: 0;
  font-size: 1.5rem;
}

.review-name {
  font-weight: bold;
}

.reviewbox__txt {
  padding-left: 1rem;
}

.reviewbox__txt p {
  margin: 0;
}

/*------------------ column ------------------ */
.column-ttl {
  position: relative;
  padding: 4px 0 4px 30px;
  background: #feeef2;
  font-weight: bold;
  text-align: left;
  margin-top: 2rem;
}

.column-ttl:before,
.column-ttl:after {
  position: absolute;
  display: block;
  content: '';
  width: 12px;
  height: 12px;
}

.column-ttl:before {
  top: 9px;
  left: 3px;
  background: #d2045b;
}

.column-ttl:after {
  top: 16px;
  left: 9px;
  background: #db80a7;
}

.column-ttl-sp {
  font-size: 1rem;
}

.column-ttl-sp02 {
  font-size: 0.95rem;
}

/* survey-result */
.result-title {
  font-weight: 700;
  padding-left: 25px;
  font-size: 1.8rem;
  position: relative;
}

.result-title__q {
  color: #d2045b;
  position: absolute;
  left: 0;
  top: 0;
  top: -0.25rem;
  font-size: 2rem;
}

.result-table {}

.result-table th {
  text-align: left;
  width: 50%;
  padding-top: 4px;
  padding-bottom: 4px;
}

.result-table td {
  padding-top: 4px;
  padding-bottom: 4px;
  position: relative;
}

.result-table td span {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 1;
}

.result-table td::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background-color: #db80a7;
  height: 90%;
  width: 100%;
}

.result-table .result-table-bar-4::after {
  width: 4%;
}

.result-table .result-table-bar-5::after {
  width: 5%;
}

.result-table .result-table-bar-30::after {
  width: 30%;
}

.result-table .result-table-bar-70::after {
  width: 70%;
}


/* 検索ページレイアウト変更 */

.item_box {
  text-align: center;
  margin: 0 auto 7%;
  background: #fff;
  padding: 16px;
  border-radius: 10px;
}

.item_name {
  font-size: 22px;
  color: #ee1600;
  padding: 2% 0 0;
  margin: 0;
  line-height: 1.4;
  font-weight: bold;
  text-align: left;
}

.item_box {
  max-width: 100%;
  height: auto;
}

.item_box img {
  margin:0;
  width: 100%;
}

/*検索結果*/

.item_box-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 10px;
  align-items: center;
 /* border-top: 1px solid #cdbac2;
  border-bottom: 1px solid #cdbac2; */
}

.item_box-ttl {
  background: #f5f4ef;
  color: #414140;
  text-align: left;
  font-weight: bold;
  font-size: .7rem;
  width: 40%;
  padding: 7px;
  line-height: 1.3;
  
}
.item_box-ttl2 {
  background: #f5f4ef;
  color: #414140;
  text-align: left;
  font-weight: bold;
  font-size: .7rem;
  min-width: 40%;
  min-height: 80px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 5px;
  padding-right: 5px;
  line-height: 1.3;
}

.item_box-item {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  font-weight: bold;
  margin-bottom: 2px;
  align-items: center;
}


/*.item_box-item:nth-child(2),
.item_box-item:nth-child(5) {
  border-right: 1px solid #cdbac2;
  border-left: 1px solid #cdbac2;
}*/

.item_box-desc {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  text-align: left;
  padding: 6px;
  font-size: .8rem;
  font-weight: bold;
}

.item_box-desc2 {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  text-align: left;
  padding: 3px;
  font-size: .8rem;
  font-weight: bold;
}

.item_box-desc span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main {
  padding: 0 15px;
}



.sort {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

@media screen and (max-width: 777px) {
  .sort {
    justify-content: center;
  }
}

.sort-btn {
  background: #fff;
  border-radius: 60px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 5px;
  /* width: 60px; */
  padding: 1px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size: 1.6rem;
  border: 1px solid #000;
  cursor: pointer;
  font-weight: bold;
}

.sort-btn:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #313131;
  border-right: 2px solid #313131;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 48%;
  right: 8%;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.sort-btn.active {
  background: #000;
  color: #fff;
}
.custom-select-wrap {
  padding: 0 2%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 20px;
}
.custom-select-ttl {
  font-weight: bold;
  flex-shrink: 0;
  color: #fff;
}


.custom-select {
  overflow: hidden;
  width: 79%;
  text-align: center;
}
.custom-select select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.custom-select select::-ms-expand {
    display: none;
}
.custom-select {
  position: relative;
  border-radius: 2px;
  border: 2px solid rgb(87, 87, 87);
  border-radius: 10px;
  background: #f1f1f1;
}
.custom-select::before {
  position: absolute;
  top: 17px;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
  pointer-events: none;
  z-index: 2;
}
.custom-select::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: block;
  content: '';
  pointer-events: none;
  background: rgb(87, 87, 87);
}


.custom-select select {
  font-size: 15px;
  font-weight: bold;
  padding: 0 38px 0 15px;
  height: 40px;
  color: black;
}

/*.item_image-box {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}*/

.item_image-box {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  flex-direction: column-reverse;
  justify-content: center;
}



.item_image-box.none-text {
  justify-content: center;
}
.item_image-img {
  width: 60%;
  flex-shrink: 0;
  margin-bottom: 10px;
  margin-top: 10px;
  border: 1px solid #dfdfdf;
}

.item_image-img :hover {
 opacity: .6;
}

.search-box-content {
  padding: 15px;
}
.search-catch {
  text-align: left;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
}
.search-catch span {
  color: rgb(255, 60, 6);
  background:linear-gradient(transparent 60%, #ff6 60%);
  font-size: 1.2rem;
  line-height: 1.2;
}


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

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

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

.star5_rating[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star5_rating[data-rate="4.9"]:after{ width: 70%; } /* 星4.9 */
.star5_rating[data-rate="4.7"]:after{ width: 68%; } /* 星4.7 */
.star5_rating[data-rate="4.6"]:after{ width: 67%; } /* 星4.6 */
.star5_rating[data-rate="4.5"]:after{ width: 65%; } /* 星4.5 */
.star5_rating[data-rate="4.4"]:after{ width: 64%; } /* 星4.5 */
.star5_rating[data-rate="4.3"]:after{ width: 63%; } /* 星4.3 */
.star5_rating[data-rate="4.2"]:after{ width: 62%; } /* 星4.2 */
.star5_rating[data-rate="4.1"]:after{ width: 61%; } /* 星4.1 */
.star5_rating[data-rate="4.0"]:after{ width: 58%; } /* 星4.0 */
.star5_rating[data-rate="3.9"]:after{ width: 56%; } /* 星3.9 */
.star5_rating[data-rate="3.8"]:after{ width: 55%; } /* 星3.8 */
.star5_rating[data-rate="3.7"]:after{ width: 54%; } /* 星3.7 */
.star5_rating[data-rate="3.6"]:after{ width: 52%; } /* 星3.6 */
.star5_rating[data-rate="3.5"]:after{ width: 51%; } /* 星3.5 */
.star5_rating[data-rate="3.4"]:after{ width: 50%; } /* 星3.4 */
.star5_rating[data-rate="3.3"]:after{ width: 49%; } /* 星3.3 */
.star5_rating[data-rate="3.2"]:after{ width: 48%; } /* 星3.2 */
.star5_rating[data-rate="3.1"]:after{ width: 45%; } /* 星3.1 */
.star5_rating[data-rate="3.0"]:after{ width: 43%; } /* 星3.0 */
.star5_rating[data-rate="2.9"]:after{ width: 40%; } /* 星2.9 */
.star5_rating[data-rate="2.8"]:after{ width: 38%; } /* 星2.8 */
.star5_rating[data-rate="1.5"]:after{ width: 22%; } /* 星1.5 */
.star5_rating[data-rate="1"]:after{ width: 18%; } /* 星1 */
.star5_rating[data-rate="0.5"]:after{ width: 7.5%; } /* 星0.5 */
.star5_rating[data-rate="0"]:after{ width: 0%; } /* 星0 */

.no-center {
  text-align: left !important;
}
.osusume-box {
  text-align: left;
  display: flex;
  align-items: center;
}

.osusume-ttl{
  font-weight: bold;
  font-size: 13px;
  padding-right: 5px;
}
.osusume-num {
  color: rgb(245, 71, 71);
  font-weight: bold;
  padding-left: 5px;
}
.item_text {
  text-align: left;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 10px;
}




@media (min-width: 751px) {

  .item_image-box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-direction: row-reverse;
    justify-content: center;
  }

  .search-catch {
    text-align: left;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.45;
  }

  .search-catch span {
    color: rgb(255, 60, 6);
    background:linear-gradient(transparent 60%, #ff6 60%);
    font-size: 1.8rem;
  }

  .item_image-img {
    max-width: 250px;
    height: auto;
    flex-shrink: 0;
    border: 1px solid #dfdfdf;
    margin-right: 10px;
    margin-bottom: 20px;
  }

  .item_box-ttl {
    background: #f5f4ef;
    color: #414140;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    width: 40%;
    padding: 5px;
    line-height: 1.3;

  }
  .item_box-ttl2 {
    background: #f5f4ef;
    color: #414140;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    width: 40%;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 5px;
    padding-left: 5px;
    line-height: 1.3;
  }
  
  .item_box-item {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    font-weight: bold;
    margin-bottom: 2px;
    align-items: center;
  }

  .item_box img {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    font-weight: bold;
    margin-bottom: 2px;
    align-items: center;
  }

  .item_box-desc {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.3;
    text-align: left;
    padding: 35x;
    font-size: 1.1rem;
    font-weight: bold;
}
.item_box-desc2 {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  text-align: left;
  padding: 35x;
  font-size: 1.1rem;
  font-weight: bold;
}
.custom-select-wrap {
  padding: 0 2%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.custom-select-ttl {
  margin-right: 10px;
}
}


#scrollToTopBtn {
  transition: opacity 0.3s ease;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgb(50, 51, 51);
  color: #fff;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
#scrollToTopBtn::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.4em 0.375em;
  border-bottom-color: currentColor;
  border-top: 0;
}

.under_search {
  max-width: 750px;
  margin: 0 auto;
}

.br-sp {
  display: block;
}