@charset "UTF-8"; /**/
@keyframes scroll {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(7px);
  }
}

.main-img .caption {
  position: absolute;
  top: 18%;
  right: 5%;
  z-index: 3;
  font-family: var(--f-hand);
  font-size: var(--f-m);
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.main-img .catch {
  position: absolute;
  top: 27%;
  left: 10%;
  transform: rotate(-5deg);
  z-index: 3;
}

.main-img .catch h2 {
  font-size: var(--f-xl);
  font-weight: var(--w-r);
  line-height: 1.8;
  font-family: var(--f-hand);
}

.main-img .catch h2 p, .main-img .catch h2 span {
  opacity: 0;
  -webkit-transition: opacity 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s;
  transition: opacity 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s;
}

.main-img .catch h2.active p, .main-img .catch h2.active span {
  opacity: 1;
}

.main-img .catch h2.active p:nth-child(1) {
  transition-delay: 0.6s;
}

.main-img .catch h2.active p:nth-child(1) span:nth-of-type(1) {
  transition-delay: 0.6s;
}

.main-img .catch h2.active p:nth-child(1) span:nth-of-type(2) {
  transition-delay: 1.8s;
  margin-right: -0.5em;
  white-space: nowrap;
  display: inline-block;
}

.main-img .catch h2.active :nth-child(2) span:nth-of-type(1) {
  transition-delay: 3.2s;
}

.main-img .catch h2.active :nth-child(2) span:nth-of-type(2) {
  transition-delay: 4.4s;
  margin-right: -0.5em;
  white-space: nowrap;
  display: inline-block;
}

.main-img .catch h2 p {
  background: rgb(255 255 255 / 90%);
  display: block;
  margin-bottom: 0.5rem;
  width: fit-content;
  line-height: 1;
  padding: 0.5rem;
}

.main-img .catch h2 p:nth-of-type(2) {
  margin-left: 1.5rem;
}

.main-img .en-catch {
  position: absolute;
  right: 6%;
  bottom: 4%;
  gap: 2rem;
  z-index: 3;
  color: var(--c-accent);
  display: flex;
  align-items: center;
  transform-origin: bottom right;
}

.main-img .en-catch > p {
  font-size: calc(var(--f-max) * 1.3);
  font-family: var(--f-cursive);
  line-height: 1;
  padding-left: 3rem;
  text-indent: -3rem;
  white-space: nowrap;
  transform: rotate(-5deg);
}

/*
## メインビジュアル
*/
.wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 15%;
}

.main-img {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: 0 var(--m-fix);
}

@keyframes flashing {
  0% {
    opacity: 0.5;
  }

  15% {
    opacity: 0.7;
  }

  30% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.9;
  }

  70% {
    opacity: 0.5;
  }

  85% {
    opacity: 0.8;
  }

  100% {
    opacity: 0.5;
  }
}

.main-img .loopslide {
  display: flex;
  white-space: nowrap;
  width: auto;
  animation: loopSlide 90s linear infinite;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.main-img .loopslide li {
  position: relative;
  flex: 0 0 auto;
  transition: opacity 1s ease-out;
  height: 70vh;
  aspect-ratio: 1.5 / 3;
  flex-shrink: 0;
  overflow: visible!important;
  box-shadow: 0 30px 30px rgb(110 63 5 / 10%);
  max-width: 450px;
}

.main-img .loopslide li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--m-xxs);
}

@keyframes loopSlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-210vw);
  }
}

.main-img .rotate a {
  display: flex;
  width: 180px;
  min-height: 180px;
  position: relative;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, currentcolor, color-mix(in srgb, currentcolor 0%, transparent));
  border-radius: 50%;
  box-shadow: 0 30px 30px color-mix(in srgb, currentcolor 30%, transparent);
  flex: 1;
}

.main-img .rotate a:hover {
  opacity: 1;
}

.main-img .rotate-text {
  text-align: center;
}

.main-img .rotate-text p {
  font-size: var(--f-m);
  font-weight: var(--w-b);
  line-height: 1.4;
  margin-top: 1.5rem;
  color: var(--c-accent-dark);
  color: #fff;
}

.main-img .rotate-text p span {
  display: block;
  font-size: 80%;
  font-weight: normal;
  margin-bottom: 0.5rem;
}

