.articleList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 769px) {
  .articleList__item {
    width: 500px;
  }
}

@media (max-width: 768px) {
  .articleList__item + .articleList__item {
    margin-top: 35px;
  }
}

.articleLink {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 769px) {
  .articleLink:hover .generalBorder:after {
    max-width: 100%;
  }
  .articleLink:hover .articleLink__photo .photo__image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@media (hover: hover) and (pointer: fine) {
  .articleLink:hover .generalBorder:after {
    max-width: 100%;
  }
  .articleLink:hover .articleLink__photo .photo__image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.articleLink__photo {
  -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 769px) {
  .articleLink__photo {
    margin-right: 30px;
    overflow: hidden;
    width: 100px;
  }
  .articleLink__photo .photo__image {
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transition: 0.3s cubic-bezier(0, 0.62, 0.33, 0.99);
    transition: 0.3s cubic-bezier(0, 0.62, 0.33, 0.99);
  }
}

@media (max-width: 768px) {
  .articleLink__photo {
    margin-right: 20px;
    width: 70px;
  }
}

.articleLink__detail {
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 300;
  position: relative;
}

@media screen and (min-width: 769px) {
  .articleLink__detail {
    font-size: 14px;
    line-height: calc(12 / 7);
    width: 370px;
  }
}

@media (max-width: 768px) {
  .articleLink__detail {
    font-size: 14px;
    letter-spacing: 0;
    line-height: calc(23 / 14);
    width: 200px;
  }
}

.articleLink__detail .data {
  color: #808080;
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: .7;
}

@media screen and (min-width: 769px) {
  .articleLink__detail .data {
    font-size: 12px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .articleLink__detail .data {
    font-size: 12px;
    margin-top: 15px;
  }
}

.articleLink__arrow {
  bottom: 0;
  display: block;
  position: absolute;
  right: 0;
}

@media screen and (min-width: 769px) {
  .articleLink__arrow {
    height: 12px;
    width: 12px;
  }
}

@media (max-width: 768px) {
  .articleLink__arrow {
    height: 11.5px;
    width: 11px;
  }
}

.articleLink__arrow .svgArrow {
  stroke: #333333;
}

@media screen and (min-width: 769px) {
  .articleLink .generalBorder {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .articleLink .generalBorder {
    margin-bottom: 20px;
  }
}

.equipmentList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.equipmentList__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.08);
  color: #cccccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  text-align: center;
  white-space: nowrap;
  line-height: 1.3;
}

.equipmentList__item:before {
  content: '';
  margin-top: calc((1 - 1.3) * .5em);
}

.equipmentList__item:after {
  margin-bottom: calc((1 - 1.3) * .5em);
}

.equipmentList__item:before, .equipmentList__item:after {
  content: '';
  display: block;
  height: 0;
  width: 0;
}

@media screen and (min-width: 769px) {
  .equipmentList__item {
    font-size: 12px;
    padding: 25px 0;
    width: 224px;
  }
  .equipmentList__item:nth-child(n+4) {
    margin-top: 4px;
  }
}

@media (max-width: 768px) {
  .equipmentList__item {
    font-size: 12px;
    height: 55px;
    width: 147px;
  }
  .equipmentList__item:nth-child(n+3) {
    margin-top: 1px;
  }
}

.equipmentList__item.is-off {
  background-color: rgba(255, 255, 255, 0.2);
  opacity: .2;
}

.informationBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.06);
          box-shadow: 0 20px 30px rgba(0, 0, 0, 0.06);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 769px) {
  .informationBox {
    bottom: 15px;
    left: 10px;
    position: absolute;
    width: 360px;
    z-index: 1;
  }
}

.informationBox__ttl {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: .7;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .informationBox__ttl {
    font-size: 10px;
    padding: 20px 0;
    width: 60px;
  }
}

@media (max-width: 768px) {
  .informationBox__ttl {
    font-size: 10px;
    padding: 20px 0;
    width: 60px;
  }
}

