﻿@charset "utf-8";
/*--------------------------------------------------------------------------------

  main visual

--------------------------------------------------------------------------------*/
.mv {
  width: calc(100% - var(--side-space));
  box-sizing: border-box;
  aspect-ratio: 4 / 3;
  border-radius: 0 0 var(--rd-1h) var(--rd-1h);
  overflow: hidden;
  margin-inline: auto;
  position: relative;
  display: grid;
  justify-items: center;
  grid-template-columns: minmax(var(--side-space), 1fr) minmax(0, calc(var(--base-width) * 1px)) minmax(var(--side-space), 1fr);
}
@media (min-width: 761px) { .mv { max-height: 720px; } }
@media (max-width: 760px) { .mv { min-height: 280px; margin-top: calc(var(--side-space) / 2); } }
.mv a { pointer-events: auto; }
.mv a, .mv a:hover { text-decoration: none; }

/*--------------------------------------------------------------------------------
  .mv_catch
--------------------------------------------------------------------------------*/
.mv_catch {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  text-align: center;
}

/* setting */
.mv:has(.mv_catch) .mv-slider_item img { filter: brightness(90%); }
.mv_catch {
  line-height: var(--line-height-s);
  text-shadow: 5px 5px 30px rgba(0,0,0,0.3);
  font-family: var(--ff-go);
  font-weight: 600;
  color: #FFF;
  font-size: min(calc(1.5vw + var(--fs-n)), var(--fs-3l));
}
.mv_catch .txt-main {
  font-size: var(--fs-l);
}
.mv_catch .txt-sub {
  font-size: var(--fs-3s);
  padding-top: 1rem;
  font-weight: 500;
}

/* .mv > .mv_catch
----------------------------------------*/
.mv > .mv_catch {
  width: 100%;
  pointer-events: none;
  grid-area: 1 / 2 / 2 / 3;
}

/* .mv-slider_item > .mv_catch
----------------------------------------*/
.mv-slider_item:has(.mv_catch) {
  display: grid;
  align-items: center;
  text-align: center;
  padding: 0 var(--side-space);
}
.mv-slider_item:has(.mv_catch) img {
  position: absolute;
  left: 0;
  top: 0;
}

/*--------------------------------------------------------------------------------
  .mv-slider
--------------------------------------------------------------------------------*/
.mv-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  grid-area: 1 / 1 / 2 / 4;
}
.mv-slider_item { position: relative; }
.mv-slider_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* start animation(fade)
----------------------------------------*/
.mv { --mv-start-fade-speed: 2s; }
.mv-slider { opacity: 0; }
.mv-slider.slick-initialized {
  opacity: 1;
  animation: mv-start-fade var(--mv-start-fade-speed) var(--cubic-bezier) forwards;
}
@keyframes mv-start-fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* animation(zoom)
----------------------------------------*/
.mv { --mv-zoom-speed: 20s; --mv-zoom-scale: 1.1; }

/* zoomin */
.mv[data-animation="zoomin"] .mv-slider_item img { transform: scale(1); }
.mv[data-animation="zoomin"] .mv-slider_item.is-active img { animation: mv-zoomin-img var(--mv-zoom-speed) var(--cubic-bezier) forwards; }
@keyframes mv-zoomin-img {
  0% { transform: scale(1) rotate(0.1deg); }
  100% { transform: scale(var(--mv-zoom-scale)) rotate(0.1deg); }
}

/* zoomout */
.mv[data-animation="zoomout"] .mv-slider_item img { transform: scale(1.1); }
.mv[data-animation="zoomout"] .mv-slider_item.is-active img { animation: mv-zoomout_img var(--mv-zoom-speed) var(--cubic-bezier) forwards; }
@keyframes mv-zoomout_img {
  0% { transform: scale(var(--mv-zoom-scale)) rotate(0.1deg); }
  100% { transform: scale(1) rotate(0.1deg); }
}

/* animation(slide)
----------------------------------------*/
.mv { --mv-slide-speed: 1.2s; }
.mv[data-item-animation^="slide"] .mv-slider_item { opacity: 1 !important; }

/* slide-left */
.mv[data-item-animation="slide-left"] .mv-slider_item.is-active:not(.is-first) {
  clip-path: inset(0 100% 0 0);
  animation: mv-slide-left var(--mv-slide-speed) var(--cubic-bezier) forwards;
}
@keyframes mv-slide-left {
  0% { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0); }
}

/* slide-right  */
.mv[data-item-animation="slide-right"] .mv-slider_item.is-active:not(.is-first) {
  clip-path: inset(0 0 0 100%);
  animation: mv-slide-right var(--mv-slide-speed) var(--cubic-bezier) forwards;
}
@keyframes mv-slide-right {
  0% { clip-path: inset(0 0 0 100%); }
  100% { clip-path: inset(0%); }
}

