@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: #333;
  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 {
  transition: 0.3s;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  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 {
  padding-top: 40px;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .common_title {
    padding-top: 30px;
  }
}
.common_title h2 {
  font-size: 32px;
  color: #fff;
  padding: 10px 0;
  padding-left: 40px;
  position: relative;
  display: inline-block;
}
@media (max-width: 599px) {
  .common_title h2 {
    font-size: 24px;
  }
}
.common_title h2::before, .common_title h2::after {
  content: url(../images/icon_crown.png);
  position: absolute;
  top: 13px;
  transform: scale(0.5);
}
@media (max-width: 599px) {
  .common_title h2::before, .common_title h2::after {
    top: 5px;
  }
}
.common_title h2::before {
  left: -15px;
}
.common_title h2::after {
  right: -56px;
}

.common_title02 {
  padding: 20px;
  margin-bottom: 20px;
}
@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 {
  text-align: center;
  padding: 10px 0;
}
header h1 {
  font-size: 18px;
}
@media (max-width: 599px) {
  header h1 {
    font-size: 16px;
  }
}

/* footer */
/* top */
.search {
  padding: 20px 0;
}
.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: 20px;
}
.search .search_selects .search_select_item {
  background-color: #EAEAEA;
  width: 32%;
  border-radius: 10px;
  padding: 3px 10px;
}
.search .search_selects .search_select_item p {
  font-size: 13px;
  color: #8c8c8c;
}
@media (max-width: 768px) {
  .search .search_selects .search_select_item p {
    font-size: 11px;
  }
}
.search .search_selects .search_select_item select {
  font-size: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border: none;
  font-feature-settings: "palt";
  width: 100%;
  cursor: pointer;
  color: #333;
}
@media (max-width: 768px) {
  .search .search_selects .search_select_item select {
    font-size: 12px;
  }
}
.search .search_checks {
  background-color: #EAEAEA;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.search .search_checks p {
  font-size: 13px;
  color: #8c8c8c;
}
@media (max-width: 768px) {
  .search .search_checks p {
    font-size: 11px;
  }
}
.search .search_checks .search_check_item {
  margin-right: 10px;
  cursor: pointer;
}
.search .search_checks .search_check_item:last-child {
  margin-right: 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;
}
@media (max-width: 768px) {
  .search .search_checks .search_check_item label {
    font-size: 12px;
  }
}
.search .search_submit input {
  width: 280px;
  background-color: #1A81FF;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 60px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0px 8px 5px -5px #777777;
  transition: 0.3s;
  margin: 0 auto;
  display: block;
}
.search .search_submit input:hover {
  box-shadow: none;
  transform: translateY(8px);
  opacity: 1;
}
@media (max-width: 768px) {
  .search .search_submit input {
    font-size: 16px;
    width: 100%;
  }
}

.apl_ranking {
  background-color: #333;
}

