@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=LINE+Seed+JP:wght@100;400;700;800&display=swap");
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #333333;
}

body, h1, h2, h3, h4, p, ul, ol, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  color: #183028;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

a:hover {
  opacity: 0.75;
}

button {
  font-family: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
.sp {
  display: none;
}
@media (max-width: 900px) {
  .sp {
    display: block;
  }
}

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

.content {
  background: url(../../img/bg_pc.png) top -25% center/100% repeat-y;
}
@media screen and (max-width: 2000px) {
  .content {
    background: url(../../img/bg_pc.png) top -25% center/2000px repeat-y;
  }
}
@media (max-width: 900px) {
  .content {
    background: url(../../img/bg_sp.png) top 14% center/100% repeat-y;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 240;
  pointer-events: none;
}

.nav {
  position: absolute;
  top: 4rem;
  right: 25.8rem;
  pointer-events: auto;
}
@media (max-width: 900px) {
  .nav {
    display: none;
  }
}
.nav_list {
  display: flex;
  align-items: center;
}
.nav_list li {
  display: flex;
  align-items: center;
}
.nav_list li:not(:last-child)::after {
  content: "";
  display: block;
  margin-left: 1.5rem;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  font-size: 1.46rem;
  color: #fff;
  width: 1px;
  height: 1em;
  background-color: #fff;
}
.nav_list a {
  padding-left: 1.5rem;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  font-size: 1.46rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.header_menu_btn {
  display: none;
  padding: 0;
}
.header_menu_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.header_menu_btn.is-active span:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(45deg);
}
.header_menu_btn.is-active span:nth-child(2) {
  opacity: 0;
}
.header_menu_btn.is-active span:nth-child(3) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(-45deg);
}
@media (max-width: 900px) {
  .header_menu_btn {
    display: block;
    position: fixed;
    top: 1.75rem;
    right: 1.4rem;
    z-index: 230;
    width: 3rem;
    height: 2.4rem;
    pointer-events: auto;
  }
  .header_menu_btn span:nth-child(1) {
    top: 0;
  }
  .header_menu_btn span:nth-child(2) {
    top: 50%;
    margin-top: -1px;
  }
  .header_menu_btn span:nth-child(3) {
    bottom: 0;
  }
}

.sp_nav {
  display: none;
}
@media (max-width: 900px) {
  .sp_nav {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 220;
    background: #e87722;
    padding-top: 3.6rem;
    overflow-y: auto;
  }
  .sp_nav[hidden] {
    display: none;
  }
  .sp_nav_logo {
    display: block;
    width: 40.4vw;
    margin: 0 auto 6rem;
  }
  .sp_nav_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.6rem;
  }
  .sp_nav_list a {
    font-size: 24px;
  }
}
.sp_nav_inner {
  width: 100%;
}
.sp_nav_logo img {
  display: block;
  width: 100%;
}
.sp_nav_list a {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.header_ticket_wrap {
  position: fixed;
  top: 1rem;
  right: 1.8rem;
  z-index: 110;
  width: 23rem;
  pointer-events: auto;
  animation: floating-x 7.2s ease-in-out infinite alternate-reverse;
}
.header_ticket_wrap_inner {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@media (max-width: 900px) {
  .header_ticket_wrap {
    top: auto;
    bottom: 2rem;
    right: 1.6rem;
    width: 13rem;
    width: 37.7333333333vw;
  }
}

.header_ticket {
  display: block;
}
.header_ticket img {
  display: block;
  width: 100%;
}

@keyframes floating-x {
  0% {
    transform: translateX(-5%);
  }
  100% {
    transform: translateX(5%);
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.btn {
  width: 100%;
  height: 6.6rem;
  max-width: 50rem;
  margin: auto;
  font-size: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3.3rem;
  font-weight: bold;
  position: relative;
}
@media (any-hover: hover) {
  .btn:hover {
    opacity: 1;
    box-shadow: 5px 8px rgb(251, 175, 88);
    transform: translateY(-8px);
  }
}
@media (any-hover: hover) and (max-width: 900px) {
  .btn:hover {
    transform: none;
    box-shadow: 3px 3px rgb(251, 175, 88);
  }
}
@media (max-width: 900px) {
  .btn {
    border-radius: 2.4rem;
    height: 50px;
    font-size: 16px;
    box-shadow: 3px 3px rgb(251, 175, 88);
  }
}
.btn::before {
  content: "";
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 9px;
  height: 15px;
  position: absolute;
  z-index: 1;
}

.card {
  border-radius: 2rem;
  box-shadow: 0px 4px 15.68px 0.32px rgba(0, 0, 0, 0.22);
  background-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0px 4px 15.68px 0.32px rgba(0, 0, 0, 0.22);
}

.sec {
  max-width: 104rem;
  padding: 9rem 2rem 0;
  margin: auto;
}
@media (max-width: 900px) {
  .sec {
    padding: 3.5rem 3% 0;
    margin-top: 4%;
  }
}
.sec_ttl {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  font-size: 4.7rem;
  line-height: 1;
  color: #e87722;
  text-align: center;
  letter-spacing: 0.02em;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 6rem;
  position: relative;
}
.sec_ttl::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: radial-gradient(#fff 0, transparent 80%);
  top: 0;
  left: 0;
  z-index: 0;
}
.sec_ttl span {
  position: relative;
  z-index: 1;
  text-shadow: 0px 0.5em 30px #fff, 0px -0.5em 30px #fff, 0.5em 0px 30px #fff, -0.5em 0px 30px #fff;
}
@media (max-width: 900px) {
  .sec_ttl {
    font-size: 7.3333333333vw;
    margin-bottom: 3rem;
  }
}

.kv {
  position: relative;
  background: #e87722;
  padding-bottom: 6rem;
}
@media (max-width: 900px) {
  .kv {
    padding: 8vw 0;
  }
}
.kv_inner {
  display: flex;
  align-items: flex-start;
  gap: 6%;
  padding: 8rem 2rem 0;
  max-width: 128.6rem;
  margin: auto;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .kv_inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 2.6%;
  }
}
.kv_left {
  max-width: 40.3rem;
  flex-basis: 32.3%;
  min-width: 0;
}
@media (max-width: 900px) {
  .kv_left {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .kv_logo {
    width: 66.9333333333vw;
    margin: auto;
  }
}
.kv_logo img {
  display: block;
  width: 100%;
  height: auto;
}
.kv_news {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin-top: 4rem;
  background: #fff;
  border-radius: 3rem;
  overflow: hidden;
  height: 4rem;
  padding-right: 2.2rem;
}
@media (max-width: 900px) {
  .kv_news {
    margin-top: 2.4rem;
    height: 3rem;
  }
}
.kv_news_label {
  padding: 0.6rem 1.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #e87722;
}
@media (max-width: 900px) {
  .kv_news_label {
    font-size: 13px;
  }
}
.kv_news_text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  padding: 0.6rem 0;
  white-space: nowrap;
  height: 100%;
}
.kv_news_text li {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  letter-spacing: 0.045em;
}
@media (max-width: 900px) {
  .kv_news_text li {
    font-size: 13px;
  }
}
.kv_right {
  overflow: hidden;
  flex-basis: 61.6%;
}
@media (max-width: 900px) {
  .kv_right {
    width: 100%;
    margin-top: 3rem;
  }
}

.kv_slider:not(.slick-initialized) .kv_slide:not(:first-child) {
  display: none;
}

.kv_slide_inner {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.kv_slide_inner img {
  display: block;
  border-radius: 1.6rem;
}
@media (max-width: 900px) {
  .kv_slide_inner {
    border-radius: 0;
  }
}
.kv_slide_info {
  position: relative;
  display: block;
  text-align: center;
  padding: 1.5rem 1rem 1rem;
}
@media (max-width: 900px) {
  .kv_slide_info {
    padding: 2rem 1rem 0;
  }
}
.kv_slide_name {
  font-family: "LINE Seed JP", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 3.2rem;
  color: #fff;
  font-size: clamp(1.8rem, 2.3426061493vw, 3.2rem);
}
@media (max-width: 900px) {
  .kv_slide_name {
    font-size: 5.8666666667vw;
    display: block;
  }
}
.kv_slide_profile {
  right: 0;
  top: 1.6rem;
  position: absolute;
  border: 1px solid #fff;
  border-radius: 3rem;
  padding: 0.4rem 1.5rem;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 900px) {
  .kv_slide_profile {
    position: static;
    display: inline-block;
    font-size: 3.7333333333vw;
    margin-top: 4vw;
    width: 23.2vw;
  }
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  touch-action: pan-y;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track, .slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track::before, .slick-track::after {
  display: table;
  content: "";
}

.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  position: relative;
  outline: none;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.lineup {
  max-width: 128.6rem;
}
@media (max-width: 900px) {
  .lineup {
    margin-top: 0;
  }
}
.lineup_list {
  background: none;
  display: flex;
  gap: 5.5rem 1.6%;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .lineup_list {
    gap: 3rem 2%;
    justify-content: center;
  }
}
.lineup_list .more {
  padding-top: 11%;
  width: 14.8%;
}
@media (max-width: 900px) {
  .lineup_list .more {
    width: 24.2666666667vw;
    padding: 0;
    margin-top: -1rem;
  }
}
.lineup_item {
  width: 483px;
  width: 39.9%;
}
@media (max-width: 900px) {
  .lineup_item {
    width: 48%;
  }
}
.lineup_link {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
}
.lineup_link:hover .lineup_ph {
  transform: scale(0.97);
}
.lineup_ph {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0px 4px 15.68px 0.32px rgba(0, 0, 0, 0.22);
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.2s;
  transition-property: transform;
}
@media (max-width: 900px) {
  .lineup_ph {
    border-radius: 1.3333333333vw;
  }
}
.lineup_ph img {
  width: 100%;
}
.lineup_ph--tbd {
  display: block;
  aspect-ratio: 967/682;
  background: #fff;
  border-radius: 1rem;
}
.lineup_name {
  display: block;
  margin-top: 2.4rem;
  text-align: center;
  font-family: "LINE Seed JP", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #183028;
  line-height: 1.1818181818;
}
@media (max-width: 900px) {
  .lineup_name {
    font-size: 3.7333333333vw;
    margin-top: 3.3333333333vw;
  }
}
.lineup_name small {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 900px) {
  .lineup_name small {
    font-size: 11px;
  }
}

.event_card {
  border-radius: 2rem;
  box-shadow: 0px 4px 15.68px 0.32px rgba(0, 0, 0, 0.22);
  background-color: rgba(255, 255, 255, 0.62);
  padding: 4.8rem 0 7rem;
}
@media (max-width: 900px) {
  .event_card {
    padding: 1rem 0;
  }
}
.event_dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2rem 4rem;
  border-bottom: 1px solid rgba(254, 119, 3, 0.47);
  font-size: 1.8rem;
}
@media (max-width: 900px) {
  .event_dl {
    padding: 1rem 2rem;
    font-size: 1.4rem;
    display: block;
  }
}
.event_dl:last-child {
  border-bottom: 0;
}
.event_dt {
  flex: 0 0 32%;
  font-weight: bold;
  color: #e87722;
}
@media (max-width: 900px) {
  .event_dt {
    flex: none;
    width: 100%;
  }
}
.event_dd {
  flex: 1 1 auto;
  min-width: 20rem;
  line-height: 1.8;
  color: #183028;
}
@media (max-width: 900px) {
  .event_dd {
    flex: none;
    width: 100%;
    min-width: 0;
    line-height: 1.7;
  }
}
.event_dd_link {
  display: inline-block;
  margin-left: 1.5rem;
  padding: 0rem 1rem;
  border: 1px solid #183028;
  border-radius: 3rem;
  font-size: 13px;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .event_dd_link {
    margin-left: 1rem;
  }
}

.ticket_card {
  border-radius: 2rem;
  box-shadow: 0px 4px 15.68px 0.32px rgba(0, 0, 0, 0.22);
  background: #fff;
  overflow: hidden;
}
.ticket_price_box {
  background: #e87722;
  padding: 5.5rem 4rem 5rem;
  text-align: center;
}
@media (max-width: 900px) {
  .ticket_price_box {
    padding: 4rem 2rem;
  }
}
.ticket_price {
  font-weight: bold;
  font-size: 2.5rem;
  color: #fff;
}
@media (max-width: 900px) {
  .ticket_price {
    font-size: 19px;
  }
}
.ticket_price span {
  font-size: 2.2rem;
}
@media (max-width: 900px) {
  .ticket_price span {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .ticket_price {
    font-size: 18px;
  }
}
.ticket_cta {
  gap: 1rem;
  margin-top: 2rem;
  padding: 2.1rem 4rem;
  background: #fff;
  color: #e87722;
}
@media (max-width: 900px) {
  .ticket_cta {
    width: 79%;
    padding: 1.8rem 3rem;
  }
}
.ticket_cta::before {
  background: url(../../img/ico_arrow.png) center/100% no-repeat;
}
.ticket_cta .arrow {
  font-size: 20px;
}
@media (max-width: 900px) {
  .ticket_cta .arrow {
    font-size: 18px;
  }
}
.ticket_note {
  margin-top: 4.6rem;
  font-size: 1.8rem;
  line-height: 1.7;
  color: #fff;
}
@media (max-width: 900px) {
  .ticket_note {
    margin-top: 2.3rem;
    font-size: 13px;
  }
}
.ticket_notice {
  padding: 5rem 4.8rem 3rem;
}
@media (max-width: 900px) {
  .ticket_notice {
    padding: 3rem 2rem;
  }
}
.ticket_notice_ttl {
  text-align: center;
  color: #e87722;
  font-size: 2.6rem;
  margin-bottom: 2.6rem;
}
@media (max-width: 900px) {
  .ticket_notice_ttl {
    font-size: 20px;
    margin-bottom: 2.4rem;
  }
}
.ticket_notice_sub {
  font-weight: bold;
  font-size: 1.6rem;
  color: #183028;
  margin-bottom: 0.4rem;
}
@media (max-width: 900px) {
  .ticket_notice_sub {
    font-size: 16px;
  }
}
.ticket_notice_list {
  margin-bottom: 3rem;
}
.ticket_notice_list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.1rem;
  font-size: 13px;
  line-height: 1.8;
  color: #333333;
}
.ticket_notice_list li::before {
  content: "※";
  position: absolute;
  left: 0;
}
@media (max-width: 900px) {
  .ticket_notice_list li {
    font-size: 12px;
  }
}

.program_card {
  border-radius: 2rem;
  box-shadow: 0px 4px 15.68px 0.32px rgba(0, 0, 0, 0.22);
  padding: 8rem 5rem 8rem;
}
@media (max-width: 900px) {
  .program_card {
    padding: 4rem 2rem;
  }
}
.program_list {
  display: grid;
  gap: 7rem;
}
@media (max-width: 900px) {
  .program_list {
    gap: 2.6rem;
  }
}
.program_item_head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
@media (max-width: 900px) {
  .program_item_head {
    display: block;
    margin-bottom: 1rem;
  }
}
.program_item_ttl {
  font-weight: bold;
  font-size: 2rem;
  color: #183028;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .program_item_ttl {
    font-size: 15px;
    margin-top: 1rem;
    line-height: 1.5454545455;
  }
}
.program_item_txt {
  font-size: 1.8rem;
  line-height: 1.3333333333;
  color: #333333;
}
@media (max-width: 900px) {
  .program_item_txt {
    font-size: 15px;
  }
}
.program_date {
  display: inline-block;
  padding: 0.2rem 1.8rem;
  border-radius: 2rem;
  background: #e87722;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}
@media (max-width: 900px) {
  .program_date {
    font-size: 12px;
  }
}

.goods_card {
  padding: 6.4rem 3rem 8rem;
  text-align: center;
}
@media (max-width: 900px) {
  .goods_card {
    padding: 4rem 2rem;
  }
}
.goods_card_ttl {
  margin-bottom: 5rem;
}
.goods_list {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}
@media (max-width: 900px) {
  .goods_list {
    display: grid;
    gap: 3rem;
  }
}
.goods_item {
  display: grid;
}
@media (max-width: 900px) {
  .goods_item {
    width: 96%;
    margin: auto;
  }
}
.goods_item_name {
  margin-top: 1.6rem;
  font-weight: bold;
  font-size: 18px;
  color: #183028;
}
@media (max-width: 900px) {
  .goods_item_name {
    font-size: 14px;
  }
}
.goods_item .tax {
  font-size: 88%;
}
.goods_cta {
  padding: 1.6rem 4rem;
  background: linear-gradient(180deg, #f0913f, #e87722);
  color: #fff;
  max-width: 45.5rem;
}
@media (max-width: 900px) {
  .goods_cta {
    max-width: 54.2rem;
    width: 72.2666666667vw;
    padding: 1em 2em;
  }
}
.goods_cta::before {
  background: url(../../img/ico_arrow_w.png) center/100% no-repeat;
}

.bnr-fwd {
  padding: 5.6rem 0 4.5rem;
  background: #e87722;
  margin-top: 12rem;
}
@media (max-width: 900px) {
  .bnr-fwd {
    padding: 3rem 10.6666666667vw;
    margin-top: 6rem;
  }
}
.bnr-fwd .sec {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "thirty box" "thirty txt";
  gap: 3.2rem 6rem;
  max-width: 91.6rem;
  padding: 0;
}
@media (max-width: 900px) {
  .bnr-fwd .sec {
    grid-template-columns: auto 1fr;
    grid-template-areas: "thirty box" "thirty    box" "txt    txt";
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    row-gap: 1.4rem;
    padding: 0;
  }
}
.bnr-fwd_30th {
  grid-area: thirty;
  width: 18.5rem;
  margin-left: 1rem;
}
@media (max-width: 900px) {
  .bnr-fwd_30th {
    width: 29.7333333333vw;
    margin-left: 0;
  }
}
.bnr-fwd_logo {
  grid-area: logo;
  width: 25.7rem;
}
@media (max-width: 900px) {
  .bnr-fwd_logo {
    width: 43.7333333333vw;
  }
}
.bnr-fwd_box {
  display: flex;
  grid-area: box;
  padding-top: 2rem;
}
@media (max-width: 900px) {
  .bnr-fwd_box {
    display: block;
    padding-top: 0;
  }
}
.bnr-fwd_cta {
  grid-area: cta;
  font-weight: bold;
  padding: 1rem 3rem;
  background: #fff;
  font-size: 2.4rem;
  box-shadow: none;
  color: #e87722;
  width: 34.4rem;
  height: 5rem;
  margin-right: 0;
}
@media (any-hover: hover) {
  .bnr-fwd_cta:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.8;
  }
}
@media (max-width: 900px) {
  .bnr-fwd_cta {
    width: 45.8666666667vw;
    height: 6.5333333333vw;
    font-size: 13px;
    font-size: 3.2vw;
    padding: 0.1em;
    margin-top: 6.6666666667vw;
  }
}
.bnr-fwd_txt {
  grid-area: txt;
  font-size: 2.35rem;
  color: #fff;
}
@media (max-width: 900px) {
  .bnr-fwd_txt {
    font-size: 13px;
    font-size: 2.6666666667vw;
    text-align: center;
  }
}

.footer_listen {
  background: #fff;
}
@media screen and (min-width: 901px) {
  .footer_listen {
    padding-bottom: 4rem;
    border-bottom: 1px solid #e87722;
    position: relative;
  }
  .footer_listen ::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #e87722;
  }
}

.footer {
  padding: 5.5rem 0 6rem;
  text-align: center;
}
@media (max-width: 900px) {
  .footer {
    padding: 4rem 0 3rem;
  }
}
.footer_logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7rem;
  margin-bottom: 3.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media (max-width: 900px) {
  .footer_logos {
    gap: 3rem;
    margin-bottom: 2.4rem;
  }
}
.footer_sns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-top: 5.5rem;
}
@media (max-width: 900px) {
  .footer_sns {
    border-top: 1px solid #e87722;
    position: relative;
  }
  .footer_sns ::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 100%;
    border-top: 1px solid #e87722;
  }
}
.footer_sns li {
  width: 3.9rem;
}
.footer_copy {
  font-size: 1.4rem;
  color: #183028;
  margin-top: 4rem;
}
@media (max-width: 900px) {
  .footer_copy {
    font-size: 12px;
  }
}

.pagetop {
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  width: 6rem;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 900px) {
  .pagetop {
    position: static;
    margin: auto;
    width: 5rem;
    margin-top: 3rem;
    opacity: 1;
  }
}
.pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.pagetop img {
  display: block;
  width: 100%;
}

.remodal {
  position: relative;
  outline-offset: -10px;
  margin: 0 auto;
  max-width: 1040px;
  height: 580px;
  padding: 25px;
}

@media (max-width: 900px) {
  .remodal {
    padding: 25px;
    height: auto;
  }
}
.remodal-cancel {
  width: 40px;
  height: 40px;
  position: absolute;
  top: -15px;
  right: 0;
  z-index: 99;
  cursor: pointer;
  color: #fff;
  padding: 0;
}

.remodal-cancel img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .remodal-cancel {
    width: 30px;
    height: 30px;
    top: 15px;
    right: 15px;
  }
}
.profile_ph {
  margin-bottom: 10px;
  position: absolute;
  left: 30px;
  top: 30px;
}

