@import url("https://use.fontawesome.com/releases/v6.4.2/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --color-main: #e60012;
  --color-main-rgb: 230, 0, 18;
  --color-main-light: #fff5f5;
  --color-bg-gray: #f8f7f6;
  --color-white: #fff;
  --color-black: #000;
  --color-black-rgb: 0, 0, 0;
  --radius-section: min(90px, 8vw);
  --radius-card: 15px;
  --radius-pill: 99px;
  --transition-base: 0.3s;
  --color-bg: #e60012;
  --color-accent: #4fd1ff;
  --color-text: #f5f8ff;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  background-color: var(--color-main);
}
body.is-video-modal-open {
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  border: none;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

@media only screen and (min-width: 1001px) {
  .sponly {
    display: none;
  }
}

@media only screen and (max-width: 1000px) {
  .pconly {
    display: none;
  }
}

.global_head {
  margin: 0;
}

.wrap {
  font-family: "Noto Sans JP";
}

.hero img {
  width: 100%;
}
.hero h1 {
  margin: 0;
}

.local-nav-btn {
  display: none;
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1001;
  background: rgba(var(--color-main-rgb), 0.94);
  border-radius: 14px;
}
@media only screen and (max-width: 1000px) {
  .local-nav-btn {
    display: block;
    position: fixed;
    top: 55px;
    right: 10px;
    transition: top var(--transition-base);
  }
  .local-nav-btn.scrolled {
    top: 20px;
  }
}
.local-nav-btn span {
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: var(--color-white);
  transition: transform var(--transition-base), opacity var(--transition-base), top var(--transition-base), bottom var(--transition-base);
  left: 50%;
  transform: translateX(-50%);
}
.local-nav-btn span:nth-of-type(1) {
  top: 15px;
}
.local-nav-btn span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.local-nav-btn span:nth-of-type(3) {
  bottom: 15px;
}
.local-nav-btn.active span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.local-nav-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.local-nav-btn.active span:nth-of-type(3) {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.local-nav {
  background-color: var(--color-white);
  box-shadow: 0 10px 30px rgba(var(--color-black-rgb), 0.16);
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 0 10px;
  padding: 10px;
  border-radius: 14px;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (min-width: 1001px) {
  .local-nav {
    margin: 0 auto;
    position: relative;
    top: 60px;
  }
  .local-nav.fixed {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 999;
  }
}
@media only screen and (max-width: 1000px) {
  .local-nav {
    border: 2px solid rgba(var(--color-main-rgb), 0.35);
    position: fixed;
    top: 115px;
    right: 10px;
    left: auto;
    width: 200px;
    flex-direction: column;
    gap: 8px 0;
    z-index: 999;
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base), top var(--transition-base);
  }
  .local-nav.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .local-nav.scrolled {
    top: 80px;
  }
}
.local-nav__item {
  font-family: "Raleway";
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  font-size: 1.5em;
}
.local-nav__item:hover a {
  color: var(--color-main);
}
@media only screen and (max-width: 1000px) {
  .local-nav__item {
    font-size: 0.92rem;
  }
}
.local-nav__item a {
  border: 2px solid rgba(var(--color-main-rgb), 0.35);
  border-radius: 12px;
  color: var(--color-black);
  display: block;
  padding: 12px 18px;
  transition: color 0.25s;
  white-space: nowrap;
}

h2 {
  font-family: "Raleway";
  text-align: center;
  font-size: 4.6rem;
  font-weight: 800;
  margin: 0 0 30px;
  line-height: 1;
}
@media only screen and (max-width: 1000px) {
  h2 {
    font-size: 2.5rem;
  }
}
h2 span {
  font-family: "Noto Sans JP";
  display: block;
  font-weight: normal;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 1000px) {
  h2 span {
    font-size: 1rem;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1001px) {
  h2 span {
    font-size: 1.3rem;
    margin-top: 5px;
  }
}

.block {
  margin: 0 auto;
}
@media only screen and (max-width: 1000px) {
  .block {
    padding: 0 18px;
  }
}
@media only screen and (min-width: 1001px) {
  .block {
    max-width: 1300px;
    width: calc(100% - 40px);
  }
}

.intro {
  background-color: var(--color-main);
  text-align: center;
  padding: 100px 0;
}
@media only screen and (max-width: 1000px) {
  .intro {
    padding: 60px 0;
  }
}
.intro__content {
  color: var(--color-white);
  margin: 0 auto;
}
@media only screen and (max-width: 1000px) {
  .intro__content {
    width: calc(100% - 50px);
  }
}
.intro__content p {
  margin: 0;
}
.intro__kicker {
  color: #fef103;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.7;
  letter-spacing: 0.09rem;
  margin-bottom: 20px !important;
}
@media only screen and (max-width: 1000px) {
  .intro__kicker {
    font-size: 1.1rem;
    margin-bottom: 20px !important;
  }
}
.intro__open {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: 0.1rem;
  margin-bottom: 30px !important;
}
@media only screen and (max-width: 1000px) {
  .intro__open {
    font-size: 1.8rem;
    margin-bottom: 25px !important;
  }
}
.intro__text {
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.95;
  letter-spacing: 0.09rem;
  display: grid;
  gap: 15px 0;
}
@media only screen and (max-width: 1000px) {
  .intro__text {
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    line-height: 2.1;
  }
}
.intro__note {
  background-color: var(--color-white);
  max-width: 900px;
  width: 100%;
  margin: 50px auto 0;
  padding: 35px 40px 40px;
  font-weight: 600;
  border-radius: 10px;
}
@media only screen and (max-width: 1000px) {
  .intro__note {
    max-width: 330px;
    margin: 40px auto 0;
    padding: 20px 25px 25px;
  }
}
.intro__note-text {
  color: var(--color-black);
}
.intro__note-text {
  font-size: 1.3rem;
  margin: 0 0 20px !important;
}
@media only screen and (max-width: 1000px) {
  .intro__note-text {
    font-size: 0.9rem;
    margin: 0 0 15px !important;
  }
}
.intro__note-closed {
  border: 2px dotted var(--color-main);
  color: var(--color-main);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0 55px;
  margin: 0 0 22px;
  padding: 15px 20px;
  font-size: 1.3rem;
}
@media only screen and (max-width: 1000px) {
  .intro__note-closed {
    display: block;
    margin: 0 0 17px;
    padding: 7px 15px 10px;
    text-align: center;
    font-size: 1rem;
  }
}
.intro__note-closed dt {
  border-right: 1px solid var(--color-main);
}
@media only screen and (max-width: 1000px) {
  .intro__note-closed dt {
    display: block;
    border-right: none;
    border-bottom: 1px solid var(--color-main);
    margin: 0 0 3px;
    padding: 0 0 3px;
  }
}
.intro__note-closed dd {
  text-align: left;
  margin: 0;
  font-size: 1.4rem;
}
@media only screen and (max-width: 1000px) {
  .intro__note-closed dd {
    text-align: center;
    font-size: 1.05rem;
  }
}
.intro__note-closed .intro__note-day-container {
  background-color: var(--color-main);
  color: var(--color-white);
  border-radius: 50%;
  width: 27px;
  height: 27px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
  position: relative;
  top: -3px;
}
@media only screen and (max-width: 1000px) {
  .intro__note-closed .intro__note-day-container {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    top: -2px;
  }
}
.intro__note-closed .intro__note-day-container .intro__note-day {
  position: relative;
  top: -1px;
}
.intro__note-open {
  background-color: var(--color-main);
  color: var(--color-white);
  margin: 0;
  padding: 15px 25px;
  font-weight: 800;
  font-size: 2.4rem;
}
@media only screen and (max-width: 1000px) {
  .intro__note-open {
    padding: 7px 15px 10px;
    font-size: 1.4rem;
  }
}
.intro__note-open dt {
  display: block;
  border-bottom: 1px solid var(--color-white);
  margin: 0 0 5px;
  padding: 0 0 10px;
  font-weight: 600;
  font-size: 1.6rem;
}
@media only screen and (max-width: 1000px) {
  .intro__note-open dt {
    margin: 0 0 3px;
    padding: 0 0 3px;
    font-size: 1rem;
  }
}
.intro__note-open dd {
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  .intro__note-open dd {
    line-height: 1.2;
  }
}
.intro__note-open .intro__note-day-container {
  background-color: var(--color-white);
  color: var(--color-main);
  border-radius: 50%;
  width: 39px;
  height: 39px;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px 0 3px;
  position: relative;
  top: -4px;
}
@media only screen and (max-width: 1000px) {
  .intro__note-open .intro__note-day-container {
    width: 22px;
    height: 22px;
    font-size: 1rem;
    top: -2px;
  }
}
.intro__note-open .intro__note-day-container .intro__note-day {
  position: relative;
  top: -1px;
}
.intro__note-schedule {
  border-top: 2px dotted var(--color-main);
  border-left: 2px dotted var(--color-main);
  color: var(--color-main);
}
.intro__note-frame {
  border-right: 2px dotted var(--color-main);
  border-bottom: 2px dotted var(--color-main);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0 55px;
  font-size: 1.3rem;
  margin: 0;
  padding: 15px 20px;
}
@media only screen and (max-width: 1000px) {
  .intro__note-frame {
    display: block;
    margin: 0;
    padding: 7px 15px 10px;
    text-align: center;
    font-size: 1rem;
  }
}
.intro__note-frame dt {
  border-right: 1px solid var(--color-main);
}
@media only screen and (max-width: 1000px) {
  .intro__note-frame dt {
    display: block;
    border-right: none;
    border-bottom: 1px solid var(--color-main);
    margin: 0;
    padding: 0 0 3px;
  }
}
.intro__note-frame dd {
  text-align: left;
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  .intro__note-frame dd {
    text-align: center;
    font-size: 1.05rem;
    padding: 6px 0 0 0;
  }
}

.simg {
  padding: 0 0 100px;
  color: var(--color-text);
  background: var(--color-bg);
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .simg {
    padding: 0 0 60px;
  }
}
.simg__title {
  margin: 0 auto 24px;
  text-align: center;
  font-weight: 800;
  font-size: clamp(1.2rem, 3vw, 1.85rem);
  letter-spacing: 0.02em;
}
.simg__title ruby {
  font-size: 1.1em;
  ruby-align: center;
}
.simg__title rt {
  font-size: 0.55em;
  letter-spacing: 0.08em;
}
.simg__stage {
  position: relative;
  height: 55vw;
  overflow: hidden;
}
.simg__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
}
.simg__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.simg__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
.simg__bg-item {
  flex: 1;
}
.simg__item {
  position: relative;
  z-index: 1;
}
.simg__item-item {
  position: absolute;
  width: var(--size);
  aspect-ratio: 1/1;
  transform: rotate(var(--rotate));
}
.simg__item-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.5));
}
.simg__item-item:nth-of-type(1) {
  top: 2vw;
  left: 5vw;
  --size: 19vw;
  --rotate: -12deg;
}
.simg__item-item:nth-of-type(2) {
  top: 4vw;
  left: 36vw;
  --size: 25vw;
  --rotate: -11deg;
}
.simg__item-item:nth-of-type(3) {
  top: 3vw;
  left: 83vw;
  --size: 14vw;
  --rotate: -20deg;
}
.simg__item-item:nth-of-type(4) {
  top: 37vw;
  left: 10vw;
  --size: 16vw;
  --rotate: 22deg;
}
.simg__item-item:nth-of-type(5) {
  top: 31vw;
  left: 54.5vw;
  --size: 16vw;
  --rotate: -15deg;
}
.simg__item-item:nth-of-type(6) {
  top: 19vw;
  left: 72vw;
  --size: 18vw;
  --rotate: 24deg;
}
.simg__item-item:nth-of-type(7) {
  top: 33vw;
  left: 29vw;
  --size: 19vw;
  --rotate: -23deg;
}
.simg__item-item:nth-of-type(8) {
  top: 40vw;
  left: 41vw;
  --size: 11vw;
  --rotate: 23deg;
}
.simg__item-item:nth-of-type(9) {
  top: 39vw;
  left: 79vw;
  --size: 16vw;
  --rotate: 12deg;
}
.simg__item-item:nth-of-type(10) {
  top: 3vw;
  left: 64vw;
  --size: 16vw;
  --rotate: 18deg;
}
.simg__item-item:nth-of-type(11) {
  top: 17vw;
  left: 20vw;
  --size: 15vw;
  --rotate: 17deg;
}
.simg__item-item:nth-of-type(12) {
  top: 23vw;
  left: 3vw;
  --size: 15vw;
  --rotate: -33deg;
}

