@charset "UTF-8";
/* import */
/* カラー */
/* メインテーマ：ピンク／マゼンタ */
/* アプリのタグ背景 */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  background-color: #E30B7D;
  color: #333;
}

input, label, select {
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}

.wrap {
  width: 768px;
  margin: 0 auto;
  background-color: #fff;
}
@media (max-width: 768px) {
  .wrap {
    width: 100%;
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* flex */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* inner */
.inner {
  width: 95%;
  margin: 0 auto;
}

/* display */
@media (max-width: 599px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 599px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

section {
  padding: 50px 0;
}

.common_title {
  display: flex;
  align-items: center;
  gap: 2px;
  padding-top: 16px;
  margin-bottom: 8px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.common_title h2 {
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 599px) {
  .common_title h2 {
    font-size: 20px;
    gap: 6px;
  }
}
.common_title h2 svg {
  width: 100%;
  height: auto;
  display: block;
}

.common_title02 {
  padding: 20px;
  margin-bottom: 20px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
@media (max-width: 599px) {
  .common_title02 {
    margin-bottom: 10px;
  }
}
.common_title02 h2 {
  position: relative;
  padding: 0.5em;
  background: #333;
  color: white;
  font-size: 28px;
}
@media (max-width: 599px) {
  .common_title02 h2 {
    font-size: 22px;
  }
}
.common_title02 h2::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px rgb(149, 158, 155);
}

.top_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  transition: 0.3s;
  opacity: 0;
}
@media (max-width: 599px) {
  .top_btn {
    bottom: 90px;
    right: 23px;
  }
}
.top_btn .top_btn_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_btn img {
  width: 50%;
  margin: 0 auto 3px;
  display: block;
}
.top_btn p {
  text-align: center;
  white-space: nowrap;
  color: #fff;
}

.top_btn.active {
  opacity: 1;
}

pre {
  color: #fff;
}

/* 下層ページ共通 */
/* header */
header {
  background: #3A3A3A;
  padding: 12px;
  text-align: center;
}
header h1 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* lead（MV直下の帯） */
.lead {
  background: #3A3A3A;
}
.lead p {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  padding: 12px 16px;
}
.lead p i {
  color: #FC79F6;
  font-style: normal;
}

.mv .mv_img {
  line-height: 0;
}
.mv .mv_img img {
  width: 100%;
  display: block;
  clip-path: inset(4% 0);
  margin-block: -21px;
}
@media (max-width: 768px) {
  .mv .mv_img img {
    margin-block: -3vw;
  }
}

/* footer */
/* top */
.search {
  padding: 20px 0 24px;
}
.search .search_ttl {
  margin-bottom: 10px;
}
.search .search_ttl p {
  font-size: 18px;
  font-weight: bold;
  padding-left: 25px;
  position: relative;
}
@media (max-width: 768px) {
  .search .search_ttl p {
    font-size: 16px;
  }
}
.search .search_ttl p::before {
  content: url(../images/icon_search.png);
  position: absolute;
  top: -15px;
  left: -15px;
  transform: scale(0.5);
}
.search .search_selects {
  margin-bottom: 12px;
}
.search .search_selects .search_select_item {
  background-color: #EAEAEA;
  width: 31.5%;
  padding: 8px;
}
.search .search_selects .search_select_item p {
  font-size: 13px;
  color: #8c8c8c;
}
.search .search_selects .search_select_item select {
  font-size: 14px;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
  color: #333;
}
.search .search_selects .search_select_item select:hover {
  background: transparent;
}
.search .search_checks {
  background-color: #EAEAEA;
  padding: 8px;
  margin-bottom: 12px;
}
.search .search_checks p {
  font-size: 13px;
  color: #8c8c8c;
}
.search .search_checks .search_check_item {
  margin-right: 16px;
  margin-bottom: 4px;
  cursor: pointer;
}
.search .search_checks .search_check_item:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .search .search_checks .search_check_item input {
    vertical-align: middle;
  }
}
.search .search_checks .search_check_item label {
  font-size: 14px;
}
.search .search_submit input {
  background: linear-gradient(270deg, #4FA9F7 50%, #9162FF 100%);
  padding: 20px 0;
  text-align: center;
  color: #fff;
  border: none;
  width: 100%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
  margin: 0 auto;
  display: block;
}
.search .search_submit input:hover {
  box-shadow: none;
  transform: translateY(8px);
  opacity: 1;
}

.apl_ranking {
  background-color: #FC79F6;
}

.apl_ranking_item {
  background-color: #fff;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 30px;
}
.apl_ranking_item:last-child {
  margin-bottom: 0;
}
@media (max-width: 599px) {
  .apl_ranking_item {
    padding: 10px;
  }
}
.apl_ranking_item .apl_ranking_title {
  border-bottom: 2px solid #6B6A6A;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  margin-bottom: 12px;
}
.apl_ranking_item .apl_ranking_title span {
  font-size: 16px;
  background-color: #FFA515;
  padding: 12px 14px;
  line-height: 1;
  display: inline-block;
}
.apl_ranking_item .apl_ranking_title h3 {
  font-size: 24px;
  color: #1A81FF;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_title h3 {
    font-size: 20px;
  }
}
.apl_ranking_item .apl_ranking_read {
  margin-bottom: 24px;
  text-underline-offset: -0.1rem;
}
.apl_ranking_item .apl_ranking_read .apl_ranking_img {
  width: 86px;
  margin-right: 8px;
}
.apl_ranking_item .apl_ranking_read .apl_ranking_appeal {
  flex: 1;
}
.apl_ranking_item .apl_ranking_read .apl_ranking_appeal p {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 6px;
}
.apl_ranking_item .apl_ranking_read .apl_ranking_appeal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.apl_ranking_item .apl_ranking_read .apl_ranking_appeal ul li {
  color: #fff;
  padding: 4px 8px;
  border-radius: 2px;
  font-size: 12px;
}
.apl_ranking_item .apl_ranking_read .apl_ranking_appeal ul li.apl_tag_category {
  background-color: #50C0D1;
}
.apl_ranking_item .apl_ranking_read .apl_ranking_appeal ul li.apl_tag_genre {
  background-color: #8c8c8c;
}
.apl_ranking_item .apl_ranking_read .apl_ranking_appeal ul li.apl_tag_age {
  background-color: #F75997;
}
.apl_ranking_item .apl_ranking_read .apl_ranking_appeal ul li.apl_tag_conditions {
  background-color: #FFA515;
}
.apl_ranking_item .apl_ranking_read .apl_ranking_textarea {
  margin-top: 8px;
}
.apl_ranking_item .apl_ranking_point {
  margin-bottom: 32px;
}
.apl_ranking_item .apl_ranking_point p {
  background-color: #F75997;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.apl_ranking_item .apl_ranking_point ul {
  border: 1px solid #F75997;
  padding: 10px;
}
.apl_ranking_item .apl_ranking_point ul li {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
}
.apl_ranking_item .apl_ranking_point ul li:last-child {
  margin-bottom: 0;
}
.apl_ranking_item .apl_ranking_point ul li::before {
  content: url(../images/icon_check.png);
  line-height: 1;
}
.apl_ranking_item .apl_ranking_slide {
  width: 95%;
  margin: 0 auto 32px;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_slide {
    width: 100%;
  }
}
.apl_ranking_item .apl_ranking_slide .slide-arrow {
  width: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_slide .slide-arrow {
    width: 15px;
  }
}
.apl_ranking_item .apl_ranking_slide .prev-arrow {
  left: 0px;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_slide .prev-arrow {
    left: -5px;
  }
}
.apl_ranking_item .apl_ranking_slide .next-arrow {
  right: 0px;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_slide .next-arrow {
    right: -5px;
  }
}
.apl_ranking_item .apl_ranking_voice_wrap {
  background-color: #F2F2F2;
  padding: 8px;
}
.apl_ranking_item .apl_ranking_voice_title h3 {
  font-size: 18px;
  background-color: #333;
  padding: 10px 12px;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_voice_title h3 {
    font-size: 16px;
  }
}
.apl_ranking_item .apl_ranking_voice {
  width: 90%;
  margin: 0 auto;
}
.apl_ranking_item .apl_ranking_voice .apl_ranking_voice_info {
  margin-bottom: 12px;
}
.apl_ranking_item .apl_ranking_voice .apl_ranking_voice_info .apl_ranking_voice_icon {
  width: 40px;
  margin-right: 8px;
}
.apl_ranking_item .apl_ranking_voice .apl_ranking_voice_info .apl_ranking_voice_name .apl_ranking_voice_evaluation .stars {
  margin-left: 6px;
  width: 100px;
}
.apl_ranking_item .apl_ranking_voice .apl_ranking_voice_text {
  padding: 0 8px 8px;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_voice .apl_ranking_voice_text p {
    font-size: 14px;
  }
}
.apl_ranking_item .apl_ranking_voice li {
  margin: 0 15px;
}
.apl_ranking_item .apl_ranking_voice .slide-arrow {
  width: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_voice .slide-arrow {
    width: 15px;
  }
}
.apl_ranking_item .apl_ranking_voice .prev-arrow {
  left: -16px;
}
.apl_ranking_item .apl_ranking_voice .next-arrow {
  right: -16px;
}
.apl_ranking_item .apl_ranking_btn a {
  background: linear-gradient(270deg, #4FA9F7 50%, #9162FF 100%);
  color: #fff;
  text-align: center;
  padding: 15px 0;
  color: #fff;
  width: 250px;
  margin: 16px auto;
  display: block;
  font-size: 18px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.apl_ranking_item .apl_ranking_btn a:hover {
  box-shadow: none;
  transform: translateY(8px);
  opacity: 1;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_btn a {
    width: 100%;
  }
}

.apl_list {
  background: #FC79F6;
  padding-top: 50px;
}
.apl_list .inner {
  background-color: #fff;
  padding-bottom: 20px;
  border-radius: 20px 20px 0 0;
  padding-top: 20px;
}
.apl_list .apl_list_wrap {
  padding: 0 20px;
}
.apl_list .apl_list_wrap .apl_list_item {
  width: 24%;
  margin-bottom: 20px;
  text-align: center;
}
.apl_list .apl_list_wrap .apl_list_item p {
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .apl_list .apl_list_wrap .apl_list_item p {
    font-size: 10px;
  }
}

.top_ranking {
  background: #FC79F6;
}
.top_ranking .inner {
  background-color: #fff;
  border-top: 1px solid #8c8c8c;
  padding-top: 20px;
}
.top_ranking .top_ranking_wrap {
  padding-inline: 16px;
}
@media (max-width: 599px) {
  .top_ranking .top_ranking_wrap {
    padding-inline: 8px;
  }
}

.links {
  padding-top: 30px;
  margin-bottom: 20px;
  text-align: center;
}
.links a {
  font-size: 14px;
}

.copyright {
  text-align: center;
  padding-bottom: 20px;
}
.copyright p {
  font-size: 12px;
}

.fadein {
  opacity: 0;
  transform: translateY(3%);
}
.fadein.active {
  animation: 0.8s forwards fadein;
}

.fadein2 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein2.active {
  animation: 0.8s forwards 0.1s fadein;
}

.leftin {
  transform: translateX(-100%);
  overflow: hidden;
}
.leftin.active {
  animation: 0.5s forwards leftin;
}

.rightin {
  transform: translateX(100%);
  overflow: hidden;
}
.rightin.active {
  animation: 0.5s forwards rightin;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(3%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.apl_search {
  padding-bottom: 32px;
}
.apl_search .search_title h2::before {
  content: url(../images/icon_search_title.png);
  top: 3px;
}
.apl_search .search_title h2::after {
  content: none;
}

.apl_search .apl_search_text {
  color: #fff;
}

/*# sourceMappingURL=style.css.map */