/*
## メッセージ
*/
.section-message {
}

.section-message .u-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.section-message h2 {
  width: 100%;
}

.section-message .text_box {
  z-index: 1;
  width: fit-content;
  order: 2;
}

.section-message figure {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-right: var(--m-fix);
}

.section-message figure figcaption {
  display: flex;
  font-size: var(--f-r);
  justify-content: center;
  align-items: flex-end;
  line-height: 1.3;
  color: var(--c-muted);
  position: absolute;
  top: 10%;
  left: 63%;
  transform: translate(-50%, -50%) rotate(-10deg);
}

.section-message figure figcaption::before {
  content: "";
  width: 1px;
  align-self: stretch;
  transform: rotate(-25deg);
  transform-origin: left bottom;
  background-color: currentColor;
  margin-right: 5px;
}

.section-message figure figcaption::after {
  content: "";
  width: 1px;
  align-self: stretch;
  transform: rotate(25deg);
  transform-origin: left bottom;
  background-color: currentColor;
}

.section-message figure img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: center right;
  margin-left: auto;
  -webkit-mask-image: linear-gradient(to left, #000000 50%, transparent 90%);
  mask-image: linear-gradient(to left, #000000 50%, transparent 90%);
  border-radius: initial;
}

.section-message .button {
  margin: 3rem auto;
}

.text_box.profile {
  display: flex;
  margin-top: var(--m-xl);
  background: rgb(0 0 0 / 20%);
  flex-basis: 100%;
  border-radius: var(--m-xs);
  overflow: hidden;
  align-items: stretch;
  max-width: 600px;
}

.text_box.profile dl {
  line-height: 1.5;
  padding: 1.5rem;
  flex: 1;
}

.text_box.profile dl dd.name {
  font-size: var(--f-l);
  margin-bottom: var(--m-xs);
}

.text_box.profile dl dd small {
  font-size: var(--f-s);
  margin: 0 var(--m-xs);
}

.text_box.profile dl dd {
  font-size: var(--f-xs);
}

.text_box.profile dl dd strong {
  display: block;
}

/*
## サービスについて
*/
.section-service {
}

.section-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  background: linear-gradient( 180deg, #EDFCFF 0%, #fff 40%);
  z-index: -1;
  margin: 0 var(--m-fix);
}

.section-service h2 {
  width: 100%;
}

.section-service .column > .text_box {
  margin-bottom: var(--m-l);
}

.section-service .text_box {
  width: fit-content;
}

.section-service .splide {
  width: 100%;
  overflow: visible;
}

.section-service .column .button {
  width: 100%;
}

.section-service .menu-list {
  display: flex;
  flex-wrap: wrap;
  margin: auto calc(var(--m-fix) + 2rem);
  gap: 2vmax;
}

.section-service .menu-list .slide {
  border-radius: var(--m-xs);
  flex-basis: calc((100% - 2vmax) / 2);
  display: flex;
  overflow: hidden;
}

.section-service .splide__pagination__page.is-active {
  background: var(--c-accent);
  opacity: 1;
}

.menu-list .slide:nth-child(1) {
  color: #D8669B;
  background: color-mix(in srgb, currentcolor 10%, transparent);
}

.menu-list .slide:nth-child(2) {
  color: #8E5CAB;
  background: color-mix(in srgb, currentcolor 10%, transparent);
}

.menu-list .slide:nth-child(3) {
  color: #119a76;
  background: color-mix(in srgb, currentcolor 10%, transparent);
}

.menu-list .slide:nth-child(4) {
  color: #0668ae;
  background: color-mix(in srgb, currentcolor 10%, transparent);
}

.section-service .menu-list .slide a {
  display: block;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.section-service .menu-list .slide a:hover {
  opacity: 1;
}

.section-service .menu-list .slide figure {
  margin: -1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  position: relative;
  /* aspect-ratio: 4 / 2; */
}

.section-service .menu-list .slide figure img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  -webkit-mask-image: linear-gradient(to bottom, #000000 55%, transparent 97%);
  mask-image: linear-gradient(to bottom, #000000 55%, transparent 97%);
}

.section-service .menu-list .balloon {
  position: relative;
  padding: 0.5rem;
  border: 2px solid currentColor;
  font-weight: bold;
  line-height: 1.3;
  background: #fff;
  border-radius: 3px;
  display: inline-block;
}

.section-service .menu-list .balloon::before, .balloon:after {
  position: absolute;
  transform: rotate(-45deg);
  content: "";
}

.section-service .menu-list .balloon::before {
  border: 7px solid transparent;
  border-bottom-color: currentColor;
  border-left-color: currentColor;
  border-radius: 0 0 0 3px;
  bottom: -7px;
  left: 30px;
}

.section-service .menu-list .balloon::after {
  border: 5px solid transparent;
  border-bottom-color: #fff;
  border-left-color: #fff;
  border-radius: 0 0 0 2px;
  bottom: -5px;
  left: 32px;
}

.section-service .menu-list .title {
  font-weight: var(--w-b);
  min-height: 2.4em;
}

.section-service .menu-list .title small {
  /* font-weight: normal; */
}

.section-service .menu-list .slide .text_box {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-service .menu-list .slide .title small {
  display: block;
}

.section-service .menu-list .slide .text {
  font-size: var(--f-s);
  margin-bottom: var(--m-m);
  line-height: 1.5;
}

.section-service .menu-list .slide .text strong {
  display: block;
  margin-bottom: var(--m-xxs);
}

.section-service .splide__track {
  margin-bottom: 3rem;
  width: 100%;
  overflow: visible;
}

.section-service .menu-list .slide a .mini-link::after {
  content: "";
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s cubic-bezier(0.08, 0.78, 0.08, 0.98);
  z-index: 2;
  display: block;
}

.section-service .menu-list .slide a:hover .mini-link::after {
  transform: scale(1, 1);
}

.section-service .menu-list .slide a .mini-link {
  margin-top: auto;
  position: relative;
  font-size: var(--f-s);
  font-weight: var(--w-m);
  width: 100%;
}

.section-service .menu-list .slide a .mini-link i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px !important;
  line-height: 1;
}

.section-service .menu-list .slide a .mini-link::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: color-mix(in srgb, currentcolor 8%, transparent);
}

.section-shop {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
}

.section-shop a {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: var(--m-xl) var(--m-m);
  border-radius: var(--m-s);
  text-align: center;
  align-items: center;
  gap: 1rem;
}

.section-shop h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.section-shop h3 .title-jp {
  font-size: var(--f-r);
}

.section-shop h3 .title-en {
  font-size: var(--f-max);
  font-family: var(--f-en);
  text-transform: uppercase;
  font-weight: var(--w-b);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: baseline;
  margin: 1rem 0;
}

.section-shop p {
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: -0.5rem;
}

@keyframes verticalScroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.section-service .u-inner {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .gBody {
  }
}

@media screen and (max-width: 767px) {
  .main-img .caption {
    width: 90%;
    left: 5%;
    top: 15%;
  }

  .main-img .catch {
    top: 22%;
    left: 5%;
  }

  .main-img .en-catch {
    flex-direction: column-reverse;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
  }

  .main-img .loopslide {
    animation: loopSlide 40s linear infinite;
    top: 12%;
  }

  .main-img .loopslide li {
    max-width: 70vw;
  }

  .main-img .rotate a {
    width: 150px;
    min-height: 150px;
  }

  .section-message figure {
    height: 400px;
    width: 100vw;
    position: relative;
    margin: 0 var(--m-fix);
    order: -1;
  }

  .section-message figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 80% center;
    -webkit-mask-image: linear-gradient(to bottom, #000000 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000000 50%, transparent 100%);
  }

  .section-message figure figcaption {
    left: 30%;
    top: 15%;
  }

  .section-service .menu-list {
    flex-direction: column;
    flex-wrap: initial;
    margin: initial;
    align-items: initial;
    justify-content: initial;
  }

  .section-service .menu-list .slide {
    flex-basis: initial;
  }
}

@media print {
  .main_img.sticky .slide {
    position: relative!important;
    right: 0px;
  }

  .main_img {
    height: 80vh;
  }

  section.message.sticky.end > figure {
    position: absolute;
    top: initial;
  }

  .message figure {
    max-height: 100%;
  }

  .contents .message {
    padding-top: initial;
  }
}
