@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap");
.container {
  margin-left: auto;
  margin-right: auto;
}

.fanclub_block__txt, .fanclub_block__btn, .fanclub_block__lead {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.header_block {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #000;
  z-index: 10;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .header_block {
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media screen and (max-width: 1000px) {
  .header_block {
    padding-top: 7px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 7px;
  }
}

.header_logo__block {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 501px) {
  .header_logo__block {
    max-width: 140px;
  }
}
@media screen and (max-width: 500px) {
  .header_logo__block {
    max-width: 108px;
  }
}

.header_logo__link {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 501px) {
  .header_logo__link {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 500px) {
  .header_logo__link {
    font-size: 0.8rem;
  }
}

.header_logo__txt {
  display: block;
  font-size: inherit;
  text-align: center;
  padding-top: 5px;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 1001px) {
  .header_content {
    display: contents;
  }
}
@media screen and (max-width: 1000px) {
  .header_content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    padding-top: 90px;
    padding-left: 45px;
    padding-right: 45px;
    padding-bottom: 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    opacity: 0;
    height: 0vh;
    visibility: hidden;
    -webkit-transition: all 500ms;
    transition: all 500ms;
  }
  .header_content.header_active {
    opacity: 1;
    height: 100vh;
    visibility: visible;
  }
}

.header_menu {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
@media screen and (min-width: 1001px) {
  .header_menu {
    gap: 0px;
  }
}
@media screen and (max-width: 1000px) {
  .header_menu {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header_menu li {
    display: block;
    width: 100%;
  }
}

.header_menu__label {
  color: inherit;
  text-decoration: none;
  display: block;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .header_menu__label {
    position: relative;
    line-height: 3em;
  }
  .header_menu__label::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 16px;
    translate: 0 -50%;
    rotate: 45deg;
    aspect-ratio: 1/1;
    width: 8px;
    height: auto;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.header_menu__link {
  position: relative;
  font-size: 1.4rem;
  padding: 0 1em;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
@media screen and (min-width: 1001px) {
  .header_menu__link {
    line-height: 80px;
  }
}
@media screen and (max-width: 1000px) {
  .header_menu__link {
    border: 1px solid #fff;
  }
}
.header_menu__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  scale: 0 1;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: inherit;
  transition: inherit;
}
.header_menu__link:hover::before {
  scale: 1 1;
}

.header_menu__tab {
  font-size: 1.4rem;
}
@media screen and (min-width: 1001px) {
  .header_menu__tab {
    margin-left: 1em;
  }
}

.header_menu__btn {
  background-image: -webkit-linear-gradient(135deg, #DBC8A1, #917438, #BCA26C, #A08145);
  background-image: linear-gradient(-45deg, #DBC8A1, #917438, #BCA26C, #A08145);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .header_menu__btn {
    line-height: 24px;
    border-radius: 50px;
    font-size: inherit;
    padding: 0 1em;
  }
}

.header_sns__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .header_sns__list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }
}

.header_sns__link {
  display: block;
}

.header_sns__ico {
  display: block;
  fill: #fff;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media screen and (min-width: 1001px) {
  .header_sns__ico {
    max-width: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .header_sns__ico {
    max-width: 24px;
  }
}

.header_trigger {
  position: fixed;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1/1;
  width: 60px;
  height: auto;
}
.header_trigger::before, .header_trigger::after,
.header_trigger span {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
.header_trigger::before, .header_trigger::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.header_trigger::before {
  translate: -50% calc(-50% - 7px);
}
.header_trigger::after {
  translate: -50% calc(-50% + 7px);
}
.header_trigger.header_active span {
  opacity: 0;
}
.header_trigger.header_active::before, .header_trigger.header_active::after {
  translate: -50% -50%;
}
.header_trigger.header_active::before {
  rotate: 45deg;
}
.header_trigger.header_active::after {
  rotate: -45deg;
}
@media screen and (min-width: 1001px) {
  .header_trigger {
    display: none;
  }
}

.footer_block {
  color: #fff;
  background: #000;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .footer_block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: 980px;
  }
}
@media screen and (max-width: 1024px) {
  .footer_block {
    display: block;
    position: relative;
  }
}
.footer_block ul,
.footer_block ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer_block a {
  text-decoration: none;
}

.footer_logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1025px) {
  .footer_logo {
    width: 250px;
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 1024px) {
  .footer_logo {
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 20px;
  }
}

.footer_logo__link {
  display: block;
  max-width: 195px;
  text-align: center;
  color: #fff;
}

.footer_logo__name {
  font-size: clamp(1.2rem, 1.1290322581vw, 1.4rem);
  padding-top: 8px;
}

.footer_logo__official {
  font-size: clamp(1rem, 0.8870967742vw, 1.1rem);
}

.footer_menu {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 501px) {
  .footer_menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: #222;
    width: calc(100% - 350px);
    padding: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  .footer_menu {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .footer_menu {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 501px) {
  .footer_menu__top {
    padding-top: 40px;
  }
}
@media screen and (max-width: 500px) {
  .footer_menu__top {
    padding-bottom: 24px;
  }
}

.footer_menu__lead {
  display: block;
  font-weight: 500;
  font-size: 1.6rem;
  padding-bottom: 15px;
  color: #CCCCCC;
}

@media screen and (max-width: 1024px) {
  .footer_menu__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 0;
  }
}
.footer_menu__tab + .footer_menu__tab {
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  font-size: 13px;
}
@media screen and (min-width: 1025px) {
  .footer_menu__tab + .footer_menu__tab {
    margin-top: 15px;
  }
}

.footer_menu__link {
  display: block;
  position: relative;
  padding-left: 30px;
  line-height: 1;
  color: #CCCCCC;
  font-size: 1.3rem;
}
@media screen and (max-width: 1024px) {
  .footer_menu__link {
    line-height: 1.6;
  }
}
.footer_menu__link::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  top: 50%;
  left: 0px;
  background-color: #666666;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.footer_menu__link:hover {
  color: #fff;
}
.footer_menu__link:hover::before {
  background-color: #fff;
  left: -5px;
}

.footer_sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.footer_block .footer_sns {
  margin-top: clamp(15px, 1.875vw, 30px);
}
@media screen and (max-width: 1024px) {
  .footer_sns {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer_sns__link {
  display: block;
  aspect-ratio: 1/1;
  width: 22px;
  height: auto;
}
.footer_sns__link svg {
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  fill: #999;
}
.footer_sns__link:hover svg {
  fill: #fff;
}

@media screen and (max-width: 1024px) {
  .footer_menu__btns {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    text-align: center;
  }
}

.footer_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 0;
}
@media screen and (min-width: 1025px) {
  .footer_top {
    position: relative;
    width: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .footer_top {
    position: absolute;
    top: 0;
    right: 20px;
    translate: 0 -50%;
  }
}
.footer_top::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  bottom: 0;
  z-index: -1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #111;
}
.footer_top:hover::before {
  height: 100%;
}

.footer_top__arrow {
  width: 14px;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
.footer_top:hover .footer_top__arrow {
  translate: 0 -30px;
}

.footer_btn {
  display: block;
  line-height: 40px;
  background-image: -webkit-linear-gradient(135deg, #DBC8A1, #917438, #BCA26C, #A08145);
  background-image: linear-gradient(-45deg, #DBC8A1, #917438, #BCA26C, #A08145);
  background-size: 200% 200%;
  text-align: center;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  padding-top: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.footer_btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .footer_btn {
    margin-top: 32px;
  }
}

.footer_copy {
  font-size: 11px;
  color: #666666;
  font-style: normal;
  text-align: right;
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
}
@media screen and (max-width: 1024px) {
  .footer_copy {
    text-align: center;
    margin-top: 24px;
  }
}

html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333333;
}

.mincho {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.heebo {
  font-family: "Heebo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body,
h1,
h2,
h3,
h4,
p,
dl,
dt,
dd {
  margin: 0;
}

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

body {
  background-color: #fff;
}

p {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.text_center {
  display: block;
  text-align: center;
}

.container {
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 501px) and (max-width: 1200px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.text_accent {
  color: #f00;
}

.txt_block {
  margin-top: clamp(24px, 2vw, 32px);
}

.txt_lead {
  display: block;
  font-weight: 700;
}

.main_text {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 2;
}
.main_text::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * (0.5em - 1px));
}
.main_text::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}

.main_text__block {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 2;
}

.main_text__strong {
  display: block;
  font-weight: 700;
}

.item_text {
  line-height: 2;
}
.item_text::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * (0.5em - 1px));
}
.item_text::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}

.link_txt {
  color: inherit;
  text-decoration: underline;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.link_txt:hover {
  opacity: 0.7;
}

.list_dotted {
  margin: 0;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
}
.list_dotted li {
  font-size: inherit;
  position: relative;
  padding-left: 1em;
  line-height: 2;
}
.list_dotted li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.main_head {
  font-size: clamp(1.5rem, 1.6129032258vw, 2rem);
  font-weight: 700;
  margin-bottom: clamp(20px, 2vw, 32px);
}

.main_head__label {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  padding-left: 0.8em;
  border-left: 3px solid #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .main_head__label {
    line-height: 1;
  }
  .main_head__label::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1) * (0.5em - 1px));
  }
  .main_head__label::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1) * 0.5em);
  }
}
@media screen and (max-width: 1000px) {
  .main_head__label {
    line-height: 1.6;
  }
  .main_head__label::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.6) * (0.5em - 1px));
  }
  .main_head__label::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.6) * 0.5em);
  }
}

