@charset "UTF-8";

@keyframes horizontal-slide-animation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

:root {
  --c-base: #333333;
  --c-main: #009FA8;
  --c-bg: #F5F5F5;

  --f-base: "meiryo", sans-serif;
  --f-en: "roboto-condensed-light", sans-serif;
  
  --radius: calc(infinity * 1px);
  --transition-def: 0.5s ease;
  
  --index-menu: 90;
  --index-header: 99;
  --index-modal: 999;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -ms-scroll-chaining: none;
  position: relative;
  height: 100%;
  height: -webkit-fill-available;
  overscroll-behavior: none;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  color: var(--c-base);
  font-size: 16px;
  line-height: normal;
  font-family: var(--f-base);
  letter-spacing: 0.05em;
}

body.fixed {
  overflow: hidden;
}

section {
  position: relative;
  padding: 100px 0;
}

main {
  position: relative;
}

img,
iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

a,
button,
select {
  cursor: pointer;
}

a[disabled],
button[disabled],
select[disabled] {
  pointer-events: none !important;
}

a,
button,
select,
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  color: var(--c-base);
  font-size: 1.6rem;
  font-family: var(--f-base);
  text-align: left;
}

a {
  -webkit-transition: var(--transition-def);
  display: block;
  text-decoration: none;
  word-break: break-all;
  transition: var(--transition-def);
}

span,
sub,
sup {
  font-weight: inherit;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-inner.--narrow {
  max-width: 1040px;
}

.l-inner.--wide {
  max-width: 1240px;
}

.js-page-link {
  scroll-margin-top: 200px;
}

.u-ib {
  display: inline-block;
}

.u-caution {
  color: var(--c-accent);
}

.u-hide {
  clip: rect(0, 0, 0, 0);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  white-space: nowrap;
}

.c-scroll-contents {
  scroll-margin-top: 100px;
}

.c-title01 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.c-title01::before {
  content: '';
  background: url(../img/icon-star.svg) no-repeat center / contain;
  width: 102px;
  height: 20px;
}

.c-title01__en {
  font-family: var(--f-en);
  font-size: 6.0rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.c-title01__jp {
  color: var(--c-main);
  font-size: 1.6rem;
  font-weight: 700;
}

.c-title01.--white .c-title01__en,
.c-title01.--white .c-title01__jp {
  color: #fff;
}

.c-pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.40);
  border-radius: 10px 0 0 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
  color: transparent;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-def);
}

.c-pagetop::after {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-top: solid 5px #fff;
  border-left: solid 5px #fff;
  transform: rotate(45deg);
  width: 20px;
  height: 20px;
}

.c-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--index-header);
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
}

.l-header__logo {
  background-color: rgba(0, 0, 0, 0.50);
  border-radius: 0 0 20px 0;
  display: grid;
  align-items: center;
  grid-template-columns: 190px 170px;
  padding: 20px;
  height: 120px;
}

.l-header__btn {
  background-color: var(--c-main);
  border-radius: 0 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60px;
  height: 60px;
}

.l-header__btn-inn {
  position: relative;
  width: 26px;
  height: 18px;
}

.l-header__btn-inn::before,
.l-header__btn-inn::after {
  content: '';
  background-color: #fff;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
}

.l-header__btn-inn::before {
  top: 0;
}

.l-header__btn-inn::after {
  bottom: 0;
}

.l-header__btn-inn .line {
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
}

.l-header.is-open .l-header__logo {
  background-color: transparent;
}

.l-header.is-open .l-header__btn {
  background-color: rgba(0, 0, 0, 0.40);
}

.l-header.is-open .l-header__btn-inn .line {
  display: none;
}

.l-header.is-open .l-header__btn-inn::before {
  transform: rotate(45deg);
  top: 8px;
}

.l-header.is-open .l-header__btn-inn::after {
  transform: rotate(-45deg);
  bottom: 8px;
}

.l-footer {
  background-color: var(--c-main);
  padding: 50px 0 40px;
}

.l-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.l-footer__nav a {
  color: #fff;
  font-size: 1.4rem;
}

.l-footer__logo {
  margin: 40px auto 10px;
  width: 230px;
}

.l-footer__copy {
  color: #fff;
  font-size: 1.0rem;
  text-align: center;
  opacity: 0.6;
}

.p-home-mv {
  position: relative;
}

.p-home-mv__title {
  position: absolute;
  bottom: 54px;
  left: 60px;
  max-width: 440px;
  width: 100%;
  z-index: 1;
}

.p-home-mv .splide {
  min-height: 720px;
}