/* slide-top */
.mv[data-item-animation="slide-top"] .mv-slider_item.is-active:not(.is-first) {
  clip-path: inset(0 0 100% 0);
  animation: mv-slide-top var(--mv-slide-speed) var(--cubic-bezier) forwards;
}
@keyframes mv-slide-top {
  0% { clip-path: inset(0 0 100% 0); }
  100% { clip-path: inset(0); }
}

/* slide-bottom */
.mv[data-item-animation="slide-bottom"] .mv-slider_item.is-active:not(.is-first) {
  clip-path: inset(100% 0 0 0);
  animation: mv-slide-bottom var(--mv-slide-speed) var(--cubic-bezier) forwards;
}
@keyframes mv-slide-bottom {
  0% { clip-path: inset(100% 0 0 0); }
  100% { clip-path: inset(0); }
}

/*--------------------------------------------------------------------------------
  .mv_dots
--------------------------------------------------------------------------------*/
.mv_dots {
  grid-area: 1 / 2 / 2 / 3;
  position: relative;
  z-index: 2;
  justify-self: center;
  align-self: end;
  padding-bottom: 1.5rem;
}

/* default */
/*
.mv_dots .slick-dots { gap: 1rem; }
.mv_dots .slick-dots li { width: 1rem; height: 1rem; }
.mv_dots .slick-dots li button:before { border: 1px solid #FFF; }
.mv_dots .slick-dots li.slick-active button:before { background-color: #FFF; }
*/

/*--------------------------------------------------------------------------------

  feature

--------------------------------------------------------------------------------*/
.sec-feature {
  position: relative;
  padding-top: calc(var(--space-l) - var(--space-m));
  padding-bottom: calc(var(--space-2l) - var(--space-m));
}
.feature {
  position: sticky;
  top: calc(-1 * (var(--space-l) - var(--space-m)));
  left: 0;
  background-color: #FFF;
  padding-top: var(--space-m);
}
.feature_inner {
  border-top: 1px solid var(--color-primary-light);
  padding-top: var(--space-l);
  padding-bottom: calc(var(--space-2l) - var(--space-m));
  display: grid;
  grid-template-rows: auto 1fr;
}
.feature_ttl { line-height: var(--line-height-s); }
@media (min-width: 761px) {
  .feature_inner {
    grid-template-columns: 1fr 2fr;
    gap: var(--space-s) var(--space-l);
  }
  .feature_ttl { grid-area: 1 / 2 / 2 / 3; }
  .feature_img { grid-area: 1 / 1 / 3 / 2; }
  .feature_list { grid-area: 2 / 2 / 3 / 3; }
}
@media (max-width: 760px) {
  .feature_inner {
    grid-template-columns: 2fr 1fr;
    gap: var(--space-l) var(--space-s);
  }
  .feature_ttl { grid-area: 1 / 1 / 2 / 2; display: grid; grid-template-rows: auto 1fr; }
  .feature_img { grid-area: 1 / 2 / 2 / 3; }
  .feature_list { grid-area: 2 / 1 / 3 / 3; }
  .feature_img img:not([src*="01"]) {
    aspect-ratio: 3 / 2;
  }
}
.feature_img {
  border-radius: var(--rd-1);
  overflow: hidden;
}
.feature_img img:not([src*="01"]) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature_img img[src*="01"] {
  width: min(100%, 240px);
}
.feature_img:has(img[src*="01"]) {
  padding: var(--inner-space-m);
  border: 1px solid var(--border-color-light);
  display: grid;
  place-content: center;
  place-items: center;
}
.feature_ttl .ttl {
  font-family: var(--ff-go);
  font-weight: 700;
  font-size: var(--fs-3l);
  margin-bottom: 0.5rem;
}
.feature_ttl .lead {
  font-family: var(--ff-go);
  font-weight: 600;
  font-size: var(--fs-m);
}
.feature_list .point {
  font-weight: bold;
  color: var(--color-secondary);
}

