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

ul,
ol {
  list-style: none;
}

body {
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: currentColor;
}

img,
picture {
  width: 100%;
  height: auto;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
.material-symbols-outlined.fill {
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 24;
}

.serif {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-weight: 400;
}

.serif_d {
  font-family: "Noto Serif Display", serif;
  font-weight: 200;
}

.sanserif_r {
  font-family: "Urbanist", "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}

.sanserif_m {
  font-family: "Urbanist", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

.bg-movie {
  opacity: 0;
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.9, 0, 1, 1);
}
.bg-movie.is-show {
  opacity: 1;
}
.bg-movie > div {
  width: 100%;
  height: 120vw;
  max-height: 100%;
}
.bg-movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.9);
}
.header.nofix {
  position: relative;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 4%;
}
.header__logo {
  position: relative;
  z-index: 20;
  width: 121px;
  height: 52px;
  padding-top: 4px;
}
.header__nav {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  transition: opacity 0.5s;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.header__nav::-webkit-scrollbar {
  display: none;
}
.header__nav.menuOpen {
  opacity: 1;
  pointer-events: auto;
}
.header__nav-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: calc(100% + 1px);
  padding: 80px calc(4% + 15px);
}
.header__nav-item {
  margin: 1em 0;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.header__nav-item img {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  margin-right: 0.3em;
  filter: grayscale(100%) contrast(300%);
}
.header__nav-item span {
  display: inline-block;
  vertical-align: middle;
}
.header__nav-reserve {
  position: relative;
  z-index: 20;
  display: block;
  margin: 0 10px 0 auto;
  padding: 0.7em 1em 0.5em;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.1em;
  background-color: #666;
  transition: background-color 0.3s;
}
.header__nav-reserve:active {
  background-color: #0082bf;
}
.header__nav-menuBtn {
  position: relative;
  z-index: 20;
  width: 54px;
  height: 54px;
}
.header__nav-menuBtn span {
  position: absolute;
  left: 15px;
  width: 24px;
  height: 1px;
  background-color: #000;
  transition: top 0.3s, transform 0.5s;
}
.header__nav-menuBtn span:nth-of-type(1) {
  top: 14px;
}
.header__nav-menuBtn span:nth-of-type(2) {
  top: 23px;
}
.header__nav-menuBtn p {
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 100%;
  text-align: center;
  font-size: 8px;
  line-height: 1;
  color: #333;
  letter-spacing: 0.15em;
}
.header__nav-menuBtn p::after {
  content: "MENU";
}
.header__nav-menuBtn.menuOpen span:nth-of-type(1) {
  top: 19px;
  transform: rotate(225deg);
}
.header__nav-menuBtn.menuOpen span:nth-of-type(2) {
  top: 19px;
  transform: rotate(-225deg);
}
.header__nav-menuBtn.menuOpen p::after {
  content: "CLOSE";
}

main {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.9, 0, 1, 1);
  position: relative;
  z-index: 2;
}
main.is-show {
  opacity: 1;
}