.p-home-mv .splide__slide {
  min-height: 720px;
}

.p-home-mv .splide__slide img {
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 5.9s linear;
}

.p-home-mv .splide__slide.is-active img {
  transform: scale(1.1);
}

.p-home-mv .splide__arrow--prev {
  left: 0;
}

.p-home-mv .splide__arrow--next {
  right: 0;
}

.p-home-mv .splide__arrow {
  border-radius: 0;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.40);
  opacity: 1 !important;
}

.p-home-mv .splide__arrow svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}

.p-home-mv .splide__pagination {
  bottom: 20px;
}

.p-home-mv .splide__pagination li {
  margin: 0 5px;
}

.p-home-mv .splide__pagination__page {
  background: #fff;
  margin: 4px;
  position: relative;
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.p-home-mv .splide__pagination__page::after {
  content: '';
  border-radius: 50%;
  background-color: transparent;
  border: solid 1px #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180%;
  height: 180%;
  opacity: 0;
}

.p-home-mv .splide__pagination__page.is-active {
  transform: scale(1);
  background: #fff;
  opacity: 1;
}

.p-home-mv .splide__pagination__page.is-active::after {
  opacity: 1;
}

.p-home-about {
  background-color: var(--c-main);
  overflow: hidden;
}

.p-home-about::before {
  content: '';
  background: url(../img/pattern-line-left.webp) no-repeat center / cover;
  position: absolute;
  top: -58px;
  left: 0;
  width: 543px;
  height: 1250px;
  mix-blend-mode: soft-light;
  z-index: 0;
}

.p-home-about::after {
  content: '';
  background: url(../img/pattern-line-right.webp) no-repeat center / cover;
  position: absolute;
  top: -168px;
  right: 0;
  width: 480px;
  height: 1224px;
  mix-blend-mode: soft-light;
  z-index: 0;
}

.p-home-about .l-inner {
  z-index: 1;
}

.p-home-about__txt {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
}

.p-home-slide {
  position: relative;
  overflow: hidden;
}

.p-home-slide__inner {
  display: flex;
  width: calc((100% / 3.5) * 8);
  animation: horizontal-slide-animation 30s linear infinite;
}

.p-home-slide__list {
  display: flex;
}

.p-home-slide__list li {
  width: calc(100% / 3.5);
}

.p-home-facilities__list-item {
  border-radius: 20px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-home-facilities__list-item + .p-home-facilities__list-item {
  margin-top: 30px;
}

.p-home-facilities__slide .splide__arrow {
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.40);
  width: 40px;
  height: 40px;
}

.p-home-facilities__slide .splide__arrow--prev {
  left: 0;
}

.p-home-facilities__slide .splide__arrow--next {
  right: 0;
}

.p-home-facilities__slide .splide__arrow svg {
  fill: #fff;
}

.p-home-facilities__slide .splide__pagination {
  bottom: 20px;
}

.p-home-facilities__slide .splide__pagination li {
  margin: 0 5px;
}

.p-home-facilities__slide .splide__pagination__page {
  background: #ddd;
  margin: 4px;
  position: relative;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.p-home-facilities__slide .splide__pagination__page::after {
  content: '';
  border-radius: 50%;
  background-color: transparent;
  border: solid 1px #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180%;
  height: 180%;
  opacity: 0;
}

.p-home-facilities__slide .splide__pagination__page.is-active {
  transform: scale(1);
  background: #fff;
}

.p-home-facilities__slide .splide__pagination__page.is-active::after {
  opacity: 1;
}

.p-home-facilities__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 50px 50px 58px;
  position: relative;
}

.p-home-facilities__link::after {
  content: '';
  background: url(../img/icon-arrow.svg) no-repeat center / cover;
  position: absolute;
  bottom: 50px;
  right: 40px;
  width: 44px;
  height: 44px;
}

.p-home-facilities__link .tag {
  background-color: var(--c-main);
  border-radius: var(--radius);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 2px 20px 1px;
  margin-bottom: 25px;
  width: max-content;
}

.p-home-facilities__link .title {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

.p-home-facilities__link .tel {
  margin-top: 5px;
}

.p-home-facilities__link .caution {
  color: var(--c-main);
  font-weight: 700;
  margin-top: 5px;
}

.p-home-facilities__btn {
  margin: 80px auto 0;
  max-width: 970px;
}

.p-home-facilities__btn a {
  background-color: var(--c-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  padding: 21px;
  width: 100%;
}

.p-home-facilities__btn a + a {
  margin-top: 10px;
}

.p-home-facilities__btn a::after {
  content: '';
  background: url(../img/icon-blank.svg) no-repeat center / contain;
  width: 14px;
  height: 14px;
}

.p-home-brand {
  background-color: var(--c-bg);
}

.p-home-brand__btn {
  background-color: var(--c-main);
  border-radius: var(--radius);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  padding: 21px;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.p-home-brand__btn::after {
  content: '';
  background: url(../img/icon-blank.svg) no-repeat center / contain;
  width: 14px;
  height: 14px;
}

.p-home-brand__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px auto 0;
  max-width: 900px;
}

@media screen and (min-width: 641px) {
  .u-sm-min {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .u-md-min {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .l-header__nav-contents {
    background-color: var(--c-main);
    border-radius: 0 0 0 20px;
    padding: 0 20px;
  }
  
  .l-header__nav-list {
    display: flex;
    align-items: center;
  }

  .l-header__nav-list a {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    display: grid;
    grid-template-columns: 20px auto;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
  }
  
  .u-lg-min {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }

  a,
  button,
  select,
  input {
    font-size: 1.4rem;
  }

  .u-lg-max {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .c-title01 {
    gap: 10px;
    margin-bottom: 30px;
  }

  .c-title01::before {
    width: 72px;
  }

  .c-title01__en {
    font-size: 4.5rem;
  }

  .c-title01__jp {
    font-size: 1.4rem;
  }

  .l-header__logo {
    grid-template-columns: 115px 104px;
    padding: 10px;
    height: 74px;
  }

  .l-header__nav {
    background-color: var(--c-main);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-def);
  }

  .l-header__nav::before {
    content: '';
    background: url(../img/pattern-header.webp) no-repeat center / cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    mix-blend-mode: soft-light;
  }
  
  .l-header__nav-contents {
    padding: 140px 0 100px;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
  }

  .l-header__nav-item + .l-header__nav-item {
    margin-top: 40px;
  }

  .l-header__nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .l-header__nav-item a .en {
    color: #fff;
    font-family: var(--f-en);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
  }

  .l-header__nav-item a .jp {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    opacity: 0.6;
  }

  .l-header__sub {
    margin-top: 40px;
  }

  .l-header__sub-item + .l-header__sub-item {
    margin-top: 10px;
  }

  .l-header__sub-item a {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
  }

  .l-header__nav-logo {
    margin: 40px auto 0;
    width: 164px;
  }

  .l-header__nav-copy {
    color: #fff;
    font-size: 1.2rem;
    line-height: 2;
    text-align: center;
    opacity: 0.6;
  }

  .l-header.is-open .l-header__nav {
    opacity: 1;
    visibility: visible;
  }

  .l-footer__nav {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 15px;
  }

  .l-footer__logo {
    width: 130px;
  }

  .p-home-mv__title {
    bottom: 88px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
  }

  .p-home-mv .splide__arrow {
    width: 40px;
    height: 40px;
  }

  .p-home-mv .splide__arrow svg {
    width: 20px;
    height: 20px;
  }

  .p-home-mv .splide__pagination {
    bottom: 40px;
  }

  .p-home-about__txt {
    font-size: 1.4rem;
  }

  .p-home-slide__inner {
    width: calc((100% / 2) * 8);
  }

  .p-home-slide__list li {
    width: calc(100% / 2);
  }

  .p-home-facilities__list-item {
    grid-template-columns: 1fr;
  }

  .p-home-facilities__list-item + .p-home-facilities__list-item {
    margin-top: 20px;
  }

  .p-home-facilities__link {
    padding: 20px;
  }

  .p-home-facilities__link .tag {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding: 1px 15px 0;
  }

  .p-home-facilities__link .title {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
  
  .p-home-facilities__link .tel {
    margin-top: 5px;
  }

  .p-home-facilities__link::after {
    margin: 10px 0 0 auto;
    position: relative;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 35px;
  }

  .p-home-facilities__btn {
    margin: 50px auto 0;
  }

  .p-home-facilities__btn a {
    font-size: 1.4rem;
  }

  .p-home-brand__btn {
    font-size: 1.4rem;
    max-width: 295px;
  }

  .p-home-brand__list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px auto 0;
    padding: 0 20px;
  }

  .u-md-max {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .u-sm-max {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .l-header__nav-list a:hover {
    opacity: 0.6;
  }

  .p-home-facilities__link:hover {
    opacity: 0.8;
  }

  .p-home-facilities__btn a:hover,
  .p-home-brand__btn:hover,
  .l-footer__nav-item a:hover {
    opacity: 0.6;
  }
}