@media screen and (min-width: 769px) {
  .informationBox__item {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .informationBox__item {
    width: 315px;
  }
}

.informationBox__item .linkBtn {
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  border-radius: 0;
}

.mainVisual {
  opacity: 0;
  position: relative;
  -webkit-transition: .8s ease;
  transition: .8s ease;
  width: 100%;
}

.mainVisual.is-loaded {
  opacity: 1;
}

.mainVisual.is-loaded .mainVisual__logo img {
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-transition: 3.5s cubic-bezier(0.43, 0.02, 0.05, 1) 0s !important;
  transition: 3.5s cubic-bezier(0.43, 0.02, 0.05, 1) 0s !important;
}

.mainVisual.is-loaded .mainVisual__usp {
  opacity: 1;
}

.mainVisual__inner {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .mainVisual__inner {
    height: calc(100vh - 31.5px);
  }
}

.mainVisual__logo {
  position: absolute;
  z-index: 4;
}

@media screen and (min-width: 769px) {
  .mainVisual__logo {
    -webkit-filter: drop-shadow(0 0 32px #f0efee) drop-shadow(0 0 32px #f0efee) drop-shadow(0 0 32px #f0efee);
            filter: drop-shadow(0 0 32px #f0efee) drop-shadow(0 0 32px #f0efee) drop-shadow(0 0 32px #f0efee);
    left: calc(182 / 1440 * 100vw);
    top: calc(292 / 1440 * 100vw);
    width: calc(497 / 1440 * 100vw);
  }
}

@media (max-width: 768px) {
  .mainVisual__logo {
    -webkit-filter: drop-shadow(0 0 32px #f0efee) drop-shadow(0 0 32px #f0efee);
            filter: drop-shadow(0 0 32px #f0efee) drop-shadow(0 0 32px #f0efee);
    left: 50%;
    top: calc(292 / 1330 * 100%);
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: calc(497 / 750 * 100vw);
  }
}

.mainVisual__logo .logo {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(255, 255, 255, 0)), color-stop(33%, white), color-stop(66%, white), color-stop(75%, rgba(255, 255, 255, 0)));
  -webkit-mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 25%, white 33%, white 66%, rgba(255, 255, 255, 0) 75%);
          mask-image: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(255, 255, 255, 0)), color-stop(33%, white), color-stop(66%, white), color-stop(75%, rgba(255, 255, 255, 0)));
          mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 25%, white 33%, white 66%, rgba(255, 255, 255, 0) 75%);
  -webkit-mask-position: 100% 50%;
          mask-position: 100% 50%;
  -webkit-mask-size: 400% 100%;
          mask-size: 400% 100%;
  display: block;
  height: auto;
  width: 100%;
  will-change: mask-position;
}

.mainVisual__slide {
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 5;
}

.mainVisual__slide .swiper-slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  height: 100%;
  width: 100%;
}

.mainVisual__slide .photo {
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}

.mainVisual__slide .photo:before {
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

@media screen and (min-width: 769px) {
  .mainVisual__slide .photo:before {
    background: -webkit-gradient(linear, left bottom, left top, from(white), color-stop(34%, white), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to top, white 0%, white 34%, rgba(255, 255, 255, 0) 100%);
    height: 161px;
    opacity: .65;
  }
}

@media (max-width: 768px) {
  .mainVisual__slide .photo:before {
    background: -webkit-gradient(linear, left bottom, left top, from(white), color-stop(75%, white), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to top, white 0%, white 75%, rgba(255, 255, 255, 0) 100%);
    height: calc(454 / 1330 * 100%);
    opacity: .9;
  }
}

.mainVisual__slide .photo__pic {
  height: 100%;
  width: 100%;
}

.mainVisual__slide .photo__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  width: 100%;
  will-change: transform;
}

.mainVisual__slide .photo__capIn {
  z-index: 3;
}

@media (max-width: 768px) {
  .mainVisual__slide .photo__capIn {
    left: 5px;
    right: auto;
  }
}

@media (max-width: 768px) {
  .mainVisual__slide--01 .mainVisual__logo {
    top: calc(438 / 1330 * 100%);
  }
}

@media (max-width: 768px) and (max-width: 375px) and (-webkit-max-device-pixel-ratio: 2), (max-width: 768px) and (max-width: 375px) and (max-resolution: 2dppx) {
  .mainVisual__slide--01 .mainVisual__logo {
    top: calc(390 / 1330 * 100%);
  }
}

.mainVisual__slider {
  height: 100%;
  position: relative;
  width: 100%;
}

