@charset "UTF-8";

/* ------------------------------------------------------------
 独自リセット・共通スタイル
------------------------------------------------------------ */

html {
  scroll-behavior: smooth;
}
/*for SP*/
@media screen and (max-width:750px) {
  .font-size-S {
      font-size: 14px;
  }
  .font-size-M {
      font-size: 16px;
  }
  .font-size-L {
      font-size: 24px;
  }
}

/*for PC*/
@media screen and (min-width:750px) {
  .font-size-S {
      font-size: 18px;
  }
  .font-size-M {
      font-size: 24px;
  }
  .font-size-L {
      font-size: 40px;
  }
}

body {
  /* 游ゴシック体 */
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  background-image: url("../img/back.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  background-attachment: fixed;
}

a {
  text-decoration: none;
  transition-duration: 0.2s;
}
@media (min-width: 960px) {
  a:hover {
    transition-duration: 0.2s;
  }
}

@media (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
p {
  line-height: 1.6em;
  color: #333333;
}

h2 {
  color: #333333;
}

h3 {
  color: #333333;
}

h4 {
  color: #333333;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

section img {
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  max-width: 750px;
  height: 100%;
}

*:focus {
  outline: none;
}

/*PCでは無効（改行しない）*/
.br-sp{
  display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
  .br-sp{
      display: block;
  }
}

.topic {
  background:linear-gradient(transparent 50%, #ff6 70%);
  font-weight: bold;
}

.red {
  color: #fa4141;
  font-weight: bold;
}

.star5_rating{
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
  color: #CCCCCC; /* グレーカラー 自由に設定化 */
  /*font-size: 30px; フォントサイズ 自由に設定化 */
}

.star5_rating:before, .star5_rating:after{
  content: '★★★★★';
}

.star5_rating:after{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #ffcf32; /* イエローカラー 自由に設定化 */
}

.star5_rating[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star5_rating[data-rate="4.5"]:after{ width: 90%; } /* 星4.5 */
.star5_rating[data-rate="4"]:after{ width: 80%; } /* 星4 */
.star5_rating[data-rate="3.5"]:after{ width: 70%; } /* 星3.5 */
.star5_rating[data-rate="3"]:after{ width: 60%; } /* 星3 */
.star5_rating[data-rate="2.5"]:after{ width: 50%; } /* 星2.5 */
.star5_rating[data-rate="2"]:after{ width: 40%; } /* 星2 */
.star5_rating[data-rate="1.5"]:after{ width: 30%; } /* 星1.5 */
.star5_rating[data-rate="1"]:after{ width: 20%; } /* 星1 */
.star5_rating[data-rate="0.5"]:after{ width: 10%; } /* 星0.5 */
.star5_rating[data-rate="0"]:after{ width: 0%; } /* 星0 */

/* ------------------------------------------------------------
  body-wrapper
------------------------------------------------------------ */
.body-wrapper {
  position: relative;
  overflow-x: hidden;
  background: #fff;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 0 30px rgba(62, 35, 48, 0.1);
}

/* ------------------------------------------------------------
  header
------------------------------------------------------------ */
.header {
  background-color: #fff;
  width: 100%;
  height: 52px;
  max-width: 600px;
}

/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 52px;
  padding: 0 0 10px 0;
  clear: both;
  background-color: #fff;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #e79096;
  opacity: 0;
  transition: 0.5s;
}

.menu li {
  border-top: 1px solid rgb(75, 75, 75);
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #ddd;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #ddd;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
  font-size: 20px;
  width: 50%;
}

/* ------------------------------------------------------------
  fv
------------------------------------------------------------ */


/* ------------------------------------------------------------
  main
------------------------------------------------------------ */
.comparison_table h2{
 width: 65%;
 margin: auto;
 margin-top: -2%;
}
.comparison_table p {
 background-color: rgba(241, 215, 105, 0.8);
 border-radius: 5px;
 width: 80%;
 margin: 3% auto;
 padding: 2%;
 text-align: center;
}
/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  width: 98%;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/3);
  height: 50px;
  border-bottom: 3px solid #e79096;
  background-color: #e79096;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  clear: both;
  overflow: hidden;
  border: #e79096 2px solid;
  border-top: none;
  padding: 3% 0;
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#job:checked ~ #job_content,
#service:checked ~ #service_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #fff;
  color: #e79096;
  border: #e79096 2px solid;
}

.comparison_table table {
  width: 97%;
  border-collapse:collapse;
  margin: auto;
}
.comparison_table th, td {
  border: 1px solid #000;
  padding: 10px 2px;
  text-align: center;
  position: relative; /* relative positioning for th */
}
.comparison_table td {
  width: 20%;
  font-size: .8rem;
  color: #333;
}
.comparison_table td:nth-child(1) {
  width: 25%;
}
.comparison_table td:nth-child(1) img {
  width: 100%;
  height: 10%;
}
.comparison_table th{
  background-color: #f2f2f2;
  font-size: .7rem;
  color: #333;
}
.comparison_table th.sortable {
  background-color: #f2f2f2;
  cursor: pointer;
  padding-bottom: 20px; /* Make space for the triangle */
}
.comparison_table th.sortable::after {
  content: "▼";
  position: absolute;
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Adjust horizontal centering */
  bottom: 5px; /* Distance from the bottom of the cell */
  font-size: 0.8em;
  color: #ccc; /* Gray color for inactive */
}
.comparison_table th.sort-asc::after {
  content: "▲";
  color: #000; /* Black color for active */
}
.comparison_table th.sort-desc::after {
  content: "▼";
  color: #000; /* Black color for active */
}

.mark-box {
  position: relative;
}
.mark-box:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: #ebd272 transparent transparent transparent;
}
.mark-box:after {
  position: absolute;
  content: "1";
  display: block;
  font-size: 11px;
  font-weight: bold;
  white-space: pre;
  color: #fff;
  top: 5px;
  left: 5px;
  text-align: center;
  z-index: 2;
  line-height: 1.2;
}
.top2:before {
  border-color: #c1c5c8 transparent transparent transparent;
}
.top2:after {
  content: "2";
}
.top3:before {
  border-color: #cd962a transparent transparent transparent;
}
.top3:after {
  content: "3";
}
.star {
  color: #fa4141;
  font-weight: bold;
  text-decoration: underline;
}
.doble_circle {
  font-weight: bold;
  text-align: center;
  padding: 18px 0;
  background-image: url(../img/doble_circle.svg);
  background-position-x: center;
  background-position-y: center;
  background-size: 35px;
  background-repeat-x: no-repeat;
  background-repeat-y: no-repeat;
  background-repeat: no-repeat;
}
.circle {
  font-weight: bold;
  text-align: center;
  padding: 18px 0;
  background-image: url(../img/circle.svg);
  background-position-x: center;
  background-position-y: center;
  background-size: 38px;
  background-repeat-x: no-repeat;
  background-repeat-y: no-repeat;
  background-repeat: no-repeat;
}
td a {
  background-color: #20c3f6;
  border-bottom: #005fb5 3px solid;
  color: #fff;
  font-weight: bold;
  padding: 5% 15%;
  border-radius: 5px;
}

.hidden-row {
  display: none;
}
.showMoreContainer {
  text-align: center;
}
.showMoreBtn {
  background: none;
  border: none;
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
}


.point_content {
  background-color: #feeceb;
  padding-bottom: 10%;
  text-align: center;
  position: relative;
}
.note {
  width: 90%;
  margin: 5% auto;
}
.point_inner {
  width: 80%;
  margin: auto;
  text-align: left;
  position: absolute;
  top: 33%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.point_box {
  display: flex;
  gap: 5%;
  align-items: center;
  margin-bottom: 5%;
}
.point_box span {
  width: 100%;
  max-width: 70px;
  height: 70px;
  background-color: #e79096;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}
.point_box p {
  text-align: left;
  font-weight: bold;
}
@media screen and ( min-width:750px) {
  .point_inner {
    width: 75%;
    top: 38%;
  }
  .point_box span {
    max-width: 100px;
    height: 100px;
  }
}

.pickup {
  padding: 10% 0;
}
.carousel {
  position: relative;
  width: 95%;
  overflow: hidden;
  margin: 5% auto;
}
.carousel-track {
  display: flex;
  gap: 5%;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  cursor: grab;
}
.carousel-track:active {
  cursor: grabbing;
}
.carousel-slide {
  min-width: 50%; /* 2つのスライドを横並びで表示 */
  box-sizing: border-box;
}
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 5px;
  cursor: pointer;
  font-size: .8rem;
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}
.pickup_box {
  background-color: #fff5f5;
  border: 2px solid #e79096;
  border-radius: 10px;
  min-width: 180px;
  margin: 5% auto;
  text-align: center;
}
.pickup_box h3 {
  background-color: #e79096;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: #fff;
  padding: 2%;
}
.pickup_box_txt {
  width: 90%;
  margin: 8% auto;
  text-align: left;
}
.pickup_contents {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  margin: 0 0 5% 8%;
}
.pickup_contents span {
  background-color: #f1d769;
  color: #fff;
  border-radius: 5px;
  min-width: 60px;
  padding: 2%;
}
.pickup_box a {
  display: block;
  width: 90%;
  background-color: #20c3f6;
  border-bottom: #005fb5 solid 3px;
  border-radius: 50px;
  color: #fff;
  padding: 3%;
  font-weight: bold;
  margin: 10% auto;
}


.rank_box {
  margin: 5% auto 15%;
  padding: 0 3%;
}
.ranking1 {
  position: relative;
}
.ranking1::before {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 35%;
  left: 0;
  right: 0;
  background-color: #feeceb;
  transform: skewY(-20deg);
  z-index: 0;
}
.ranking2 {
  position: relative;
}
.ranking2::before {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 35%;
  left: 0;
  right: 0;
  background-color: #cdf1f9;
  transform: skewY(-20deg);
  z-index: 0;
}
.ranking3 {
  position: relative;
}
.ranking3::before {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 35%;
  left: 0;
  right: 0;
  background-color: #fffbe3;
  transform: skewY(-20deg);
  z-index: 0;
}

.rank_title {
  position: relative;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(231, 144, 150, 1);
  padding: 2% 2% 2% 25%;
  margin: auto;
  border-radius: 5px;
}
.ranking2 .rank_title {
  box-shadow: 0px 0px 10px 0px rgba(32, 195, 246, 1);
}
.ranking3 .rank_title {
  box-shadow: 0px 0px 10px 0px rgba(241, 215, 105, 1);
}
.rank_title img {
  position: absolute;
  width: 80px;
  height: 70px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 0%;
}
.cp {
  position: relative;
  margin: 3% auto;
}
.recommend_box {
  position: relative;
  background-color: #fff;
  padding: 2%;
}
.recommend_box p {
  margin-top: 3%;
}

.detail {
  position: relative;
  width: 100%;
  border-collapse:collapse;
  margin: 3% auto;
  background-color: #fff;
}
.detail th,.detail td {
  border: 1px solid #e79096;
  padding: 5px 2px;
  text-align: center;
  position: relative; /* relative positioning for th */
}
.ranking2 .detail th {
  border: 1px solid #81d8f4;
}
.ranking2 .detail td {
  border: 1px solid #81d8f4;
}
.ranking3 .detail th {
  border: 1px solid #f1d769;
}
.ranking3 .detail td {
  border: 1px solid #f1d769;
}

.detail th {
  background-color: #e79096;
  color: #fff;
  width: 20%;
  font-size: .9rem;
}
.ranking2 .detail th {
  background-color: #81d8f4;
}
.ranking3 .detail th {
  background-color: #f1d769;
}
.detail span {
  display: inline-block;
  margin: 1px;
  font-size: .8rem;
  font-weight: bold;
  border-radius: 3px;
  padding: 2% 1%;
  width: 80px;
}
@media screen and ( min-width:750px) {
  .detail span {
    width: 120px;
  }
}
.on {
  background-color: #fff5f5;
  border: #e79096 1px solid;
  color: #e79096;
}
.off {
  background-color: #fff;
  color: #cccccc;
  border: #cccccc 1px solid;
}
.button_solid015 {
  text-align: center;
}
.button_solid015 p {
  color: #333333;
  letter-spacing: 0.04rem;
  display: inline-block;
  position: relative;
  font-size: 0.9rem;
}
.button_solid015 p:before,
.button_solid015 p:after {
  display: inline-block;
  position: absolute;
  top: 45%;
  width: 20px;
  height: 1px;
  border-radius: 2px;
  background-color: #333333;
  content: "";
}

.button_solid015 p:before {
  left: -30px;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
}

.button_solid015 p:after {
  right: -30px;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
}

.shiny-btn2 {
  position: relative;
  display: inline-block;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 20px 15px;
  width: 90%;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  font-size: 20px;
  background: #fc6b6b;
  filter: drop-shadow(0px 2px 4px #ccc);
  border-radius: 10px;
  line-height: 1.5rem;
  border-bottom: solid 5px #d82525;
  overflow: hidden;
  animation: pekopeko 2s infinite;
}
@keyframes pekopeko {
  0% {
    top: 0px;
  }

  10% {
    top: 3px;
  }

  20% {
    top: 0px;
  }

  30% {
    top: 3px
  }

  40% {
    top: 0px;
  }
}
.shiny-btn2:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}
.shiny-btn2::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  transition: 0.2s;
  animation: shiny-btn2 4s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn2 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}


.form__body {
  border: #e79096 2px solid;
  width: 95%;
  margin: -10% auto 0;
  border-radius: 5px;
  padding: 10% 3% 3%;
}
.select-box {
  text-align: center;
}

.form__body select {
  padding: 2%;
  font-size: .8rem;
  width: 105px;
  margin-bottom: 2%;
  color: #333333;
}
@media screen and ( min-width:750px) {
  .form__body select {
    width: 150px;
  }
}
.checkbox {
  background-color: #fff5f5;
  text-align: center;
  padding: 3% 3% 0;
  margin-top: 5%;
}
.checkbox p {
  color: #e79096;
  font-weight: bold;
  margin-bottom: 3%;
}
.checkbox p span {
  color: #333333;
  font-weight: 100;
  font-size: .7rem;
}
.checkbox label {
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 3%;
  font-size: .9rem;
}
.checkbox_contents {
  display: flex;
}
.form_button {
  text-align: center;
  margin-top: 5%;
}
.form__body button {
  background-color: #20c3f6;
  color: #fff;
  font-weight: bold;
  border: none;
  border-bottom: 5px solid #005fb5;
  border-radius: 50px;
  min-width: 250px;
  padding: 3%;
  cursor: pointer;
}

.result_h2 {
  padding: 5% 5% 0;
}

.loading {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
}
.loading.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms;
}
.loading .loading_circle {
  display: block;
  position: relative;
  top: calc( 50% - 20px );
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 8px solid #e0e0e0;
  border-top: 7px solid #e79096;
  border-radius: 50px;
  animation: loading 700ms linear 0ms infinite normal both;
}
@keyframes loading {
  0% { transform: rotate( 0deg ); }
  100% { transform: rotate( 360deg ); }
}