.topics {
  background-color: #222;
  color: var(--color-white);
  border-radius: var(--radius-section) 0 var(--radius-section) 0;
  margin-bottom: 60px;
  padding: 100px 0;
}
@media only screen and (max-width: 1000px) {
  .topics {
    margin-bottom: 50px;
    padding: 60px 0;
  }
}
.topics__head, .online__head {
  font-family: "Noto Sans JP";
  color: var(--color-main);
  text-align: center;
  font-size: 3.5rem;
  max-width: 1000px;
  margin: 0 auto 70px;
  padding: 40px 0;
  background-color: #2a2a2a;
  border-radius: var(--radius-pill);
  line-height: 1;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .topics__head, .online__head {
    font-size: 2rem;
    margin: 0 0 40px;
    padding: 30px 0;
  }
}
.topics__head span, .online__head span {
  font-family: "Raleway";
  font-weight: 600;
  letter-spacing: 0.1rem;
  display: block;
  color: #999;
}
@media only screen and (max-width: 1000px) {
  .topics__head span, .online__head span {
    font-size: 1rem;
    margin-top: 15px;
  }
}
@media only screen and (min-width: 1001px) {
  .topics__head span, .online__head span {
    font-size: 1.8rem;
    margin-top: 20px;
  }
}
.topics__head-pic img, .online__head-pic img {
  position: absolute;
}
@media only screen and (max-width: 1000px) {
  .topics__head-pic img, .online__head-pic img {
    width: 90px;
  }
}
@media only screen and (max-width: 1000px) {
  .topics__head-pic.topics-head-pic-left img, .topics-head-pic-left.online__head-pic img {
    bottom: -15px;
    left: -10px;
  }
}
@media only screen and (min-width: 1001px) {
  .topics__head-pic.topics-head-pic-left img, .topics-head-pic-left.online__head-pic img {
    bottom: -25px;
    left: 50%;
    transform: translateX(calc(-50% - 290px));
    width: 140px;
  }
}
@media only screen and (max-width: 1000px) {
  .topics__head-pic.topics-head-pic-right img, .topics-head-pic-right.online__head-pic img {
    top: -35px;
    right: -10px;
  }
}
@media only screen and (min-width: 1001px) {
  .topics__head-pic.topics-head-pic-right img, .topics-head-pic-right.online__head-pic img {
    top: -30px;
    left: 50%;
    transform: translateX(calc(-50% + 330px));
    width: 150px;
  }
}
.topics__note {
  background-color: var(--color-main);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  padding: 10px 25px 13px;
  display: inline-block;
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1000px) {
  .topics__note {
    font-size: 0.8rem;
    padding: 10px 20px;
    top: -25px;
  }
}
.topics__note::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 15px;
  height: 8px;
  background: var(--color-main);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media only screen and (max-width: 1000px) {
  .topics__note::after {
    width: 13px;
    height: 7px;
  }
}
.topics__nav, .online__nav {
  list-style: none;
  margin: 0 auto 60px;
  padding: 0;
  max-width: 700px;
  display: grid;
  grid-template-columns: 100px 1fr 1fr 1fr;
  gap: 10px;
}
@media only screen and (max-width: 1000px) {
  .topics__nav, .online__nav {
    margin: 0 auto 40px;
    max-width: 370px;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
.topics__nav-item {
  height: 46px;
  background-color: var(--color-main-light);
  color: var(--color-main);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 3px;
  line-height: 1.3;
  cursor: pointer;
  font-weight: 700;
  transition: background-color var(--transition-base), color var(--transition-base);
}
@media only screen and (max-width: 1000px) {
  .topics__nav-item {
    font-size: 0.8rem;
    line-height: 1.2;
    padding: 0;
  }
}
.topics__nav-item:hover {
  background-color: var(--color-main);
  color: var(--color-white);
}
.topics__nav-item.active {
  background-color: var(--color-main);
  color: var(--color-white);
}
.topics__nav-item:nth-of-type(1) {
  grid-row: span 2;
  height: auto;
}
@media only screen and (max-width: 1000px) {
  .topics__nav-item:nth-of-type(1) {
    grid-row: auto;
    grid-column: 1/-1;
    width: 120px;
    height: 46px;
    margin: 0 auto;
    aspect-ratio: auto;
  }
}
.topics__nav-item:nth-of-type(4) {
  font-size: 0.9rem;
}
@media only screen and (max-width: 1000px) {
  .topics__nav-item:nth-of-type(4) {
    font-size: 0.67rem;
    padding-top: 0;
  }
}
.topics__nav-label, .online__nav-label {
  white-space: nowrap;
}
@media only screen and (max-width: 1000px) {
  .topics__nav-label, .online__nav-label {
    white-space: normal;
  }
}
.topics__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 1000px) {
  .topics__list {
    gap: 20px;
  }
}
.topics__item {
  width: calc((100% - 90px) / 4);
  border: 2px solid #555;
  border-radius: var(--radius-card);
  transition: opacity var(--transition-base);
}
@media only screen and (max-width: 1000px) {
  .topics__item {
    width: calc((100% - 20px) / 2);
  }
}
.topics__item:hover {
  opacity: 0.7;
}
.topics__item:hover .topics__pic img {
  transform: scale(1.1);
}
.topics__item a {
  color: var(--color-white);
}
.topics__pic {
  background-color: #000;
  border-bottom: 2px solid #555;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
@media only screen and (max-width: 1000px) {
  .topics__pic {
    height: 120px;
  }
}
.topics__pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.4s;
}
.topics__pic img.noimage {
  -o-object-fit: cover;
     object-fit: cover;
}
.topics__text {
  padding: 15px 13px;
}
@media only screen and (max-width: 1000px) {
  .topics__text {
    padding: 8px 7px 10px;
  }
}
.topics__category {
  display: inline-block;
  background-color: var(--color-main);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 1;
  margin-bottom: 10px;
  padding: 3px 10px 5px;
}
@media only screen and (max-width: 1000px) {
  .topics__category {
    font-size: 0.6rem;
    margin-bottom: 8px;
    padding: 3px 8px;
  }
}
.topics__ttl {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 76px;
  font-weight: 600;
}
@media only screen and (max-width: 1000px) {
  .topics__ttl {
    margin: 0 0 5px;
    font-size: 0.8rem;
    line-height: 1.3;
    height: 52px;
  }
}
.topics__date {
  font-family: sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  display: block;
  color: #777;
}
@media only screen and (max-width: 1000px) {
  .topics__date {
    font-size: 0.65rem;
  }
}
.topics__link {
  display: none;
  text-align: center;
  margin-top: 40px;
}
@media only screen and (max-width: 1000px) {
  .topics__link {
    margin-top: 30px;
  }
}
.topics__link-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-main);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  min-width: 220px;
  height: 60px;
  margin: 60px auto 0;
  padding: 0 65px 0 23px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base);
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .topics__link-btn {
    min-width: 170px;
    height: 45px;
    margin: 50px auto 0;
    padding: 0 45px 0 20px;
    font-size: 0.8rem;
  }
}
.topics__link-btn:hover {
  background-color: var(--color-white);
  color: var(--color-main);
}
.topics__link-btn:hover .topics__arrow {
  background-color: var(--color-main);
}
.topics__link-btn:hover .topics__arrow::after {
  border-top: solid 2.5px var(--color-white);
  border-right: solid 2.5px var(--color-white);
}
.topics__arrow {
  background-color: var(--color-white);
  border-radius: 50%;
  width: 27px;
  height: 27px;
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}
@media only screen and (max-width: 1000px) {
  .topics__arrow {
    width: 18px;
    height: 18px;
    right: 13px;
  }
}
.topics__arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2.5px var(--color-main);
  border-right: solid 2.5px var(--color-main);
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 1000px) {
  .topics__arrow::after {
    width: 7px;
    height: 7px;
    right: 6.5px;
  }
}

