@charset "utf-8";


body {
  opacity: 0;
}


.header__content::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 200px;
  background : linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .header__content::after {
    height: 100px;
  }
}


/*  l-kv
--------------------------------------------------*/
.l-kv {
  position: relative;
  width: 100%;
  height: 100lvh;
}
.kv-slide {
  position: absolute;
  inset: 0;
  margin: auto;
}
.kv-slide__box {
  width: 100%;
  height: 100%;
}
.kv-slide__item {
  position: relative;
  transition-property: opacity;
  overflow: hidden;
}
.kv-slide__item__photo {
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(1);
}
.kv-slide__item.swiper-slide-duplicate-active .kv-slide__item__photo,
.kv-slide__item.swiper-slide-prev .kv-slide__item__photo,
.kv-slide__item.swiper-slide-active .kv-slide__item__photo {
  animation: 6s linear slidein 0s normal both;
}
.kv-slide__item__photo img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.kv-ttl {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-inline: auto;
  width: min(90%, 1500px);
  align-items: baseline;
  gap: 18px;
  transition: opacity 1s cubic-bezier(.115,.405,.24,1) .6s;
  opacity: 1;
  z-index: 1;
}
.kv-ttl div {
  width: auto;
  height: 68px;
  height: clamp(34px, calc(68 / 1200 * 100vw), 68px);
}
.kv-ttl img {
  width: auto;
  height: 100%;
}
.kv-ttl em {
  font-size: clamp(16px, calc(24 / 1200 * 100vw), 24px);
  font-weight: 400;
  letter-spacing: .05em;
  color: #fff;
}
@keyframes slidein{ 
  0%{ transform: scale(1); } 
  100%{ transform: scale(1.1); } 
}
@media screen and (max-width: 480px){
  .kv-ttl {
    width: calc(320 / 380 * 100%);
  }
  .kv-ttl div {
    height: 38px;
  }
  .kv-ttl em {
    position: relative;
    font-size: 15px;
    width: 100%;
    padding-left: 30px;
    box-sizing: border-box;
  }
  .kv-ttl em::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: #fff;
  }
}