.column{
  margin: 10% auto;
}
.column_box {
  display: flex;
  gap: 5%;
  width: 90%;
  margin: 5% auto;
  align-items: center;
  padding-bottom: 3%;
  border-bottom: 1px solid #cccccc;
}
.column_box img {
  width: 30%;
}
.column_box a {
  color: #333333;
}
.column p {
  text-align: center;
}
.column p a {
  color: #005fb5;
  text-decoration: underline;
}
/* ------------------------------------------------------------
  footer
------------------------------------------------------------ */
.footer {
  text-align: center;
  padding: 1rem 0 0.5rem;
  font-size: 0.9rem;
  background: #e79096;
}

.footer p {
  margin-top: 5%;
  font-size: 0.9rem;
  color: #fff;
}
.footer a {
  color: #fff;
}



/* ------------------------------------------------------------
  column
------------------------------------------------------------ */
.column_inner {
  padding: 5%;
}

.column_inner h2 {
  padding: 1rem;
  border-left: 5px solid #e79096;
  background: #f4f4f4;
}
.column_inner p {
  padding: 2%;
  margin-bottom: 5%;
  line-height: 1.5rem;
}
.column_inner h3 {
  border-bottom: 3px solid #e79096;
}
.column_inner ul {
  padding: 0 5% 5%;
}

@media screen and ( min-width:750px) {
  .column_inner p {
    line-height: 1.8rem;
  }
}

/* ------------------------------------------------------------
  以下運営者情報ページ
------------------------------------------------------------ */
.admin {
  max-width: 800px;
  padding-top: 20px;
  text-align: center;
  margin: auto;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .admin {
  padding-top: 80px;
}
}
.admin_page {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-bottom: 50px;
}

.admin_page h3 {
  padding: 0.5rem 2rem;
  border-left: 5px solid #000;
  background: #f4f4f4;
  margin-top: 30px;
  text-align: left;
}

.admin_page p {
  text-align: left;
  margin-top: 10px;
  padding-left: 10px;
  font-size: 16px;
}

.privacy_text {
  margin-top: 20px;
  border: solid 1px gray;
  padding: 10px;
  font-size: 12px;
  text-align: left;
}