.access {
  background-color: var(--color-white);
  border-radius: var(--radius-section) 0 var(--radius-section) 0;
  color: var(--color-main);
  margin-bottom: 40px;
  padding: 65px 25px;
}
@media only screen and (max-width: 1000px) {
  .access {
    margin-bottom: 30px;
    padding: 50px 30px 60px;
  }
}
.access__content {
  position: relative;
}
.access__item {
  background-color: var(--color-white);
  color: var(--color-main);
  padding: 30px;
}
@media only screen and (max-width: 1000px) {
  .access__item {
    padding: 0;
  }
}
.access__ttl {
  font-family: "Raleway";
  font-weight: 800;
  line-height: 1;
}
@media only screen and (max-width: 1000px) {
  .access__ttl {
    text-align: center;
    margin: 0 0 30px;
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 1001px) {
  .access__ttl {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 4.6rem;
    border-radius: 0 0 30px 0;
    padding: 30px 40px 40px 30px;
    box-shadow: 7px 7px 8px rgba(var(--color-black-rgb), 0.05);
  }
}
.access__ttl span {
  display: block;
  font-weight: normal;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 1000px) {
  .access__ttl span {
    font-size: 1rem;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1001px) {
  .access__ttl span {
    font-size: 1.3rem;
    margin-top: 5px;
  }
}
.access__info {
  font-weight: 500;
}
@media only screen and (max-width: 1000px) {
  .access__info {
    margin: 20px 0 25px;
    font-size: 0.85rem;
    line-height: 1.7;
  }
}
@media only screen and (min-width: 1001px) {
  .access__info {
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 30px 0 0 0;
    max-width: 400px;
    font-size: 0.95rem;
    box-shadow: -7px -7px 8px rgba(var(--color-black-rgb), 0.05);
  }
}
.access__info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px 0;
}
.access__info ul li {
  font-feature-settings: "palt";
  padding-left: 1.7rem;
  text-indent: -1.7rem;
  letter-spacing: 0.1rem;
  line-height: 1.5;
}
.access__info ul li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5rem;
}
.access__info ul li:nth-of-type(1)::before {
  content: "\f3c5";
}
.access__info ul li:nth-of-type(2)::before {
  content: "\f239";
}
.access__map iframe {
  width: 100%;
  border-radius: 20px;
}
@media only screen and (max-width: 1000px) {
  .access__map iframe {
    height: 450px;
  }
}
@media only screen and (min-width: 1001px) {
  .access__map iframe {
    height: 650px;
  }
}

