@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  font-feature-settings: "palt";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  word-break: break-all;
  line-break: strict;
  hyphens: auto;
  text-align: justify;
  line-height: 1.8rem;
}

html {
  overflow-y: scroll;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  text-decoration: none;
}
a:link, a:visited, a:active {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

fieldset, img {
  border: 0;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

br {
  letter-spacing: 0;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  font-family: "Noto Sans JP", "Yu Gothic", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ------------------------------------- 
  header
------------------------------------- */
header {
  position: fixed;
  z-index: 1;
  background: #072244;
  width: 100%;
}
header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  width: 95%;
  margin: 0 auto;
  padding: 10px 0;
}
header .title {
  max-width: 333px;
}
@media screen and (max-width: 1024px) {
  header {
    position: static;
  }
  header .wrap {
    width: 100%;
    height: 60px;
    padding: 10px 20px;
  }
  header .title {
    max-width: 150px;
  }
}

/* ------------------------------------- 
  menu
------------------------------------- */
header .menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
header .menu ul li a {
  color: #FFFFFF;
  font-weight: 700;
}
header .menu ul li.ranking a {
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 100px;
  padding: 5px 20px;
  color: #072244;
}
header .menu ul li.ranking a:hover {
  text-decoration: none;
  background: transparent;
  color: #FFFFFF;
}

.hamburger {
  display: block;
  position: fixed;
  background: #072244;
  z-index: 9999;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  left: 15px;
  background: #FFFFFF;
  transition: 0.3s all;
}
.hamburger span:nth-child(1) {
  top: 20px;
}
.hamburger span:nth-child(2) {
  top: 30px;
}
.hamburger span:nth-child(3) {
  top: 40px;
}
.hamburger {
  /* スマホメニューを開いてる時のボタン */
}
.hamburger.active span:nth-child(1) {
  top: 30px;
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 30px;
  transform: rotate(45deg);
}

/* メニュー背景　**************************/
.globalMenuSp {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  background-color: #072244;
  text-align: center;
  width: 100%;
  transition: all 0.6s;
  opacity: 0;
  pointer-events: none;
  height: 100vh;
}
.globalMenuSp .globalMenuSp-wrap {
  width: 90%;
  margin: 70px auto 0;
}
.globalMenuSp .globalMenuSp-wrap ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.globalMenuSp .globalMenuSp-wrap li a {
  display: block;
  text-align: center;
}
.globalMenuSp {
  /* クリックでjQueryで追加・削除 */
}
.globalMenuSp.active {
  opacity: 100;
  pointer-events: auto;
  display: block;
}

/* ------------------------------------- 
  mv
------------------------------------- */
.mv {
  position: relative;
  background: #0C4995;
  width: 100%;
  padding: 3% 0;
}
.mv .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1920px;
  width: 95%;
  margin: 0 auto;
}
.mv .title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 45%;
  height: 100%;
}
.mv .title .title-sub, .mv .title h1, .mv .title .lead {
  color: #FFFFFF;
}
.mv .title .title-sub {
  font-size: clamp(0.875rem, 0.8rem + 0.38vw, 1.25rem);
  line-height: 1.5em;
}
.mv .title h1 {
  font-size: clamp(1.875rem, 1.5rem + 1.88vw, 3.75rem);
  line-height: 1.5em;
  padding: 10% 0;
}
.mv .title .tag {
  display: grid;
  justify-content: flex-start;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 50px;
  width: 80%;
}
.mv .title .tag li {
  background: #FFFFFF;
  border-radius: 10px;
  height: 100%;
  padding: 20px;
}
.mv .title .tag li p {
  text-align: center;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.675rem + 0.38vw, 1.125rem);
  line-height: 1.5em;
}
.mv .title .tag li p span {
  color: #FF4E95;
}
.mv .title .tag li p.sub {
  margin-bottom: 10px;
  color: #979797;
  font-size: 0.75rem;
}
.mv .image {
  width: 50%;
}
.mv .image__point {
  margin-top: 15px;
}
@media screen and (max-width: 1280px) {
  .mv .title h1 {
    padding: 7% 0;
  }
  .mv .title .tag {
    margin-top: 30px;
  }
  .mv .title .tag li {
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    padding-bottom: 50px;
  }
  .mv .wrap {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .mv .title {
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }
  .mv .title .title-sub, .mv .title h1 {
    text-align: center;
  }
  .mv .title .title-sub {
    font-size: 1rem;
  }
  .mv .title h1 {
    font-size: 1.5625rem;
    padding: 30px 0;
  }
  .mv .title .lead {
    max-width: 500px;
    width: 80%;
    margin: 0 auto;
  }
  .mv .image {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .mv {
    padding-bottom: 30px;
  }
  .mv .wrap {
    gap: 20px;
  }
  .mv .title .title-sub {
    font-size: 0.75rem;
  }
  .mv .title h1 {
    padding: 20px 0;
  }
  .mv .title .lead {
    line-height: 1.6em;
  }
  .mv .title .tag {
    margin-top: 15px;
  }
  .mv .title .tag li {
    border-radius: 5px;
  }
  .mv .title .tag li p {
    font-size: 0.75rem;
  }
  .mv .title .tag li p.sub {
    margin-bottom: 5px;
  }
}

/* ------------------------------------- 
  bnr_area
------------------------------------- */
.bnr_area {
  background: #E6ECF4;
  padding: 5% 0;
}
.bnr_area ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  max-width: 950px;
  width: 90%;
  margin: 0 auto;
}
.bnr_area li {
  max-width: 450px;
  width: 46.8%;
}
.bnr_area__btn {
  position: relative;
  display: block;
  background: #5391DE;
  border-radius: 50px;
  width: 100%;
  line-height: 100px;
  text-align: center;
  color: #FFFFFF;
  font-size: 1.5625rem;
  font-weight: 600;
}
.bnr_area__btn:hover {
  text-decoration: none;
  opacity: 0.7;
}
.bnr_area__btn .icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  max-width: 70px;
}
@media screen and (max-width: 1280px) {
  .bnr_area__btn {
    font-size: 1.25rem;
    line-height: 80px;
  }
  .bnr_area__btn .icon {
    max-width: 50px;
    left: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .bnr_area {
    padding: 70px 0 80px;
  }
  .bnr_area li {
    max-width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .bnr_area {
    padding: 50px 0 60px;
  }
  .bnr_area ul {
    gap: 20px;
    max-width: 100%;
  }
  .bnr_area li {
    max-width: 450px;
    width: 80%;
  }
  .bnr_area__btn {
    font-size: 1rem;
    line-height: 60px;
  }
  .bnr_area__btn .icon {
    max-width: 40px;
  }
}
@media screen and (max-width: 480px) {
  .bnr_area {
    padding: 30px 0 40px;
  }
  .bnr_area ul {
    gap: 10px;
    flex-direction: column;
  }
  .bnr_area li {
    width: 90%;
  }
  .bnr_area__btn {
    font-size: 0.875rem;
    line-height: 50px;
  }
  .bnr_area__btn .icon {
    max-width: 30px;
  }
}

/* ------------------------------------- 
  font・text
------------------------------------- */
/* font ******/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  color: #000000;
}

h1, h2, h3 {
  font-weight: bold;
  letter-spacing: 0.1rem;
}

h1 {
  font-size: 5rem;
  line-height: 1.8em;
}

h2 {
  font-size: 3.125rem;
  line-height: 1.5em;
}

h3 {
  font-size: 1.875rem;
  line-height: 1.5em;
}

p, dl, dt, li, th, td, a {
  font-size: 1rem;
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
  h2 {
    font-size: 2.1875rem;
  }
  h3 {
    font-size: 1.4375rem;
  }
  p, dl, dt, li, th, td, a {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.5625rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  p, dl, dt, li, th, td, a {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.875rem;
  }
  h2 {
    font-size: 1.4375rem;
  }
  h3 {
    font-size: 1rem;
  }
  p, dl, dt, li, th, td, a {
    font-size: 0.75rem;
  }
}
/* text ******/
.txt_bold {
  font-weight: bold;
}

.txt_normal {
  font-weight: normal;
}

.txt_red {
  color: #fb0238;
}

.txt_pink {
  color: #FE75AB;
}

.txt_blue {
  color: #56C5EF;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

/* ------------------------------------- 
  a
------------------------------------- */
a {
  color: #000000;
  transition: all 0.3s;
}

/* ------------------------------------- 
  layout
------------------------------------- */
.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

/* PC SP ******/
.sp-375, .sp-480, .sp-768, .sp-960, .sp-1024, .sp-1280, .sp-1440, .sp-1536, .sp-1920 {
  display: none !important;
}

@media (max-width: 1920px) {
  .sp-1920 {
    display: block !important;
  }
  .pc-1920 {
    display: none !important;
  }
}
@media (max-width: 1536px) {
  .sp-1536 {
    display: block !important;
  }
  .pc-1536 {
    display: none !important;
  }
}
@media (max-width: 1440px) {
  .sp-1440 {
    display: block !important;
  }
  .pc-1440 {
    display: none !important;
  }
}
@media (max-width: 1280px) {
  .sp-1280 {
    display: block !important;
  }
  .pc-1280 {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .sp-1024 {
    display: block !important;
  }
  .pc-1024 {
    display: none !important;
  }
}
@media (max-width: 960px) {
  .sp-960 {
    display: block !important;
  }
  .pc-960 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp-768 {
    display: block !important;
  }
  .pc-768 {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .sp-480 {
    display: block !important;
  }
  .pc-480 {
    display: none !important;
  }
}
@media (max-width: 375px) {
  .sp-375 {
    display: block !important;
  }
  .pc-375 {
    display: none !important;
  }
}
/* ------------------------------------- 
  button
------------------------------------- */
.button {
  position: relative;
  display: block;
  border-radius: 10px;
  max-width: 600px;
  width: 70%;
  margin: 0 auto;
  line-height: 100px;
  letter-spacing: 0.1rem;
  text-align: center;
  font-size: 1.5625rem;
  font-weight: bold;
  color: #FFFFFF;
}
.button:hover {
  text-decoration: none;
}
.button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 50px;
  height: 50px;
  transition: all 0.3s;
}

.button-line {
  background: #30D952;
}
.button-line::after {
  background: url(../images/arrow.svg) no-repeat;
  background-size: 100%;
}
.button-line:hover::after {
  right: 25px;
}

.button-entry {
  background: #0C4995;
}
.button-entry::after {
  background: url(../images/arrow2.svg) no-repeat;
  background-size: 100%;
}
.button-entry:hover::after {
  top: 53%;
}

@media screen and (max-width: 1024px) {
  .button {
    line-height: 80px;
    font-size: 1.25rem;
  }
  .button::after {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 768px) {
  .button {
    max-width: 450px;
    width: 100%;
    line-height: 60px;
    font-size: 1.125rem;
  }
  .button::after {
    right: 15px;
  }
  .button-line:hover::after {
    right: 10px;
  }
}
@media screen and (max-width: 480px) {
  .button {
    font-size: 1rem;
  }
  .button::after {
    right: 5px;
  }
  .button-entry::after {
    right: 10px;
  }
  .button-line:hover::after {
    right: 5px;
  }
}
/* ------------------------------------- 
  phone
------------------------------------- */
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ------------------------------------- 
  layout common
------------------------------------- */
.section-common {
  position: relative;
  width: 100%;
  padding: 100px 0 150px;
}
.section-common .title {
  margin-bottom: 90px;
}
.section-common .title h2 {
  max-width: 100%;
  width: 100%;
  font-size: 2.5rem;
  text-align: center;
  color: #072244;
}
.section-common .title .lead {
  max-width: 1220px;
  width: 90%;
  margin: 70px auto 0;
  font-size: 1.5625rem;
  line-height: 1.5em;
  text-align: center;
  font-weight: 600;
}
.section-common .contents {
  max-width: 1220px;
  width: 90%;
  margin: 0 auto;
}

section.cont-sub {
  padding-top: 200px;
}

ul.step {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
ul.step li {
  position: relative;
  border: 2px solid #0C4995;
  height: 100%;
  padding: 90px 30px 40px;
}
ul.step li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
  background: url(../images/arrow.svg) no-repeat;
  background-size: 100%;
  width: 30px;
  height: 48px;
}
ul.step li:last-child::after {
  opacity: 0;
}
ul.step h4 {
  color: #0C4995;
}
ul.step .num {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #0C4995;
  width: 80px;
  margin: 0;
  padding: 0;
  line-height: 80px;
  text-align: center;
  font-size: 1.875rem;
  font-weight: bold;
  color: #FFFFFF;
}
ul.step h4 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
}
ul.step p {
  margin-top: 30px;
}

ul.att li {
  font-size: 0.875rem;
}

@media screen and (max-width: 1024px) {
  .section-common {
    padding: 70px 0 120px;
  }
  .section-common .title {
    margin-bottom: 70px;
  }
  .section-common .title h2 {
    font-size: 1.875rem;
  }
  .section-common .title .lead {
    margin-top: 50px;
    font-size: 1.25rem;
  }
  section.cont-sub {
    padding-top: 150px;
  }
  ul.step {
    grid-template-columns: repeat(2, 1fr);
  }
  ul.step li {
    padding: 60px 30px 40px;
  }
  ul.step li:nth-child(2)::after {
    opacity: 0;
  }
  ul.step .num {
    width: 60px;
    line-height: 60px;
  }
  ul.step h4 {
    font-size: 1.125rem;
  }
  ul.step p {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .section-common {
    padding: 70px 0 100px;
  }
  .section-common .title {
    margin-bottom: 50px;
  }
  .section-common .title h2 {
    font-size: 1.5625rem;
  }
  .section-common .title .lead {
    margin-top: 30px;
    font-size: 1rem;
  }
  section.cont-sub {
    padding-top: 100px;
  }
  ul.step {
    grid-template-columns: repeat(2, 1fr);
  }
  ul.step li {
    padding: 60px 20px 30px;
  }
  ul.step li:nth-child(2)::after {
    border: none;
  }
  ul.step .num {
    width: 50px;
    line-height: 50px;
  }
  ul.step h4 {
    font-size: 1rem;
  }
  ul.att li {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  .section-common {
    padding: 50px 0 70px;
  }
  .section-common .title {
    margin-bottom: 30px;
  }
  .section-common .title h2 {
    font-size: 1.25rem;
  }
  .section-common .title .lead {
    font-size: 0.875rem;
  }
  ul.step {
    grid-template-columns: repeat(1, 1fr);
  }
  ul.step li::after {
    top: auto;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%) rotate(90deg);
  }
  ul.step li:nth-child(2):after {
    opacity: 1;
  }
  ul.step .num {
    top: -1px;
    left: -1px;
  }
}
/* ------------------------------------- 
  floating-common
------------------------------------- */
.floating-common {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 9995;
}

/* ------------------------------------- 
  readmore 折り畳みメニュー
------------------------------------- */
.readmore__hidden {
  display: none;
}

.readmore__btn {
  cursor: pointer;
}

.readmore__btn .close {
  display: none;
}

.readmore__btn.is-open .open {
  display: none;
}

.readmore__btn.is-open .close {
  display: inline;
}

/* ------------------------------------- 
  faq
------------------------------------- */
.faq .wrap {
  max-width: 1000px;
}
.faq .faq-list {
  width: 100%;
}
.faq .faq-list li {
  background: #F6F6F6;
  margin-bottom: 10px;
  padding: 40px;
}
.faq .faq-list li:last-child {
  margin-bottom: 0;
}
.faq .faq-list li p.question {
  position: relative;
  margin-bottom: 30px;
  padding-left: 60px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #072244;
}
.faq .faq-list li p.question::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  background: url(../images/faq_icon-q.svg) no-repeat;
  background-size: 100%;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 1024px) {
  .faq .faq-list li {
    padding: 30px;
  }
  .faq .faq-list li p.question {
    margin-bottom: 20px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .faq .faq-list li {
    padding: 20px;
  }
  .faq .faq-list li p.question {
    margin-bottom: 10px;
    padding-left: 40px;
    font-size: 1rem;
  }
  .faq .faq-list li p.question::before {
    top: 0;
    width: 30px;
    height: 30px;
  }
}

/* ------------------------------------- 
  recommended
------------------------------------- */
.recommended {
  padding-top: 0;
}
.recommended .recommended-list {
  display: grid;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.recommended .recommended-list li {
  height: 100%;
}
.recommended .recommended-list li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  background: #FFFFFF;
  border: 5px solid #ddd;
  height: 100%;
  padding: 30px 20px;
}
.recommended .recommended-list li a .image {
  max-width: 120px;
}
.recommended .recommended-list li a .text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.recommended .recommended-list li a .text h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  letter-spacing: 0;
}
.recommended .recommended-list li a .text p {
  font-size: 0.875rem;
  line-height: 1.6em;
}
.recommended .recommended-list li a .text p.conditions {
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 10px auto;
  padding: 5px;
  color: #555;
  font-size: 0.75rem;
}
.recommended .recommended-list li a .text .under {
  margin-top: auto;
}
.recommended .recommended-list li a .text p.point,
.recommended .recommended-list li a .text p.approval {
  text-align: center;
}
.recommended .recommended-list li a .text p.point span,
.recommended .recommended-list li a .text p.approval span {
  font-size: 1.125rem;
  font-weight: 700;
}
.recommended .recommended-list li a .text p.point span {
  color: #FE75AB;
}
.recommended .recommended-list li a .text p.approval {
  border-top: 1px solid #6B6B6B;
  margin-top: 5px;
  padding-top: 5px;
}
.recommended .recommended-list li a .text p.approval span {
  color: #5391DE;
}
.recommended .recommended-list li a:hover {
  text-decoration: none;
  background: #E6ECF4;
}
.recommended--att {
  background: #F6F6F6;
  max-width: 900px;
  width: 100%;
  margin: 50px auto 0;
  padding: 50px;
}
.recommended--att h3 {
  font-weight: 600;
  font-size: 1.5625rem;
  text-align: center;
}
.recommended--att ul {
  margin-top: 30px;
}
.recommended--att li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.5em;
}
.recommended--att li::before {
  content: "※";
  position: absolute;
  left: 0;
}
.recommended--att li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .recommended .recommended-list li a {
    gap: 20px;
    padding: 20px;
  }
  .recommended .recommended-list li a .text h3 {
    font-size: 0.875rem;
  }
  .recommended .recommended-list li a .text p {
    font-size: 0.75rem;
  }
  .recommended--att {
    padding: 30px;
  }
  .recommended--att h3 {
    font-size: 1.25rem;
  }
  .recommended--att ul {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .recommended .recommended-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .recommended .recommended-list li a {
    gap: 10px;
    padding: 15px;
  }
  .recommended--att {
    padding: 20px;
  }
  .recommended--att h3 {
    font-size: 1.125rem;
  }
  .recommended--att ul {
    margin-top: 10px;
  }
  .recommended--att li {
    padding-left: 20px;
  }
}

/* ------------------------------------- 
  important
------------------------------------- */
.important .wrap {
  max-width: 1000px;
}
.important ul.important-list {
  background: #F6F6F6;
  padding: 40px 40px 40px 60px;
  list-style: disc;
}
.important ul.important-list li {
  margin-bottom: 10px;
}
.important ul.important-list li:last-child {
  margin-bottom: 0;
}
.important ul.important-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 100px;
}
.important ul.important-menu li a {
  position: relative;
  padding-left: 20px;
  font-weight: bold;
  color: #0C4995;
}
.important ul.important-menu li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #0C4995;
  border-right: 0;
}
@media screen and (max-width: 1024px) {
  .important ul.important-list {
    padding: 30px 30px 30px 50px;
  }
  .important ul.important-menu {
    margin-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .important ul.important-list {
    padding: 20px 20px 20px 40px;
  }
  .important ul.important-menu {
    gap: 30px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 480px) {
  .important ul.important-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ------------------------------------- 
  タブ
------------------------------------- */
.tab-list {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
  margin-top: 70px;
  padding: 0 10px;
}
.tab-list::before {
  content: "";
  position: absolute;
  bottom: 0;
  background: #072244;
  background-size: 100%;
  width: 100%;
  height: 1px;
  z-index: -1;
}
.tab-list .tab {
  border: 1px solid #072244;
  background: #072244;
  border-radius: 10px 10px 0 0;
  max-width: 300px;
  width: 25%;
  padding: 15px;
  text-align: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.tab-list .tab:hover {
  opacity: 0.7;
}
.tab-list .tab.active {
  background: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  color: #072244;
}
.tab-list .tab.active:hover {
  opacity: 1;
}

.tab-contents {
  display: none;
  padding-top: 50px;
}

.tab-contents.show {
  display: block;
}

@media screen and (max-width: 1024px) {
  .tab-list {
    margin-top: 50px;
  }
  .tab-list .tab {
    width: 30%;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .tab-list .tab {
    width: 30%;
    padding: 10px;
    font-size: 0.875rem;
    letter-spacing: 0;
  }
  .tab-contents {
    padding-top: 30px;
  }
}
@media screen and (max-width: 550px) {
  .tab-list {
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 30px;
  }
  .tab-list::before {
    background: transparent;
  }
  .tab-list .tab {
    position: relative;
    width: 47%;
    border-radius: 5px;
    padding: 2px;
    font-size: 0.75rem;
  }
  .tab-list .tab.active {
    border-bottom-color: #072244;
  }
  .tab-list .tab::after, .tab-list .tab::before {
    content: "";
    position: absolute;
    top: 11px;
    right: 15px;
    width: 2px;
    height: 10px;
    border-radius: 9999px;
    background-color: #ffffff;
    transform-origin: 50% calc(100% - 1px);
  }
  .tab-list .tab::before {
    transform: rotate(45deg);
  }
  .tab-list .tab::after {
    transform: rotate(-45deg);
  }
}
/* ------------------------------------- 
  page_top
------------------------------------- */
#page_top {
  position: fixed;
  right: 5%;
  z-index: 9997;
}
#page_top p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #FF4E95;
  border: 1px solid #FFFFFF;
  border-radius: 100%;
  text-align: center;
  font-size: 0.9375rem;
  letter-spacing: 0;
  color: #FFFFFF;
}
#page_top:hover {
  cursor: pointer;
  text-decoration: none;
  opacity: 0.7;
}

/* ------------------------------------- 
  page-link_floating
------------------------------------- */
.page-link_floating {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}
.page-link_floating .bnr_area {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 15px 10px;
}
.page-link_floating .bnr_area ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  max-width: 100%;
  margin: 0 auto;
}
.page-link_floating .bnr_area__btn {
  font-size: 1rem;
  line-height: 50px;
  filter: drop-shadow(0px 0px transparent);
}
.page-link_floating .bnr_area__btn:hover {
  opacity: 1;
}
.page-link_floating .bnr_area__btn .icon {
  max-width: 30px;
  left: 10px;
}
@media screen and (max-width: 480px) {
  .page-link_floating .bnr_area {
    padding: 10px;
  }
  .page-link_floating .bnr_area ul {
    gap: 5px;
  }
  .page-link_floating .bnr_area__btn {
    font-size: 0.75rem;
    line-height: 35px;
  }
  .page-link_floating .bnr_area__btn .icon {
    display: none;
  }
}

/* ------------------------------------- 
  footer
------------------------------------- */
.footer {
  background: #072244;
}
.footer .wrap {
  padding: 40px 0;
}
.footer .box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 30px;
}
.footer .title {
  max-width: 273px;
}
.footer ul.sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer ul.sns-list li a {
  width: 50px;
}
.footer ul.sns-list li a:hover {
  opacity: 0.7;
}
.footer ul.footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 0;
}
.footer ul.footer-menu li {
  position: relative;
  padding: 0 10px;
}
.footer ul.footer-menu li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #FFFFFF;
  background-size: 100%;
  width: 1px;
  height: 100%;
}
.footer ul.footer-menu li:first-child {
  padding-left: 0;
}
.footer ul.footer-menu li:last-child {
  padding-right: 0;
}
.footer ul.footer-menu li:last-child::after {
  background: transparent;
}
.footer ul.footer-menu li a {
  text-decoration: none;
  color: #FFFFFF;
}
.footer ul.footer-menu li a:hover {
  text-decoration: underline;
}
.footer .footer-credit p {
  text-align: center;
  color: #FFFFFF;
}
@media screen and (max-width: 1280px) {
  .footer .box {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .footer .box {
    flex-wrap: wrap;
  }
  .footer ul.footer-menu {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 80px;
  }
  .footer .wrap {
    padding: 30px 0;
  }
  .footer .box {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    padding-bottom: 50px;
  }
  .footer .wrap {
    padding: 20px 0;
  }
  .footer ul.footer-menu {
    flex-direction: column;
  }
  .footer ul.footer-menu li {
    padding: 0;
  }
  .footer ul.footer-menu li::after {
    background: transparent;
  }
}

/* ------------------------------------- 
  detail_schedule
------------------------------------- */
.detail_schedule {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
.detail_schedule .schedule__step {
  position: relative;
}
.detail_schedule .schedule__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #0C4995;
  width: 10px;
  height: 100%;
  z-index: -1;
}
.detail_schedule .schedule__step li {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 30px;
  background: #E6ECF4;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 30px;
  padding: 15px;
}
.detail_schedule .schedule__step li:last-child {
  margin-bottom: 0;
}
.detail_schedule .schedule__step li h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0C4995;
  border-radius: 5px;
  width: 160px;
  color: #FFFFFF;
  font-size: 1.5625rem;
}
.detail_schedule .schedule__step li .detail {
  width: calc(100% - 190px);
}
.detail_schedule .schedule__step li .detail p {
  font-weight: 600;
  color: #0C4995;
}
.detail_schedule .schedule__step li .detail .data {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.detail_schedule .schedule__step li .detail .data p {
  font-weight: 700;
}
.detail_schedule .schedule__step li .detail .data .tag {
  background: #FFFFFF;
  border-radius: 100px;
  width: 140px;
  padding: 3px;
  text-align: center;
  font-size: 0.875rem;
  color: #0C4995;
}
.detail_schedule .schedule__step li.goal {
  background: #FF4E95;
}
.detail_schedule .schedule__step li.goal h3 {
  background: #FFFFFF;
  color: #FF4E95;
}
.detail_schedule .schedule__step li.goal .detail p {
  color: #FFFFFF;
}
.detail_schedule .schedule__step li.goal .detail .data .tag {
  color: #FF4E95;
}
@media screen and (max-width: 1024px) {
  .detail_schedule .schedule__step li {
    gap: 20px;
  }
  .detail_schedule .schedule__step li h3 {
    font-size: 1.25rem;
  }
  .detail_schedule .schedule__step li .detail .data .tag {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .detail_schedule .schedule__step li h3 {
    width: 120px;
    font-size: 1.125rem;
  }
  .detail_schedule .schedule__step li .detail {
    width: calc(100% - 140px);
  }
  .detail_schedule .schedule__step li .detail .data .tag {
    width: 110px;
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  .detail_schedule .schedule__step::before {
    width: 8px;
  }
  .detail_schedule .schedule__step li {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  .detail_schedule .schedule__step li h3 {
    width: 100%;
    font-size: 1rem;
    line-height: 30px;
  }
  .detail_schedule .schedule__step li .detail {
    width: 100%;
  }
}

/* ------------------------------------- 
  detail_benefits
------------------------------------- */
.detail_benefits {
  background: #0C4995;
}
.detail_benefits .title h2, .detail_benefits .title .lead {
  color: #FFFFFF;
}
.detail_benefits .contents {
  background: #FFFFFF;
  margin-bottom: 100px;
  padding: 70px;
}
.detail_benefits .contents:last-child {
  margin-bottom: 0;
}
.detail_benefits .contents-title h3 {
  color: #0C4995;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 2.5rem;
}
.detail_benefits .contents-title .lead {
  margin-top: 70px;
  font-weight: 600;
  font-size: 1.5625rem;
  text-align: center;
  line-height: 1.5em;
}
.detail_benefits .contents-detail {
  margin-top: 70px;
}
.detail_benefits .benefits-step {
  background: transparent;
  padding: 0 !important;
}
.detail_benefits .benefits-step .title h2 {
  color: #FFFFFF;
}
.detail_benefits .benefits-step ul.wrap {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.detail_benefits .benefits-step ul.wrap li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: #FFFFFF;
  border: 10px solid;
  -o-border-image: linear-gradient(90deg, rgb(139, 219, 255) 0%, rgb(78, 149, 238) 100%);
     border-image: linear-gradient(90deg, rgb(139, 219, 255) 0%, rgb(78, 149, 238) 100%);
  border-image-slice: 1;
  padding: 50px;
  height: 100%;
}
.detail_benefits .benefits-step ul.wrap li .title-sub {
  background: #5391DE;
  padding: 3px;
  color: #FFFFFF;
  text-align: center;
  font-weight: 700;
}
.detail_benefits .benefits-step ul.wrap li h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  font-size: 1.5625rem;
  color: #0C4995;
  text-align: center;
}
.detail_benefits .benefits-step ul.wrap li.goal {
  -o-border-image: linear-gradient(90deg, rgb(252, 180, 125) 0%, rgb(255, 78, 149) 100%);
     border-image: linear-gradient(90deg, rgb(252, 180, 125) 0%, rgb(255, 78, 149) 100%);
  border-image-slice: 1;
}
.detail_benefits .benefits-step ul.wrap li.goal .title-sub {
  background: #FF4E95;
}
.detail_benefits .benefits-step ul.wrap li.goal h3 {
  color: #FF4E95;
}
.detail_benefits .benefits-step ul.detail {
  list-style-type: disc;
  margin-left: 20px;
}
.detail_benefits .benefits-step ul.detail li {
  border: none;
  display: list-item;
  background: transparent;
  width: 100% !important;
  height: auto;
  margin: 0;
  padding: 0 !important;
}
.detail_benefits .benefits-step ul.detail li::after {
  position: static;
  border: none;
}
.detail_benefits .benefits-system ul {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.detail_benefits .benefits-system li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background: #E6ECF4;
  height: 100%;
  padding: 60px 30px;
}
.detail_benefits .benefits-system li .text {
  margin-top: 30px;
}
.detail_benefits .benefits-system li img {
  max-width: 80px;
  margin-top: 10px;
}
.detail_benefits .benefits-system li h4 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  text-align: center;
  font-weight: bold;
  color: #0C4995;
}
.detail_benefits .benefits-system li p {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .detail_benefits .contents {
    margin-bottom: 40px;
    padding: 50px;
  }
  .detail_benefits .contents-title h3 {
    font-size: 1.5625rem;
  }
  .detail_benefits .contents-title .lead {
    margin-top: 40px;
    font-size: 1.125rem;
  }
  .detail_benefits .contents-detail {
    margin-top: 40px;
  }
  .detail_benefits .benefits-step ul.wrap {
    gap: 30px;
  }
  .detail_benefits .benefits-step ul.wrap li {
    gap: 25px;
    padding: 25px;
  }
  .detail_benefits .benefits-step ul.wrap li h3 {
    min-height: 60px;
    font-size: 1.25rem;
  }
  .detail_benefits .benefits-system ul {
    gap: 30px;
  }
  .detail_benefits .benefits-system li {
    padding: 40px 25px;
  }
  .detail_benefits .benefits-system li h4 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .detail_benefits .contents {
    padding: 25px;
  }
  .detail_benefits .contents-title h3 {
    font-size: 1.25rem;
  }
  .detail_benefits .contents-title .lead {
    margin-top: 20px;
    font-size: 1rem;
  }
  .detail_benefits .contents-detail {
    margin-top: 25px;
  }
  .detail_benefits .benefits-step ul.wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .detail_benefits .benefits-step ul.wrap li {
    gap: 20px;
    border-width: 5px;
    max-width: 400px;
    width: 80%;
    margin: 0 auto;
    padding: 20px;
  }
  .detail_benefits .benefits-step ul.wrap li h3 {
    min-height: auto;
    font-size: 1.125rem;
  }
  .detail_benefits .benefits-step ul.detail li {
    line-height: 1.5em;
  }
  .detail_benefits .benefits-system ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .detail_benefits .benefits-system li {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
  }
  .detail_benefits .benefits-system li .text {
    margin-top: 0;
  }
  .detail_benefits .benefits-system li h4, .detail_benefits .benefits-system li p {
    text-align: left;
  }
  .detail_benefits .benefits-system li h4 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .detail_benefits .contents {
    padding: 20px;
  }
  .detail_benefits .contents-title h3 {
    font-size: 1.125rem;
  }
  .detail_benefits .contents-title .lead {
    margin-top: 15px;
    font-size: 0.875rem;
  }
  .detail_benefits .contents-detail {
    margin-top: 20px;
  }
  .detail_benefits .benefits-step ul.wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .detail_benefits .benefits-step ul.wrap li {
    width: 100%;
  }
  .detail_benefits .benefits-step ul.wrap li h3 {
    font-size: 1rem;
  }
  .detail_benefits .benefits-system ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .detail_benefits .benefits-system li {
    gap: 10px;
    padding: 20px;
  }
  .detail_benefits .benefits-system li p {
    line-height: 1.6em;
  }
  .detail_benefits .benefits-system li img {
    max-width: 60px;
  }
}

/* ------------------------------------- 
  detail_supporters
------------------------------------- */
/* ------------------------------------- 
  detail_faq
------------------------------------- */
.detail_faq {
  padding-top: 0;
}

/* ------------------------------------- 
  detail_important
------------------------------------- */
.detail_important {
  padding-top: 0;
}

.audition_entry {
  margin: 25px 10px;
}

/* ------------------------------------- 
  rank common
------------------------------------- */
.rank {
  margin-bottom: 200px;
}
.rank .section_rank-common {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  padding: 100px 0 150px;
  box-sizing: border-box;
}
.rank .section_rank-common::before {
  position: static;
}
.rank .vote {
  display: block;
  background: #5391DE;
  border: 1px solid #5391DE;
  border-radius: 5px;
  width: 120px;
  margin: 10px auto 0;
  padding: 0px 5px;
  color: #FFFFFF;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
}
.rank .vote:hover {
  text-decoration: none;
  background: #FFFFFF;
  color: #5391DE;
}
@media screen and (max-width: 1024px) {
  .rank {
    margin-bottom: 150px;
  }
  .rank .section_rank-common {
    padding: 70px 0 120px;
  }
}
@media screen and (max-width: 768px) {
  .rank {
    margin-bottom: 100px;
  }
  .rank .section_rank-common {
    padding: 50px 0 100px;
  }
}
@media screen and (max-width: 480px) {
  .rank {
    margin-bottom: 50px;
  }
  .rank .section_rank-common {
    padding-bottom: 70px;
  }
}

/* ------------------------------------- 
  coming-soon
------------------------------------- */
.coming-soon p {
  background: #F6F6F6;
  border-radius: 10px;
  padding: 50px;
  font-size: 3.125rem;
  text-align: center;
  font-weight: 700;
  text-align: center;
  color: #0C4995;
  line-height: 1.8em;
}
@media screen and (max-width: 1024px) {
  .coming-soon p {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .coming-soon p {
    padding: 40px 0;
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .coming-soon p {
    font-size: 1.5625rem;
  }
}

/* ------------------------------------- 
  rank_recommended
------------------------------------- */
.rank_recommended {
  background: #0C4995;
  padding-top: 100px;
}
.rank_recommended .title h2, .rank_recommended .lead {
  color: #FFFFFF;
}
.rank_recommended .lead {
  max-width: 900px;
  width: 100%;
  margin: 50px auto 20px;
}
.rank_recommended .recommended--att {
  background: #F6F6F6;
}
@media screen and (max-width: 1024px) {
  .rank_recommended {
    padding-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .rank_recommended {
    padding-top: 50px;
  }
  .rank_recommended .lead {
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .rank_recommended {
    padding-top: 50px;
  }
  .rank_recommended .lead {
    line-height: 1.6em;
  }
}

/* ------------------------------------- 
  rank_entry-detail
------------------------------------- */
.rank_entry-detail {
  max-width: 900px;
  width: 90%;
  margin: 30px auto 0;
}
.rank_entry-detail .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F6F6F6;
  border-radius: 10px;
  padding: 20px 25px;
}
.rank_entry-detail ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.rank_entry-detail ul li {
  padding-right: 5px;
  font-weight: 600;
}
.rank_entry-detail ul li span {
  display: inline-block;
  padding-left: 5px;
  font-size: 1.5625rem;
  color: #5391DE;
}
.rank_entry-detail ul li::after {
  content: "／";
  padding-left: 5px;
}
.rank_entry-detail ul li:last-child {
  padding-right: 0;
}
.rank_entry-detail ul li:last-child::after {
  content: "";
  padding-left: 0;
}
.rank_entry-detail .data {
  font-weight: 600;
}
.rank_entry-detail .data span {
  display: inline-block;
  padding-left: 5px;
  font-size: 1.5625rem;
  color: #FF4E95;
}
.rank_entry-detail .att {
  margin-top: 20px;
}
.rank_entry-detail .att p {
  font-size: 0.875rem;
  color: #fb0238;
  line-height: 1.6em;
}
@media screen and (max-width: 1024px) {
  .rank_entry-detail ul li span {
    font-size: 1.25rem;
  }
  .rank_entry-detail .data span {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .rank_entry-detail ul li span {
    font-size: 1rem;
  }
  .rank_entry-detail .data span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .rank_entry-detail .wrap {
    flex-direction: column;
  }
  .rank_entry-detail .att p {
    font-size: 0.75rem;
  }
}

/* ------------------------------------- 
  rank_ranking
------------------------------------- */
.rank_ranking .podium {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 100px;
}
.rank_ranking .podium li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 30%;
  padding-top: 50px;
}
.rank_ranking .podium li .image {
  position: relative;
  max-width: 150px;
  margin: 0 auto;
}
.rank_ranking .podium li .image .user_icon {
  overflow: hidden;
  border-radius: 100%;
}
.rank_ranking .podium li .image .badge {
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
}
.rank_ranking .podium li .text {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.rank_ranking .podium li .text .name {
  color: #072244;
  margin: 30px auto 10px;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 600;
}
.rank_ranking .podium li .text .tag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.rank_ranking .podium li .text .tag li {
  overflow: hidden;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
}
.rank_ranking .podium li .text .tag li a {
  display: block;
}
.rank_ranking .podium li .text .tag li a:hover {
  opacity: 0.7;
}
.rank_ranking .podium li .text .supporters {
  margin-bottom: 10px;
  font-size: 0.875rem;
  text-align: center;
}
.rank_ranking .podium li .text .supporters span {
  display: inline-block;
  font-size: 1.125rem;
  padding-left: 10px;
}
.rank_ranking .podium li .text .point {
  margin-top: auto;
  font-size: 1.5625rem;
  font-weight: 600;
  text-align: center;
  color: #FF4E95;
}
.rank_ranking .podium li .text .point span {
  font-size: 1.125rem;
}
.rank_ranking .podium li.first {
  padding-top: 0;
}
.rank_ranking .podium li.first .image {
  max-width: 170px;
}
.rank_ranking .podium li.first .image .badge {
  background: url(../images/badge_first.svg) no-repeat;
  background-size: 100%;
}
.rank_ranking .podium li.second .image .badge {
  background: url(../images/badge_second.svg) no-repeat;
  background-size: 100%;
}
.rank_ranking .podium li.third .image .badge {
  background: url(../images/badge_third.svg) no-repeat;
  background-size: 100%;
}
.rank_ranking__list {
  margin-top: 100px;
}
.rank_ranking__list ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 30px;
  border-top: 1px solid #6B6B6B;
  padding: 20px;
}
.rank_ranking__list ul li:last-child {
  border-bottom: 1px solid #6B6B6B;
}
.rank_ranking__list ul li .list-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  width: 80%;
}
.rank_ranking__list ul li .list-wrap .num {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E6ECF4;
  border-radius: 100%;
  color: #0C4995;
  font-weight: 600;
  font-size: 1.25rem;
  width: 50px;
  height: 50px;
}
.rank_ranking__list ul li .list-wrap .image {
  overflow: hidden;
  border-radius: 100%;
  width: 80px;
  height: 80px;
}
.rank_ranking__list ul li .list-wrap .user {
  width: calc(100% - 170px);
}
.rank_ranking__list ul li .list-wrap .user .name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.rank_ranking__list ul li .list-wrap .user .name p {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
}
.rank_ranking__list ul li .list-wrap .user .name ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
}
.rank_ranking__list ul li .list-wrap .user .name ul li {
  border-radius: 100%;
  border: none;
  overflow: hidden;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
}
.rank_ranking__list ul li .list-wrap .user .name ul li a {
  display: block;
}
.rank_ranking__list ul li .list-wrap .user .name ul li a:hover {
  opacity: 0.7;
}
.rank_ranking__list ul li .list-wrap .user .supporters {
  font-size: 0.875rem;
}
.rank_ranking__list ul li .list-wrap .user .supporters span {
  display: inline-block;
  font-size: 1.125rem;
  padding-left: 10px;
}
.rank_ranking__list ul li .point-wrap .point {
  font-size: 1.5625rem;
  font-weight: 600;
  text-align: center;
  color: #FF4E95;
}
.rank_ranking__list ul li .point-wrap .point span {
  font-size: 1rem;
}
.rank_ranking .readmore__btn {
  background: #5391DE;
  padding: 10px;
  text-align: center;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.25rem;
}
.rank_ranking .readmore__btn:hover {
  text-decoration: underline;
}
.rank_ranking__list--att {
  margin-top: 10px;
}
.rank_ranking__list--att p {
  font-size: 0.875rem;
}
@media screen and (max-width: 1024px) {
  .rank_ranking .podium {
    gap: 50px;
  }
  .rank_ranking .podium li .image .badge {
    bottom: -20px;
    width: 40px;
    height: 40px;
  }
  .rank_ranking .podium li .text .name {
    font-size: 1rem;
    line-height: 1.5em;
  }
  .rank_ranking .podium li .text .supporters {
    font-size: 0.75rem;
  }
  .rank_ranking .podium li .text .supporters span {
    font-size: 1rem;
  }
  .rank_ranking .podium li .text .point {
    font-size: 1.25rem;
  }
  .rank_ranking .podium li .text .point span {
    font-size: 1rem;
  }
  .rank_ranking__list {
    margin-top: 70px;
  }
  .rank_ranking__list ul li .list-wrap .num {
    font-size: 1.125rem;
    width: 40px;
    height: 40px;
  }
  .rank_ranking__list ul li .list-wrap .image {
    width: 60px;
    height: 60px;
  }
  .rank_ranking__list ul li .list-wrap .user {
    width: calc(100% - 140px);
  }
  .rank_ranking__list ul li .list-wrap .user .name p {
    font-size: 1rem;
    line-height: 1.5em;
  }
  .rank_ranking__list ul li .list-wrap .user .supporters {
    font-size: 0.75rem;
  }
  .rank_ranking__list ul li .list-wrap .user .supporters span {
    font-size: 1rem;
  }
  .rank_ranking__list ul li .point-wrap .point {
    font-size: 1.25rem;
  }
  .rank_ranking__list ul li .point-wrap .point span {
    font-size: 0.875rem;
  }
  .rank_ranking .readmore__btn {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .rank_ranking .podium {
    gap: 20px;
  }
  .rank_ranking .podium li {
    padding-top: 30px;
  }
  .rank_ranking .podium li .text .name {
    font-size: 0.875rem;
  }
  .rank_ranking .podium li .text .point {
    font-size: 1.125rem;
  }
  .rank_ranking .podium li .text .point span {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .rank_ranking .podium {
    position: relative;
    flex-direction: column;
    gap: 30px;
  }
  .rank_ranking .podium li {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .rank_ranking .podium li .image {
    width: 80px;
    height: 80px;
    margin: 0;
  }
  .rank_ranking .podium li .image .badge {
    bottom: -15px;
    width: 30px;
    height: 30px;
  }
  .rank_ranking .podium li .text {
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% - 100px);
  }
  .rank_ranking .podium li .text p, .rank_ranking .podium li .text ul {
    width: 100%;
    text-align: left !important;
    margin: 0;
  }
  .rank_ranking .podium li .text .name {
    margin-top: 0;
  }
  .rank_ranking .podium li .text .tag {
    justify-content: flex-start;
    gap: 5px;
  }
  .rank_ranking .podium li .text .tag li {
    width: 30px;
    height: 30px;
  }
  .rank_ranking .podium li .text .supporters {
    margin-bottom: 5px;
  }
  .rank_ranking .podium li .text .supporters span {
    font-size: 0.875rem;
  }
  .rank_ranking .podium li .text .vote {
    margin-left: 0;
  }
  .rank_ranking .podium li.first {
    order: 1;
  }
  .rank_ranking .podium li.first .image {
    width: 80px;
    height: 80px;
    margin: 0;
  }
  .rank_ranking .podium li.second {
    order: 2;
  }
  .rank_ranking .podium li.third {
    order: 3;
  }
  .rank_ranking__list {
    margin-top: 50px;
  }
  .rank_ranking__list ul li {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px;
    gap: 10px;
  }
  .rank_ranking__list ul li .list-wrap {
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }
  .rank_ranking__list ul li .list-wrap .num {
    position: relative;
    background: transparent;
    font-size: 1rem;
    width: 100%;
    height: 40px;
  }
  .rank_ranking__list ul li .list-wrap .num::after {
    content: "";
    position: absolute;
    background: #F6F6F6;
    border-radius: 100%;
    background-size: 100%;
    width: 40px;
    height: 40px;
    z-index: -1;
  }
  .rank_ranking__list ul li .list-wrap .image {
    width: 60px;
    height: 60px;
  }
  .rank_ranking__list ul li .list-wrap .user {
    width: calc(100% - 80px);
  }
  .rank_ranking__list ul li .list-wrap .user .name {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .rank_ranking__list ul li .list-wrap .user .name p {
    font-size: 1rem;
    line-height: 1.5em;
  }
  .rank_ranking__list ul li .list-wrap .user .name ul {
    margin-left: 0;
  }
  .rank_ranking__list ul li .list-wrap .user .supporters span {
    font-size: 0.875rem;
  }
  .rank_ranking__list ul li .point-wrap {
    width: 100%;
    margin: 0 auto;
  }
  .rank_ranking__list ul li .point-wrap .vote {
    display: block;
  }
  .rank_ranking__list ul li .point-wrap .point {
    font-size: 1.125rem;
  }
  .rank_ranking__list ul li .point-wrap .point span {
    font-size: 0.75rem;
  }
  .rank_ranking .readmore__btn {
    font-size: 1rem;
  }
  .rank_ranking__list--att p {
    font-size: 0.75rem;
  }
}

/* ------------------------------------- 
  rank tooltip/hukidashi
------------------------------------- */
.podium .tooltip,
.rank_ranking__list .tooltip {
  position: relative;
  cursor: pointer;
  margin: 0;
  width: 100%;
}
.podium .tooltip .supporters,
.rank_ranking__list .tooltip .supporters {
  display: inline-block;
  border-bottom: 1px solid #000000;
  color: #000000;
  line-height: 1.2em;
  font-weight: bold;
}
.podium .tooltip:hover .supporters,
.rank_ranking__list .tooltip:hover .supporters {
  border-bottom-color: #0C4995;
  color: #0C4995;
}
.podium .tooltip .fukidashi,
.rank_ranking__list .tooltip .fukidashi {
  display: none;
  position: absolute;
  background: #FFFFFF;
  border-radius: 10px;
  border: 5px solid #0C4995;
  padding: 20px;
  width: auto;
  z-index: 8000;
}
.podium .tooltip .fukidashi p.title,
.rank_ranking__list .tooltip .fukidashi p.title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #0C4995;
  padding-bottom: 10px;
  margin: 0;
  font-weight: bold;
  font-size: 1.25rem;
}
.podium .tooltip .fukidashi p.title span,
.rank_ranking__list .tooltip .fukidashi p.title span {
  display: block;
}
.podium .tooltip .fukidashi p.title span img,
.rank_ranking__list .tooltip .fukidashi p.title span img {
  max-width: 25px;
}
.podium .tooltip .fukidashi__list,
.rank_ranking__list .tooltip .fukidashi__list {
  border-top: 2px solid #0C4995;
}
.podium .tooltip .fukidashi__list li,
.rank_ranking__list .tooltip .fukidashi__list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  border: none;
  width: 100%;
  padding: 20px 0 0 0;
}
.podium .tooltip .fukidashi__list li span.num1-3,
.rank_ranking__list .tooltip .fukidashi__list li span.num1-3 {
  width: 40px;
}
.podium .tooltip .fukidashi__list li span.num4-5,
.rank_ranking__list .tooltip .fukidashi__list li span.num4-5 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0C4995;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: bold;
}
.podium .tooltip .fukidashi__list li p,
.rank_ranking__list .tooltip .fukidashi__list li p {
  width: calc(100% - 50px);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1em;
}
.podium .tooltip .fukidashi__list li p span,
.rank_ranking__list .tooltip .fukidashi__list li p span {
  font-size: 0.75rem;
}
.podium .tooltip .fukidashi__list li p span.fukidashi__name,
.rank_ranking__list .tooltip .fukidashi__list li p span.fukidashi__name {
  font-weight: normal;
  font-size: 0.75rem;
}
.podium .tooltip .fukidashi::before,
.rank_ranking__list .tooltip .fukidashi::before {
  content: "";
  position: absolute;
  bottom: 100%;
  border: 10px solid transparent;
  border-bottom: 15px solid #0C4995;
}
.podium .tooltip:hover .fukidashi,
.rank_ranking__list .tooltip:hover .fukidashi {
  display: inline-block;
  top: 40px;
  left: 0;
}

.podium .tooltip {
  text-align: center;
}
.podium .tooltip .fukidashi::before {
  left: 50%;
  transform: translateX(-50%);
}

.rank_ranking__list .tooltip .fukidashi::before {
  left: 20px;
}

@media screen and (max-width: 768px) {
  .podium .tooltip .fukidashi:before,
  .rank_ranking__list .tooltip .fukidashi:before {
    left: 20px;
    transform: none;
  }
  .podium .tooltip:hover .fukidashi,
  .rank_ranking__list .tooltip:hover .fukidashi {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .podium .tooltip,
  .rank_ranking__list .tooltip {
    text-align: left;
  }
  .podium .tooltip p.supporters,
  .rank_ranking__list .tooltip p.supporters {
    display: inline-block;
    width: auto !important;
  }
}
/* ------------------------------------- 
  rank_sns
------------------------------------- */
.rank_sns {
  background: #072244;
  border-radius: 20px;
  padding: 50px !important;
}
.rank_sns h2 {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}
.rank_sns .sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.rank_sns .sns-list li a {
  display: block;
}
.rank_sns .sns-list li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.rank_sns .sns-list li.line a {
  background: #30D952;
  border-radius: 5px;
  padding: 10px 30px;
  color: #FFFFFF;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .rank_sns h2 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .rank_sns {
    padding: 30px !important;
  }
  .rank_sns h2 {
    font-size: 1rem;
  }
  .rank_sns .sns-list {
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .rank_sns .sns-list li.line {
    width: 100%;
  }
  .rank_sns .sns-list li.line a {
    max-width: 100px;
    margin: 0 auto;
    text-align: center;
  }
}

/* ------------------------------------- 
  rank_entry-support
------------------------------------- */
.rank_entry-support {
  max-width: 900px;
  width: 90%;
  margin: 50px auto 0;
}
.rank_entry-support a.button-line {
  background: #072244;
}/*# sourceMappingURL=common_style.css.map */