@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&display=swap');

body {
  font-size: 16px;
  color: #282b45;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background-color: #eeeeee;
  letter-spacing: 0.05em;

}

a {
  transition: 0.3s ease-in-out;
  text-decoration: none;
  background-color: transparent;
}

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

img {
  width: 100%;
}

a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
}

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


@media (max-width:767px) {
  .inner{text-align: center;}
  .inner img {
    max-width: 90%;
  }

  .inner2 {
    padding-top: 2em;
  }
}

@media (min-width:768px) {
  .inner {
    width: 80%;
    margin: auto;
  }

  .inner2 {
    width: 80%;
    margin: auto;
    padding-top: 40px;
  }
}

/*header*/

.header {
  padding: 10px 0;
}

.header-sub {
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}

.header-sub span {
  color: #ff7495;
}

.header-main {
  font-size: 23px;
  text-align: center;
  font-weight: bold;
}

.main-ttl {
  padding: 10px 0;
}

.top-rank {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.top-rank__item {
  width: 32%;
}

.top-rank__item a {
  color: #333;
}

.top-rank-ico {
  width: 30px;
  margin: 0 auto;
}

.top-rank-name {
  text-align: center;
  font-weight: bold;
  margin: 5px 0;
}

.top-rank-logo {
  border: 1px solid rgb(213, 213, 213);
  padding: 5px;
}

.point3-content {
  padding-top: 20px;
  padding-bottom: 20px;
}


.rank-content-ttl {
  margin-bottom: 20px;
}

.rank-box {
  margin: 0 10px;
  margin-bottom: 30px;
  border-bottom: solid 1px #cfcfcf;
}

.rank-box-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.rank-ico {
  width: 40px;
  margin-right: 15px;
}

.shop-name a {
  font-size: 26px;
  font-weight: 700;
  color: #0168ec;
}

.rank-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 700px;
}

.rank-table th,
.rank-table td {
  text-align: center;
  font-size: 16px;
  background-color: #FFF;
  width: 33%;
}

.rank-table th {
  width: 22%;
  background: #c9e2ee;
  font-weight: 600;
  color: #282b45;
  border: 1px solid #b2d1e0;
  padding: 0.7em;
  vertical-align: middle;
}

.rank-table td {
  font-weight: 600;
  border: 1px solid #b2d1e0;
  padding: 0.7em;
  vertical-align: middle;
}

ul.rank-flex {
  width: 100%;
  border-top: 1px solid #dcc7cb;
  border-left: 1px solid #dcc7cb;
  border-right: 1px solid #dcc7cb;
}

ul.rank-flex ul {
  display: flex;
  font-size: 13px;
  font-weight: 600;
}

ul.rank-flex ul.ul01 {
  border-bottom: 0;
}

ul.rank-flex ul li {
  flex-grow: 1;
  width: 25%;
  box-sizing: border-box;
  border-bottom: 1px solid #dcc7cb;
  border-right: 1px solid #dcc7cb;
  text-align: center;
  padding: 10px;
}

ul.rank-flex ul li:last-child {
  border-right: none;
}

ul.rank-flex ul.ul01 li {
  background-color: #efdcdf;

}

ul.rank-flex .kind {
  color: #6f4d53;
}

.mt20 {
  margin-top: 20px;
}
.mb20{margin-bottom: 20px;}

.txt_red {
  color: #e3130e;
  font-weight: 700;
}

.txt_cap {
  color: #282b45;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 10px;
  ;
}

.slider {
  opacity: 0;
}

.slider.slick-initialized {
  opacity: 1;
}


/*cta-btn*/

@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }

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

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

.cta-btn {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #59b6a1;
  box-shadow: 4px 4px #429f8a;
  cursor: pointer;
  overflow: hidden;
  font-size: 18px;
  border-radius: 50px;
  margin: 10px 0 30px;
}

.gtm-tomahoku-2 {
  padding: 10px 0;
}

.cta-btn i {
  padding-left: 10px;
}

.cta-btn::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}


.ichioshi-ttl {
  margin: 20px 0 20px;
}

.kuchikomi-ttl {
  margin: 20px 0 20px;
}

@media (min-width:768px) {
  .kuchikomi-ttl {
    margin-top: 60px;
  }
}



.ico-wrap {
  position: absolute;
  right: 20px;
  top: 20px;
}

.taisaku-ttl {
  font-size: 14px;
  border-left: none;
  border-right: none;
  padding: 20px 20px;
  cursor: pointer;
  text-align: center;
  position: relative;
  margin: 20px 0 15px 0;
  background-color: #f4fb85;
  font-weight: 500;
}

