:root {
  --font-primary: "Noto Sans JP", sans-serif;
  --font-secondary: "Shippori Mincho B1", serif;
  --font-family-base: var(--font-primary);
  --font-weight-base: 400;
  --lineheight-base: 1.5;
  --font-size-base: 1.4rem;
  --color-primary: #45B2C2;
  --color-warning: #e83828;
  --color-warning01: #db3a2b;
  --input-border-color: #e6e6e6;
  --input-border-color: #fff;
  --input-border-width: 0.1rem;
  --input-font-size: 1rem;
  --input-font-weight: 400;
  --input-background: #fff;
  --input-height: 4.4rem;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
    --input-height: 3.6rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 2.6666666667vw;
  overflow-x: hidden;
}
@media (min-width: 576px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  html {
    font-size: 0.6944444444vw;
  }
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  background-color: #f1f1f1;
  color: #1E1E1E;
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  font-size: var(--font-size-base);
  line-height: var(--lineheight-base);
  text-align: left;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

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

b,
strong {
  font-weight: 700;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: 400;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

[hidden] {
  display: none !important;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

img.aligncenter {
  display: block;
  margin: auto;
}
img.alignright {
  display: block;
  margin-left: auto;
}
img.alignleft {
  display: block;
  margin-right: auto;
}

.inner {
  margin: 0 auto;
  max-width: 96.5rem;
  padding-inline: 2rem;
  width: 100%;
}

.animate_animated {
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.animate__imageScale {
  animation-name: imageScale;
}

@keyframes imageScale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-20%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

.btn {
  background-color: transparent;
  border: 1px solid transparent;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: 0.6;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-mail {
  background-color: var(--color-warning);
  border-radius: 2rem;
  gap: 0.6rem;
  width: 100%;
  max-width: 28.3rem;
  height: 4.3rem;
}
@media (min-width: 768px) {
  .btn-mail {
    border-radius: 3rem;
    height: 6.1rem;
    max-width: 25rem;
    gap: 1.9rem;
    font-size: 2.8rem;
  }
}
.btn-mail::before {
  content: "";
  background-color: #fff;
  -webkit-mask: url("../images/common/icon_letter.svg") no-repeat center/contain;
  mask: url("../images/common/icon_letter.svg") no-repeat center/contain;
  aspect-ratio: 18/12;
  width: 1.8rem;
}
@media (min-width: 768px) {
  .btn-mail::before {
    aspect-ratio: 48/32;
    width: 4.8rem;
  }
}

.btn-primary {
  background-color: var(--color-warning01);
  border-radius: 3rem;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-inline: auto;
  max-width: 28.3rem;
  height: 4.3rem;
}
@media (min-width: 768px) {
  .btn-primary {
    background-color: var(--color-warning);
    font-size: 2rem;
    max-width: 44rem;
    height: 6rem;
  }
}

.btn-ytb {
  position: relative;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .btn-ytb {
    gap: 0.9rem;
  }
}
.btn-ytb::before {
  content: "";
  background: url("../images/common/icon_ytb.svg") no-repeat center/contain;
  aspect-ratio: 18/12;
  width: 1.8rem;
}
@media (min-width: 768px) {
  .btn-ytb::before {
    aspect-ratio: 31/20;
    width: 3.1rem;
  }
}

.btn-submit {
  background-color: #f05a24;
  border-radius: 2.4rem;
  font-size: 1.2rem;
  font-weight: bold;
  height: 4.7rem;
  width: 26.2rem;
}
@media (min-width: 768px) {
  .btn-submit {
    font-size: 1.6rem;
  }
}

.p-header {
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 100;
}
@media (min-width: 768px) {
  .p-header {
    margin-bottom: 1.7rem;
  }
}
.p-header.is-homepage {
  background-color: #fff;
  margin-bottom: 0;
}
.p-header.p-header--single {
  margin-bottom: 0;
}
.p-header.p-header--single .p-header__inner {
  justify-content: flex-end;
}
.p-header__inner {
  height: 5.7rem;
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
@media (min-width: 768px) {
  .p-header__inner {
    height: 8rem;
    justify-content: space-between;
  }
}
.p-header__logo {
  font-size: inherit;
}
.p-header__logo img {
  width: 10.2rem;
}
@media (min-width: 768px) {
  .p-header__logo img {
    width: 15rem;
  }
}
@media (max-width: 767px) {
  .p-header__nav {
    background-color: #fff;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}
.p-header__nav-wrap {
  display: flex;
  align-items: center;
  gap: 3.6rem;
}
@media (max-width: 767px) {
  .p-header__nav-wrap {
    height: 100vh;
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .p-header__nav-wrap .p-header__logo {
    margin-top: 10rem;
  }
}
.p-header .nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.6rem;
}
@media (min-width: 768px) {
  .p-header .nav-list {
    flex-direction: row;
  }
}
.p-header .nav-link {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-header__actions {
  margin-left: auto;
}
@media (min-width: 768px) {
  .p-header__actions {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-header__actions .btn-mail {
    gap: 0.3rem;
    font-size: 1rem;
    width: 8rem;
    height: 2.6rem;
  }
  .p-header__actions .btn-mail::before {
    aspect-ratio: 16/11;
    width: 1.6rem;
  }
}
@media (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.hamburger-box {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 2.1rem;
  height: 1.7rem;
  z-index: 1100;
}
.hamburger-box.is-active .hamburger-inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}
.hamburger-box.is-active .hamburger-inner:before {
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
  top: 0;
}
.hamburger-box.is-active .hamburger-inner:after {
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
  bottom: 0;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner:after, .hamburger-inner:before, .hamburger-inner {
  width: 2.1rem;
  height: 0.1rem;
  background-color: #02091f;
  transition: transform 0.15s ease;
  border-radius: 1.5px;
}

.hamburger-inner {
  position: relative;
  display: block;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 75ms;
}
.hamburger-inner:before {
  position: absolute;
  top: -0.6rem;
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}
.hamburger-inner:after {
  position: absolute;
  bottom: -0.6rem;
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.p-footer {
  background-color: #1a1a1a;
}
.p-footer__logo {
  padding-block: 12.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-footer__logo {
    border-bottom: 1px solid #c9c9c9;
    padding-block: 23.8rem;
    margin-bottom: 4.5rem;
  }
}
.p-footer__logo img {
  width: 11.3rem;
}
@media (min-width: 768px) {
  .p-footer__logo img {
    width: 15.1rem;
  }
}
.p-footer__copyright {
  color: #c9c9c9;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding-block: 2.5rem 2rem;
}
@media (min-width: 768px) {
  .p-footer__copyright {
    font-size: 1.4rem;
    padding-block: 6.4rem;
  }
}

.ft-nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 1.2rem 3.2rem;
}
@media (min-width: 768px) {
  .ft-nav {
    grid-template-rows: max-content;
    gap: 3.6rem;
    grid-template-columns: repeat(5, max-content);
  }
}
@media (max-width: 767px) {
  .ft-nav {
    padding-top: 2rem;
    border-top: 1px solid #c9c9c9;
  }
}
@media (max-width: 767px) {
  .ft-nav li:nth-child(1) {
    order: 1;
  }
  .ft-nav li:nth-child(2) {
    order: 3;
  }
  .ft-nav li:nth-child(3) {
    order: 5;
  }
  .ft-nav li:nth-child(4) {
    order: 2;
  }
  .ft-nav li:nth-child(5) {
    order: 4;
  }
}
.ft-nav li a {
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .ft-nav li a {
    font-size: 1.6rem;
  }
}

.form-control {
  background-color: var(--input-background);
  background-clip: padding-box;
  border: var(--input-border-width) solid var(--input-border-color);
  border-radius: 0.6rem;
  color: #000;
  display: block;
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-weight: var(--input-font-weight);
  line-height: 1.5;
  padding: 0.5rem 1rem;
  height: var(--input-height);
  width: 100%;
  outline: none;
}
@media (min-width: 768px) {
  .form-control {
    font-size: 1.4rem;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.form-control::-moz-placeholder {
  color: #e6e6e6;
  opacity: 1;
}
.form-control::placeholder {
  color: #e6e6e6;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #1E1E1E;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea.form-control {
  height: 16.5rem;
}
@media (min-width: 768px) {
  textarea.form-control {
    height: 11rem;
  }
}

.table {
  width: 100%;
}

.hline02 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2857142857;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .hline02 {
    font-size: 2rem;
    margin-bottom: 3.5rem;
  }
}
.hline02--white {
  color: #fff;
}

.hline03 {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  padding-bottom: 2.7rem;
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-secondary);
  line-height: 1;
  color: #323333;
  text-align: center;
}
@media (min-width: 768px) {
  .hline03 {
    margin-bottom: 3.3rem;
  }
}
.hline03::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 8.4rem;
  height: 0.4rem;
  background-color: #e83828;
  transform: translateX(-50%);
  content: "";
}

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

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.nospace::before, .nospace::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.nospace::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.nospace::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.hover {
  transition: 0.3s ease;
}
.hover:hover {
  opacity: 0.7;
}

.c-mail {
  position: fixed;
  top: 20vh;
  display: none;
}
@media (min-width: 768px) {
  .c-mail {
    display: block;
    right: 8rem;
    width: 25rem;
  }
}

.c-hline {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .c-hline {
    font-size: 2rem;
    margin-bottom: 7rem;
  }
}

.p-lineup-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 768px) {
  .p-lineup-content {
    flex-direction: inherit;
    gap: 8rem;
  }
}

.p-lineup--home .lineup-card__item {
  height: 100%;
}
@media (max-width: 767px) {
  .p-lineup--home .p-lineup-card__info .txt {
    font-size: 1rem;
  }
  .p-lineup--home .p-lineup-card__info .name {
    font-size: 1.5rem;
  }
  .p-lineup--home .p-lineup-card__info .name span {
    font-size: 4rem;
  }
  .p-lineup--home .p-lineup-card__desc {
    font-size: 1rem;
  }
}

.p-lineup-card__item {
  display: block;
  width: 100%;
  border: 1px solid #c9c9c9;
  border-radius: 1.5rem;
  position: relative;
  will-change: transform;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-lineup-card__item {
    width: calc((100% - 16rem) / 3);
  }
}
.p-lineup-card__slide .splide__slide img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 254/306;
}
.p-lineup-card__info {
  position: absolute;
  top: 2.5rem;
  right: 0.5rem;
  left: 0.5rem;
}
.p-lineup-card__info .txt {
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .p-lineup-card__info .txt {
    font-size: 1.3rem;
  }
}
.p-lineup-card__info .name {
  color: #fff;
  font-size: 2.4rem;
  font-family: var(--font-secondary);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .p-lineup-card__info .name {
    font-size: 1.9rem;
  }
}
.p-lineup-card__info .name span {
  font-size: 5rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .p-lineup-card__info .name span {
    font-size: 4rem;
  }
}
.p-lineup-card__desc {
  padding: 3.5rem 4.5rem;
  font-size: 1.8rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .p-lineup-card__desc {
    padding: 2rem;
    font-size: 1.4rem;
  }
}
.p-lineup-card__desc .sub {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .p-lineup-card__desc .sub {
    font-size: 1.2rem;
  }
}

.c-slide-pagi {
  position: absolute;
  bottom: 1.5rem;
  right: 0;
  left: 0;
  max-width: 10.8rem;
  margin: 0 auto;
}
.c-slide-pagi__track {
  position: relative;
  width: 100%;
  height: 0.4rem;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 10rem;
}
.c-slide-pagi__thumb {
  background-color: #fff;
  height: 0.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 10rem;
  transition: left 0.3s ease;
}

.c-breadcrumb {
  margin-bottom: 12rem;
}
@media (max-width: 767px) {
  .c-breadcrumb {
    display: none;
  }
}
.c-breadcrumb ul {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
}
.c-breadcrumb ul * {
  letter-spacing: 0.05em;
}
.c-breadcrumb ul li:not(:last-child)::after {
  content: ">";
  margin-inline: 0.5rem;
}

.c-pagination {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .c-pagination {
    margin-top: 8rem;
  }
}
.c-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 2.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  color: #cbcbcb;
  background-color: transparent;
  border: 1px solid currentColor;
}
.c-pagination .page-numbers.current {
  color: #FFF;
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}
@media (min-width: 768px) {
  .c-pagination .page-numbers {
    transition: 0.3s background-color ease;
  }
  .c-pagination .page-numbers:hover {
    background-color: #e8e8e8;
  }
}
.c-pagination .prev span, .c-pagination .prev a,
.c-pagination .next span,
.c-pagination .next a {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 2.5rem;
  background-color: #1a1a1a;
  -webkit-mask: url("../images/common/icon_arrow_01.svg") no-repeat center/contain;
  mask: url("../images/common/icon_arrow_01.svg") no-repeat center/contain;
  -webkit-mask-size: 1rem auto;
  mask-size: 1rem auto;
  aspect-ratio: 14/28;
  cursor: pointer;
}
.c-pagination .next span, .c-pagination .next a {
  transform: rotate(180deg);
}