.main_caption {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 2;
}

.mv {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .mv {
    padding-top: 80px;
  }
}
@media screen and (max-width: 1000px) {
  .mv {
    padding-top: 60px;
  }
}

.mv_block {
  position: relative;
}

.mv_visual {
  display: block;
  width: 100%;
  height: auto;
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv_head {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-right: clamp(22px, 5.5vw, 88px);
  padding-bottom: clamp(22px, 4.5vw, 72px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
}

.mv_head__caption {
  display: block;
  font-size: clamp(1.3rem, 3.064516129vw, 3.8rem);
  line-height: 1;
  text-align: center;
  margin-bottom: clamp(8px, 2.375vw, 38px);
}
.mv_head__caption::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * (0.5em - 1px));
}
.mv_head__caption::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
}

.mv_head__lead {
  font-size: clamp(2.6rem, 6.4516129032vw, 8rem);
  font-weight: 700;
  line-height: 1;
}
.mv_head__lead::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * (0.5em - 1px));
}
.mv_head__lead::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
}

.main_block {
  padding-top: clamp(60px, 7.25vw, 116px);
}

.main_block__head {
  font-weight: 900;
  margin-bottom: clamp(32px, 5.25vw, 84px);
}
@media screen and (min-width: 1001px) {
  .main_block__head {
    text-align: center;
  }
}