.apl_ranking_item {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.apl_ranking_item:last-child {
  margin-bottom: 0;
}
@media (max-width: 599px) {
  .apl_ranking_item {
    padding: 20px;
  }
}
.apl_ranking_item .apl_ranking_title {
  margin-bottom: 20px;
}
.apl_ranking_item .apl_ranking_title h3 {
  font-size: 24px;
  border-bottom: 2px solid #e5b146;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_title h3 {
    font-size: 20px;
  }
}
.apl_ranking_item .apl_ranking_title h3 span {
  font-size: 28px;
  margin-right: 10px;
  background-color: #e5b146;
  border-radius: 7px 7px 0 0;
  color: #fff;
  padding: 5px 20px;
  padding-bottom: 0;
}
.apl_ranking_item .apl_ranking_read {
  margin-bottom: 30px;
}
.apl_ranking_item .apl_ranking_read .apl_ranking_img {
  width: 35%;
}
.apl_ranking_item .apl_ranking_read .apl_ranking_textarea {
  width: 63%;
}
.apl_ranking_item .apl_ranking_read .apl_ranking_textarea p {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_read .apl_ranking_textarea p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.apl_ranking_item .apl_ranking_read .apl_ranking_textarea ul li {
  color: #fff;
  padding: 3px 10px;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_read .apl_ranking_textarea ul li {
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
}
.apl_ranking_item .apl_ranking_read .apl_ranking_textarea ul li.tag_video {
  background-color: #1A81FF;
}
.apl_ranking_item .apl_ranking_read .apl_ranking_textarea ul li.tag_beginner {
  background-color: #1CB67F;
}
.apl_ranking_item .apl_ranking_read .apl_ranking_textarea ul li.tag_point {
  background-color: #8c8c8c;
}
.apl_ranking_item .apl_ranking_read .apl_ranking_textarea ul li:last-child {
  margin-right: 0;
}
.apl_ranking_item .apl_ranking_point {
  margin-bottom: 30px;
}
.apl_ranking_item .apl_ranking_point p {
  background-color: #1A81FF;
  padding: 10px;
  color: #fff;
  font-weight: bold;
}
.apl_ranking_item .apl_ranking_point ul {
  border: 1px solid #1A81FF;
  padding: 20px;
}
.apl_ranking_item .apl_ranking_point ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}
.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);
  position: absolute;
  left: -12px;
  top: -8px;
  transform: scale(0.42);
}
.apl_ranking_item .apl_ranking_slide {
  width: 95%;
  margin: 0 auto 30px;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_slide {
    width: 100%;
  }
}
.apl_ranking_item .apl_ranking_slide li {
  margin: 0 15px;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_slide li {
    margin: 0 5px;
  }
}
.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_title h3 {
  font-size: 18px;
  background-color: #333;
  padding: 10px 15px;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_voice_title h3 {
    font-size: 16px;
  }
}
.apl_ranking_item .apl_ranking_voice {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_voice {
    width: 100%;
  }
}
.apl_ranking_item .apl_ranking_voice .apl_ranking_voice_info {
  margin-bottom: 25px;
}
.apl_ranking_item .apl_ranking_voice .apl_ranking_voice_info .apl_ranking_voice_icon {
  width: 50px;
}
.apl_ranking_item .apl_ranking_voice .apl_ranking_voice_info .apl_ranking_voice_name p {
  font-weight: bold;
}
.apl_ranking_item .apl_ranking_voice .apl_ranking_voice_info .apl_ranking_voice_name .apl_ranking_voice_evaluation .stars {
  width: 100px;
  margin-left: 10px;
}
.apl_ranking_item .apl_ranking_voice .apl_ranking_voice_text {
  position: relative;
  background: #FFFFFF;
  padding: 20px;
  border: 2px solid #1A81FF;
  border-radius: 10px;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_voice .apl_ranking_voice_text {
    padding: 15px 10px;
  }
}
.apl_ranking_item .apl_ranking_voice .apl_ranking_voice_text::before, .apl_ranking_item .apl_ranking_voice .apl_ranking_voice_text::after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  bottom: 100%;
  left: 15%;
}
.apl_ranking_item .apl_ranking_voice .apl_ranking_voice_text::after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 20px;
  border-bottom-width: 15px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-left: -40px;
  border-bottom-color: #FFFFFF;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_voice .apl_ranking_voice_text::after {
    margin-left: -20px;
  }
}
.apl_ranking_item .apl_ranking_voice .apl_ranking_voice_text::before {
  border-color: rgba(30, 144, 255, 0);
  border-top-width: 24px;
  border-bottom-width: 18px;
  border-left-width: 12px;
  border-right-width: 12px;
  margin-left: -42px;
  margin-bottom: 2px;
  border-bottom-color: #1A81FF;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_voice .apl_ranking_voice_text::before {
    margin-left: -22px;
  }
}
@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: -30px;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_voice .prev-arrow {
    left: -10px;
  }
}
.apl_ranking_item .apl_ranking_voice .next-arrow {
  right: -30px;
}
@media (max-width: 599px) {
  .apl_ranking_item .apl_ranking_voice .next-arrow {
    right: -10px;
  }
}
.apl_ranking_item .apl_ranking_btn a {
  background-color: #F80564;
  border-radius: 60px;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  color: #fff;
  width: 250px;
  margin: 0 auto;
  margin-top: 30px;
  display: block;
  font-size: 18px;
  box-shadow: 0px 8px 5px -5px #777777;
}
.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-color: #333;
  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-color: #333;
}
.top_ranking .inner {
  background-color: #fff;
  border-top: 1px solid #8c8c8c;
  padding-top: 20px;
}
.top_ranking .top_ranking_wrap {
  padding-bottom: 30px;
}
.top_ranking .apl_ranking_item {
  display: block;
  padding-top: 0;
  padding-bottom: 10px;
}
.top_ranking .apl_ranking_item:first-child {
  padding-top: 0;
}

.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 .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 */