.bg-white {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.bg-white:nth-of-type(1) {
  padding-bottom: 10px;
  margin-bottom: 100vh;
}
.bg-white:nth-of-type(2) {
  padding-top: 10px;
}

.section__h2 {
  position: relative;
  margin-bottom: 1.5em;
  padding-top: 1.2em;
  font-size: min(8vw, 36px);
  line-height: 1.3;
  color: #000;
  letter-spacing: 0.1em;
}
.section__h2.narrow {
  letter-spacing: 0.05em;
}
.section__h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 25vw;
  max-width: 120px;
  height: 1px;
  background-color: #ccc;
}
.section__top {
  margin: 0 auto;
  padding: 80px 2vw 0;
}
.section__top .swiper {
  position: relative;
  width: 100%;
  height: 96vw;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s linear;
}
.section__top .swiper.is-init {
  opacity: 1;
}
.section__top .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.section__top .swiper-slide picture {
  width: 100%;
  height: 100%;
}
.section__top .swiper-slide img {
  height: 100%;
  object-fit: cover;
}
.section__top .swiper-slide p {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: min(4.2vw, 18px);
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.05em;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}
.section__top .swiper-slide-active img,
.section__top .swiper-slide-duplicate-active img,
.section__top .swiper-slide-prev img {
  animation: zoom 9s linear 0s 1 normal both;
}
.section__top .swiper-nav {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  font-size: 36px;
  line-height: 1;
  color: #fff;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
}
.section__top .swiper-prev {
  right: 50px;
}
.section__top .swiper-next {
  right: 10px;
}
.section__top-lead {
  width: 85%;
  margin: 10% auto;
}
.section__top-lead p {
  text-align: center;
  font-size: min(4vw, 18px);
  line-height: 2.5;
  letter-spacing: 0.05em;
}
.section__banner {
  width: 80%;
  margin: 20% auto;
  border: solid 1px #d6dadc;
  padding: 15px;
  text-align: right;
}
.section__banner h3 {
  font-size: min(4vw, 18px);
  text-align: center;
  margin: 0 0 10px;
}
.section__banner picture {
  margin-bottom: 15px;
}
.section__banner picture img {
  transition: transform 0.5s, opacity 0.5s;
}
.section__banner .box {
  margin-bottom: 10px;
}
.section__banner .box strong {
  display: none;
}
.section__banner .box span {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section__banner .box span img {
  width: 15%;
  margin-right: 5px;
  border-radius: 50%;
}
.section__banner .box span p {
  width: calc(85% - 10px);
  font-size: 12px;
  text-align: left;
}
.section__banner .box span p small {
  display: block;
  font-size: 80%;
  color: #606060;
}
.section__banner a:active picture img {
  opacity: 0.7;
}
.section__banner a:active .moreBtn {
  color: #0082bf;
  border-color: #0082bf;
}
.section__points {
  margin: 20% auto 0;
}
.section__points-inner {
  width: 85%;
  margin: 0 auto;
}
.section__points-item {
  margin-top: 15%;
}
.section__points-item h3 {
  color: #000;
}
.section__points-item h3 span:nth-of-type(1) {
  position: relative;
  display: inline-block;
  min-width: 1.1em;
  vertical-align: top;
  font-size: min(17vw, 64px);
  line-height: 1;
}
.section__points-item h3 span:nth-of-type(1)::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 10%;
  width: 1px;
  height: 200%;
  background-color: #aaa;
  transform: rotate(20deg);
  transform-origin: right top;
}
.section__points-item h3 span:nth-of-type(2) {
  display: inline-block;
  vertical-align: top;
  padding-top: 0.3em;
  font-size: min(5.4vw, 22px);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.section__points-item a {
  display: block;
  width: 82%;
  margin: 5% 0 0 auto;
  text-align: right;
}
.section__points-item a picture {
  width: 100%;
  height: 52.3vw;
  overflow: hidden;
}
.section__points-item a picture img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s, opacity 0.5s;
}
.section__points-item a p {
  margin-top: 20px;
  text-align: left;
  font-size: 13px;
  line-height: 1.8;
  color: #000;
}
.section__points-item a .moreBtn {
  margin-top: 0.5em;
}
.section__points-item a:active picture img {
  opacity: 0.7;
  transform: scale(1.1);
}
.section__points-item a:active .moreBtn {
  color: #0082bf;
  border-color: #0082bf;
}
.section__links {
  margin-top: 80px;
}
.section__links .section__h2 {
  width: 100%;
  margin: 0 auto 1.5em;
}
.section__links h3 {
  font-size: min(6vw, 27px);
  margin-bottom: 10%;
}
.section__links > div {
  width: 85%;
  margin: 0 auto 10%;
}
.section__links > div a {
  width: 80%;
  display: block;
  text-align: right;
  margin: 0 auto;
}
.section__links > div a picture {
  width: 100%;
  height: 46vw;
  overflow: hidden;
}
.section__links > div a picture img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s, opacity 0.5s;
}
.section__links > div a p {
  margin-top: 20px;
  text-align: left;
  font-size: 13px;
  line-height: 1.8;
  color: #000;
}
.section__links > div a .moreBtn {
  margin-top: 0.5em;
}
.section__links > div a:active picture img {
  opacity: 0.7;
  transform: scale(1.1);
}
.section__links > div a:active .moreBtn {
  color: #0082bf;
  border-color: #0082bf;
}
.section__map {
  margin-top: 40px;
}
.section__map .section__h2 {
  width: 85%;
  margin: 0 auto 1.5em;
}
.section__map-tablist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.section__map-tablist p {
  width: 100%;
  margin-top: 20px;
  text-align: center;
  font-size: 10px;
  line-height: 1.3;
  color: #000;
}
.section__map-tabitem {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 30px;
  margin: 0 7px;
  font-size: 16px;
  line-height: 1;
  color: #666;
  letter-spacing: 0.2em;
  border: solid 1px #aaa;
  transition: 0.3s;
}
.section__map-tabitem:active {
  color: #0082bf;
  border-color: #0082bf;
}
.section__map-tabitem.active {
  color: #fff !important;
  background-color: #0082bf;
  border-color: #0082bf;
}
.section__map-inner {
  width: 100%;
  overflow: hidden;
}
.section__map-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 300%;
}
.section__map-item {
  width: 33.33%;
  padding-top: 20px;
  opacity: 0;
  transition: opacity 0.8s linear;
}
.section__map-item.active {
  opacity: 1;
}
.section__map-map {
  position: relative;
  width: 95%;
  margin: 0 auto;
}
.section__map-map span {
  position: absolute;
  font-size: min(6vw, 28px);
  line-height: 1;
  color: #333;
  transform-origin: center 90%;
  transition: transform 0.3s;
}
.section__map-map span:active {
  transform: scale(1.5);
}
.section__map-map span.active {
  color: #0082bf;
  transform: scale(1.5);
}
.section__map-map.map-1 span:nth-of-type(1) {
  left: 42%;
  top: 65%;
}
.section__map-map.map-1 span:nth-of-type(2) {
  left: 27%;
  top: 85%;
}
.section__map-map.map-1 span:nth-of-type(3) {
  left: 10%;
  top: 28%;
}
.section__map-map.map-1 span:nth-of-type(4) {
  left: 17%;
  top: 3%;
}
.section__map-map.map-1 span:nth-of-type(5) {
  left: 33%;
  top: 28%;
}
.section__map-map.map-1 span:nth-of-type(6) {
  left: 53%;
  top: 24%;
}
.section__map-map.map-1 span:nth-of-type(7) {
  left: 68%;
  top: 6%;
}
.section__map-map.map-1 span:nth-of-type(8) {
  left: 85%;
  top: 6%;
}
.section__map-map.map-1 span:nth-of-type(9) {
  left: 88%;
  top: 35%;
}
.section__map-map.map-1 span:nth-of-type(10) {
  left: 87%;
  top: 60%;
}
.section__map-map.map-2 span:nth-of-type(1) {
  left: 55%;
  top: 30%;
}
.section__map-map.map-2 span:nth-of-type(2) {
  left: 18%;
  top: 45%;
}
.section__map-map.map-2 span:nth-of-type(3) {
  left: 18%;
  top: 15%;
}
.section__map-map.map-2 span:nth-of-type(4) {
  left: 65%;
  top: 3%;
}
.section__map-map.map-2 span:nth-of-type(5) {
  left: 87%;
  top: 10%;
}
.section__map-map.map-2 span:nth-of-type(6) {
  left: 75%;
  top: 45%;
}
.section__map-map.map-3 span:nth-of-type(1) {
  left: 60%;
  top: 60%;
}
.section__map-map.map-3 span:nth-of-type(2) {
  left: 12%;
  top: 70%;
}
.section__map-map.map-3 span:nth-of-type(3) {
  left: 50%;
  top: 35%;
}
.section__map-map.map-3 span:nth-of-type(4) {
  left: 53%;
  top: 17%;
}
.section__map-map.map-3 span:nth-of-type(5) {
  left: 47%;
  top: 12%;
}
.section__map-map.map-3 span:nth-of-type(6) {
  left: 85%;
  top: 30%;
}
.section__map-map.map-3 span:nth-of-type(7) {
  left: 85%;
  top: 50%;
}
.section__map-map.map-3 span:nth-of-type(8) {
  left: 90%;
  top: 76%;
}
.section__map-thum {
  display: none;
}
.section__map-swiper {
  position: relative;
  width: 100%;
  margin-top: 30px;
}
.section__map-swiper .swiper-slide {
  width: 64vw;
  filter: grayscale(100%) opacity(0.3);
  transition: filter 0.5s;
}
.section__map-swiper .swiper-slide p {
  margin-top: 15px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.5s;
}
.section__map-swiper .swiper-slide.swiper-slide-active {
  filter: none;
}
.section__map-swiper .swiper-slide.swiper-slide-active p {
  opacity: 1;
}
.section__map-swiper .swiper-nav {
  position: absolute;
  z-index: 2;
  font-size: min(10vw, 40px);
  line-height: 1;
  color: #666;
  top: 24vw;
  transform: translateY(-50%);
}
.section__map-swiper .swiper-prev {
  right: calc(82vw + 25px);
}
.section__map-swiper .swiper-next {
  left: calc(82vw + 25px);
}
.section__price {
  margin-top: 80px;
}
.section__price .section__h2 {
  width: 85%;
  margin: 0 auto 1.5em;
}
.section__price-inner {
  width: 85%;
  margin: 0 auto;
}
.section__price-text1 {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #000;
}
.section__price-link {
  margin-bottom: 40px;
  text-align: right;
}
.section__price-text2 {
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 1em;
  font-size: 12px;
  line-height: 1.6;
}
.section__access {
  margin-top: 80px;
}
.section__access .section__h2 {
  width: 85%;
  margin: 0 auto 1.5em;
}
.section__access-inner {
  width: 85%;
  margin: 0 auto;
}
.section__access-map {
  width: 100%;
  text-align: center;
}
.section__access-map img {
  margin-bottom: 15px;
  border: solid 1px #d6dadc;
}
.section__access-text {
  margin-top: 30px;
  letter-spacing: 0.05em;
}
.section__access-address {
  margin-bottom: 1em;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}