/*--------------------------------------------------------------------------------

  about

--------------------------------------------------------------------------------*/
@media (min-width: 761px) { .about-img { --img-base-width: var(--base-width); --img-height: 480; --img-min-height: 480; } }
@media (max-width: 760px) { .about-img { --img-base-width: 760; --img-height: 480; --img-min-height: 0; } }
.sec-about {
  position: relative;
}
.about-img {
  width: 100%;
  height: clamp(calc(var(--img-min-height) * 1px), calc(var(--img-height) / var(--img-base-width) * 100vw), calc(var(--img-height) * 1px));
  position: sticky;
  top: 0;
  left: 0;
  z-index: -1;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content {
  transform: translateY(1px);
  background-color: #FFF;
  padding: var(--space-2l) 0;
}

/*--------------------------------------------------------------------------------
  .about
--------------------------------------------------------------------------------*/
.about {
  display: grid;
  gap: var(--space-l);
}
@media (min-width: 1001px) {
  .about {
    grid-template-columns: 1fr 2fr;
  }
}
.about_lead {
  display: flex;
  flex-direction: column;
}
.about_txt p {
  padding-bottom: 1.5rem;
}
.about_btn {
  margin-top: var(--space-m);
}
.about_area {
  background-color: var(--bg-quaternary);
  border-radius: var(--rd-q);
  padding: min(var(--inner-space-m), 2rem);
  margin-top: var(--space-l);
}
.about_area .ttl {
  font-family: var(--ff-go);
  font-size: var(--fs-l);
  font-weight: 600;
  color: var(--color-tertiary);
  margin-bottom: 0.5rem;
}
.about_area .btn {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------------------------

  business

--------------------------------------------------------------------------------*/
.sec-business {
  padding: var(--space-2l) 0;
}
@media (min-width: 761px) { .business-list { --col: 3; } }
@media (max-width: 760px) { .business-list { --col: 2; } }
@media (max-width: 500px) { .business-list { --col: 1; } }
.business-list {
  --link-color: var(--txt-color);
  --link-color-hover: var(--color-secondary);
  --link-deco: none;
  --link-deco-hover: none;
  padding: var(--space-l) 0;
  display: grid;
  grid-template-columns: repeat(var(--col), 1fr);
  gap: var(--space-l) var(--space-s);
}
.business-list li,
.business-list a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
.business-list .img img {
  border-radius: var(--rd-q);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}
@media (max-width: 500px) {
  .business-list .img img { aspect-ratio: 2 / 1; }
}
.business-list .txt {
  padding: 1.5rem 0;
  font-size: var(--fs-m);
  font-weight: bold;
  line-height: var(--line-height-s);
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
  position: relative;
}
.business-list .txt:before,
.business-list .txt:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.business-list .txt:before {
  background-color: var(--border-color);
}
.business-list .txt:after {
  background-color: var(--color-primary-light);
  transform-origin: right top;
  transform: scale(0,1);
  transition: transform 0.5s var(--cubic-bezier);
}
@media (hover: hover) {
  .business-list a:hover .txt:after {
    transform-origin: left top;
    transform: scale(1,1);
  }
}
.business-btn { text-align: right; }

/*--------------------------------------------------------------------------------

  price

--------------------------------------------------------------------------------*/
@media (min-width: 761px) { .price-img { --img-base-width: var(--base-width); --img-height: 480; --img-min-height: 480; } }
@media (max-width: 760px) { .price-img { --img-base-width: 760; --img-height: 480; --img-min-height: 0; } }
.sec-price {
  position: relative;
}
.price-img {
  width: 100%;
  height: clamp(calc(var(--img-min-height) * 1px), calc(var(--img-height) / var(--img-base-width) * 100vw), calc(var(--img-height) * 1px));
  position: sticky;
  top: 0;
  left: 0;
  z-index: -1;
}
.price-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.price-content {
  transform: translateY(1px);
  background-color: #FFF;
  padding: var(--space-2l) 0;
}

/*--------------------------------------------------------------------------------
  .price
--------------------------------------------------------------------------------*/
.price {
  position: relative;
  display: grid;
  gap: var(--space-l);
}
@media (min-width: 1001px) {
  .price {
    grid-template-columns: 1fr 2fr;
  }
  .price_ttl {
    position: sticky;
    top: var(--space-m);
    left: 0;
    align-self: start;
    padding-bottom: var(--space-3l);
  }
}
.price_txt p {
  padding-bottom: 1.5rem;
}
.price_btn {
  margin-top: var(--space-m);
}

/*--------------------------------------------------------------------------------
  .price-pay
--------------------------------------------------------------------------------*
.price-pay {
  display: flex;
  align-items: center;
  column-gap: var(--inner-space-m);
  margin-top: var(--space-2l);
  background-color: var(--bg-gray);
  border-radius: var(--rd-q);
  padding: var(--inner-space-m);
}
.price-pay figure {
  order: 2;
  display: block;
  width: 25%;
}
.price-pay figure img {
  width: 100%;
  height: auto;
  max-width: 256px;
}
.price-pay .ttl {
  font-family: var(--ff-go);
  font-size: var(--fs-l);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.price-pay .descripiton {
  width: 75%;
}
@media (max-width:760px) {
  .price-pay {
    flex-wrap: wrap;
    gap: var(--inner-space-m);
  }
  .price-pay figure {
    order: 1;
    width: 100%;
  }
  .price-pay .descripiton {
    width: 100%;
  }
}