.main_block__lead {
  display: block;
  font-size: clamp(2.4rem, 3.7096774194vw, 4.6rem);
  line-height: 1.4347826087;
  font-weight: inherit;
  margin-bottom: clamp(24px, 2.8125vw, 45px);
}
.main_block__lead::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4347826087) * (0.5em - 1px));
}
.main_block__lead::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4347826087) * 0.5em);
}

.main_block__caption {
  font-size: clamp(3.2rem, 5.1612903226vw, 6.4rem);
  line-height: 1.4375;
  font-weight: inherit;
}
.main_block__caption::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4375) * (0.5em - 1px));
}
.main_block__caption::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4375) * 0.5em);
}

.main_block__date {
  font-size: clamp(2rem, 3.2258064516vw, 4rem);
}

.main_block__txt {
  font-weight: 700;
}

.main_contents {
  padding-top: clamp(60px, 5.5vw, 88px);
}

.main_content + .main_content {
  margin-top: clamp(32px, 4vw, 64px);
}

.main_content__data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 2;
}

.main_content__label {
  font-size: inherit;
  line-height: inherit;
  min-width: 5em;
}

.main_content__accent {
  font-weight: 700;
}

.main_content__description {
  font-size: inherit;
  line-height: inherit;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.main_content__wrap {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
}
.main_content__wrap + .main_content__wrap {
  margin-top: clamp(15px, 1vw, 16px);
}

.main_content__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
}