.section__access-transport {
  margin-top: 25px;
}
.section__access-transport li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
}
.section__access-transport li span {
  flex-shrink: 0;
  display: block;
  font-size: 45px;
  line-height: 1;
  color: #888;
}
.section__access-transport li div h3 {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.5;
}
.section__access-transport li div p {
  margin-top: 5px;
  padding-left: 0.5em;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.section__access-link {
  margin-top: 25px;
  text-align: right;
}
.section__instagram {
  margin-top: 80px;
}
.section__instagram .section__h2 {
  width: 85%;
  margin: 0 auto 1.5em;
}
.section__instagram .section__h2 img {
  display: inline-block;
  vertical-align: middle;
  width: min(8vw, 36px);
  filter: grayscale(100%) contrast(300%);
}
.section__instagram .section__h2 span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.4em;
}
.section__instagram-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 88%;
  margin: 0 auto;
}
.section__instagram-list li {
  width: 30%;
  height: 26.4vw;
  margin-bottom: 4.4vw;
}
.section__instagram-list li a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section__instagram-list li a img {
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.section__instagram-list li a:active img {
  transform: scale(1.1);
  opacity: 0.7;
}
.section__instagram-link {
  margin-top: 30px;
  text-align: center;
}
.section__malibu {
  margin-top: 60px;
  padding: 40px 0;
  background-color: #f4f4f4;
}
.section__malibu-inner {
  width: 80%;
  margin: 0 auto;
}
.section__malibu-h2 {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #000;
}
.section__malibu-h2 img {
  width: 140px;
  margin: 20px auto 30px;
}
.section__malibu-img {
  margin-bottom: 20px;
}
.section__malibu-text1 {
  margin-bottom: 10px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}
.section__malibu-text2 {
  font-size: 13px;
  line-height: 1.8;
}
.section__malibu-link {
  margin-top: 10px;
  text-align: right;
}
.section__reserve {
  margin-top: 30px;
}
.section__reserve .section__h2 {
  width: 85%;
  margin: 0 auto 1em;
}
.section__reserve-inner {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 1000px;
  margin: 0 auto;
}
.section__reserve .loader {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
}
.section__reserve .loader.hide {
  display: none;
}
.section__reserve iframe {
  position: relative;
  z-index: 2;
  overscroll-behavior: contain;
}

.subpage {
  padding-top: 80px;
  padding-bottom: 15%;
}
.subpage__h1 {
  width: 85%;
  margin: 0 auto 1.5em;
  padding-top: 1.2em;
  font-size: min(8vw, 36px);
  line-height: 1.3;
  color: #000;
  letter-spacing: 0.1em;
}
.subpage__top-link {
  text-align: center;
}
.subpage__points {
  margin-bottom: 25%;
}
.subpage__points h2 {
  margin: 0 auto 13%;
  color: #000;
}
.subpage__points h2 span:nth-of-type(1) {
  position: relative;
  display: inline-block;
  min-width: 1.1em;
  vertical-align: top;
  margin-left: 7.5%;
  font-size: min(17vw, 64px);
  line-height: 1;
}
.subpage__points h2 span:nth-of-type(1)::after {
  content: "";
  position: absolute;
  right: 15%;
  top: 20%;
  width: 1px;
  height: 200%;
  background-color: #aaa;
  transform: rotate(20deg);
  transform-origin: right top;
}
.subpage__points h2 span:nth-of-type(2) {
  display: block;
  width: 80%;
  margin-top: 0.2em;
  margin-left: 20%;
  font-size: min(6.4vw, 30px);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.subpage__points-item {
  margin: 13% auto 0;
}
.subpage__points-item picture img {
  height: 100%;
  object-fit: cover;
}
.subpage__points-item h3 {
  margin-bottom: 0.7em;
  font-size: 15px;
  line-height: 1.5;
}
.subpage__points-item h3.small {
  font-size: 13px;
}
.subpage__points-item p {
  font-size: 13px;
  line-height: 1.8;
}
.subpage__points-item p.small {
  font-size: 12px;
}
.subpage__points-item p a {
  text-decoration: underline;
}
.subpage__points-item.sp1 picture {
  width: 80%;
  height: 60vw;
  margin-left: 20%;
}
.subpage__points-item.sp1 .text {
  width: 64%;
  margin-top: 20px;
  margin-left: 20%;
}
.subpage__points-item.sp2 picture {
  width: 80%;
  height: 60vw;
}
.subpage__points-item.sp2 .text {
  width: 64%;
  margin-top: 20px;
  margin-left: 16%;
}
.subpage__points-item.sp3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
}
.subpage__points-item.sp3 picture {
  width: 45%;
  height: 40vw;
}
.subpage__points-item.sp3 .text {
  width: 50%;
}
.subpage__points-item.sp4 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
}
.subpage__points-item.sp4 picture {
  width: 45%;
  height: 40vw;
}
.subpage__points-item.sp4 .text {
  width: 50%;
}
.subpage__points-item.sp5 picture {
  width: 64%;
  height: 48vw;
  margin-left: 27%;
}
.subpage__points-item.sp5 .text {
  width: 64%;
  margin-top: 20px;
  margin-left: 27%;
}
.subpage__points-item.sp6 picture {
  width: 64%;
  height: 48vw;
  margin-left: 9%;
}
.subpage__points-item.sp6 .text {
  width: 64%;
  margin-top: 20px;
  margin-left: 9%;
}
.subpage__points-item.sp7 picture:nth-of-type(1) {
  width: 60%;
  height: 45vw;
  margin-left: 35%;
}
.subpage__points-item.sp7 picture:nth-of-type(2) {
  position: relative;
  z-index: 2;
  width: 50%;
  height: 37.5vw;
  margin-top: -24%;
  margin-left: 5%;
}
.subpage__points-item.sp7 .text {
  width: 64%;
  margin-top: 20px;
  margin-left: 16%;
}
.subpage__points-item.sp8 picture:nth-of-type(1) {
  position: relative;
  z-index: 2;
  width: 80%;
  height: 60vw;
}
.subpage__points-item.sp8 picture:nth-of-type(2) {
  width: 75%;
  height: 48vw;
  margin-top: -8%;
  margin-left: 16%;
}
.subpage__points-item.sp8 .text {
  width: 64%;
  margin-top: 20px;
  margin-left: 16%;
}
.subpage__points-item.sp9 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 90%;
}
.subpage__points-item.sp9 picture {
  width: 45%;
  height: 48vw;
}
.subpage__points-item.sp9 .text {
  width: 50%;
}
.subpage__points-item.sp10 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.subpage__points-item.sp10 picture {
  width: 37%;
  height: 28vw;
  margin-left: 5%;
}
.subpage__points-item.sp10 picture:nth-of-type(3) {
  margin-top: 5%;
  margin-left: 16%;
}
.subpage__points-item.sp10 picture:nth-of-type(4) {
  margin-top: 5%;
}
.subpage__points-item.sp10 .text {
  width: 64%;
  margin-top: 20px;
  margin-left: 16%;
}
.subpage__points-item.sp11 picture {
  width: 64%;
  height: 42vw;
  margin-left: 27%;
}
.subpage__points-item.sp11 .text {
  width: 64%;
  margin-top: 20px;
  margin-left: 27%;
}
.subpage__points-item.sp12 picture {
  width: 64%;
  height: 42vw;
  margin-left: 9%;
}
.subpage__points-item.sp12 .text {
  width: 64%;
  margin-top: 20px;
  margin-left: 9%;
}
.subpage__points#families h2, .subpage__points#training h2 {
  width: 85%;
  font-size: min(6.4vw, 30px);
  margin: 0 auto;
}
.subpage__points#families .subpage__points-link, .subpage__points#training .subpage__points-link {
  text-align: center;
  font-size: 14px;
  line-height: 2;
  margin: 15% auto;
}
.subpage #families picture img {
  height: 100%;
  object-fit: cover;
}
.subpage #families h3 {
  margin-bottom: 0.7em;
  font-size: 15px;
  line-height: 1.5;
}
.subpage #families h3.small {
  font-size: 13px;
}
.subpage #families p {
  font-size: 13px;
  line-height: 1.8;
}
.subpage #families p.small {
  font-size: 12px;
}
.subpage #families p a {
  text-decoration: underline;
}
.subpage #families .sec-1 {
  margin-top: 13%;
}
.subpage #families .sec-1 picture.pic1 {
  width: 80%;
  margin-left: 20%;
}
.subpage #families .sec-1 picture.pic2 {
  width: 50%;
  margin-left: 5%;
  margin-top: -15%;
}
.subpage #families .sec-1 picture.pic3 {
  width: 50%;
  margin-left: 45%;
  margin-top: -13%;
}
.subpage #families .text {
  width: 64%;
  margin-top: 20px;
  margin-left: 16%;
}
.subpage #families .sec-2 {
  margin-top: 13%;
  margin-bottom: 13%;
}
.subpage #families .sec-2 .wrap > picture {
  width: 80%;
  margin-left: 0;
  margin-bottom: 3%;
}
.subpage #families .sec-2 .wrap p {
  width: 64%;
  margin-left: 16%;
}
.subpage #families .flex {
  width: 90%;
  display: flex;
  justify-content: space-between;
  margin: 6% auto;
}
.subpage #families .flex picture {
  width: 48%;
}
.subpage #families .sec-3 .inner2 {
  margin: 13% auto;
}
.subpage #families .sec-3 .inner2 picture {
  width: 80%;
  margin-left: 20%;
}
.subpage #families .sec-3 .inner2 .text {
  margin-left: 20%;
}
.subpage__access {
  width: 90%;
  margin: auto;
  margin-bottom: 25%;
}
.subpage__access.access_areaMap .figure {
  border: solid 1px #d6dadc;
  margin-bottom: 1em;
}
.subpage__access.access_traffic {
  margin-bottom: 14%;
}
.subpage__access.access_traffic_2 {
  margin-bottom: 25%;
}
.subpage__access.access_traffic_3 {
  display: none;
}
.subpage__access.access_traffic p {
  font-size: 18px;
}
.subpage__access.access_traffic p + p {
  padding-left: 1em;
  font-size: 17px;
}
.subpage__access.access_traffic .figure {
  margin-top: 1.5em;
}
.subpage__inquiry {
  width: 90%;
  max-width: 640px;
  margin: 0 auto 80px;
  overflow: hidden;
}
.subpage__inquiry-form {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 200%;
}
.subpage__inquiry-form.is-confirm {
  margin-left: -100%;
}
.subpage__inquiry-form > div {
  width: 50%;
  padding: 0 10px;
}
.subpage__inquiry dl > div {
  margin-bottom: 15px;
}
.subpage__inquiry dl dt {
  margin-bottom: 0.5em;
  font-size: 15px;
  line-height: 1;
}
.subpage__inquiry dl dd {
  position: relative;
  padding-bottom: 20px;
}
.subpage__inquiry dl dd input {
  width: 100%;
  padding: 0.5em;
  border: solid 1px #ccc;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.5;
}
.subpage__inquiry dl dd input.error {
  border-color: #0082bf;
  background-color: #f4fbff;
}
.subpage__inquiry dl dd .select-wrap {
  position: absolute;
  width: 100%;
  right: 0;
  top: 0;
  text-align: right;
  pointer-events: none;
}
.subpage__inquiry dl dd .select-wrap::after {
  content: "\e5c5";
  font-size: 42px;
  line-height: 1;
  color: #888;
}
.subpage__inquiry dl dd select {
  -webkit-appearance: none;
          appearance: none;
  width: 100%;
  padding: 0.5em;
  border: solid 1px #ccc;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.5;
  color: #aaa;
  background-color: #fff;
}
.subpage__inquiry dl dd select option {
  color: #000;
}
.subpage__inquiry dl dd select option:disabled {
  color: #ccc;
}
.subpage__inquiry dl dd select.error {
  border-color: #0082bf;
  background-color: #f4fbff;
}
.subpage__inquiry dl dd select.selected {
  color: #000;
}
.subpage__inquiry dl dd .textarea-wrap {
  position: relative;
  width: 100%;
  min-height: 10em;
  padding: calc(0.5em + 1px);
  padding-bottom: 1em;
  border: solid 1px #fff;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.5;
  color: transparent;
  white-space: pre-wrap;
}
.subpage__inquiry dl dd textarea {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-appearance: none;
          appearance: none;
  width: 100%;
  height: 100%;
  padding: 0.5em;
  border: solid 1px #ccc;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
  overflow: auto;
  resize: none;
}
.subpage__inquiry dl dd textarea.error {
  border-color: #0082bf;
  background-color: #f4fbff;
}
.subpage__inquiry dl dd p {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 13px;
  line-height: 1.3;
  color: #0082bf;
}
.subpage__inquiry dl dd .error + p {
  display: block;
}
.subpage__inquiry button {
  display: block;
  -webkit-appearance: none;
          appearance: none;
  width: 8em;
  padding: 0.5em;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  border: none;
  background-color: #666;
  transition: background-color 0.3s;
}
.subpage__inquiry button:active {
  background-color: #0082bf;
}
.subpage__inquiry button:disabled {
  pointer-events: none;
  opacity: 0.3;
}
.subpage__inquiry .confirmArea p {
  margin-bottom: 3em;
  font-size: 14px;
  line-height: 1.8;
}
.subpage__inquiry .confirmArea dl > div {
  margin-bottom: 20px;
}
.subpage__inquiry .confirmArea dl dt {
  font-size: 12px;
  color: #aaa;
}
.subpage__inquiry .confirmArea dl dd span {
  display: block;
  padding-top: 0.5em;
  font-size: 15px;
  line-height: 1.6;
  border-top: solid 1px #ccc;
  white-space: pre-wrap;
}
.subpage__inquiry .confirmArea button {
  margin-top: 25px;
}
.subpage__inquiry .confirmArea__back {
  margin-top: 20px;
  text-align: center;
}
.subpage__inquiry .confirmArea__back a {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
}
.subpage__inquiry .confirmArea__back a span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.1em;
  transition: color 0.3s;
}
.subpage__inquiry .confirmArea__back a:active span {
  color: #0082bf;
}
.subpage__inquiry-message {
  display: none;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}