.taisaku-content {
  display: none;
  border: 1px solid #f4fb85;
  padding: 10px;
  font-size: 14px;
  background: #fefff5;
}

.search-ttl {
  font-size: 14px;
  border-left: none;
  border-right: none;
  padding: 20px 20px;
  margin-bottom: 30px;
  cursor: pointer;
  text-align: center;
  position: relative;
  background-color: #f46f8f;
  ;
  font-weight: 500;
  color: #fff;
}

.search-ttl .dli-plus {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
}


.kensaku-content {
  display: none;
  border: 1px solid #f4fb85;
  padding: 10px;
  font-size: 14px;
  background: #fefff5;
}

.dli-plus {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  width: 1em;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
}

.dli-plus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

.taisaku-ttl.open .dli-plus::before,
.search-ttl.open .dli-plus::before {
  display: none;
}


.taisaku-content-inner {
  display: flex;
  flex-wrap: wrap;
}

.taisaku-check {
  width: 6%;
  line-height: 1.5;
  margin-bottom: 7px;
  color: #7a859b;
}

.taisaku-text {
  width: 92%;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 7px;
}

.taisaku-text span {
  color: #f46f8f;
}

.shop-img {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.shop-img-item {
  background: #ccc;
  width: 49%;
  text-align: center;
}

.otoku {
  margin-top: 20px;
}















.swiper-container {
  width: 100%;
  overflow: hidden;
}

.swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: none !important
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: none !important
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 0px !important;
  left: auto;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 0 !important;
  right: auto;
}

.table-scrolling {
  overflow-x: auto;
}


/* ranking-table-o */

.ranking-table-o {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  overflow: scroll;
}

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

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

.ranking-table-o th,
.ranking-table-o td {
  width: calc(100% / 6);
  min-width: calc(500px / 6);
  padding: 3px 0;
  vertical-align: middle;
  text-align: center;
  line-height: 1.3;
  border: 0.5px #dedede solid;
  font-size: 13px;
}

.text-small {
  display: block !important;
  font-size: 12px;
  width: 100%;
  color: #333;
  padding-bottom: 0.8em;
  font-weight: 700;
}





.ranking-table-o th {
  background: #282b45;
  font-weight: 500;
  position: sticky;
  left: 0;
  color: #fff;
  z-index: 99999;
  font-weight: 700;
}

@media (min-width:768px) {
  .pc_none {
    display: none;
  }
  .sp_none{
    display: inline;
    text-align: end;
  }
}