.mainVisual__slider .swiper-container {
  height: 100%;
}

.mainVisual__slider .swiper-slide-active .photo__image,
.mainVisual__slider .swiper-slide-duplicate-active .photo__image,
.mainVisual__slider .swiper-slide-prev .photo__image {
  -webkit-animation: mainVisualScale 8s ease-in-out both;
          animation: mainVisualScale 8s ease-in-out both;
}

.mainVisual__slider.is-paused .swiper-slide-active .photo__image {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.mainVisual__slider .swiper-slide-active .mainVisual__overlay .inner:before,
.mainVisual__slider .swiper-slide-duplicate-active .mainVisual__overlay .inner:before {
  -webkit-animation: mainVisualOverlayShineBefore 6s cubic-bezier(0.45, 0, 0.15, 1) 1 both;
          animation: mainVisualOverlayShineBefore 6s cubic-bezier(0.45, 0, 0.15, 1) 1 both;
  -webkit-transition: none;
  transition: none;
}

.mainVisual__slider .swiper-slide-prev .mainVisual__overlay .inner:before {
  -webkit-animation: none;
          animation: none;
  opacity: 0;
  -webkit-transition: opacity .8s ease;
  transition: opacity .8s ease;
}

.mainVisual__slider.is-paused .swiper-slide-active .mainVisual__overlay .inner:before,
.mainVisual__slider.is-paused .swiper-slide-duplicate-active .mainVisual__overlay .inner:before {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@media (max-width: 768px) {
  .mainVisual__slider .swiper-slide-active .mainVisual__overlay .inner:before,
  .mainVisual__slider .swiper-slide-duplicate-active .mainVisual__overlay .inner:before {
    -webkit-animation: mainVisualOverlayShineBeforeSp 6s cubic-bezier(0.45, 0, 0.15, 1) 1 both;
            animation: mainVisualOverlayShineBeforeSp 6s cubic-bezier(0.45, 0, 0.15, 1) 1 both;
    -webkit-transition: none;
    transition: none;
  }
}

.mainVisual__btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  position: absolute;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  width: 40px;
  z-index: 3;
}

@media screen and (min-width: 769px) {
  .mainVisual__btn {
    bottom: 92px;
    left: 20px;
  }
}

@media (max-width: 768px) {
  .mainVisual__btn {
    bottom: calc(330 / 1330 * 100%);
    right: 20px;
  }
}

.mainVisual__btn .pauseSVG {
  display: block;
  height: auto;
  width: 11px;
}

.mainVisual__btn .playSVG {
  display: none;
  height: auto;
  width: 16px;
}

.mainVisual__btn[data-playing='false'] .pauseSVG {
  display: none;
}

.mainVisual__btn[data-playing='false'] .playSVG {
  display: block;
}

@media screen and (min-width: 769px) {
  .mainVisual__btn:hover {
    opacity: .7;
  }
}

@media (hover: hover) and (pointer: fine) {
  .mainVisual__btn:hover {
    opacity: .7;
  }
}

.mainVisual__overlay {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.mainVisual__overlay .inner {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}

.mainVisual__overlay .inner:before {
  -webkit-animation: none;
          animation: none;
  content: '';
  display: block;
  inset: -8%;
  opacity: 0;
  position: absolute;
  -webkit-transform: scale(1.12) skewX(0deg) skewY(0deg);
          transform: scale(1.12) skewX(0deg) skewY(0deg);
  -webkit-transition: opacity .8s ease;
  transition: opacity .8s ease;
  will-change: opacity, transform;
}

@media screen and (min-width: 769px) {
  .mainVisual__overlay .inner:before {
    background: url("../imgs/pc/img-main-visual-overlay@1.5x.jpg") no-repeat center center/cover;
  }
}

@media (max-width: 768px) {
  .mainVisual__overlay .inner:before {
    background: url("../imgs/sp/img-main-visual-overlay.jpg") no-repeat center center/cover;
    inset: -24%;
    -webkit-transform: scale(1.06) skewX(0deg) skewY(0deg);
            transform: scale(1.06) skewX(0deg) skewY(0deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
}

.mainVisual__usp {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  -webkit-transition: opacity 2s ease 1.5s;
  transition: opacity 2s ease 1.5s;
  z-index: 3;
}

@media screen and (min-width: 769px) {
  .mainVisual__usp {
    bottom: 0;
    right: calc(110 / 1440 * 100vw);
    width: calc(570 / 1440 * 100vw);
  }
}

@media (max-width: 768px) {
  .mainVisual__usp {
    bottom: calc(123 / 1330 * 100%);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(653 / 750 * 100vw);
  }
}

.mainVisual__usp .photo {
  position: relative;
  width: 100%;
  z-index: 1;
}

.mainVisual__usp .photo:before {
  -webkit-animation: mainVisualUspShine 18s cubic-bezier(0.43, 0.02, 0.05, 1) 3.5s infinite;
          animation: mainVisualUspShine 18s cubic-bezier(0.43, 0.02, 0.05, 1) 3.5s infinite;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0) 32%, rgba(255, 255, 255, 0.18) 44%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.18) 56%, rgba(255, 255, 255, 0) 68%);
  background-position: 110% 50%;
  background-size: 300% 100%;
  content: '';
  display: block;
  inset: 0;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  mix-blend-mode: overlay;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .mainVisual__usp .photo:before {
    -webkit-mask-image: url("../imgs/pc/img-main-visual-usp@1.5x.png");
            mask-image: url("../imgs/pc/img-main-visual-usp@1.5x.png");
  }
}

@media (max-width: 768px) {
  .mainVisual__usp .photo:before {
    -webkit-mask-image: url("../imgs/sp/img-main-visual-usp.png");
            mask-image: url("../imgs/sp/img-main-visual-usp.png");
  }
}

.mainVisual__usp .photo__pic, .mainVisual__usp .photo__image {
  position: relative;
  width: 100%;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .mainVisual__slider .photo__image {
    -webkit-animation: none;
            animation: none;
    -webkit-transform: none;
            transform: none;
  }
  .mainVisual__logo img {
    -webkit-mask-image: none;
            mask-image: none;
  }
  .mainVisual__usp {
    opacity: 1;
    -webkit-transition: none;
    transition: none;
  }
  .mainVisual__usp .photo:before {
    -webkit-animation: none;
            animation: none;
  }
  .mainVisual__overlay .inner:before {
    -webkit-animation: none;
            animation: none;
    opacity: 0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}

@-webkit-keyframes mainVisualOverlayShineBefore {
  0% {
    opacity: .8;
    -webkit-transform: scale(1.12) skewX(-18deg) skewY(8deg);
            transform: scale(1.12) skewX(-18deg) skewY(8deg);
  }
  60% {
    opacity: 0;
    -webkit-transform: scale(1.24) skewX(14deg) skewY(-6deg);
            transform: scale(1.24) skewX(14deg) skewY(-6deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.12) skewX(22deg) skewY(-12deg);
            transform: scale(1.12) skewX(22deg) skewY(-12deg);
  }
}

@keyframes mainVisualOverlayShineBefore {
  0% {
    opacity: .8;
    -webkit-transform: scale(1.12) skewX(-18deg) skewY(8deg);
            transform: scale(1.12) skewX(-18deg) skewY(8deg);
  }
  60% {
    opacity: 0;
    -webkit-transform: scale(1.24) skewX(14deg) skewY(-6deg);
            transform: scale(1.24) skewX(14deg) skewY(-6deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.12) skewX(22deg) skewY(-12deg);
            transform: scale(1.12) skewX(22deg) skewY(-12deg);
  }
}

@-webkit-keyframes mainVisualOverlayShineBeforeSp {
  0% {
    opacity: .8;
    -webkit-transform: scale(1.06) skewX(-12deg) skewY(4deg);
            transform: scale(1.06) skewX(-12deg) skewY(4deg);
  }
  60% {
    opacity: 0;
    -webkit-transform: scale(1.1) skewX(8deg) skewY(-3deg);
            transform: scale(1.1) skewX(8deg) skewY(-3deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.06) skewX(12deg) skewY(-6deg);
            transform: scale(1.06) skewX(12deg) skewY(-6deg);
  }
}

@keyframes mainVisualOverlayShineBeforeSp {
  0% {
    opacity: .8;
    -webkit-transform: scale(1.06) skewX(-12deg) skewY(4deg);
            transform: scale(1.06) skewX(-12deg) skewY(4deg);
  }
  60% {
    opacity: 0;
    -webkit-transform: scale(1.1) skewX(8deg) skewY(-3deg);
            transform: scale(1.1) skewX(8deg) skewY(-3deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.06) skewX(12deg) skewY(-6deg);
            transform: scale(1.06) skewX(12deg) skewY(-6deg);
  }
}

@-webkit-keyframes mainVisualUspShine {
  0%,
  100% {
    background-position: 110% 50%;
    opacity: 0;
  }
  4% {
    background-position: 110% 50%;
    opacity: .75;
  }
  22% {
    background-position: -10% 50%;
    opacity: .75;
  }
  26% {
    background-position: -10% 50%;
    opacity: 0;
  }
  36% {
    background-position: 110% 50%;
    opacity: 0;
  }
  40% {
    background-position: 110% 50%;
    opacity: .75;
  }
  58% {
    background-position: -10% 50%;
    opacity: .75;
  }
  62% {
    background-position: -10% 50%;
    opacity: 0;
  }
  66%,
  99% {
    background-position: 110% 50%;
    opacity: 0;
  }
}

@keyframes mainVisualUspShine {
  0%,
  100% {
    background-position: 110% 50%;
    opacity: 0;
  }
  4% {
    background-position: 110% 50%;
    opacity: .75;
  }
  22% {
    background-position: -10% 50%;
    opacity: .75;
  }
  26% {
    background-position: -10% 50%;
    opacity: 0;
  }
  36% {
    background-position: 110% 50%;
    opacity: 0;
  }
  40% {
    background-position: 110% 50%;
    opacity: .75;
  }
  58% {
    background-position: -10% 50%;
    opacity: .75;
  }
  62% {
    background-position: -10% 50%;
    opacity: 0;
  }
  66%,
  99% {
    background-position: 110% 50%;
    opacity: 0;
  }
}

@-webkit-keyframes mainVisualScale {
  from {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes mainVisualScale {
  from {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.mapArea {
  position: relative;
}

@media screen and (min-width: 769px) {
  .mapArea {
    margin: 0 calc((100vw - 1040px) / -2);
  }
}

@media screen and (min-width: 769px) {
  .mapArea .flowIcon {
    height: 115px;
    left: calc(((100vw - 1040px) / 2) - 170px);
    top: -40px;
    width: 359px;
  }
}

@media (max-width: 768px) {
  .mapArea .flowIcon {
    right: 0;
    top: -50px;
  }
}

@media screen and (min-width: 769px) {
  .mapArea .caption {
    text-align: end;
  }
}

@media (max-width: 768px) {
  .mapArea .caption {
    margin-top: 40px;
  }
}

@media screen and (min-width: 769px) {
  .outlineArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 769px) {
  .outlineArea__tab {
    width: 320px;
  }
}

@media screen and (min-width: 769px) {
  .outlineArea__tab .tabBtnList__item {
    width: 100%;
  }
  .outlineArea__tab .tabBtnList__item + .tabBtnList__item {
    margin-top: 45px;
  }
}

@media (max-width: 768px) {
  .outlineArea__tab .tabBtnList__item {
    width: 50%;
  }
}

@media screen and (min-width: 769px) {
  .outlineArea__item {
    min-height: 260px;
    width: 680px;
  }
}

@media (max-width: 768px) {
  .outlineArea__item {
    margin-top: 40px;
    min-height: 300px;
  }
}

.outlineItem {
  position: relative;
}

@media screen and (min-width: 769px) {
  .outlineItem {
    opacity: 0;
  }
  .outlineItem .outlineList,
  .outlineItem .equipmentList {
    max-height: 0;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .outlineItem {
    max-height: 0;
    overflow: hidden;
  }
}

@media screen and (min-width: 769px) {
  .outlineItem.is-active {
    opacity: 1;
  }
  .outlineItem.is-active .outlineList,
  .outlineItem.is-active .equipmentList {
    max-height: 900px;
  }
  .outlineItem.is-active .outlineList {
    -webkit-transition: .4s ease;
    transition: .4s ease;
  }
  .outlineItem.is-active .equipmentList {
    -webkit-transition: 1s ease;
    transition: 1s ease;
  }
}

@media (max-width: 768px) {
  .outlineItem.is-active {
    max-height: 2000px;
    -webkit-transition: 1s ease;
    transition: 1s ease;
  }
}

@media screen and (min-width: 769px) {
  .outlineItem.is-active .toLowBtn {
    right: 0;
    top: -92px;
  }
}

@media (max-width: 768px) {
  .outlineItem.is-active .toLowBtn {
    margin-top: 40px;
  }
}

.outlineList__item {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  color: #cccccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 300;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 769px) {
  .outlineList__item {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .outlineList__item {
    font-size: 12px;
  }
}

@media screen and (min-width: 769px) {
  .outlineList__item + .outlineList__item {
    margin-top: 2px;
  }
}

@media (max-width: 768px) {
  .outlineList__item + .outlineList__item {
    margin-top: 1px;
  }
}

.outlineList__item .ttl {
  background-color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

.outlineList__item .ttl:before {
  content: '';
  margin-top: calc((1 - 1) * .5em);
}

.outlineList__item .ttl:after {
  margin-bottom: calc((1 - 1) * .5em);
}

.outlineList__item .ttl:before, .outlineList__item .ttl:after {
  content: '';
  display: block;
  height: 0;
  width: 0;
}

@media screen and (min-width: 769px) {
  .outlineList__item .ttl {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 15px 0;
    text-align: center;
    width: 160px;
  }
}

@media (max-width: 768px) {
  .outlineList__item .ttl {
    padding: 10px;
    width: 93px;
  }
}

.outlineList__item .cont {
  background-color: rgba(255, 255, 255, 0.04);
  letter-spacing: .14em;
}

@media screen and (min-width: 769px) {
  .outlineList__item .cont {
    padding: 15px 20px;
    width: 518px;
    line-height: 1.66667;
  }
  .outlineList__item .cont:before {
    content: '';
    margin-top: calc((1 - 1.66667) * .5em);
  }
  .outlineList__item .cont:after {
    margin-bottom: calc((1 - 1.66667) * .5em);
  }
  .outlineList__item .cont:before, .outlineList__item .cont:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media (max-width: 768px) {
  .outlineList__item .cont {
    padding: 10px 15px 10px 10px;
    width: 200px;
    line-height: 1.66667;
  }
  .outlineList__item .cont:before {
    content: '';
    margin-top: calc((1 - 1.66667) * .5em);
  }
  .outlineList__item .cont:after {
    margin-bottom: calc((1 - 1.66667) * .5em);
  }
  .outlineList__item .cont:before, .outlineList__item .cont:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

.pointSlider {
  position: relative;
}

@media screen and (min-width: 769px) {
  .pointSlider {
    margin: -50px calc((100vw - 1040px) / -2) 0 0;
    overflow: hidden;
    padding-top: 90px;
  }
}

.pointSlider.sai-animate .pointCard__photo {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

@media screen and (min-width: 769px) {
  .pointSlider.sai-animate .pointCard__photo .photo {
    -webkit-transform: scale(1) translateX(0);
            transform: scale(1) translateX(0);
  }
}

.pointSlider__inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .pointSlider__inner {
    margin-left: -40px;
    width: 375px;
  }
}

@media screen and (min-width: 769px) {
  .pointSlider .flowIcon {
    height: 150px;
    left: 830px;
    top: 0;
    width: 375px;
  }
}

@media (max-width: 768px) {
  .pointSlider .flowIcon {
    right: -20px;
    top: -60px;
  }
}

.pointSlider__controlsWrap {
  position: relative;
}

@media screen and (min-width: 769px) {
  .pointSlider__controlsWrap {
    margin-top: 23px;
    width: 1040px;
  }
}

@media (max-width: 768px) {
  .pointSlider__controlsWrap {
    margin-top: 35px;
  }
}

.pointSlider__controls {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.pointSlider__controls .sliderNavBtn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border: 1px solid #aaaaaa;
  border-radius: 16px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media screen and (min-width: 769px) {
  .pointSlider__controls .sliderNavBtn {
    gap: 8px;
    height: 32px;
    width: 110px;
  }
}

@media (max-width: 768px) {
  .pointSlider__controls .sliderNavBtn {
    gap: 23px;
    height: 35px;
    width: 125px;
  }
}

@media screen and (min-width: 769px) {
  .pointSlider__controls .sliderNavBtn:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: #888888;
  }
}

@media (hover: hover) and (pointer: fine) {
  .pointSlider__controls .sliderNavBtn:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: #888888;
  }
}

.pointSlider__controls .sliderNavBtn:focus-visible {
  outline: 2px solid #c8102e;
  outline-offset: 2px;
}

.pointSlider__controls .sliderNavBtn:disabled, .pointSlider__controls .sliderNavBtn.swiper-button-disabled {
  cursor: not-allowed;
  opacity: .4;
}

@media screen and (min-width: 769px) {
  .pointSlider__controls .sliderNavBtn:disabled:hover, .pointSlider__controls .sliderNavBtn.swiper-button-disabled:hover {
    background: transparent;
    border-color: #aaaaaa;
  }
}

@media (hover: hover) and (pointer: fine) {
  .pointSlider__controls .sliderNavBtn:disabled:hover, .pointSlider__controls .sliderNavBtn.swiper-button-disabled:hover {
    background: transparent;
    border-color: #aaaaaa;
  }
}

.pointSlider__controls .sliderNavBtn__txt {
  color: #31363d;
  font-family: "Libre Caslon Display", serif;
  letter-spacing: .05em;
  line-height: .8;
}

@media screen and (min-width: 769px) {
  .pointSlider__controls .sliderNavBtn__txt {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .pointSlider__controls .sliderNavBtn__txt {
    font-size: 13px;
  }
}

.pointSlider__controls .sliderNavBtn .arrowSVG {
  display: block;
}

@media screen and (min-width: 769px) {
  .pointSlider__controls .sliderNavBtn .arrowSVG {
    height: 11px;
    width: 24px;
  }
}

@media (max-width: 768px) {
  .pointSlider__controls .sliderNavBtn .arrowSVG {
    height: 13px;
    width: 30px;
  }
}

.pointSlider__controls .sliderNavBtn--prev {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (min-width: 769px) {
  .pointSlider__controls .sliderNavBtn--prev {
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .pointSlider__controls .sliderNavBtn--prev {
    padding-right: 15px;
  }
}

.pointSlider__controls .sliderNavBtn--next {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (min-width: 769px) {
  .pointSlider__controls .sliderNavBtn--next {
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .pointSlider__controls .sliderNavBtn--next {
    padding-left: 15px;
  }
}

.pointSlider .sliderAutoplay {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media screen and (min-width: 769px) {
  .pointSlider .sliderAutoplay {
    bottom: 0;
    position: absolute;
    right: 190px;
  }
}

@media (max-width: 768px) {
  .pointSlider .sliderAutoplay {
    margin-left: auto;
    margin-top: 20px;
  }
}

@media screen and (min-width: 769px) {
  .pointSlider .sliderAutoplay:hover .sliderAutoplay__icon {
    opacity: .7;
  }
}

@media (hover: hover) and (pointer: fine) {
  .pointSlider .sliderAutoplay:hover .sliderAutoplay__icon {
    opacity: .7;
  }
}

.pointSlider .sliderAutoplay:focus-visible {
  outline: 2px solid #c8102e;
  outline-offset: 2px;
}

.pointSlider .sliderAutoplay__icon {
  display: block;
  -webkit-filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.05));
          filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.05));
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

@media screen and (min-width: 769px) {
  .pointSlider .sliderAutoplay__icon {
    height: 28px;
    width: 28px;
  }
}

@media (max-width: 768px) {
  .pointSlider .sliderAutoplay__icon {
    height: 23px;
    width: 23px;
  }
}

.pointSlider .sliderAutoplay__icon--paused {
  display: none;
}

.pointSlider .sliderAutoplay__txt {
  color: #31363d;
  font-family: "Libre Caslon Display", serif;
  font-size: 10px;
  letter-spacing: .05em;
  line-height: 1;
  white-space: nowrap;
}

@media screen and (min-width: 769px) {
  .pointSlider .sliderAutoplay__txt {
    left: 100%;
    margin-left: 8px;
    position: absolute;
  }
}

@media (max-width: 768px) {
  .pointSlider .sliderAutoplay__txt {
    margin-left: 10px;
  }
}

.pointSlider .sliderAutoplay__txt--paused {
  display: none;
}

.pointSlider .sliderAutoplay[data-playing="false"] .sliderAutoplay__icon--playing {
  display: none;
}

.pointSlider .sliderAutoplay[data-playing="false"] .sliderAutoplay__icon--paused {
  display: block;
}

.pointSlider .sliderAutoplay[data-playing="false"] .sliderAutoplay__txt--playing {
  display: none;
}

.pointSlider .sliderAutoplay[data-playing="false"] .sliderAutoplay__txt--paused {
  display: block;
}

.pointCard__photo {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  position: relative;
}

@media screen and (min-width: 769px) {
  .pointCard__photo {
    -webkit-transition: -webkit-clip-path 1.25s cubic-bezier(0, 0.95, 0.29, 1);
    transition: -webkit-clip-path 1.25s cubic-bezier(0, 0.95, 0.29, 1);
    transition: clip-path 1.25s cubic-bezier(0, 0.95, 0.29, 1);
    transition: clip-path 1.25s cubic-bezier(0, 0.95, 0.29, 1), -webkit-clip-path 1.25s cubic-bezier(0, 0.95, 0.29, 1);
  }
}

@media (max-width: 768px) {
  .pointCard__photo {
    -webkit-transition: -webkit-clip-path 1s cubic-bezier(0, 0.95, 0.29, 1);
    transition: -webkit-clip-path 1s cubic-bezier(0, 0.95, 0.29, 1);
    transition: clip-path 1s cubic-bezier(0, 0.95, 0.29, 1);
    transition: clip-path 1s cubic-bezier(0, 0.95, 0.29, 1), -webkit-clip-path 1s cubic-bezier(0, 0.95, 0.29, 1);
  }
}

@media screen and (min-width: 769px) {
  .pointCard__photo .photo {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transition: -webkit-transform 1.25s ease;
    transition: -webkit-transform 1.25s ease;
    transition: transform 1.25s ease;
    transition: transform 1.25s ease, -webkit-transform 1.25s ease;
  }
}

.pointCard__lead {
  letter-spacing: 0;
}

@media screen and (min-width: 769px) {
  .pointCard__lead {
    font-size: 18px;
    margin-top: 30px;
    line-height: 1.55556;
  }
  .pointCard__lead:before {
    content: '';
    margin-top: calc((1 - 1.55556) * .5em);
  }
  .pointCard__lead:after {
    margin-bottom: calc((1 - 1.55556) * .5em);
  }
  .pointCard__lead:before, .pointCard__lead:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media (max-width: 768px) {
  .pointCard__lead {
    font-size: 17px;
    margin-top: 30px;
    line-height: 1.52941;
  }
  .pointCard__lead:before {
    content: '';
    margin-top: calc((1 - 1.52941) * .5em);
  }
  .pointCard__lead:after {
    margin-bottom: calc((1 - 1.52941) * .5em);
  }
  .pointCard__lead:before, .pointCard__lead:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

.toLowBtn {
  z-index: 2;
}

@media screen and (min-width: 769px) {
  .toLowBtn {
    position: absolute;
    right: 0;
    width: 360px;
  }
}

@media (max-width: 768px) {
  .toLowBtn {
    margin-top: 45px;
  }
  .toLowBtn + .toLowBtn {
    margin-top: 25px;
  }
}

@media screen and (min-width: 769px) {
  .toLowBtn--roomplan {
    top: 0;
  }
}

@media screen and (min-width: 769px) {
  .toLowBtn--gallery {
    top: 0;
  }
}

@media screen and (min-width: 769px) {
  .toLowBtn--map {
    top: 0;
  }
}

@media screen and (min-width: 769px) {
  .toLowBtn--outline {
    top: 120px;
  }
}

@media screen and (min-width: 769px) {
  .top-point {
    padding-top: 130px;
  }
}

@media (max-width: 768px) {
  .top-point {
    padding-top: 100px;
  }
}

@media screen and (min-width: 769px) {
  .top-recommend {
    padding-top: 130px;
  }
}

@media (max-width: 768px) {
  .top-recommend {
    padding-top: 100px;
  }
}

@media screen and (min-width: 769px) {
  .top-map {
    padding: 130px 0;
  }
}

@media (max-width: 768px) {
  .top-map {
    padding: 100px 0;
  }
}