.subpage__inquiry.is-complete .subpage__inquiry-form {
  display: none;
}
.subpage__inquiry.is-complete .success {
  display: block;
}
.subpage__inquiry.is-error .subpage__inquiry-form {
  display: none;
}
.subpage__inquiry.is-error .error {
  display: block;
}
.subpage__faq {
  width: 85%;
  max-width: 640px;
  margin: 0 auto 25%;
}
.subpage__faq .faqBox {
  font-size: 15px;
  line-height: 1.6;
  border-bottom: solid 1px #ccc;
}
.subpage__faq .faqBox:first-child {
  border-top: solid 1px #ccc;
}
.subpage__faq .question {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 1.5em 40px 1.5em 5px;
  font-size: 15px;
  line-height: 1.6;
}
.subpage__faq .question span {
  display: block;
  transition: color 0.3s;
}
.subpage__faq .question:active span {
  color: #0082bf;
}
.subpage__faq .question::before, .subpage__faq .question::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  top: 50%;
  background-color: #666;
  transition: transform 0.3s;
}
.subpage__faq .question::before {
  right: 5px;
  transform: rotate(0deg);
}
.subpage__faq .question::after {
  right: 5px;
  transform: rotate(90deg);
}
.subpage__faq .question.is-open::before {
  transform: rotate(180deg);
}
.subpage__faq .question.is-open::after {
  transform: rotate(0deg);
}
.subpage__faq .answer {
  height: 0;
  transition: height 0.3s;
  overflow: hidden;
}
.subpage__faq .answer > div {
  padding: 10px 0 35px 15px;
}
.subpage__faq .answer p {
  font-size: 13px;
  line-height: 1.6;
}
.subpage__faq .answer p.cap {
  font-size: 12px;
}
.subpage__faq .answer p + p {
  margin-top: 0.8em;
}
.subpage__rules {
  width: 85%;
  max-width: 640px;
  margin: 0 auto 25%;
}
.subpage__rules li {
  border-bottom: solid 1px #ccc;
}
.subpage__rules li:first-child {
  border-top: solid 1px #ccc;
}
.subpage__rules h2 {
  padding: 1.5em 5px 1.5em 5px;
  font-size: 15px;
  line-height: 1.6;
}
.subpage__rules p {
  padding-left: 15px;
  font-size: 13px;
  line-height: 1.6;
}
.subpage__rules p:last-child {
  padding-bottom: 35px;
}
.subpage__rules p + p {
  margin-top: 0.8em;
}

.loader {
  width: 60px;
  aspect-ratio: 1;
  --c: no-repeat linear-gradient(#aaa 0 0);
  background: var(--c) 0 0, var(--c) 100% 0, var(--c) 100% 100%, var(--c) 0 100%;
  animation: l2-1 1.5s infinite, l2-2 1.5s infinite;
}

@keyframes l2-1 {
  0% {
    background-size: 0 4px, 4px 0, 0 4px, 4px 0;
  }
  12.5% {
    background-size: 100% 4px, 4px 0, 0 4px, 4px 0;
  }
  25% {
    background-size: 100% 4px, 4px 100%, 0 4px, 4px 0;
  }
  37.5% {
    background-size: 100% 4px, 4px 100%, 100% 4px, 4px 0;
  }
  45%, 55% {
    background-size: 100% 4px, 4px 100%, 100% 4px, 4px 100%;
  }
  62.5% {
    background-size: 0 4px, 4px 100%, 100% 4px, 4px 100%;
  }
  75% {
    background-size: 0 4px, 4px 0, 100% 4px, 4px 100%;
  }
  87.5% {
    background-size: 0 4px, 4px 0, 0 4px, 4px 100%;
  }
  100% {
    background-size: 0 4px, 4px 0, 0 4px, 4px 0;
  }
}
@keyframes l2-2 {
  0%, 49.9% {
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  }
  50%, 100% {
    background-position: 100% 0, 100% 100%, 0 100%, 0 0;
  }
}
.footer {
  position: relative;
  z-index: 1;
  padding: 60px 0 40px;
  background-color: #fff;
}
.footer__logo {
  width: 200px;
  margin: 0 auto 60px;
}
.footer__btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 360px;
  margin: 0 auto 50px;
}
.footer__btn a {
  display: block;
  width: 8em;
  margin: 0 5px 30px;
  padding: 0.75em 0;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  color: #000;
  border: solid 1px #aaa;
  transition: 0.3s;
}
.footer__btn a.reserve {
  font-size: 14px;
  width: 70%;
  padding: 1em 0;
  letter-spacing: 0.1em;
}
.footer__btn a:active {
  color: #0082bf;
  border-color: #0082bf;
}
.footer__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 24em;
  margin: 0 auto;
  font-size: 13px;
}
.footer__link li {
  width: 8em;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1;
}
.footer__link li a {
  display: inline-block;
  transition: 0.3s;
}
.footer__link li a:active {
  color: #0082bf;
}
.footer__link li a img {
  display: none;
  transition: filter 0.3s;
  filter: grayscale(100%) contrast(300%);
}

