@charset "utf-8";
@import './sanitize.css';
:root {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  font-feature-settings: 'pkna' on, 'hkna' on;
}
* {
  background-repeat: no-repeat;
}
*::before,
*::after {
  background-repeat: no-repeat;
}
html {
  background: #fff;
}
body {
  position: relative;
  width: 100%;
  margin: 0;
  font-weight: 400;
  color: #000;
  font-feature-settings: 'pkna' on;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: normal;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
li {
  list-style: none;
}
dl,
dt,
dd {
  margin: 0;
}
p {
  margin: 0;
}
i {
  font-style: normal;
}
picture {
  display: block;
}
img {
  width: 100%;
  height: auto;
}
img.lazy {
  opacity: 0;
  transition: opacity 500ms ease-out;
}
img.lazyloaded {
  opacity: 1;
}
svg {
  width: 100%;
  height: auto;
}
a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
input[type="submit"],
[data-scroll],
.btn,
.hover {
  cursor: pointer;
}
.wrapper {
  position: relative;
}
main.contents {
  position: relative;
  z-index: 1;
}
.mod-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 998;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  transition-property: opacity, visibility;
}
.mod-modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0.85);
}
.mod-modal-contents {
  position: relative;
}
.mod-modal-close-trigger {
  position: absolute;
  background-size: contain;
  background-image: url("../img/common/icon/icon-close.svg");
}
.mod-modal.open {
  visibility: visible;
  opacity: 1;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20rem;
  height: 4rem;
  margin: 0 auto;
  border-radius: 0.4rem;
  border: 1px solid #c0c0c0;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1;
  color: #000;
}
.btn[target="_blank"] {
  padding-left: 1.2rem;
}
.btn[target="_blank"]::after {
  content: '';
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.2rem;
  margin-left: 0.2rem;
  background-image: url("../img/common/icon/icon-blank.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.gheader.open .g-nav .menu-trigger .border span:nth-of-type(1) {
  top: calc(50% - 0.1rem);
  left: 0.15rem;
  width: 2.2rem;
  transform: rotate(45deg);
}
.gheader.open .g-nav .menu-trigger .border span:nth-of-type(2) {
  left: 50%;
  width: 0;
  opacity: 0;
}
.gheader.open .g-nav .menu-trigger .border span:nth-of-type(3) {
  top: calc(50% - 0.1rem);
  left: 0.15rem;
  width: 2.2rem;
  transform: rotate(-45deg);
}
.gheader.open .g-nav .menu-trigger .text {
  background-image: url("../img/common/menu-on.svg");
}
.gheader.hidden:not(.open) {
  opacity: 0 !important;
  pointer-events: none;
}
.gfooter {
  position: relative;
  color: #fff;
}
.mod-modal[data-modal-type='menu'] .mod-modal-contents {
  width: 1200px;
}
.mod-modal[data-modal-type='menu'] .frame {
  position: relative;
  height: calc(100% - 5.4rem);
  padding-bottom: 10rem;
  background-color: #fff;
  overflow: auto;
}
.mod-modal[data-modal-type='menu'] .frame .menu-title {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 10.8rem;
  margin-bottom: 7.1rem;
  padding: 3.2rem 0 0;
  background: #d11322;
}
.mod-modal[data-modal-type='menu'] .frame .menu-title img {
  width: 33.5rem;
}
.mod-modal[data-modal-type='menu'] .frame .menu-list ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem 0;
}
.mod-modal[data-modal-type='menu'] .frame .menu-list ul li {
  position: relative;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: #d11322;
}
.mod-modal[data-modal-type='menu'] .frame .menu-list ul li.comingsoon {
  color: rgba(209,19,34,0.3);
}
.mod-modal[data-modal-type='menu'] .frame .menu-list ul li.comingsoon::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1.65rem;
  transform: translateX(-50%);
  width: 5rem;
  height: 1rem;
  background-image: url("../img/common/comingsoon.svg");
  background-size: cover;
  background-position: center;
}
.mod-modal[data-modal-type='menu'] .frame .menu-list ul li a[target="_blank"]::after {
  content: '';
  position: absolute;
  top: 0.6rem;
  right: -1.4rem;
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../img/common/icon/icon-blank-red.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.mod-modal[data-modal-type='gallery'] {
  display: flex;
}
.mod-modal[data-modal-type='gallery'] .mod-modal-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.mod-modal[data-modal-type='gallery'] .mod-modal-contents .image {
  position: relative;
  width: 100%;
  aspect-ratio: 335/220;
}
.mod-modal[data-modal-type='gallery'] .mod-modal-contents .image .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  color: #ccc;
  font-size: 1.2rem;
  line-height: 1;
}
.mod-modal[data-modal-type='player'] {
  display: flex;
  align-items: flex-start;
}
.mod-modal[data-modal-type='player'] .mod-modal-contents {
  display: flex;
  flex-direction: column;
  height: auto;
  background: #fff;
}
.mod-modal[data-modal-type='player'] .mod-modal-contents .frame {
  overflow: auto;
  height: 100%;
}
.mod-modal[data-modal-type='player'] .mod-modal-contents .player-title {
  margin-bottom: 2.1rem;
  text-align: center;
}
.mod-modal[data-modal-type='player'] .mod-modal-contents .player-title h3 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.9rem;
}
.mod-modal[data-modal-type='player'] .mod-modal-contents .player-title p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7rem;
}
.mod-modal[data-modal-type='player'] .mod-modal-contents .player-list ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.mod-modal[data-modal-type='map'] {
  display: flex;
}
.mod-modal[data-modal-type='map'] .mod-modal-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 106.8rem;
  max-width: 1068px;
}
.mod-modal[data-modal-type='map'] .mod-modal-contents .image {
  position: relative;
  width: 100%;
  aspect-ratio: 1068/713;
}
main.contents.home .fade {
  opacity: 0;
  transition: 0.8s;
}
main.contents.home .fade-in {
  opacity: 1 !important;
}
main.contents.home .opening {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
main.contents.home .opening .op-image {
  width: 100%;
  height: 100%;
}
main.contents.home .opening .op-image .image01 {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
}
main.contents.home .opening .op-image .image02 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  opacity: 0;
}
main.contents.home .opening .op-image .image02.active {
  opacity: 1;
}
main.contents.home .opening .catch01 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
main.contents.home .opening .catch01 svg path {
  opacity: 0;
}
main.contents.home .opening .catch01.active svg path {
  -webkit-animation: fadeInall 2s ease forwards;
          animation: fadeInall 2s ease forwards;
}
main.contents.home .opening .catch01.end {
  opacity: 0;
}
main.contents.home .opening .catch02 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
main.contents.home .opening .catch02 svg path {
  opacity: 0;
}
main.contents.home .opening .catch02.active {
  opacity: 1;
}
main.contents.home .opening .catch02.active svg path {
  -webkit-animation: fadeInall 2s ease forwards;
          animation: fadeInall 2s ease forwards;
}
main.contents.home .opening .catch02.end {
  opacity: 0;
}
main.contents.home .opening .catch03 {
  position: absolute;
  top: 2.8rem;
  right: 5.6rem;
  z-index: 3;
  width: 4rem;
  opacity: 0;
}
main.contents.home .opening .catch03.active {
  opacity: 1;
}
main.contents.home .opening h1 {
  position: absolute;
  bottom: 10rem;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  width: 33.5rem;
}
main.contents.home .sp-frame {
  position: relative;
  z-index: 1;
}
main.contents.home section {
  position: relative;
}
main.contents.home section .section-inner {
  position: relative;
  width: 33.5rem;
  margin-right: auto;
  margin-left: auto;
}
main.contents.home section .section-title {
  display: flex;
  border-top: 1px solid #d11322;
  border-bottom: 1px solid #d11322;
  color: #d11322;
}
main.contents.home section .section-title h2 {
  overflow: hidden;
}
main.contents.home section .section-title h2 img {
  width: auto;
  height: 1000%;
  transform: scale(0.1);
  transform-origin: left top;
}
main.contents.home section .section-title .en {
  font-family: futura-pt, sans-serif;
  font-weight: 450;
}
main.contents.home section.kv {
  margin-bottom: 2.8rem;
}
main.contents.home section.kv .kv-image {
  position: relative;
  background-image: url("../img/home/kv2-sp.webp");
  background-size: cover;
  background-position: center top;
}
main.contents.home section.kv .catch {
  position: absolute;
  top: 2.8rem;
  right: 5.6rem;
  width: 4rem;
}
main.contents.home section.kv h1 {
  position: absolute;
  bottom: 10rem;
  left: 50%;
  transform: translateX(-50%);
  width: 33.5rem;
}
main.contents.home section.news {
  display: flex;
  width: 33.5rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 2.8rem;
  padding: 1.4rem 2.1rem 1.3rem;
  line-height: 1.9rem;
  background: #fff;
  border: 1px solid #d11322;
}
main.contents.home section.news .news-date {
  width: 6.5rem;
  font-size: 1.1rem;
  color: #666;
}
main.contents.home section.news .news-title {
  width: calc(100% - 6.5rem);
  font-size: 1.3rem;
}
main.contents.home section.overview {
  margin-bottom: 6.4rem;
}
main.contents.home section.overview .overview-data dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.3rem;
  line-height: 1.9rem;
  border-bottom: 1px solid #d11322;
}
main.contents.home section.overview .overview-data dl dt {
  width: 6.8rem;
  padding: 1.7rem 0 1.7rem 0.4rem;
  border-top: 1px solid #d11322;
  border-right: 1px solid #d11322;
}
main.contents.home section.overview .overview-data dl dd {
  width: calc(100% - 6.8rem);
  padding: 1.7rem 0.5rem 1.6rem 1.2rem;
  border-top: 1px solid #d11322;
}
main.contents.home section.player {
  margin-bottom: 6.4rem;
}
main.contents.home section.player .links {
  display: flex;
  margin-bottom: 2rem;
}
main.contents.home section.player .links .btn {
  margin: 0;
}
main.contents.home section.player h3 {
  font-weight: 700;
}
main.contents.home section.player .player-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.7rem 1rem;
  margin-bottom: 1.9rem;
}
main.contents.home section.player .player-list ul li {
  width: 10.5rem;
}
main.contents.home section.player .player-list ul li .name {
  margin-top: 0.7rem;
  font-size: 1.3rem;
  line-height: 1.9rem;
}
main.contents.home section.course {
  margin-bottom: 6.4rem;
}
main.contents.home section.course .course-logo {
  width: 16.8rem;
  height: 5rem;
  margin-bottom: 2.1rem;
  padding: 0.9rem 0 0 2.1rem;
  bottom: #d9d9d9;
}
main.contents.home section.course .course-logo img {
  width: 12rem;
}
main.contents.home section.course h3 {
  margin-bottom: 1.9rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.9rem;
}
main.contents.home section.course p {
  margin-bottom: 2.9rem;
  font-size: 1.3rem;
  line-height: 1.9rem;
}
main.contents.home section.course .course-data {
  margin-bottom: 4rem;
}
main.contents.home section.course .course-data dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.3rem;
  line-height: 1.9rem;
  border-bottom: 1px solid #d11322;
}
main.contents.home section.course .course-data dl dt {
  width: 6.8rem;
  padding: 1.7rem 0 1.7rem 0.4rem;
  border-top: 1px solid #d11322;
  border-right: 1px solid #d11322;
}
main.contents.home section.course .course-data dl dd {
  width: calc(100% - 6.8rem);
  padding: 1.7rem 1.2rem 1.7rem;
  border-top: 1px solid #d11322;
}
main.contents.home section.course .course-image {
  position: relative;
  margin-bottom: 2rem;
}
main.contents.home section.course .course-image .swiper-container {
  padding: 2.3rem 0 5.2rem;
}
main.contents.home section.course .course-image .swiper-slide {
  width: 18rem;
  margin: 0 2.2rem;
  transition: transform 1s, box-shadow 1s;
}
main.contents.home section.course .course-image .swiper-slide-active {
  z-index: 2;
  transform: scale(1.333);
  box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.25);
}
main.contents.home section.course .course-image .swiper-pagination {
  bottom: 0;
  width: 100%;
}
main.contents.home section.course .course-image .swiper-pagination-bullet {
  position: relative;
  opacity: 1;
  border-radius: 50%;
  background: #fff;
  -webkit-animation-play-state: inherit;
          animation-play-state: inherit;
  width: 1rem;
  height: 1rem;
  margin: 0 0.5rem;
  border: 1px solid #e0e0e0;
}
main.contents.home section.course .course-image .swiper-pagination-bullet-active {
  border-color: #d11322;
  background: #d11322;
}
main.contents.home section.ticket {
  margin-bottom: 6.1rem;
}
main.contents.home section.ticket .section-title h2 {
  height: 4rem;
}
main.contents.home section.ticket .endlabel {
  margin-bottom: 1.1rem;
  font-size: 1.2rem;
  line-height: 1.9rem;
}
main.contents.home section.ticket .ticket-detail dl dt {
  margin-bottom: 1.1rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.9rem;
}
main.contents.home section.ticket .ticket-detail dl dd {
  font-size: 1.3rem;
  line-height: 1.9rem;
}
main.contents.home section.ticket .ticket-detail dl dd+dt {
  margin-top: 2.7rem;
}
main.contents.home section.ticket .ticket-detail dl dd.price {
  display: flex;
  align-items: flex-end;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
}
main.contents.home section.ticket .ticket-detail dl dd.price span {
  margin-left: 0.4rem;
  font-size: 1.6rem;
  line-height: 1;
}
main.contents.home section.ticket .ticket-detail dl dd.online-sales {
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  padding: 1.7rem 2rem 2.2rem;
  border: 1px solid #d11322;
}
main.contents.home section.ticket .ticket-detail dl dd.online-sales ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 0;
}
main.contents.home section.ticket .ticket-detail dl dd.online-sales ul li .sub-title {
  margin-bottom: 0.4rem;
  font-weight: 700;
  color: #d11322;
}
main.contents.home section.ticket .ticket-detail dl dd.online-sales ul li a {
  position: relative;
  display: inline-block;
  text-decoration: underline;
}
main.contents.home section.ticket .ticket-detail dl dd.online-sales ul li a::after {
  content: '';
  position: absolute;
  top: 0.5rem;
  right: -1.4rem;
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../img/common/icon/icon-blank.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
main.contents.home section.ticket .ticket-detail dl dd.note ul li {
  padding-left: 1.2rem;
  text-indent: -1.2rem;
}
main.contents.home section.access {
  margin-bottom: 6.2rem;
}
main.contents.home section.access .section-title {
  margin-bottom: 3.5rem;
}
main.contents.home section.access h3 {
  margin-bottom: 0.9rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
main.contents.home section.access h3+p {
  margin-bottom: 1.4rem;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7rem;
}
main.contents.home section.access .map {
  position: relative;
  width: 100%;
  height: 38.7rem;
  margin-bottom: 2.4rem;
}
main.contents.home section.access .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main.contents.home section.access .map-image {
  margin-bottom: 3.2rem;
}
main.contents.home section.access .access-list dl dt {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.9rem;
}
main.contents.home section.access .access-list dl dt:not(:first-child) {
  margin-top: 2.8rem;
}
main.contents.home section.access .access-list dl dt:nth-of-type(1)::before {
  background-image: url("../img/common/icon/icon-car.svg");
}
main.contents.home section.access .access-list dl dt:nth-of-type(2)::before {
  background-image: url("../img/common/icon/icon-train.svg");
}
main.contents.home section.access .access-list dl dt::before {
  content: '';
  width: 2.6rem;
  height: 2.6rem;
  margin-right: 0.4rem;
  background-size: contain;
  background-repeat: no-repeat;
}
main.contents.home section.access .access-list dl dt:nth-of-type(3)::before {
  display: none;
}
main.contents.home section.access .access-list dl dd p {
  padding-left: 1.3rem;
  text-indent: -1.3rem;
  font-size: 1.3rem;
  line-height: 1.9rem;
}
main.contents.home section.access .access-list dl dd span {
  display: block;
  padding-left: 1.1rem;
  text-indent: -1.1rem;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7rem;
}
main.contents.home section.access .access-list dl dd p+span {
  margin-top: 0.4rem;
}
main.contents.home section.access .access-list dl dd span+p {
  margin-top: 1rem;
}
main.contents.home section.access .access-list .btn {
  margin-top: 1.4rem;
  margin-left: 0;
}
main.contents.home section.gallery {
  padding-bottom: 6.5rem;
  background: #e7e7e7;
}
main.contents.home section.gallery .gallery-lsit ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.9rem;
}
main.contents.home section.gallery .gallery-lsit ul li {
  width: 15.8rem;
}
main.contents.home section.company {
  padding: 6.4rem 0;
}
main.contents.home section.company ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
main.contents.home section.company ul li {
  width: 10.5rem;
}
@-webkit-keyframes fadeInall {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInall {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  :root {
    font-size: calc(10 / 375 * 100vw);
  }
  .pc {
    display: none;
  }
  main.contents {
    max-width: 52.6rem;
    background: #f4f4f4;
  }
  main.contents section.footer {
    display: flex;
    justify-content: center;
    gap: 0 2.9rem;
    height: calc(4.8rem + 2px);
    padding-top: 1.8rem;
    font-size: 0.9rem;
    line-height: 1.1rem;
    color: #d11322;
    border-top: 1px solid #d11322;
    border-bottom: 1px solid #d11322;
    background: #fff;
  }
  .mod-modal-contents {
    width: 100vw;
    height: 100%;
  }
  .mod-modal-close-trigger {
    top: -3.3rem;
    right: 0;
    width: 1.7rem;
    height: 1.7rem;
  }
  .gheader {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 5.4rem;
    background: #d11322;
    background: #d11322;
    box-shadow: 1px 1px 2px 0px rgba(228,21,37,0.3) inset, -1px -1px 2px 0px rgba(190,17,31,0.5) inset, -1px 1px 2px 0px rgba(190,17,31,0.2), 1px -1px 2px 0px rgba(190,17,31,0.2), -1px -1px 2px 0px rgba(228,21,37,0.9), 1px 1px 3px 0px rgba(190,17,31,0.9);
    color: #fff;
    opacity: 0;
    transition: 1s;
  }
  .gheader.active {
    opacity: 1;
  }
  .gheader .header-news {
    position: absolute;
    right: 1.3rem;
    bottom: 6.9rem;
    width: 12rem;
  }
  .gheader .g-nav ul {
    display: flex;
  }
  .gheader .g-nav ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0.7rem 1.6rem 0;
  }
  .gheader .g-nav ul li .icon {
    width: 2.8rem;
    height: 2.4rem;
    margin-bottom: 0.4rem;
    pointer-events: none;
  }
  .gheader .g-nav ul li .name {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1;
    pointer-events: none;
  }
  .gheader .g-nav ul li:nth-of-type(2)::before,
  .gheader .g-nav ul li:nth-of-type(4)::before {
    content: '';
    position: absolute;
    top: 0.9rem;
    left: 0;
    width: 1px;
    height: 3.6rem;
    background: #fff;
  }
  .gheader .g-nav ul li:nth-of-type(3) {
    margin-left: auto;
  }
  .gheader .g-nav .menu-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: -0.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8.6rem;
    height: 8.6rem;
    padding-top: 3rem;
    border-radius: 50%;
    background-color: #d11322;
    background-image: url("../img/common/menu-btn.png");
    background-size: 7.3rem;
    background-repeat: no-repeat;
    background-position: top 0.5rem center;
  }
  .gheader .g-nav .menu-trigger .border {
    position: relative;
    width: 2.6rem;
    height: 1.4rem;
    margin-bottom: 0.3rem;
  }
  .gheader .g-nav .menu-trigger .border span {
    position: absolute;
    left: 0;
    width: 2.6rem;
    height: 0.2rem;
    background: #fff;
    transition: 0.6s;
    transform-origin: center;
  }
  .gheader .g-nav .menu-trigger .border span:nth-of-type(1) {
    top: 0;
  }
  .gheader .g-nav .menu-trigger .border span:nth-of-type(2) {
    top: 0.6rem;
  }
  .gheader .g-nav .menu-trigger .border span:nth-of-type(3) {
    top: 1.2rem;
  }
  .gheader .g-nav .menu-trigger .text {
    width: 3rem;
    height: 1.3rem;
    background-image: url("../img/common/menu-off.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  aside.g-menu {
    display: none;
  }
  .mod-modal[data-modal-type='gallery'] {
    align-items: center;
  }
  .mod-modal[data-modal-type='gallery'] .mod-modal-contents {
    width: 33.5rem;
  }
  .mod-modal[data-modal-type='player'] {
    top: 7.7rem;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents {
    width: 33.5rem;
    height: calc(100% - 7.7rem);
    padding: 3rem 2rem 4rem;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents .player-list ul {
    border-bottom: 1px solid #c0c0c0;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents .player-list ul li {
    width: 50%;
    padding-left: 1.6rem;
    font-size: 1.3rem;
    line-height: 3.5rem;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents .player-list ul li:not(:nth-of-type(1)),
  .mod-modal[data-modal-type='player'] .mod-modal-contents .player-list ul li:not(:nth-of-type(2)) {
    border-top: 1px solid #c0c0c0;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents .player-list ul li:nth-of-type(odd) {
    position: relative;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents .player-list ul li:nth-of-type(odd)::after {
    content: '';
    position: absolute;
    top: 0;
    right: -0.5px;
    width: 1px;
    height: 100%;
    background: #c0c0c0;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents .player-list ul li:nth-last-child(2):nth-of-type(even) {
    position: relative;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents .player-list ul li:nth-last-child(2):nth-of-type(even)::before {
    content: '';
    position: absolute;
    bottom: -0.5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #c0c0c0;
  }
  main.contents.home .opening {
    position: absolute;
    margin-bottom: 2.8rem;
    z-index: 999;
  }
  main.contents.home .opening .copyright {
    display: none;
  }
  main.contents.home .opening .op-image .image01 {
    background-image: url("../img/home/kv-sp.webp");
  }
  main.contents.home .opening .op-image .image02 {
    background-image: url("../img/home/kv2-sp.webp");
    transition: opacity 1s;
  }
  main.contents.home .opening .catch01 {
    top: 11.2rem;
    width: 30.4rem;
    transition: opacity 1s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(2) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(3) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(4) {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(5) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(6) {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(7) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(8) {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(9) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(10) {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(11) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(12) {
    -webkit-animation-delay: 1.1s;
            animation-delay: 1.1s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(13) {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(14) {
    -webkit-animation-delay: 1.3s;
            animation-delay: 1.3s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(15) {
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(16) {
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(17) {
    -webkit-animation-delay: 1.6s;
            animation-delay: 1.6s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(18) {
    -webkit-animation-delay: 1.7s;
            animation-delay: 1.7s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(19) {
    -webkit-animation-delay: 1.8s;
            animation-delay: 1.8s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(20) {
    -webkit-animation-delay: 1.9s;
            animation-delay: 1.9s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(21) {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(22) {
    -webkit-animation-delay: 2.1s;
            animation-delay: 2.1s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(23) {
    -webkit-animation-delay: 2.2s;
            animation-delay: 2.2s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(24) {
    -webkit-animation-delay: 2.3s;
            animation-delay: 2.3s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(25) {
    -webkit-animation-delay: 2.4s;
            animation-delay: 2.4s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(26) {
    -webkit-animation-delay: 2.5s;
            animation-delay: 2.5s;
  }
  main.contents.home .opening .catch02 {
    top: 11.2rem;
    width: 30.4rem;
    transition: opacity 1s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(2) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(3) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(4) {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(5) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(6) {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(7) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(8) {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(9) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(10) {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(11) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(12) {
    -webkit-animation-delay: 1.1s;
            animation-delay: 1.1s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(13) {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(14) {
    -webkit-animation-delay: 1.3s;
            animation-delay: 1.3s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(15) {
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(16) {
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(17) {
    -webkit-animation-delay: 1.6s;
            animation-delay: 1.6s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(18) {
    -webkit-animation-delay: 1.7s;
            animation-delay: 1.7s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(19) {
    -webkit-animation-delay: 1.8s;
            animation-delay: 1.8s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(20) {
    -webkit-animation-delay: 1.9s;
            animation-delay: 1.9s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(21) {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(22) {
    -webkit-animation-delay: 2.1s;
            animation-delay: 2.1s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(23) {
    -webkit-animation-delay: 2.2s;
            animation-delay: 2.2s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(24) {
    -webkit-animation-delay: 2.3s;
            animation-delay: 2.3s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(25) {
    -webkit-animation-delay: 2.4s;
            animation-delay: 2.4s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(26) {
    -webkit-animation-delay: 2.5s;
            animation-delay: 2.5s;
  }
  main.contents.home .opening .catch03 {
    transition: 1s;
  }
  main.contents.home .opening.end {
    opacity: 0;
    pointer-events: none;
  }
  main.contents.home section .section-title {
    margin-bottom: 4rem;
    padding: 1.8rem 2rem 1.7rem;
  }
  main.contents.home section .section-title h2 {
    height: 3.8rem;
    margin-right: 1.1rem;
  }
  main.contents.home section .section-title .en {
    margin-top: 1.1rem;
    font-size: 1.4rem;
    line-height: 1.8rem;
    letter-spacing: -0.08em;
  }
  main.contents.home section.kv {
    height: 100vh;
  }
  main.contents.home section.kv .kv-image {
    height: 100%;
  }
  main.contents.home section.overview .overview-data dl dd span {
    font-size: 1.1rem;
  }
  main.contents.home section.player .links {
    flex-direction: column;
    align-items: center;
    gap: 2rem 0;
  }
  main.contents.home section.player h3 {
    margin-bottom: 2.3rem;
    font-size: 1.6rem;
    line-height: 1.9rem;
  }
  main.contents.home section.course .course-image {
    width: 100vw;
    margin-left: -2rem;
  }
}
@media (min-width: 1025px) {
  :root {
    font-size: calc(10 / 1600 * 100vw);
  }
  a:hover {
    opacity: 0.5;
    transition: opacity 0.6s;
  }
  input[type="submit"]:hover,
  [data-scroll]:hover,
  .btn:hover,
  .hover:hover {
    opacity: 0.5;
    transition: opacity 0.6s;
  }
  .sp {
    display: none;
  }
  main.contents section.footer {
    display: none;
  }
  .mod-modal-close-trigger {
    top: -4.9rem;
    right: -4.9rem;
    width: 3.3rem;
    height: 3.3rem;
    cursor: pointer;
  }
  .btn[target="_blank"] {
    padding-left: calc(12 / 375 * (534 / 1600 * 100vw));
  }
  .btn[target="_blank"]::after {
    margin-top: calc(2 / 375 * (534 / 1600 * 100vw));
    margin-left: calc(2 / 375 * (534 / 1600 * 100vw));
    width: calc(12 / 375 * (534 / 1600 * 100vw));
    height: calc(12 / 375 * (534 / 1600 * 100vw));
  }
  .gheader {
    display: none;
  }
  aside.g-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 13.6rem;
    left: calc((100vw - 106.8rem) / 2);
    z-index: 2;
    width: 46.2rem;
    max-height: calc(100vh - 23rem);
    background: rgba(255,255,255,0.33);
    border-radius: 1rem;
    box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.1);
    -webkit-backdrop-filter: blur(7.5px);
            backdrop-filter: blur(7.5px);
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
  }
  aside.g-menu.active {
    opacity: 1;
    pointer-events: auto;
  }
  aside.g-menu .menu-news {
    position: absolute;
    top: -6.5rem;
    right: 0;
    width: 17.1rem;
  }
  aside.g-menu .frame {
    border-radius: 1rem;
    overflow: auto;
    padding-bottom: 0.4rem;
  }
  aside.g-menu .menu-title {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 14.4rem;
    padding: 3.1rem 0 0;
    border-radius: 1rem 1rem 0 0;
    background: #d11322;
  }
  aside.g-menu .menu-title img {
    width: 42.4rem;
  }
  aside.g-menu .menu-list ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  aside.g-menu .menu-list ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(6.6rem + 1px);
    padding-bottom: 0.2rem;
    position: relative;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1;
    color: #d11322;
  }
  aside.g-menu .menu-list ul li:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.33);
  }
  aside.g-menu .menu-list ul li.comingsoon {
    color: #fff;
  }
  aside.g-menu .menu-list ul li.comingsoon::after {
    content: '';
    margin-top: 0.4rem;
    width: 5rem;
    height: 1rem;
    background-image: url("../img/common/comingsoon-pc.svg");
    background-size: cover;
    background-position: center;
  }
  aside.g-menu .menu-list ul li a[target="_blank"] {
    display: inline-flex;
    align-items: center;
  }
  aside.g-menu .menu-list ul li a[target="_blank"]::after {
    content: '';
    width: 1.4rem;
    height: 1.4rem;
    margin-top: 0.2rem;
    background-image: url("../img/common/icon/icon-blank-red.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .mod-modal[data-modal-type='gallery'] .mod-modal-contents {
    width: 106.8rem;
    max-width: 1068px;
  }
  .mod-modal[data-modal-type='player'] {
    top: 18.4rem;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents {
    width: 106.8rem;
    max-width: 1068px;
    max-height: calc(100% - 18.4rem);
    padding: 5.5rem 12rem 6.4rem;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents .player-title {
    margin-bottom: 2.9rem;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents .player-title h3 {
    margin-bottom: 0.9rem;
    font-size: 2.4rem;
    line-height: 1;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents .player-title p {
    font-size: 1.1rem;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents .player-list ul {
    border-top: 1px solid #c0c0c0;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents .player-list ul::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #c0c0c0;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents .player-list ul li {
    width: 25%;
    padding-left: 2.4rem;
    font-size: 1.3rem;
    line-height: 3.5rem;
    border-bottom: 1px solid #c0c0c0;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents .player-list ul li:not(:nth-of-type(4n)) {
    position: relative;
  }
  .mod-modal[data-modal-type='player'] .mod-modal-contents .player-list ul li:not(:nth-of-type(4n))::after {
    content: '';
    position: absolute;
    top: 0;
    right: -0.5px;
    width: 1px;
    height: 100%;
    background: #c0c0c0;
  }
  main.contents.home {
    padding: 7.2rem 0;
  }
  main.contents.home .opening {
    position: fixed;
    z-index: 0;
  }
  main.contents.home .opening .copyright {
    display: flex;
    align-items: center;
    gap: 0 1.6rem;
    position: absolute;
    z-index: 2;
    left: 2.8rem;
    bottom: 2.7rem;
    font-weight: 400;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
  }
  main.contents.home .opening .op-image .image01 {
    background-image: url("../img/home/kv-pc.webp");
    background-attachment: fixed;
  }
  main.contents.home .opening .op-image .image02 {
    background-image: url("../img/home/kv2-pc.webp");
    background-attachment: fixed;
    transition: opacity 0.5s;
  }
  main.contents.home .opening .op-image .image03 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transition: opacity 0.5s;
    background-image: url("../img/home/kv3-pc.webp");
    background-attachment: fixed;
  }
  main.contents.home .opening .op-image .image03.active {
    opacity: 1;
  }
  main.contents.home .opening .catch01 {
    top: calc(166 / 1600 * 100vw);
    width: calc(658 / 1600 * 100vw);
    transition: opacity 0.5s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(2) {
    -webkit-animation-delay: 0.05s;
            animation-delay: 0.05s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(3) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(4) {
    -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(5) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(6) {
    -webkit-animation-delay: 0.25s;
            animation-delay: 0.25s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(7) {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(8) {
    -webkit-animation-delay: 0.35s;
            animation-delay: 0.35s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(9) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(10) {
    -webkit-animation-delay: 0.45s;
            animation-delay: 0.45s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(11) {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(12) {
    -webkit-animation-delay: 0.55s;
            animation-delay: 0.55s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(13) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(14) {
    -webkit-animation-delay: 0.65s;
            animation-delay: 0.65s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(15) {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(16) {
    -webkit-animation-delay: 0.75s;
            animation-delay: 0.75s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(17) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(18) {
    -webkit-animation-delay: 0.85s;
            animation-delay: 0.85s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(19) {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(20) {
    -webkit-animation-delay: 0.95s;
            animation-delay: 0.95s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(21) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(22) {
    -webkit-animation-delay: 1.05s;
            animation-delay: 1.05s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(23) {
    -webkit-animation-delay: 1.1s;
            animation-delay: 1.1s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(24) {
    -webkit-animation-delay: 1.15s;
            animation-delay: 1.15s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(25) {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  main.contents.home .opening .catch01.active svg path:nth-child(26) {
    -webkit-animation-delay: 1.25s;
            animation-delay: 1.25s;
  }
  main.contents.home .opening .catch02 {
    top: calc(165 / 1600 * 100vw);
    width: calc(658 / 1600 * 100vw);
    transition: opacity 0.5s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(2) {
    -webkit-animation-delay: 0.05s;
            animation-delay: 0.05s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(3) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(4) {
    -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(5) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(6) {
    -webkit-animation-delay: 0.25s;
            animation-delay: 0.25s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(7) {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(8) {
    -webkit-animation-delay: 0.35s;
            animation-delay: 0.35s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(9) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(10) {
    -webkit-animation-delay: 0.45s;
            animation-delay: 0.45s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(11) {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(12) {
    -webkit-animation-delay: 0.55s;
            animation-delay: 0.55s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(13) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(14) {
    -webkit-animation-delay: 0.65s;
            animation-delay: 0.65s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(15) {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(16) {
    -webkit-animation-delay: 0.75s;
            animation-delay: 0.75s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(17) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(18) {
    -webkit-animation-delay: 0.85s;
            animation-delay: 0.85s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(19) {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(20) {
    -webkit-animation-delay: 0.95s;
            animation-delay: 0.95s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(21) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(22) {
    -webkit-animation-delay: 1.05s;
            animation-delay: 1.05s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(23) {
    -webkit-animation-delay: 1.1s;
            animation-delay: 1.1s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(24) {
    -webkit-animation-delay: 1.15s;
            animation-delay: 1.15s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(25) {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  main.contents.home .opening .catch02.active svg path:nth-child(26) {
    -webkit-animation-delay: 1.25s;
            animation-delay: 1.25s;
  }
  main.contents.home .opening .catch03 {
    top: calc(28 / 375 * (534 / 1600 * 100vw));
    right: calc(56 / 375 * (534 / 1600 * 100vw));
    width: calc(40 / 375 * (534 / 1600 * 100vw));
    transition: 0.5s;
  }
  main.contents.home .opening h1 {
    bottom: calc(241 / 1600 * 100vw);
    width: calc(1007 / 1600 * 100vw);
    opacity: 0;
    transition: 0.5s;
  }
  main.contents.home .opening h1.active {
    opacity: 1;
  }
  main.contents.home .sp-frame {
    width: calc(534 / 1600 * 100vw);
    margin-left: auto;
    margin-right: calc((100vw - 106.8rem) / 2);
    background: #f4f4f4;
    box-shadow: 2.03px 4.061px 4.061px 0px rgba(0,0,0,0.25);
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
  }
  main.contents.home .sp-frame.active {
    opacity: 1;
    pointer-events: auto;
  }
  main.contents.home section .section-inner {
    width: calc(335 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section .section-title {
    margin-bottom: calc(40 / 375 * (534 / 1600 * 100vw));
    padding: calc(17 / 375 * (534 / 1600 * 100vw)) calc(23 / 375 * (534 / 1600 * 100vw)) calc(18 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section .section-title h2 {
    height: calc(38 / 375 * (534 / 1600 * 100vw));
    margin-right: calc(11 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section .section-title .en {
    margin-top: calc(15 / 375 * (534 / 1600 * 100vw));
    font-size: calc(14 / 375 * (534 / 1600 * 100vw));
    line-height: calc(18 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.kv {
    margin-bottom: calc(28 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.kv .kv-image {
    height: 92.8rem;
    max-height: calc(100vh - 7.2rem);
  }
  main.contents.home section.kv .catch {
    top: calc(28 / 375 * (534 / 1600 * 100vw));
    right: calc(56 / 375 * (534 / 1600 * 100vw));
    width: calc(40 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.kv h1 {
    bottom: calc(100 / 375 * (534 / 1600 * 100vw));
    width: calc(335 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.news {
    width: calc(335 / 375 * (534 / 1600 * 100vw));
    margin-bottom: calc(28 / 375 * (534 / 1600 * 100vw));
    padding: calc(15 / 375 * (534 / 1600 * 100vw)) calc(21 / 375 * (534 / 1600 * 100vw)) calc(15 / 375 * (534 / 1600 * 100vw));
    line-height: calc(19 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.news .news-date {
    width: calc(65 / 375 * (534 / 1600 * 100vw));
    font-size: calc(11 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.news .news-title {
    width: calc(100% - (65 / 375 * (534 / 1600 * 100vw)));
    font-size: calc(13 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.overview {
    margin-bottom: calc(64 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.overview .overview-data dl {
    font-size: calc(13 / 375 * (534 / 1600 * 100vw));
    line-height: calc(19 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.overview .overview-data dl dt {
    width: calc(68 / 375 * (534 / 1600 * 100vw));
    padding: calc(17 / 375 * (534 / 1600 * 100vw)) 0 calc(17 / 375 * (534 / 1600 * 100vw)) calc(4 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.overview .overview-data dl dd {
    width: calc(100% - (68 / 375 * (534 / 1600 * 100vw)));
    padding: calc(17 / 375 * (534 / 1600 * 100vw)) calc(12 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.player {
    margin-bottom: calc(64 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.player .links {
    justify-content: space-between;
    margin-bottom: calc(20 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.player h3 {
    margin-bottom: calc(24 / 375 * (534 / 1600 * 100vw));
    font-size: calc(16 / 375 * (534 / 1600 * 100vw));
    line-height: calc(19 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.player .player-list ul {
    gap: calc(17 / 375 * (534 / 1600 * 100vw)) calc(10 / 375 * (534 / 1600 * 100vw));
    margin-bottom: calc(19 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.player .player-list ul li {
    width: calc(105 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.player .player-list ul li .name {
    margin-top: calc(7 / 375 * (534 / 1600 * 100vw));
    font-size: calc(13 / 375 * (534 / 1600 * 100vw));
    line-height: calc(19 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.course {
    margin-bottom: calc(65 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.course .course-logo {
    width: calc(168 / 375 * (534 / 1600 * 100vw));
    height: calc(50 / 375 * (534 / 1600 * 100vw));
    margin-bottom: calc(21 / 375 * (534 / 1600 * 100vw));
    padding: calc(9 / 375 * (534 / 1600 * 100vw)) 0 0 calc(21 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.course .course-logo img {
    width: calc(120 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.course h3 {
    margin-bottom: calc(18 / 375 * (534 / 1600 * 100vw));
    font-size: calc(16 / 375 * (534 / 1600 * 100vw));
    line-height: calc(19 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.course p {
    margin-bottom: calc(29 / 375 * (534 / 1600 * 100vw));
    font-size: calc(13 / 375 * (534 / 1600 * 100vw));
    line-height: calc(19 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.course .course-data {
    margin-bottom: calc(40 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.course .course-data dl {
    font-size: calc(13 / 375 * (534 / 1600 * 100vw));
    line-height: calc(19 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.course .course-data dl dt {
    width: calc(68 / 375 * (534 / 1600 * 100vw));
    padding: calc(17 / 375 * (534 / 1600 * 100vw)) 0 calc(17 / 375 * (534 / 1600 * 100vw)) calc(4 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.course .course-data dl dd {
    width: calc(100% - (68 / 375 * (534 / 1600 * 100vw)));
    padding: calc(17 / 375 * (534 / 1600 * 100vw)) calc(12 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.course .course-image {
    width: calc(375 / 375 * (534 / 1600 * 100vw));
    margin-left: calc(-20 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.course .course-image .swiper-container {
    padding: calc(23 / 375 * (534 / 1600 * 100vw)) 0 calc(48 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.course .course-image .swiper-slide {
    width: calc(180 / 375 * (534 / 1600 * 100vw));
    margin: 0 calc(22 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.course .course-image .swiper-pagination-bullet {
    width: calc(10 / 375 * (534 / 1600 * 100vw));
    height: calc(10 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.ticket {
    margin-bottom: calc(61 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.ticket .section-title h2 {
    height: calc(40 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.ticket .endlabel {
    margin-bottom: calc(11 / 375 * (534 / 1600 * 100vw));
    font-size: calc(12 / 375 * (534 / 1600 * 100vw));
    line-height: calc(19 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.ticket .ticket-detail dl dt {
    margin-bottom: calc(11 / 375 * (534 / 1600 * 100vw));
    font-size: calc(16 / 375 * (534 / 1600 * 100vw));
    line-height: calc(19 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.ticket .ticket-detail dl dd {
    font-size: calc(13 / 375 * (534 / 1600 * 100vw));
    line-height: calc(19 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.ticket .ticket-detail dl dd+dt {
    margin-top: calc(27 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.ticket .ticket-detail dl dd.price {
    font-size: calc(24 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.ticket .ticket-detail dl dd.price span {
    margin-left: calc(4 / 375 * (534 / 1600 * 100vw));
    font-size: calc(16 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.ticket .ticket-detail dl dd.online-sales {
    margin-top: calc(15 / 375 * (534 / 1600 * 100vw));
    margin-bottom: calc(30 / 375 * (534 / 1600 * 100vw));
    padding: calc(17 / 375 * (534 / 1600 * 100vw)) calc(20 / 375 * (534 / 1600 * 100vw)) calc(22 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.ticket .ticket-detail dl dd.online-sales ul {
    gap: calc(15 / 375 * (534 / 1600 * 100vw)) 0;
  }
  main.contents.home section.ticket .ticket-detail dl dd.online-sales ul li .sub-title {
    margin-bottom: calc(4 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.ticket .ticket-detail dl dd.online-sales ul li a::after {
    top: calc(5 / 375 * (534 / 1600 * 100vw));
    right: calc(-14 / 375 * (534 / 1600 * 100vw));
    width: calc(12 / 375 * (534 / 1600 * 100vw));
    height: calc(12 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.ticket .ticket-detail dl dd.note ul li {
    padding-left: calc(12 / 375 * (534 / 1600 * 100vw));
    text-indent: calc(-12 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.access {
    margin-bottom: calc(62 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.access .section-title {
    margin-bottom: calc(35 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.access h3 {
    margin-bottom: calc(9 / 375 * (534 / 1600 * 100vw));
    font-size: calc(16 / 375 * (534 / 1600 * 100vw));
    line-height: calc(24 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.access h3+p {
    margin-bottom: calc(14 / 375 * (534 / 1600 * 100vw));
    font-size: calc(11 / 375 * (534 / 1600 * 100vw));
    line-height: calc(17 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.access .map {
    height: calc(387 / 375 * (534 / 1600 * 100vw));
    margin-bottom: calc(14 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.access .map-image {
    margin-bottom: calc(32 / 375 * (534 / 1600 * 100vw));
    cursor: pointer;
  }
  main.contents.home section.access .access-list dl dt {
    margin-bottom: calc(8 / 375 * (534 / 1600 * 100vw));
    font-size: calc(16 / 375 * (534 / 1600 * 100vw));
    line-height: calc(19 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.access .access-list dl dt:not(:first-child) {
    margin-top: calc(28 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.access .access-list dl dt::before {
    width: calc(26 / 375 * (534 / 1600 * 100vw));
    height: calc(26 / 375 * (534 / 1600 * 100vw));
    margin-right: calc(4 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.access .access-list dl dd p {
    font-size: calc(13 / 375 * (534 / 1600 * 100vw));
    line-height: calc(19 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.access .access-list dl dd p+span {
    margin-top: calc(4 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.access .access-list dl dd span+p {
    margin-top: calc(10 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.access .access-list .btn {
    margin-top: calc(14 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.gallery {
    padding-bottom: calc(65 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.gallery .gallery-lsit ul {
    gap: calc(20 / 375 * (534 / 1600 * 100vw)) calc(19 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.gallery .gallery-lsit ul li {
    width: calc(158 / 375 * (534 / 1600 * 100vw));
    cursor: pointer;
  }
  main.contents.home section.company {
    padding: calc(64 / 375 * (534 / 1600 * 100vw)) 0;
  }
  main.contents.home section.company ul {
    gap: calc(10 / 375 * (534 / 1600 * 100vw));
  }
  main.contents.home section.company ul li {
    width: calc(105 / 375 * (534 / 1600 * 100vw));
  }
}
@media (min-width: 1025px) and (max-width: 1124px) {
  .btn[target="_blank"] {
    padding-left: 12px;
  }
  .btn[target="_blank"]::after {
    margin-top: 2px;
    margin-right: 2px;
    width: 12px;
    height: 12px;
  }
  aside.g-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 7.2rem;
    left: calc((100vw - 1068px) / 2);
    z-index: 2;
    width: 462px;
    max-height: calc(100vh - 14.4rem);
    background: rgba(255,255,255,0.33);
    box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.1);
    -webkit-backdrop-filter: blur(7.5px);
            backdrop-filter: blur(7.5px);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
  }
  aside.g-menu.active {
    opacity: 1;
    pointer-events: auto;
  }
  aside.g-menu .frame {
    overflow: auto;
    padding-bottom: 4px;
  }
  aside.g-menu .menu-title {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 144px;
    padding: 31px 0 0;
    background: #d11322;
  }
  aside.g-menu .menu-title img {
    width: 424px;
  }
  aside.g-menu .menu-list ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  aside.g-menu .menu-list ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 67px;
    padding-bottom: 2px;
    position: relative;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #d11322;
  }
  aside.g-menu .menu-list ul li:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.33);
  }
  aside.g-menu .menu-list ul li.comingsoon {
    color: #fff;
  }
  aside.g-menu .menu-list ul li.comingsoon::after {
    content: '';
    margin-top: 4px;
    width: 50px;
    height: 10px;
    background-image: url("../img/common/comingsoon-pc.svg");
    background-size: cover;
    background-position: center;
  }
  main.contents.home .sp-frame {
    width: 534px;
    margin-right: calc((100vw - 1068px) / 2);
  }
  main.contents.home section .section-inner {
    width: 335px;
  }
  main.contents.home section .section-title {
    margin-bottom: 40px;
    padding: 17px 23px 18px;
  }
  main.contents.home section .section-title h2 {
    height: 38px;
    margin-right: 11px;
  }
  main.contents.home section .section-title .en {
    margin-top: 15px;
    font-size: 14px;
    line-height: 18px;
  }
  main.contents.home section.kv {
    margin-bottom: 28px;
  }
  main.contents.home section.kv .catch {
    top: 28px;
    right: 56px;
    width: 40px;
  }
  main.contents.home section.kv h1 {
    bottom: 100px;
    width: 335px;
  }
  main.contents.home section.news {
    width: 335px;
    margin-bottom: 28px;
    padding: 15px 21px;
    line-height: 19px;
  }
  main.contents.home section.news .news-date {
    width: 65px;
    font-size: 11px;
  }
  main.contents.home section.news .news-title {
    width: calc(100% - 65px);
    font-size: 13px;
  }
  main.contents.home section.overview {
    margin-bottom: 64px;
  }
  main.contents.home section.overview .overview-data dl {
    font-size: 13px;
    line-height: 19px;
  }
  main.contents.home section.overview .overview-data dl dt {
    width: 68px;
    padding: 17px 0 17px 4px;
  }
  main.contents.home section.overview .overview-data dl dd {
    width: calc(100% - 68px);
    padding: 17px 12px;
  }
  main.contents.home section.player {
    margin-bottom: 64px;
  }
  main.contents.home section.player .links {
    margin-bottom: 20px;
  }
  main.contents.home section.player h3 {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 19px;
  }
  main.contents.home section.player .player-list ul {
    gap: 17px 10px;
    margin-bottom: 19px;
  }
  main.contents.home section.player .player-list ul li {
    width: 105px;
  }
  main.contents.home section.player .player-list ul li .name {
    margin-top: 7px;
    font-size: 13px;
    line-height: 19px;
  }
  main.contents.home section.course {
    margin-bottom: 65px;
  }
  main.contents.home section.course .course-logo {
    width: 168px;
    height: 50px;
    margin-bottom: 21px;
    padding: 9px 0 0 21px;
  }
  main.contents.home section.course .course-logo img {
    width: 120px;
  }
  main.contents.home section.course h3 {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 19px;
  }
  main.contents.home section.course p {
    margin-bottom: 29px;
    font-size: 13px;
    line-height: 19px;
  }
  main.contents.home section.course .course-data {
    margin-bottom: 40px;
  }
  main.contents.home section.course .course-data dl {
    font-size: 13px;
    line-height: 19px;
  }
  main.contents.home section.course .course-data dl dt {
    width: 68px;
    padding: 17 0 17px 4px;
  }
  main.contents.home section.course .course-data dl dd {
    width: calc(100% - 68px);
    padding: 17px 12px;
  }
  main.contents.home section.course .course-image {
    width: 100%;
  }
  main.contents.home section.course .course-image .swiper-container {
    padding: 23px 0 48px;
  }
  main.contents.home section.course .course-image .swiper-slide {
    width: 180px;
    margin: 0 22px;
  }
  main.contents.home section.course .course-image .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  main.contents.home section.ticket {
    margin-bottom: 61px;
  }
  main.contents.home section.ticket .section-title h2 {
    height: 40px;
  }
  main.contents.home section.ticket .endlabel {
    margin-bottom: 11px;
    font-size: 12px;
    line-height: 19px;
  }
  main.contents.home section.ticket .ticket-detail dl dt {
    margin-bottom: 11px;
    font-size: 16px;
    line-height: 19px;
  }
  main.contents.home section.ticket .ticket-detail dl dd {
    font-size: 13px;
    line-height: 19px;
  }
  main.contents.home section.ticket .ticket-detail dl dd+dt {
    margin-top: 27px;
  }
  main.contents.home section.ticket .ticket-detail dl dd.price {
    font-size: 24px;
  }
  main.contents.home section.ticket .ticket-detail dl dd.price span {
    margin-left: 4px;
    font-size: 16px;
  }
  main.contents.home section.ticket .ticket-detail dl dd.online-sales {
    margin-top: 15px;
    margin-bottom: 30px;
    padding: 17px 20px 22px;
  }
  main.contents.home section.ticket .ticket-detail dl dd.online-sales ul {
    gap: 15px 0;
  }
  main.contents.home section.ticket .ticket-detail dl dd.online-sales ul li .sub-title {
    margin-bottom: 4px;
  }
  main.contents.home section.ticket .ticket-detail dl dd.online-sales ul li a::after {
    top: 5px;
    right: -14px;
    width: 12px;
    height: 12px;
  }
  main.contents.home section.ticket .ticket-detail dl dd.note ul li {
    padding-left: 12px;
    text-indent: -12px;
  }
  main.contents.home section.access {
    margin-bottom: 62px;
  }
  main.contents.home section.access .section-title {
    margin-bottom: 35px;
  }
  main.contents.home section.access h3 {
    margin-bottom: 9px;
    font-size: 16px;
    line-height: 24px;
  }
  main.contents.home section.access h3+p {
    margin-bottom: 14px;
    font-size: 11px;
    line-height: 17px;
  }
  main.contents.home section.access .map {
    height: 387px;
    margin-bottom: 14px;
  }
  main.contents.home section.access .map-image {
    margin-bottom: 32px;
  }
  main.contents.home section.access .access-list dl dt {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 19px;
  }
  main.contents.home section.access .access-list dl dt:not(:first-child) {
    margin-top: 28px;
  }
  main.contents.home section.access .access-list dl dt::before {
    width: 26px;
    height: 26px;
    margin-right: 4px;
  }
  main.contents.home section.access .access-list dl dd p {
    font-size: 13px;
    line-height: 19px;
  }
  main.contents.home section.access .access-list dl dd p+span {
    margin-top: 4px;
  }
  main.contents.home section.access .access-list dl dd span+p {
    margin-top: 10px;
  }
  main.contents.home section.access .access-list .btn {
    margin-top: 14px;
  }
  main.contents.home section.gallery {
    padding-bottom: 65px;
  }
  main.contents.home section.gallery .gallery-lsit ul {
    gap: 20px 19px;
  }
  main.contents.home section.gallery .gallery-lsit ul li {
    width: 158px;
  }
  main.contents.home section.company {
    padding: 64px 0;
  }
  main.contents.home section.company ul {
    gap: 10px;
  }
  main.contents.home section.company ul li {
    width: 105px;
  }
}