@media (max-width: 900px) {
  .profile_ph {
    margin-bottom: 20px;
    position: inherit;
    left: 0;
    top: 0;
  }
}
.profile_ph img {
  max-width: 530px;
  vertical-align: top;
}

@media (max-width: 900px) {
  .profile_ph img {
    width: 70%;
    max-width: 500px;
    vertical-align: top;
  }
}
.profile_wrap {
  position: absolute;
  width: 400px;
  left: 590px;
  text-align: left;
}

@media (max-width: 900px) {
  .profile_wrap {
    position: inherit;
    width: 100%;
    left: 0;
    top: 0;
  }
}
.profile_name {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
  font-weight: bold;
  font-size: 20px;
  padding: 10px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #ffffff;
  width: 100%;
  color: #fff;
}

@media (max-width: 900px) {
  .profile_name {
    font-size: 16px;
  }
}
.profile_txt {
  clear: both;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 2;
  text-align: left;
  color: #fff;
}

.profile_link {
  clear: both;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-size: 14px;
  text-align: center;
  width: 40%;
  margin: 0 auto;
}

.profile_link a {
  display: block;
  color: #fff;
  padding: 11px 0;
  font-weight: bold;
  border-radius: 30px;
  border: 2px solid #fff;
}

.profile_link a:hover {
  background-color: #fff;
  color: #000;
  border-radius: 30px;
  opacity: 1;
}/*# sourceMappingURL=style.css.map */