/*  l-introduction
--------------------------------------------------*/
.l-introduction {
  position: relative;
  width: 100%;
  padding-block: 190px;
  z-index: 1;
}
.introduction-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.introduction-photo img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.introduction-inner {
  gap: 60px;
}
.introduction-ttl {
  width: auto;
  height: 28px;
}
.introduction-ttl img {
  width: auto;
  height: 100%;
}
.introduction-detail {
  width: min(100%,643px);
}
.introduction-detail__heading {
  font-size: clamp(28px, calc(40 / 1200 * 100vw), 40px);
  line-height: 1.75;
  letter-spacing: .1em;
  color: #ffffff;
  margin-top: -.5em;
  margin-bottom: 70px;
}
.introduction-detail__heading rt {
  font-size: 12px;
  letter-spacing: .1em;
  text-align: left;
  padding-bottom: 2px;
}
.introduction-detail__desc {
  font-size: clamp(16px, calc(18 / 1200 * 100vw), 18px);
  line-height: 2.222222222222222;
  letter-spacing: .05em;
  color: #ffffff;
}
.introduction-detail__desc p + p {
  margin-top: 30px;
}
@media screen and (max-width: 1100px) and (min-width: 481px){
  .introduction-inner {
     width: 80%; 
  }
}
@media screen and (max-width: 480px){
  .l-introduction {
    padding-block: 100px 95px;
  }
  .introduction-inner {
    gap: 40px;
    flex-direction: column;
  }
  .introduction-ttl {
    width: auto;
    height: 22px;
  }
  .introduction-detail {
    width: 100%;
  }
  .introduction-detail__heading {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .introduction-detail__heading rt {
    font-size: 8px;
  }
  .introduction-detail__desc {
    font-size: 16px;
    line-height: 2.25;
  }
  .introduction-detail__desc p + p {
    margin-top: 22px;
  }
}




/*  l-catch
--------------------------------------------------*/
.l-catch {
  position: relative;
  width: 100%;
  padding-block: 140px 150px;
}
.catch-txt {
  font-size: 28px;
  line-height: 3.27272727;
  letter-spacing: .4em;
  text-align: center;
}
@media screen and (max-width: 768px){
  .l-catch {
    padding-block: 70px 75px;
  }
  .catch-txt {
    font-size: 18px;
    line-height: 2.5;
    letter-spacing: .3em;
  }
}




/*  contents-sec
--------------------------------------------------*/
.space-contents {
  width: min(100%,1920px);
  margin-inline: auto;
}
.contents-sec {
  position: relative;
  width: 100%;
}
.contents-sec:nth-of-type(odd):before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: calc(1390 / 1920 * 100%);
  height: 100%;
  background: url('../img/img_contents_bg.jpg') no-repeat center center/cover;
  z-index: -1;
}
.contents-sec + .contents-sec {
  margin-top: 200px;
}
.contents-sec__container {
  width: min(95%,1680px);
  gap: 0 clamp(78px, calc(130 / 1920 * 100vw), 130px);
}
.contents-sec:nth-of-type(odd) .contents-sec__container {
  margin-inline: auto 0;
  padding-block: 150px;
}
.contents-sec:nth-of-type(even) .contents-sec__container {
  margin-inline: 0 auto;
  flex-direction: row-reverse;
  justify-content: center;
}
.contents-sec__detail {
  flex: 1;
}
.contents-sec__detail__box {
  width: 100%;
}
.contents-sec__detail__ttl {
  width: auto;
  height: 17px;
  margin-bottom: 20px;
}
.contents-sec__detail__ttl img {
  width: auto;
  height: 100%;
  vertical-align: top;
}
.contents-sec__detail__heading {
  position: relative;
  font-size: clamp(26px, calc(40 / 1500 * 100vw), 40px);
  line-height: 1.5;
  letter-spacing: .1em;
  text-indent: -.1em;
  padding-bottom: clamp(36px, calc(60 / 1680 * 100vw), 60px);
  margin-bottom: clamp(36px, calc(60 / 1680 * 100vw), 60px);
}
.contents-sec__detail__heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(90%, 60px);
  height: 1px;
  background: #beaf85;
}
.contents-sec__detail__desc {
  font-size: clamp(16px, calc(18 / 1680 * 100vw), 18px);
  line-height: 2.222222222222222;
  letter-spacing: .05em;
}
.contents-sec__detail__desc p + p {
  margin-top: 18px;
}
.contents-sec__detail__btn {
  max-width: 280px;
  height: 60px;
  margin-top: clamp(42px, calc(70 / 1680 * 100vw), 70px);
}
.contents-sec__photo {
  position: relative;
  width: calc(1110 / 1680 * 100%);
  overflow: hidden;
}
.contents-sec__photo__item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: scale(1.1);
  transition: transform .8s linear;
}
.contents-sec__photo__item.active {
  transform: scale(1.0);
}
.contents-sec__photo__item img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1200px){
  .contents-sec__detail__ttl {
    height: 12px;
  }
}
@media screen and (max-width: 768px){
  .contents-sec + .contents-sec {
    margin-top: 0;
  }
  .contents-sec:nth-of-type(odd):before {
    width: 100%;
  }
  .contents-sec__container {
    display: block;
    width: 100%;
  }
  .contents-sec:nth-of-type(odd) .contents-sec__container {
    padding-block: 0;
  }
  .contents-sec__detail {
    width: calc(320 / 380 * 100%);
    margin-inline: auto;
    padding-block: 70px 60px;
  }
  .contents-sec__detail__ttl {
    height: 10px;
    margin-bottom: 15px;
  }
  .contents-sec__detail__heading {
    font-size: 28px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .contents-sec__detail__desc {
    font-size: 16px;
    line-height: 2.25;
  }
  .contents-sec__detail__desc p + p {
    margin-top: 22px;
  }
  .contents-sec__photo {
    width: 100%;
  }
}



/*  l-access
--------------------------------------------------*/
.l-access {
  padding-block: 210px 100px;
  background: url('../img/img_access_bg.jpg') no-repeat center center/cover;
}
.access-head {
  margin-bottom: 85px;
}
.access-head__ttl {
  width: auto;
  height: 34px;
  text-align: center;
  margin: 0 auto 85px;
}
.access-head__ttl img {
  width: auto;
  height: 100%;
}
.access-head__desc {
  text-align: center;
}
.access-head__desc__txt {
  font-size: clamp(22px, calc(30 / 1200 * 100vw), 30px);
  line-height: 1.727272727272727;
  letter-spacing: .1em;
  color: #fff;
}
.access-head__desc__txt + .access-head__desc__txt {
  margin-top: 8px;
}
.access-head__desc__txt em {
  font-size: 1.333333333333333em;
  line-height: 1;
}
.access-head__desc__txt i {
  font-size: 1.8em;
  line-height: 1;
  font-style: normal;
}
.access-map {
  max-width: 1100px;
  margin-inline: auto;
}
.access-map__note {
  font-size: 12px;
  letter-spacing: .1em;
  line-height: 1.75;
  color: #fff;
  text-align: right;
  margin-top: 10px;
}
.access-btn {
  max-width: 320px;
  height: 60px;
  margin-inline: auto;
  margin-top: 50px;
}
.access-btn a {
  font-size: clamp(14px, calc(20 / 1200 * 100vw), 20px);
  padding-left: 10px;
  padding-bottom: .1em;
  box-sizing: border-box;
}
@media screen and (max-width: 480px){
  .l-access {
    padding-block: 80px;
  }
  .access-head {
    margin-bottom: 45px;
  }
  .access-head__ttl {
    height: 24px;
    margin: 0 auto 40px;
  }
  .access-head__desc__txt {
    font-size: 22px;
  }
  .access-head__desc__txt + .access-head__desc__txt {
    margin-top: 15px;
  }
  .access-head__desc__txt em {
    font-size: 1em;
  }
  .access-head__desc__txt i {
    font-size: 1em;
  }
  .access-map__note {
    text-align: left;
  }
  .access-btn {
    max-width: 280px;
    margin-top: 40px;
  }
  .access-btn a {
    font-size: 18px;
  }
}



.common-casbee {
    padding-block: 150px 100px;
}
@media screen and (max-width: 480px) {
  .common-casbee {
    padding-block: 80px 80px;
  }
}