@media (max-width:767px) {
  .pc_none {
    display: block;
    text-align: end;
  }
  .sp_none{
    display: none;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 10px !important;
}

.mv{
  text-align: right;
}

.sec_ttl {
  margin: 40px 0 20px 0;
}

@media (max-width:767px) {
  .sec_ttl {
    margin: 1.5em 0 0.5em 0;
  }
}

.ranking-table-o td {
  background: #fffbfc;
  font-weight: 700;
}

.ranking-table-o img {
  max-height: 200px;
  width: 100px;
  padding: 0 10px;
}

.td-in {
  position: relative;
  height: 53px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: grid;
  align-items: center;
  vertical-align: middle;
}

.ranking-table-o td .button {
  text-decoration: none;
}

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

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

.table-ttl-o {
  border: none !important;
  color: #fff;
  background: #ffa311 !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;
  color: #000;
  background: #fff;
  /* height: 75px; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  width: 100%;
  min-width: 85px;
  height: 40px;
}

.ranking-table-name td {
  background-color: #cdd7e0;
}





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

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

/* .ranking-table-wrapper {
  border: 1px solid #3ca2f9;
} */
.ranking-table {
  width: 100%;
  font-size: .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: #fde9ee;
  font-size: 13px;
  font-weight: 600;
  color: #f46f8f;
  padding: 5px;
  border-right: 1px solid #f46f8f;
  border-top: 1px solid #f46f8f;
  border-bottom: 1px solid #f46f8f;
}

.ranking-table td {
  font-weight: 500;
  padding: 5px 0;
  border: 1px solid #f46f8f;
  border-top: 1px solid #f46f8f;
  font-size: 13px;
}

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

.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: .5rem;
}

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




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

.table-main-btn {
  color: #fff;
  background-color: #e3130e;
  cursor: pointer;
  overflow: hidden;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin: 5px;
  font-weight: 700;
}

.table-btn {
  color: #fff;
  background-color: #a2a2a2;
  cursor: pointer;
  overflow: hidden;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin: 5px;
  font-weight: 700;
}

.do {
  color: #f00;
  font-size: 3rem;
  position: absolute;
  top: -6%;
  left: 29%;
  z-index: 0;
  opacity: .1;
}

.no {
  color: rgb(68, 68, 245);
  font-size: 4rem;
  position: absolute;
  top: -36%;
  left: 32%;
  z-index: 0;
  opacity: .1;
  font-weight: normal;
}

.ta {
  color: rgb(85, 243, 64);
  font-size: 3rem;
  position: absolute;
  top: -10%;
  left: 30%;
  z-index: 0;
  opacity: .2;
}

.ci {
  color: rgb(231 232 42);
  font-size: 3rem;
  position: absolute;
  top: -6%;
  left: 29%;
  z-index: 0;
  opacity: .3;
}

.hf {
  color: rgb(163, 163, 163);
  font-size: 3rem;
  position: absolute;
  top: -6%;
  left: 42%;
  z-index: 0;
  opacity: .3;
}

.star {
  font-size: 1.2em;
  color: #ff8a00;
}

.osusume-cont {
  position: relative;
}

.footer {
  font-size: 16px;
  text-align: center;
  background: #282b45;
  color: #fff;
  padding: 30px 0;
  margin-top: auto;
}

.footer a:link {
  color: #FFF;
}

.footer a:visited {
  color: #FFF;
}

.footer_link {
  margin-bottom: 1em;
}

.cta-btn.osusume-btn {
  position: relative;
  display: block;
  width: 80%;
  position: absolute;
  left: 10%;
  bottom: 5%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #ed4848;
  box-shadow: 4px 4px #d22727;
  cursor: pointer;
  overflow: hidden;
  font-size: 18px;
  border-radius: 50px;
  margin: 10px 0 30px;
}

.asterisk {
  padding: 1em;
  line-height: 1.3em;
  list-style-type: none;
}

.asterisk li {
  padding-left: 1em;
  text-indent: -1em;
  padding-bottom: 0.5em;
}

.asterisk li:before {
  content: "※";
}




/* search form */
.hide {
  display: none;
}

.search-form-table {
  width: 100%;
}

.search-form-table th,
.search-form-table td {
  padding: 8px;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #0073ca;
  background: #fff;
}


.search-form-table td ul li {}

.search-form-table th {
  width: 35%;
  border: 1px solid #0073ca;
  font-size: 12px;
  border-right: none;
  background:  #0073ca;
  color: #fff;

}

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

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

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

.c {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.search-btn {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  position: relative;
  display: block;
  width: 92%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #3baf90;
  box-shadow: 4px 4px #3d8a59;
  cursor: pointer;
  overflow: hidden;
  font-size: 15px;
  border-radius: 50px;
  margin: 10px 4% 30px;
  padding: 0;
}

.mb-15 {
  margin-bottom: 15px;
}

.search-clear {
  text-align: center;
  display: block;
  color: #333;
  font-size: 14px;
}

.search-clear i {
  padding-right: 10px;
}

.result-ttl {
  background: #f46f8f;
  color: #fff;
  text-align: center;
  font-size: 17px;
  padding: 10px 0;
  margin-top: 20px;
}

.result-btn {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  position: relative;
  display: block;
  width: 90%;
  margin-left: 5%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #3baf90;
  box-shadow: 4px 4px #3d8a59;
  cursor: pointer;
  overflow: hidden;
  font-size: 15px;
  border-radius: 10px;
  padding: 0;
}


/*info.html*/

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.info_header {
  background: #282b45;
  padding: 1em 0;
  margin-bottom: 0.5em;
  text-align: center;
}

.info_header h1 {
  font-size: 1.5rem;
  color: #FFF;
  font-weight: bold;
}

.info_table {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
  text-align: left;
}
.info_table th, .info_table td {
  border-bottom: 2px solid #c1c7c6;
  padding: 1em .3em;
}
.info_table th {
  border-bottom: 2px solid #282b45;;
  font-weight: bold;
  text-align: center;
  width: 25%;
  min-width: 4em;
}

.pankuzu{
  font-size: 12px;
  margin-bottom: 3em;
  margin-top: 1em;
}

.pankuzu span{
  padding: 0 0.7em;
}

.info_content {
}

@media screen and (max-width: 767px) {
  .info_content {
    padding: 0 1em;
  }
}

@media screen and (min-width: 768px) {
  .info_content {
    width: 740px;
    margin: 0 auto;
    padding: 0 1rem;
  }
}

.article-block{
  text-align: center;
}

.article-block:last-child {
  margin-bottom: 0;
}



.article-block h2 {
  font-size: 1.5rem;
  color: #282b45;
  margin-bottom: 1em;
  font-weight: bold;
  margin-top: 2em;
}

@media screen and (max-width: 768px) {
  .article-block h1,h2 {
    margin-bottom: 0.6em;
  }
  
}

.article-block p{
  text-align: justify;
  line-height: 1.6em;
  padding-bottom: 20px;
}

.article-block__ttl {
  font-size: 1rem;
  position: relative;
}

footer .footer-inr {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

@media screen and (min-width: 768px) {
  footer .footer-inr {
    width: 740px;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    justify-content: center;
  }
}

footer .footer-inr .u-link {
  color: #282b45;
}

.List {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 650px;
}

@media screen and (max-width: 540px) {
  .List {
    margin-top: 24px;
  }
}

.List-Item {
  border-bottom: 1px solid #282b45;
  display: flex;
}

.List-Item:first-child {
  border-top: none;
}

.List-Item-Title {
  width: 30%;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.8;
  font-weight: bold;
  font-size: 15px;
}

@media screen and (max-width: 540px) {
  .List-Item-Title {
    display: flex;
    align-items: center;
    font-size: 14px;
  }
}

.List-Item-Text {
  width: 70%;
  padding: 10px;
  line-height: 1.4;
  font-size: 15px;
}

.List-Item-Ul {
  width: 70%;
  padding: 10px;
  line-height: 1.8;
  list-style: none;
  font-size: 15px;
}

@media screen and (max-width: 540px) {
  .List-Item-Text {
    display: flex;
    align-items: center;
    font-size: 14px;
  }

  .List-Item-Ul {
    font-size: 14px;
  }
}

.info_ad{
  text-align: center;
}
.info_ad img{
}

/* contact.html */

.center input{
  box-sizing: revert;
}


/* slider arrow打ち消し */
.slick-next, .slick-prev {
  display: none!important;
}


.hikaku-btn {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #ffa938;
  cursor: pointer;
  overflow: hidden;
  font-size: 18px;
  border-radius: 50px;
  margin: 60px 0 20px;
  box-shadow: 4px 4px #c89736;
}

@media screen and (max-width: 768px) {
  .hikaku-btn {
    width: 90%;
    margin: 20px auto;
  }
}


/* TOP3コンテンツ */

.three_base{
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.mt--20{
  margin-top: -20px;
}

.mt-20{
  margin-top: 20px;
}

.three_btn{
  position: absolute;
}

.three_btn--orange {
  color: #fff;
  background-color: #e3130e;
  border-bottom: 4px solid #a80300;
}
.three_btn--orange:hover {
  margin-top: 4px;
  color: #fff;
  background: #e3130e;
  border-bottom: 2px solid #a80300;
}
.three_btn--shadow {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
}



.top_three li {
  display: flex;
}

.btn01 {
  left: 7%;
  bottom: 4%;
  padding: 3% 2%;
  border-radius: 5px;
  font-size: clamp(8px, 3vw, 18px);
  text-align: center;
  vertical-align: middle;
  line-height: 130%;
  width: 25%;
  height: 8%;
}

.btn01 span {
  font-weight: bolder;
  letter-spacing: 1px;
  font-size: 1.3em;
}

.btn02 {
  left: 41.5%;
  bottom: 4%;
  padding: 1.8%;
  border-radius: 5px;
  font-size: clamp(8px, 3vw, 16px);
  text-align: center;
  line-height: 120%;
  width: 21%;
  letter-spacing: 0em;
}

.btn02 span{
  font-weight: bolder;
}

.btn03{
  left: 71%;
  bottom:4%;
  padding: 1.8%;
  border-radius: 5px;
  font-size: clamp(9px, 3vw, 16px);
  text-align: center;
  line-height: 120%;
  width: 20%;
}

.btn03 span{
  font-weight: bolder;
}


.box-search {
  margin-top: 20px;
  padding: 0 20px;
}
.c--jStart {
  justify-content: flex-start !important;
}
.main {
  max-width: 750px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
 
}

.page-search .cr-btn {
  width: 40%;
  margin-bottom: 0;
  font-size: 16px;
}
.page-search .sub-btn {
  width: 40%;
  font-size: 16px;
}
.cr-btn {
  margin-bottom: 10px;
  width: 50%;
  
}

@media (max-width: 575.98px) {
  .page-search .cr-btn {
    margin-bottom: 10px;
    width: 100%;
  }
  .page-search .sub-btn {
    width: 100%;
  }

}

.ranking-table-s .button[data-button-color="orange"] {
  width: 94%;
  font-size: 12px;
  border-radius: 10px;
  padding: 0 3%;
}