.main_content__caption {
  min-width: 13em;
}

.main_list__block {
  margin-top: clamp(64px, 5vw, 80px);
  border: 1px solid #000;
  padding-top: clamp(32px, 5vw, 80px);
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: clamp(24px, 5vw, 80px);
  padding-bottom: clamp(32px, 5vw, 80px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.main_list__lead {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  margin-bottom: clamp(24px, 3vw, 48px);
}

.main_list__wrap + .main_list__wrap {
  margin-top: clamp(32px, 4vw, 64px);
}

.main_list__inner {
  margin-top: clamp(32px, 4vw, 64px);
}

.main_list__btn {
  margin-top: clamp(32px, 4vw, 64px);
}

.main_list__link {
  display: block;
  font-size: clamp(1.6rem, 1.6129032258vw, 2rem);
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding-top: clamp(16px, 1.375vw, 22px);
  padding-bottom: clamp(16px, 1.375vw, 22px);
  background-color: #000;
  text-decoration: none;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
.main_list__link:hover {
  opacity: 0.7;
}

.fanclub_block {
  margin-top: clamp(100px, 16.25vw, 260px);
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  gap: 0;
}
@media screen and (min-width: 1025px) {
  .fanclub_block {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .fanclub_block {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (min-width: 1025px) {
  .fanclub_block__image {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left;
       object-position: left;
  }
}

.fanclub_block__inner {
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fanclub_block__logo {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
@media screen and (min-width: 1001px) {
  .fanclub_block__logo {
    max-width: 80%;
  }
}
@media screen and (max-width: 1000px) {
  .fanclub_block__logo {
    max-width: 320px;
  }
}

.fanclub_block__box {
  border: 2px solid #cf1717;
  border-radius: 5px;
  overflow: clip;
  padding-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.fanclub_block__box + .fanclub_block__box {
  margin-top: 10px;
}

.fanclub_block__lead {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 10px;
}

.fanclub_block__item {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .fanclub_block__item {
    max-width: 70%;
  }
}
.fanclub_block__item + .fanclub_block__item {
  margin-top: clamp(20px, 1.5625vw, 25px);
}

.fanclub_block__btn {
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
  background: -webkit-linear-gradient(120deg, #BCA16B 0%, #C1A773 50%, #A3813C 70%, #A9894A 100%);
  background: linear-gradient(-30deg, #BCA16B 0%, #C1A773 50%, #A3813C 70%, #A9894A 100%);
  color: #FFFFFF;
  font-weight: 700;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  font-size: 1.4rem;
  text-decoration: none;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
.fanclub_block__btn:hover {
  background: -webkit-linear-gradient(60deg, #BCA16B 0%, #C1A773 50%, #A3813C 70%, #A9894A 100%);
  background: linear-gradient(30deg, #BCA16B 0%, #C1A773 50%, #A3813C 70%, #A9894A 100%);
}
@media screen and (min-width: 1025px) {
  .fanclub_block__btn {
    line-height: 50px;
  }
  .fanclub_block__btn br {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .fanclub_block__btn {
    line-height: 1.6;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.fanclub_block__btn svg {
  fill: #FFFFFF;
  width: 30px;
  height: 10px;
  position: absolute;
  top: 45%;
  margin-top: -4px;
  right: 20px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.fanclub_block__txt {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 0.5em;
}

.fanclub_block__text {
  margin-top: 15px;
  text-align: center;
}

.fanclub_block__link {
  color: #999;
  font-size: 1.4rem;
}/*# sourceMappingURL=index.css.map */