.enterance__box {
  background-color: var(--color-white);
  max-width: 2000px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 18px;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.enterance__img {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 14px;
  align-items: start;
}
@media only screen and (max-width: 1000px) {
  .enterance__img {
    grid-template-columns: 1fr;
  }
}
.enterance__img-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media only screen and (max-width: 1000px) {
  .enterance__img-right {
    grid-template-columns: 1fr;
  }
}
.enterance__img--box {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.enterance__img--box img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 0.45s ease, filter 0.45s ease;
}
.enterance__img--box figcaption {
  color: var(--color-text);
  position: absolute;
  left: 10px;
  bottom: 10px;
  margin: 0;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.678);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.enterance__img--box:hover img {
  cursor: pointer;
  transform: scale(1.01);
  filter: saturate(1.1) contrast(1.05);
}

.enterance-modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.82);
  padding: 20px;
  z-index: 9999;
}
.enterance-modal:hover {
  cursor: pointer;
}
.enterance-modal.is-open {
  display: grid;
}
.enterance-modal__image:hover {
  cursor: default;
}
.enterance-modal__image {
  max-width: min(1100px, 95vw);
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  display: block;
}
.enterance-modal__caption {
  margin-top: 10px;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.enterance-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.recruit {
  color: var(--color-white);
  padding: 100px 0 110px;
}
@media only screen and (max-width: 1000px) {
  .recruit {
    padding: 60px 0 70px;
  }
}
@media only screen and (min-width: 1001px) {
  .recruit h2 {
    margin: 0 0 60px;
  }
}
.recruit p {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05rem;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media only screen and (max-width: 1000px) {
  .recruit p {
    font-size: 1.05rem;
    line-height: 1.8;
  }
}
.recruit__link {
  border: 2px solid var(--color-main);
  background-color: #cf0001;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.05rem;
  border-radius: var(--radius-card);
  max-width: 550px;
  height: 105px;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color var(--transition-base), color var(--transition-base);
}
@media only screen and (max-width: 1000px) {
  .recruit__link {
    font-size: 1.05rem;
    margin: 30px auto 0;
    max-width: 300px;
    height: 70px;
  }
}
.recruit__link:hover {
  background-color: var(--color-white);
  color: var(--color-main);
}
.recruit__link:hover .recruit__arrow {
  background-color: var(--color-main);
}
.recruit__link:hover .recruit__arrow::after {
  border-top: solid 2.8px var(--color-white);
  border-right: solid 2.8px var(--color-white);
}
.recruit__arrow {
  background-color: var(--color-white);
  width: 40px;
  height: 40px;
  right: 30px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media only screen and (max-width: 1000px) {
  .recruit__arrow {
    width: 28px;
    height: 28px;
    right: 20px;
  }
}
.recruit__arrow::after {
  content: "";
  border-top: solid 2.8px var(--color-main);
  border-right: solid 2.8px var(--color-main);
  width: 11px;
  height: 11px;
  right: 16px;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media only screen and (max-width: 1000px) {
  .recruit__arrow::after {
    width: 9px;
    height: 9px;
    right: 11px;
  }
}

.sns {
  background-color: var(--color-white);
  padding: 100px 0 120px;
}
@media only screen and (max-width: 1000px) {
  .sns {
    padding: 60px 0 70px;
  }
}
.sns h2 {
  font-size: 2.2rem;
  margin: 0 0 60px;
}
@media only screen and (max-width: 1000px) {
  .sns h2 {
    font-size: 1.15rem;
    margin: 0 0 30px;
  }
}
.sns__list {
  display: flex;
  justify-content: center;
  gap: 0 50px;
}
@media only screen and (max-width: 1000px) {
  .sns__list {
    gap: 0 25px;
  }
}
.sns__item {
  color: var(--color-black);
  text-align: center;
}
.sns__item:hover {
  color: var(--color-main);
}
.sns__item:hover .sns__icon {
  background-color: var(--color-main);
}
.sns__icon {
  background-color: var(--color-black);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  margin: 0 auto 10px;
  transition: background-color var(--transition-base);
}
@media only screen and (max-width: 1000px) {
  .sns__icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 7px;
  }
}
.sns__icon::before {
  content: "\e61b";
  font-family: "Font Awesome 6 Brands";
  font-weight: 900;
  display: block;
  font-size: 2rem;
  color: var(--color-white);
}
@media only screen and (max-width: 1000px) {
  .sns__icon::before {
    font-size: 1.8rem;
  }
}
.sns p {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
@media only screen and (max-width: 1000px) {
  .sns p {
    font-size: 0.85rem;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-white);
  border: 2px solid #ece8e8;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base) ease, visibility var(--transition-base) ease, background-color var(--transition-base) ease;
}
@media only screen and (max-width: 1000px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}
.scroll-to-top:hover {
  background-color: #f1f1f1;
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top span {
  display: block;
  border-top: solid 2px #666;
  border-right: solid 2px #666;
  transform: rotate(315deg);
}
@media only screen and (max-width: 1000px) {
  .scroll-to-top span {
    width: 10px;
    height: 10px;
    margin-top: 5px;
  }
}
@media only screen and (min-width: 1001px) {
  .scroll-to-top span {
    width: 11px;
    height: 11px;
    margin-top: 6px;
  }
}

.floor-map__content {
  background-color: #fff;
  border: 1px solid rgba(var(--color-main), 0.12);
  border-radius: 26px;
  box-shadow: 0 20px 40px rgba(var(--color-main), 0.12);
  position: relative;
  text-align: center;
  margin: 0 auto 100px auto;
  overflow: hidden;
}
@media only screen and (max-width: 1000px) {
  .floor-map__content {
    width: calc(100% - 24px);
    margin: 0 auto 60px auto;
    padding: 30px 14px 20px;
  }
}
@media only screen and (min-width: 1001px) {
  .floor-map__content {
    max-width: 1140px;
    width: calc(100% - 40px);
    padding: 44px 20px 24px;
  }
}
.floor-map__head {
  color: var(--color-main);
  margin: 0;
  line-height: 1;
  position: static;
  letter-spacing: 0.1rem;
  text-align: center;
  font-family: "Raleway";
  text-transform: uppercase;
}
@media only screen and (max-width: 1000px) {
  .floor-map__head {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 1001px) {
  .floor-map__head {
    font-size: 3.4rem;
    margin-bottom: 22px;
  }
}
.floor-map__map {
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.floor-map__map img {
  cursor: zoom-in;
}
.floor-map__map img:focus-visible {
  outline: 3px solid rgba(var(--color-main), 0.55);
  outline-offset: 5px;
}
@media only screen and (max-width: 1000px) {
  .floor-map__map {
    padding: 8px;
  }
}
@media only screen and (min-width: 1001px) {
  .floor-map__map {
    max-width: 1020px;
    padding: 10px;
  }
}

body.is-floor-map-modal-open {
  overflow: hidden;
}

.floor-map-modal {
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 20px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.2s ease;
  z-index: 2500;
}
.floor-map-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.floor-map-modal__image {
  max-height: 92vh;
  max-width: 96vw;
  -o-object-fit: contain;
     object-fit: contain;
}
.floor-map-modal__close {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  height: 52px;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 52px;
}
@media only screen and (min-width: 1001px) {
  .floor-map-modal__close {
    right: 24px;
    top: 24px;
  }
}

.open {
  padding: 150px 0 0;
}
@media only screen and (max-width: 1000px) {
  .open {
    padding: 60px 0 0;
  }
}
.open__text {
  text-align: center;
  margin: 0 0 50px;
  padding: 0 15px;
}
@media only screen and (max-width: 1000px) {
  .open__text {
    margin: 0 0 30px;
  }
}
.open__text p {
  color: var(--color-white);
  font-weight: 800;
  margin: 0;
}
.open__text--large {
  font-size: 3rem;
  line-height: 1.5;
}
@media only screen and (max-width: 1000px) {
  .open__text--large {
    font-size: 1.5rem;
  }
}
.open__text--small {
  font-size: 2.5rem;
}
@media only screen and (max-width: 1000px) {
  .open__text--small {
    font-size: 1.2rem;
    margin-top: 5px;
  }
}
.open__text span {
  color: #fef103;
}
.open__video {
  text-align: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1000px) {
  .open__video {
    width: calc(100% - 24px);
    margin: 0 auto 30px;
  }
}
.open__video .video-open {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
  background-color: #fff;
  padding: 25px;
  border-radius: 25px;
}
@media only screen and (max-width: 1000px) {
  .open__video .video-open {
    padding: 15px;
    border-radius: 20px;
  }
}
.open__video .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--color-main);
  border-radius: 50%;
  border: none;
  pointer-events: none;
}
@media only screen and (max-width: 1000px) {
  .open__video .video-play {
    width: 60px;
    height: 60px;
  }
}
.open__video .video-play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  border-left: 25px solid #fff;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
}
@media only screen and (max-width: 1000px) {
  .open__video .video-play::before {
    border-left: 17px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
}
.open .video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.open .video-modal.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.open .video-modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.open .video-modal__content {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.open .video-modal video {
  width: 100%;
  height: auto;
  display: block;
}
.open .video-modal__close {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  height: 52px;
  line-height: 1;
  position: fixed;
  right: 16px;
  top: 16px;
  width: 52px;
}
@media only screen and (min-width: 1001px) {
  .open .video-modal__close {
    right: 24px;
    top: 24px;
  }
}
.open__img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  width: calc(100% - 32px);
}
@media only screen and (max-width: 1000px) {
  .open__img {
    gap: 8px;
    width: calc(100% - 16px);
  }
}
.open__img-item {
  width: calc(20% - 16px);
  max-width: 500px;
}
@media only screen and (max-width: 1000px) {
  .open__img-item {
    width: calc(50% - 8px);
    max-width: 240px;
  }
}

.online__nav {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 180px;
}
@media only screen and (max-width: 1000px) {
  .online__nav {
    margin-bottom: 120px;
  }
}
.online__nav-item {
  height: 46px;
  background-color: var(--color-main-light);
  color: var(--color-main);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 3px;
  line-height: 1.3;
  cursor: pointer;
  font-weight: 700;
  transition: background-color var(--transition-base), color var(--transition-base);
}
@media only screen and (max-width: 1000px) {
  .online__nav-item {
    font-size: 0.8rem;
    line-height: 1.2;
    padding: 0;
  }
}
.online__nav-item:hover {
  background-color: var(--color-main);
  color: var(--color-white);
}
.online__nav-item a {
  color: var(--color-main);
  display: block;
  width: 100%;
  height: 100%;
  line-height: 44px;
}
.online__nav-item a:hover {
  color: var(--color-white);
}/*# sourceMappingURL=style.css.map */