.moreBtn {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1;
  color: #000;
  letter-spacing: 0.05em;
  border-bottom: solid 1px #666;
  transition: color 0.3s;
}
.moreBtn:active {
  color: #0082bf;
  border-color: #0082bf;
}
.moreBtn span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.3em;
  font-size: 16px;
  line-height: 1;
}

.topBtn {
  position: fixed;
  z-index: 5;
  display: block;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 50px;
  text-align: center;
  font-size: 9px;
  line-height: 1;
  color: #333;
  letter-spacing: 0.15em;
  opacity: 0;
  transition: opacity 0.8s;
  pointer-events: none;
}
.topBtn.is-show {
  opacity: 1;
  pointer-events: auto;
}
.topBtn span {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 40px;
  line-height: 1;
  color: #666;
  transition: color 0.3s;
  background: radial-gradient(rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 50%);
}
.topBtn:active span {
  color: #0082bf;
}

@keyframes zoom {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (min-width: 769px) {
  body {
    min-width: 1024px;
  }
  .bg-movie > div {
    height: calc(100vh - 240px);
  }
  .header {
    min-width: 920px;
    height: 120px;
  }
  .header__inner {
    max-width: 1600px;
    padding: 0 40px;
  }
  .header__logo {
    width: 176.5px;
    height: 80px;
    padding-top: 10px;
  }
  .header__nav {
    position: relative;
    z-index: 20;
    width: auto;
    height: auto;
    margin: 0 25px 0 auto;
    background-color: transparent;
    opacity: 1;
    pointer-events: auto;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .header__nav-list {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: auto;
    padding: 0;
  }
  .header__nav-item {
    font-size: 13px;
    margin: 0 0.5em;
  }
  .header__nav-item a {
    transition: color 0.3s;
  }
  .header__nav-item img {
    width: 20px;
    margin: 0;
    transition: filter 0.3s;
  }
  .header__nav-item span {
    display: none;
  }
  .header__nav-item:hover a {
    color: #0082bf;
  }
  .header__nav-item:hover img {
    filter: none;
  }
  .header__nav-reserve {
    margin: 0;
    padding: 0.8em 2em 0.7em;
  }
  .header__nav-reserve:hover {
    background-color: #0082bf;
  }
  .header__nav-menuBtn {
    display: none;
  }
  .section__h2 {
    margin-bottom: 1.5em;
    padding-top: 0;
    font-size: 36px;
  }
  .section__h2::before {
    display: none;
  }
  .section__top {
    max-width: 1600px;
    padding: 120px 40px 0;
  }
  .section__top .swiper {
    height: calc(50vw - 40px);
    min-height: 472px;
    max-height: min(760px, 100vh - 160px);
  }
  .section__top .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .section__top .swiper-slide img {
    height: 100%;
    object-fit: cover;
  }
  .section__top .swiper-slide p {
    left: 30px;
    bottom: 3%;
    font-size: min(2vw, 32px);
    font-size: clamp(20px, 2vw, 32px);
    line-height: 1.5;
  }
  .section__top .swiper-nav {
    bottom: 15px;
    font-size: 48px;
    cursor: pointer;
  }
  .section__top .swiper-prev {
    right: 80px;
  }
  .section__top .swiper-next {
    right: 20px;
  }
  .section__top-lead {
    width: 100%;
    margin: 60px auto;
  }
  .section__top-lead p {
    text-align: center;
    font-size: 18px;
    line-height: 2.5;
  }
  .section__top-lead p br.sp {
    display: none;
  }
  .section__banner {
    margin: 80px auto 0;
    width: 700px;
  }
  .section__banner a {
    display: flex;
    align-items: center;
    position: relative;
    transition: 0.3s;
  }
  .section__banner a > span {
    position: absolute;
    bottom: 0px;
    right: 0px;
  }
  .section__banner a:hover {
    opacity: 0.7;
  }
  .section__banner a:hover .moreBtn {
    color: #0082bf;
    border-color: #0082bf;
  }
  .section__banner h3 {
    display: none;
  }
  .section__banner picture {
    width: 300px;
    margin-right: 20px;
    margin-bottom: 0;
  }
  .section__banner .box {
    width: 330px;
  }
  .section__banner .box strong {
    font-weight: 500;
    font-size: 125%;
    display: block;
    margin-bottom: 1em;
    text-align: left;
  }
  .section__points {
    margin: 120px auto 0;
  }
  .section__points-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    max-width: 1152px;
  }
  .section__points .section__h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32%;
    max-width: 330px;
    height: 280px;
    margin-top: 55px;
    padding-left: min(32% - 280px, 50px);
    text-align: center;
  }
  .section__points .section__h2::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 280px;
    height: 280px;
    border: solid 1px #aaa;
    border-radius: 140px;
  }
  .section__points-item {
    width: 32%;
    max-width: 330px;
    margin-top: 0;
    margin-bottom: 70px;
  }
  .section__points-item h3 {
    color: #000;
  }
  .section__points-item h3 span:nth-of-type(1) {
    font-size: 64px;
  }
  .section__points-item h3 span:nth-of-type(2) {
    font-size: min(1.8vw, 22px);
    font-size: clamp(18px, 1.8vw, 22px);
  }
  .section__points-item a {
    width: 86%;
    max-width: 280px;
    margin: 20px 0 0 auto;
  }
  .section__points-item a picture {
    width: 100%;
    height: 210px;
  }
  .section__points-item a p {
    font-size: 14px;
  }
  .section__points-item a:hover picture img {
    opacity: 0.7;
    transform: scale(1.1);
  }
  .section__points-item a:hover .moreBtn {
    color: #0082bf;
    border-color: #0082bf;
  }
  .section__links {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 80px auto 0;
  }
  .section__links > div {
    width: 38%;
  }
  .section__links > div a {
    width: 100%;
  }
  .section__links > div a picture {
    height: 230px;
  }
  .section__links > div a:hover picture img {
    opacity: 0.7;
    transform: scale(1.1);
  }
  .section__links > div a:hover .moreBtn {
    color: #0082bf;
    border-color: #0082bf;
  }
  .section__map {
    position: relative;
    max-width: 1440px;
    margin: 80px auto 0;
  }
  .section__map .section__h2 {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
  .section__map-tablist {
    position: absolute;
    left: 5%;
    width: 50.6%;
    max-width: 728px;
    margin-bottom: 0;
    padding-top: 20px;
  }
  .section__map-tablist p {
    font-size: 13px;
  }
  .section__map-tabitem:hover {
    color: #0082bf;
    border-color: #0082bf;
    cursor: pointer;
  }
  .section__map-inner {
    width: 90%;
    max-width: 1296px;
    margin: 0 auto;
  }
  .section__map-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }
  .section__map-map {
    width: 56.2%;
    max-width: 728px;
    margin-top: 90px;
  }
  .section__map-map span {
    font-size: min(2.7vw, 38px);
    font-size: clamp(28px, 2.7vw, 38px);
  }
  .section__map-map span:hover {
    transform: scale(1.5);
    cursor: pointer;
  }
  .section__map-thum {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 100px);
    height: 12.5vw;
    min-height: 128px;
    max-height: 180px;
    margin: 0 auto 20px;
    padding: 5px;
    background-color: #eeeeee;
  }
  .section__map-thum.thum-1 .section__map-thum-item {
    width: 20%;
  }
  .section__map-thum.thum-2 .section__map-thum-item {
    width: 33.33%;
  }
  .section__map-thum.thum-3 .section__map-thum-item {
    width: 25%;
  }
  .section__map-thum-item {
    position: relative;
    height: 50%;
    border: solid 3px #eeeeee;
  }
  .section__map-thum-item picture {
    width: 100%;
    height: 100%;
  }
  .section__map-thum-item picture img {
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s;
    filter: grayscale(80%) opacity(0.6);
  }
  .section__map-thum-item picture img:hover {
    cursor: pointer;
    filter: none;
  }
  .section__map-thum-item.active::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: solid 3px #0082bf;
  }
  .section__map-thum-item.active picture img {
    filter: none;
  }
  .section__map-swiper {
    width: 40.4%;
    max-width: 524px;
    margin-top: 0;
  }
  .section__map-swiper .swiper {
    width: calc(100% - 100px);
  }
  .section__map-swiper .swiper-slide {
    filter: none;
    transition: filter 1.5s;
  }
  .section__map-swiper .swiper-slide p {
    font-size: 14px;
    line-height: 1.5;
  }
  .section__map-swiper .swiper-nav {
    font-size: 40px;
    top: calc(60% - 0px);
    transition: color 0.3s;
  }
  .section__map-swiper .swiper-nav:hover {
    cursor: pointer;
    color: #0082bf;
  }
  .section__map-swiper .swiper-prev {
    right: auto;
    left: 5px;
  }
  .section__map-swiper .swiper-next {
    left: auto;
    right: 5px;
  }
  .section__price {
    margin-top: 150px;
  }
  .section__price .section__h2 {
    width: 100%;
    text-align: center;
  }
  .section__price-inner {
    width: 100%;
  }
  .section__price-text1 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 20px;
  }
  .section__price-text1 br {
    display: none;
  }
  .section__price-link {
    margin-bottom: 50px;
    text-align: center;
  }
  .section__price-link .moreBtn {
    font-size: 18px;
  }
  .section__price-text2 {
    text-align: center;
    font-size: 13px;
  }
  .section__access {
    margin-top: 150px;
  }
  .section__access .section__h2 {
    width: 100%;
    text-align: center;
  }
  .section__access-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
  }
  .section__access-map {
    width: calc(100% - 490px);
  }
  .section__access-map img {
    margin-bottom: 25px;
  }
  .section__access-map .moreBtn {
    font-size: 16px;
  }
  .section__access-text {
    width: 440px;
    margin-top: 0;
  }
  .section__access-address {
    font-size: 20px;
  }
  .section__access-transport {
    margin-top: 25px;
  }
  .section__access-transport li {
    margin-top: 20px;
  }
  .section__access-transport li span {
    font-size: 60px;
  }
  .section__access-transport li div h3 {
    margin-top: 8px;
    font-size: 16px;
  }
  .section__access-transport li div p {
    padding-left: 0.5em;
    font-size: 20px;
  }
  .section__access-transport li div p br.sp {
    display: none;
  }
  .section__access-link {
    margin-top: 25px;
  }
  .section__access-link .moreBtn {
    font-size: 20px;
  }
  .section__instagram {
    margin-top: 150px;
  }
  .section__instagram .section__h2 {
    width: 100%;
    text-align: center;
  }
  .section__instagram-list {
    width: 840px;
  }
  .section__instagram-list li {
    width: 180px;
    height: 180px;
    margin-bottom: 40px;
  }
  .section__instagram-list li a:hover img {
    transform: scale(1.1);
    opacity: 0.7;
  }
  .section__malibu {
    margin-top: 100px;
    padding: 100px 0;
  }
  .section__malibu::after {
    content: "";
    display: block;
    clear: both;
  }
  .section__malibu-inner {
    width: 880px;
  }
  .section__malibu-h2 {
    float: right;
    width: 320px;
    font-size: 15px;
  }
  .section__malibu-h2 img {
    width: 160px;
  }
  .section__malibu-img {
    float: left;
    width: 500px;
    margin-bottom: 0;
  }
  .section__malibu-text {
    float: right;
    width: 320px;
  }
  .section__malibu-text1 {
    font-size: 15px;
  }
  .section__malibu-text2 {
    font-size: 14px;
  }
  .section__malibu-link .moreBtn {
    font-size: 20px;
  }
  .section__reserve {
    margin-top: 0;
    padding-bottom: 60px;
  }
  .section__reserve .section__h2 {
    width: 100%;
    text-align: center;
  }
  .section__reserve-inner .loader {
    top: 100px;
  }
  .subpage {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .subpage__h1 {
    text-align: center;
    font-size: 36px;
  }
  .subpage__top-link .moreBtn {
    font-size: 18px;
  }
  .subpage__points {
    width: 90%;
    max-width: 1160px;
    margin: 0 auto 150px;
  }
  .subpage__points h2 {
    width: 45%;
    margin: 0;
  }
  .subpage__points h2 span:nth-of-type(1) {
    margin-left: 0;
    font-size: 100px;
  }
  .subpage__points h2 span:nth-of-type(1)::after {
    right: 15%;
    top: 20%;
    height: 200%;
    background-color: #aaa;
  }
  .subpage__points h2 span:nth-of-type(2) {
    width: auto;
    margin-top: 0;
    margin-left: 90px;
    font-size: clamp(28px, 2.7vw, 35px);
  }
  .subpage__points-item {
    margin: 0;
  }
  .subpage__points-item h3 {
    margin-bottom: 0.7em;
    font-size: 16px;
  }
  .subpage__points-item h3.small {
    font-size: 16px;
  }
  .subpage__points-item p {
    font-size: 14px;
  }
  .subpage__points-item p.small {
    font-size: 14px;
  }
  .subpage__points#point1 .sp1 {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: -140px;
  }
  .subpage__points#point1 .sp1 picture {
    width: 50%;
    max-width: 580px;
    height: 34vw;
    min-height: 348px;
    max-height: 435px;
    margin-left: 20px;
  }
  .subpage__points#point1 .sp1 .text {
    width: 252px;
    margin-top: 0;
    margin-left: 0;
  }
  .subpage__points#point1 .sp2 {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 80px;
  }
  .subpage__points#point1 .sp2 picture {
    width: 43.2%;
    max-width: 500px;
    height: 29vw;
    min-height: 296px;
    max-height: 375px;
    margin-right: 20px;
  }
  .subpage__points#point1 .sp2 .text {
    width: 350px;
    margin-top: 0;
    margin-left: 0;
  }
  .subpage__points#point1 .sp3 {
    flex-direction: row-reverse;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: -15%;
  }
  .subpage__points#point1 .sp3 picture {
    width: 24.2%;
    max-width: 280px;
    height: 21.9vw;
    min-height: 224px;
    max-height: 280px;
    margin-left: 20px;
  }
  .subpage__points#point1 .sp3 .text {
    width: 242px;
  }
  .subpage__points#point1 .sp7 {
    margin-top: -2%;
  }
  .subpage__points#point1 .sp7 picture:nth-of-type(1) {
    width: 30%;
    height: 20.3vw;
    min-height: 208px;
    max-height: 261px;
    margin-left: 32%;
  }
  .subpage__points#point1 .sp7 picture:nth-of-type(2) {
    width: 26%;
    height: 17.5vw;
    min-height: 179px;
    max-height: 224px;
    margin-top: -12%;
    margin-left: 10%;
  }
  .subpage__points#point1 .sp7 .text {
    width: 336px;
    margin-top: -5%;
    margin-left: calc(36% + 20px);
  }
  .subpage__points#point2 h2 {
    margin-left: auto;
  }
  .subpage__points#point2 .sp8 {
    margin-top: -140px;
  }
  .subpage__points#point2 .sp8 picture:nth-of-type(1) {
    width: 50%;
    max-width: 580px;
    height: 34vw;
    min-height: 348px;
    max-height: 435px;
  }
  .subpage__points#point2 .sp8 picture:nth-of-type(2) {
    width: 43.2%;
    max-width: 500px;
    height: 24.7vw;
    min-height: 252px;
    max-height: 316px;
    margin-top: -16%;
    margin-left: 44%;
  }
  .subpage__points#point2 .sp8 .text {
    width: 378px;
    margin-top: -9%;
    margin-left: 0;
  }
  .subpage__points#point2 .sp8 .text h3 br {
    display: none;
  }
  .subpage__points#point2 .flex1 {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 80px;
  }
  .subpage__points#point2 .sp9 {
    display: block;
    width: 26%;
    max-width: 300px;
    margin-left: 5%;
  }
  .subpage__points#point2 .sp9 picture {
    width: 100%;
    height: 28.2vw;
    min-height: 286px;
    max-height: 360px;
  }
  .subpage__points#point2 .sp9 .text {
    width: 100%;
    margin-top: 20px;
  }
  .subpage__points#point2 .flex2 {
    width: 59%;
  }
  .subpage__points#point2 .sp5 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
  }
  .subpage__points#point2 .sp5 picture {
    width: 45%;
    max-width: 300px;
    height: 17.6vw;
    min-height: 180px;
    max-height: 225px;
    margin-left: 0;
  }
  .subpage__points#point2 .sp5 .text {
    width: calc(55% - 20px);
    max-width: 294px;
    margin-top: 0;
    margin-left: 20px;
  }
  .subpage__points#point2 .sp6 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    margin-top: 80px;
  }
  .subpage__points#point2 .sp6 picture {
    width: 45%;
    max-width: 300px;
    height: 17.6vw;
    min-height: 180px;
    max-height: 225px;
    margin-left: 0;
  }
  .subpage__points#point2 .sp6 .text {
    width: calc(55% - 20px);
    max-width: 294px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 20px;
  }
  .subpage__points#point3 .sp1 {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: -140px;
  }
  .subpage__points#point3 .sp1 picture {
    width: 50%;
    max-width: 580px;
    height: 34vw;
    min-height: 348px;
    max-height: 435px;
    margin-left: 20px;
  }
  .subpage__points#point3 .sp1 .text {
    width: 252px;
    margin-top: 0;
    margin-left: 0;
  }
  .subpage__points#point3 .sp1:nth-of-type(3) {
    margin-top: -13%;
  }
  .subpage__points#point3 .sp1:nth-of-type(3) picture {
    width: 43.2%;
    max-width: 500px;
    height: 29vw;
    min-height: 296px;
    max-height: 375px;
  }
  .subpage__points#point3 .sp2 {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 80px;
  }
  .subpage__points#point3 .sp2 picture {
    width: 43.2%;
    max-width: 500px;
    height: 29vw;
    min-height: 296px;
    max-height: 375px;
    margin-right: 20px;
  }
  .subpage__points#point3 .sp2 .text {
    width: 252px;
    margin-top: 0;
    margin-left: 0;
  }
  .subpage__points#point3 .sp10 {
    align-items: flex-end;
    margin-top: 80px;
  }
  .subpage__points#point3 .sp10 picture {
    width: 24.2%;
    max-width: 280px;
    height: 16.5vw;
    min-height: 168px;
    max-height: 210px;
    margin-left: 2.6%;
  }
  .subpage__points#point3 .sp10 picture:nth-of-type(1) {
    margin-left: 5%;
  }
  .subpage__points#point3 .sp10 picture:nth-of-type(3) {
    order: 4;
    margin-top: 2.6%;
    margin-left: 18.5%;
  }
  .subpage__points#point3 .sp10 picture:nth-of-type(4) {
    order: 5;
    margin-top: 2.6%;
  }
  .subpage__points#point3 .sp10 .text {
    order: 3;
    width: 280px;
    margin-top: 0;
    margin-left: 2.6%;
  }
  .subpage__points#point4 h2 {
    margin-left: auto;
  }
  .subpage__points#point4 .sp2 {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: -140px;
  }
  .subpage__points#point4 .sp2 picture {
    width: 50%;
    max-width: 580px;
    height: 34vw;
    min-height: 348px;
    max-height: 435px;
    margin-right: 20px;
  }
  .subpage__points#point4 .sp2 .text {
    width: 280px;
    margin-top: 0;
    margin-left: 0;
  }
  .subpage__points#point4 .flex1 {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 80px;
  }
  .subpage__points#point4 .flex2 {
    width: 48%;
    max-width: 510px;
    margin-right: 6.5%;
  }
  .subpage__points#point4 .sp3 {
    align-items: flex-end;
    width: 100%;
  }
  .subpage__points#point4 .sp3 picture {
    width: 55%;
    max-width: 280px;
    height: 19.6vw;
    min-height: 200px;
    max-height: 250px;
  }
  .subpage__points#point4 .sp3 .text {
    width: calc(45% - 20px);
    margin-left: 20px;
  }
  .subpage__points#point4 .sp4 {
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    margin-top: 80px;
  }
  .subpage__points#point4 .sp4 picture {
    width: 55%;
    max-width: 280px;
    height: 19.6vw;
    min-height: 200px;
    max-height: 250px;
  }
  .subpage__points#point4 .sp4 .text {
    width: calc(45% - 20px);
    margin-right: 0;
    margin-left: 20px;
  }
  .subpage__points#point4 .sp1 {
    width: 45%;
    max-width: 520px;
  }
  .subpage__points#point4 .sp1 picture {
    width: 100%;
    height: 31vw;
    min-height: 317px;
    max-height: 390px;
    margin-left: 0;
  }
  .subpage__points#point4 .sp1 .text {
    width: 308px;
    margin-left: auto;
    margin-right: 0;
  }
  .subpage__points#point5 .sp1 {
    width: 41.5%;
    max-width: 480px;
    margin-top: -140px;
    margin-left: auto;
  }
  .subpage__points#point5 .sp1 picture {
    width: 100%;
    height: 28.2vw;
    min-height: 288px;
    max-height: 360px;
    margin-left: 0;
  }
  .subpage__points#point5 .sp1 .text {
    width: 63%;
    max-width: 252px;
    margin-top: 20px;
    margin-left: auto;
  }
  .subpage__points#point5 .sp2 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    margin-top: -24%;
  }
  .subpage__points#point5 .sp2 picture {
    width: 41.5%;
    max-width: 480px;
    height: 28.2vw;
    min-height: 288px;
    max-height: 360px;
    margin-left: 5%;
  }
  .subpage__points#point5 .sp2 .text {
    width: 22%;
    max-width: 252px;
    margin-top: 0;
    margin-left: 20px;
  }
  .subpage__points#point5 .flex1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%;
    max-width: 920px;
    margin-left: 15%;
    margin-top: 80px;
  }
  .subpage__points#point5 .sp11 {
    width: 46%;
    max-width: 420px;
  }
  .subpage__points#point5 .sp11 picture {
    width: 100%;
    height: 22vw;
    min-height: 225px;
    max-height: 280px;
    margin-left: 0;
  }
  .subpage__points#point5 .sp11 .text {
    width: 330px;
    margin-left: 0;
  }
  .subpage__points#point5 .sp12 {
    width: 46%;
    max-width: 420px;
  }
  .subpage__points#point5 .sp12 picture {
    width: 100%;
    height: 22vw;
    min-height: 225px;
    max-height: 280px;
    margin-left: 0;
  }
  .subpage__points#point5 .sp12 .text {
    width: 337px;
    margin-left: 0;
  }
  .subpage__points#families h2, .subpage__points#training h2 {
    width: 45%;
    margin: 0 0 0 auto;
    font-size: clamp(28px, 2.7vw, 40px);
    transform: translateY(30%);
  }
  .subpage__points#families .sp2, .subpage__points#training .sp2 {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: -10%;
  }
  .subpage__points#families .sp2 picture, .subpage__points#training .sp2 picture {
    width: 50%;
    max-width: 580px;
    height: 34vw;
    min-height: 348px;
    max-height: 435px;
    margin-right: 20px;
  }
  .subpage__points#families .sp2 .text, .subpage__points#training .sp2 .text {
    width: 280px;
    margin-top: 0;
    margin-left: 0;
  }
  .subpage__points#families .flex1, .subpage__points#training .flex1 {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 80px;
  }
  .subpage__points#families .flex2, .subpage__points#training .flex2 {
    width: 48%;
    max-width: 510px;
    margin-right: 6.5%;
  }
  .subpage__points#families .sp3, .subpage__points#training .sp3 {
    align-items: flex-end;
    width: 100%;
  }
  .subpage__points#families .sp3 picture, .subpage__points#training .sp3 picture {
    width: 55%;
    max-width: 280px;
    height: 19.6vw;
    min-height: 200px;
    max-height: 250px;
  }
  .subpage__points#families .sp3 .text, .subpage__points#training .sp3 .text {
    width: calc(45% - 20px);
    margin-left: 20px;
  }
  .subpage__points#families .sp4, .subpage__points#training .sp4 {
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    margin-top: 80px;
  }
  .subpage__points#families .sp4 picture, .subpage__points#training .sp4 picture {
    width: 55%;
    max-width: 280px;
    height: 19.6vw;
    min-height: 200px;
    max-height: 250px;
  }
  .subpage__points#families .sp4 .text, .subpage__points#training .sp4 .text {
    width: calc(45% - 20px);
    margin-right: 0;
    margin-left: 20px;
  }
  .subpage__points#families .sp1, .subpage__points#training .sp1 {
    width: 45%;
    max-width: 520px;
  }
  .subpage__points#families .sp1 picture, .subpage__points#training .sp1 picture {
    width: 100%;
    height: 31vw;
    min-height: 317px;
    max-height: 390px;
    margin-left: 0;
  }
  .subpage__points#families .sp1 .text, .subpage__points#training .sp1 .text {
    width: 308px;
    margin-left: auto;
    margin-right: 0;
  }
  .subpage__points#families .subpage__points-link, .subpage__points#training .subpage__points-link {
    margin: 100px auto;
    font-size: 18px;
  }
  .subpage__points#families .subpage__points-link .moreBtn, .subpage__points#training .subpage__points-link .moreBtn {
    font-size: 18px;
  }
  .subpage #families {
    position: relative;
  }
  .subpage #families h2 {
    width: 40%;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  .subpage #families h3 {
    margin-bottom: 0.7em;
    font-size: 16px;
  }
  .subpage #families h3.small {
    font-size: 16px;
  }
  .subpage #families p {
    font-size: 14px;
  }
  .subpage #families p.small {
    font-size: 14px;
  }
  .subpage #families .sec-1 {
    margin-top: 70px;
  }
  .subpage #families .sec-1 picture.pic1 {
    width: 65%;
    max-width: 750px;
    margin-left: auto;
    margin-right: -5%;
  }
  .subpage #families .sec-1 picture.pic2 {
    width: 35%;
    max-width: 368px;
    margin-left: 0;
    margin-top: -30%;
  }
  .subpage #families .sec-1 picture.pic3 {
    width: 55%;
    margin: 0;
    max-width: 350px;
  }
  .subpage #families .sec-1 > div {
    width: 55%;
    display: flex;
    flex-direction: row-reverse;
    margin-left: 40%;
    margin-top: -60px;
  }
  .subpage #families .sec-1 > div .text {
    width: 40%;
    margin: 0 5% 0 0;
  }
  .subpage #families .sec-2 {
    margin-top: 120px;
    margin-bottom: 120px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
  }
  .subpage #families .sec-2 .wrap {
    width: 52%;
    margin: 0 0 0 -5%;
  }
  .subpage #families .sec-2 .wrap > picture {
    width: 100%;
    margin-bottom: 5px;
  }
  .subpage #families .sec-2 .wrap p {
    width: 100%;
    margin: 0;
    height: 50px;
  }
  .subpage #families .sec-2 .flex {
    width: 48%;
    margin: 0 0 55px;
  }
  .subpage #families .sec-2 .text {
    position: absolute;
    width: 31%;
    top: 0;
    left: 52%;
    margin: 0;
  }
  .subpage #families .sec-3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .subpage #families .sec-3 .inner1 {
    width: 51%;
    max-width: 590;
  }
  .subpage #families .sec-3 .inner1 .flex {
    width: 100%;
    display: block;
    margin: 0;
  }
  .subpage #families .sec-3 .inner1 .flex picture {
    width: 54.3%;
  }
  .subpage #families .sec-3 .inner1 .flex picture:last-of-type {
    margin: -10% 0 0 auto;
  }
  .subpage #families .sec-3 .inner1 .text {
    width: 54.3%;
    margin: 25px 0 0 auto;
  }
  .subpage #families .sec-3 .inner2 {
    width: 44%;
    max-width: 480px;
    display: flex;
    flex-direction: column-reverse;
    margin: 0;
  }
  .subpage #families .sec-3 .inner2 .text {
    width: 50%;
    margin: 0 0 25px 0;
  }
  .subpage #families .sec-3 .inner2 picture {
    width: 100%;
    margin: 0;
  }
  .subpage__access {
    margin-bottom: 150px;
  }
  .subpage__access.access_areaMap {
    text-align: center;
  }
  .subpage__access.access_areaMap .figure {
    width: 642px;
    margin: 0 auto 60px;
  }
  .subpage__access.access_areaMap p br {
    display: none;
  }
  .subpage__access.access_areaMap .moreBtn {
    font-size: 16px;
  }
  .subpage__access.access_traffic {
    width: 910px;
    margin-bottom: 150px;
  }
  .subpage__access.access_traffic .section__access-address {
    font-size: 17px;
  }
  .subpage__access.access_traffic_1, .subpage__access.access_traffic_2 {
    display: none;
  }
  .subpage__access.access_traffic_3 {
    display: block;
  }
  .subpage__access.access_traffic .flexWrap {
    display: flex;
  }
  .subpage__access.access_traffic .flexWrap div:nth-of-type(1) {
    width: 65%;
  }
  .subpage__inquiry {
    margin-bottom: 150px;
  }
  .subpage__inquiry dl dt {
    font-size: 16px;
  }
  .subpage__inquiry button {
    font-size: 18px;
  }
  .subpage__inquiry button:hover {
    cursor: pointer;
    background-color: #0082bf;
  }
  .subpage__inquiry .confirmArea p {
    text-align: center;
    margin-bottom: 3em;
    font-size: 15px;
  }
  .subpage__inquiry .confirmArea p br {
    display: none;
  }
  .subpage__inquiry .confirmArea dl > div {
    margin-bottom: 30px;
  }
  .subpage__inquiry .confirmArea dl dt {
    font-size: 14px;
  }
  .subpage__inquiry .confirmArea dl dd span {
    font-size: 17px;
  }
  .subpage__inquiry .confirmArea dl dd span.confirmArea__maintext {
    font-size: 15px;
  }
  .subpage__inquiry .confirmArea__back {
    margin-top: 25px;
  }
  .subpage__inquiry .confirmArea__back a:hover {
    cursor: pointer;
  }
  .subpage__inquiry .confirmArea__back a:hover span {
    color: #0082bf;
  }
  .subpage__inquiry-message {
    font-size: 16px;
  }
  .subpage__inquiry-message br.sp {
    display: none;
  }
  .subpage__faq {
    margin-bottom: 150px;
  }
  .subpage__faq .question {
    padding-left: 10px;
    font-size: 18px;
  }
  .subpage__faq .question:hover span {
    color: #0082bf;
  }
  .subpage__faq .answer > div {
    padding: 10px 0 50px 25px;
  }
  .subpage__faq .answer p {
    font-size: 15px;
  }
  .subpage__rules {
    margin-bottom: 150px;
  }
  .subpage__rules h2 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
  }
  .subpage__rules p {
    padding-left: 25px;
    font-size: 15px;
  }
  .subpage__rules p:last-child {
    padding-bottom: 40px;
  }
  .footer {
    padding: 100px 0;
  }
  .footer__logo {
    width: 250px;
    margin: 0 auto 80px;
  }
  .footer__btn {
    max-width: 500px;
    margin-bottom: 60px;
  }
  .footer__btn a {
    width: 10em;
    margin: 0 10px 30px;
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .footer__btn a.reserve {
    font-size: 15px;
    width: 250px;
    margin: 0 50px 40px;
  }
  .footer__btn a:hover {
    color: #0082bf;
    border-color: #0082bf;
  }
  .footer__link {
    display: flex;
    width: 100%;
  }
  .footer__link li {
    width: auto;
    margin: 0 15px;
  }
  .footer__link li a img {
    display: inline-block;
    width: 16px;
  }
  .footer__link li a span {
    display: none;
  }
  .footer__link li a:hover {
    color: #0082bf;
  }
  .footer__link li a:hover img {
    filter: none;
  }
  .moreBtn:hover {
    color: #0082bf;
    border-color: #0082bf;
  }
  .topBtn {
    right: 40px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    font-size: 12px;
  }
  .topBtn span {
    width: 60px;
    height: 60px;
    font-size: 60px;
  }
  .topBtn:hover {
    cursor: pointer;
  }
  .topBtn:hover span {
    color: #0082bf;
  }
}
@media screen and (min-width: 1080px) {
  .header__nav-item {
    font-size: 14px;
    margin: 0 1em;
  }
}