@charset "UTF-8";
/* dramatic viewのアニメーション変数 */
:root {
  --drama-primaryImg-slide-delay: 0s;
  --drama-primaryImg-slide-duration: .8s;
  --drama-secondaryImg-slide-delay: .8s;
  --drama-secondaryImg-slide-duration: .5s;
  --drama-text-delay: 1.3s;
  --drama-text-duration: .8s;
  --drama-transition-timing: cubic-bezier(0.32,0.94,0.6,1);
  --drama-padding-h: 50vh;
}

.dramatic {
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 901px) {
  .dramatic {
    min-height: calc((100vw - 530px) * 972 / 1390);
    padding-left: calc(100vw - 530px);
    margin-top: clamp(0px, 5vw, 120px);
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1400px) {
  .dramatic {
    padding-left: calc(100vw - 430px);
  }
}
@media screen and (max-width: 900px) {
  .dramatic {
    padding-left: 0 !important;
  }
}
.dramatic:last-child {
  margin-bottom: 0;
}
.dramatic img {
  object-fit: cover;
  object-position: center top;
}
.dramatic .primaryImg {
  width: 100%;
  clip-path: inset(0);
  transition: var(--drama-transition-timing) var(--drama-primaryImg-slide-duration);
}
@media screen and (min-width: 901px) {
  .dramatic .primaryImg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 900px) {
  .dramatic .primaryImg {
    aspect-ratio: 4/3;
  }
}
.dramatic .primaryImg img {
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .dramatic .primaryImg img {
    aspect-ratio: unset;
  }
}
@media screen and (max-width: 900px) {
  .dramatic .primaryImg img {
    aspect-ratio: 4/3;
  }
}
.dramatic .secondaryImg {
  transform: translateX(100%);
  opacity: 0;
  max-width: none;
  transition: var(--drama-transition-timing) var(--drama-secondaryImg-slide-duration);
  aspect-ratio: 614/432;
}
@media screen and (min-width: 901px) {
  .dramatic .secondaryImg {
    width: 614px;
    position: absolute;
    top: 40px;
    right: 0;
  }
}
@media screen and (max-width: 1400px) {
  .dramatic .secondaryImg {
    width: 460px;
  }
}
@media screen and (max-width: 900px) {
  .dramatic .secondaryImg {
    position: absolute;
    width: 40vw;
    top: 70.5vw;
    right: 30px;
  }
  .dramatic .secondaryImg img {
    width: 100%;
    aspect-ratio: 4/3;
  }
}
.dramatic .text {
  display: flex;
  flex-direction: column;
  margin-top: 500px;
  padding: 0 clamp(40px, 3.4vw, 100px) 0px;
  gap: 20px;
  opacity: 0;
  transition: var(--drama-transition-timing) var(--drama-text-duration);
}
@media screen and (max-width: 1400px) {
  .dramatic .text {
    margin-top: 380px;
  }
}
@media screen and (max-width: 900px) {
  .dramatic .text {
    margin-top: 0;
    padding: 0 30px 30px;
  }
}
.dramatic .text .title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}
@media screen and (max-width: 900px) {
  .dramatic .text .title {
    font-size: 16px !important;
    margin-bottom: 0 !important;
    flex-direction: column;
    align-items: start;
    width: calc((100% - 30px) * 5 / 10);
  }
}
.dramatic .text .title .en {
  font-size: 0.8333em;
}
.dramatic .text .title .en::before, .dramatic .text .title .en::after {
  content: "-";
}
@media screen and (max-width: 900px) {
  .dramatic .text .title .en {
    font-size: 10px;
  }
}
@media screen and (max-width: 900px) {
  .dramatic .text .subtitle {
    font-size: 11px;
    width: calc((100% - 30px) * 5 / 10);
  }
}
.dramatic .text .content {
  line-height: 2;
}
@media screen and (max-width: 900px) {
  .dramatic .text .content {
    margin-top: 15vw;
  }
}
.dramatic .link {
  width: clamp(290px, 14em, 310px);
  margin: 0 auto;
}
.dramatic .link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3em;
  font-size: clamp(14px, 2vw, 20px);
  background: #150509;
  color: #fcfcfc;
  transition: 0.5s;
}
.dramatic .link a::hover {
  background: #fcfcfc;
  color: #150509;
}
.dramatic.reverse {
  padding-left: 0 !important;
}
@media screen and (min-width: 901px) {
  .dramatic.reverse {
    padding-right: calc(100vw - 530px);
  }
}
@media screen and (max-width: 1400px) {
  .dramatic.reverse {
    padding-right: calc(100vw - 430px);
  }
}
@media screen and (max-width: 900px) {
  .dramatic.reverse {
    padding-right: 0;
  }
}
@media screen and (min-width: 901px) {
  .dramatic.reverse .primaryImg {
    left: auto;
    right: 0;
  }
}
.dramatic.reverse .secondaryImg {
  left: 0;
  transform: translateX(-100%);
}
@media screen and (min-width: 901px) {
  .dramatic.reverse .secondaryImg {
    right: auto;
  }
}
.dramatic.reverse .text .title, .dramatic.reverse .text .subtitle {
  place-self: end;
}
.dramatic.active .primaryImg {
  transition-delay: var(--drama-primaryImg-slide-delay);
}
@media screen and (min-width: 901px) {
  .dramatic.active .primaryImg {
    width: calc(100vw - 614px + 83px);
  }
}
@media screen and (max-width: 1400px) {
  .dramatic.active .primaryImg {
    width: calc(100vw - 514px + 83px);
  }
}
@media screen and (max-width: 900px) {
  .dramatic.active .primaryImg {
    width: 100%;
  }
}
.dramatic.active .secondaryImg {
  transform: translateX(0);
  opacity: 1;
  transition-delay: var(--drama-secondaryImg-slide-delay);
}
.dramatic.active .text {
  opacity: 1;
  transition-delay: var(--drama-text-delay);
}

:root {
  --business-title_en-tranform-duration: 1.5s;
  --business-title_en-opacity-duration: .75s;
  --business-text-duration: 1s;
  --business-text-delay-step: .4s;
}

.business-item {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.business-item.active .title_en.js-rolltext span {
  transform: translateZ(0);
  opacity: 0.8;
}
.business-item header figure {
  margin: 0;
  height: clamp(200px, 30vw, 500px);
  width: 100%;
  clip-path: inset(0);
}
.business-item header figure img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
}
.business-item header .title_en {
  font-size: clamp(26px, 10vw, 200px);
  color: #000;
  opacity: 0.3;
  font-weight: 800;
  line-height: 1;
  margin-top: -0.3em;
  text-align: left;
  overflow: hidden;
  padding-bottom: 0.2em;
}
.business-item header .title_en.js-rolltext span {
  backface-visibility: hidden;
  display: inline-block;
  transition: transform var(--business-title_en-tranform-duration) cubic-bezier(0.32, 0.94, 0.6, 1), opacity var(--business-title_en-opacity-duration) cubic-bezier(0.32, 0.94, 0.6, 1);
  transform: translate3d(0.5em, 0, 0) rotate(10deg) rotateY(120deg) rotateX(-30deg) scale(1.1);
  opacity: 0;
}
.business-item header.reverse .title_en {
  text-align: right;
}
.business-item .body {
  display: flex;
  place-items: start center;
  padding: 0 clamp(10px, 6vw, 110px);
  gap: clamp(10px, 2vw, 40px);
}
.business-item .body.reverse {
  flex-direction: row-reverse;
}
.business-item .body .place {
  background: #000;
  color: #FFF;
  writing-mode: vertical-rl;
  padding: 3em 0.4em;
  place-self: center;
  font-size: clamp(12px, 1.2vw, 20px);
}
@media screen and (max-width: 767px) {
  .business-item .body .place {
    padding: 0.4em 1em;
    writing-mode: unset;
  }
}
.business-item .body .title {
  place-self: center;
  text-align: center;
  flex-basis: clamp(100px, 20vw, 400px);
}
@media screen and (max-width: 767px) {
  .business-item .body .title {
    flex-basis: auto;
  }
}
.business-item .title {
  line-height: 2;
  font-size: clamp(20px, 1.5vw, 30px);
}
.business-item .content {
  place-self: center start;
  flex-basis: fit-content;
  line-height: 2.5;
  font-size: clamp(13px, 1vw, 20px);
}
.business-item .js-animate {
  opacity: 0;
  transition: opacity var(--business-text-duration);
}
.business-item.active .js-animate {
  opacity: 1;
}
.business-item.active .js-animate:nth-child(1) {
  transition-delay: 1.3s;
}
.business-item.active .js-animate:nth-child(2) {
  transition-delay: calc(1.3s + var(--business-text-delay-step));
}
.business-item.active .js-animate:nth-child(3) {
  transition-delay: calc(1.3s + var(--business-text-delay-step) * 2);
}
@media screen and (max-width: 767px) {
  .business-item .body {
    display: grid;
  }
  .business-item .body img.creature {
    grid-column: 2/3;
    grid-row: 1/3;
    margin-top: -30%;
  }
  .business-item .body .title,
  .business-item .body .content {
    grid-column: 1/2;
  }
  .business-item .body .title {
    grid-row: 1/2;
    place-self: end start;
  }
  .business-item .body .title br {
    display: none;
  }
  .business-item .body .content {
    grid-row: 2/3;
    place-self: start start;
  }
  .business-item .body .place {
    grid-row: 1/2;
    grid-column: 1/2;
    place-self: center end;
  }
  .business-item .body.reverse img.creature {
    grid-column: 1/2;
  }
  .business-item .body.reverse .title, .business-item .body.reverse .content {
    grid-column: 2/3;
  }
}
.business-item footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 9vw, 90px);
  margin-top: clamp(40px, 5vw, 120px);
}
.business-item footer .map {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 800px 1fr;
  width: 100%;
}
.business-item footer .map iframe {
  border: none;
  width: 800px;
  aspect-ratio: 16/9;
}
.business-item footer .map p {
  place-self: end end;
  text-align: right;
  font-size: clamp(12px, 1.4vw, 14px);
  line-height: 2;
}
@media screen and (max-width: 1400px) {
  .business-item footer .map {
    display: flex;
    flex-direction: column-reverse;
  }
  .business-item footer .map iframe {
    width: 100%;
  }
  .business-item footer .map p {
    place-self: center;
    text-align: center;
  }
}
.business-item footer .map iframe {
  opacity: 0;
  transition: 2s;
}
.business-item footer .map p {
  transition: 1s;
  opacity: 0;
  transform: translateX(-10%);
}
.business-item footer .map.active iframe {
  opacity: 1;
}
.business-item footer .map.active p {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.5s;
}
.business-item footer .link {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 5vw, 40px);
  align-items: center;
}
.business-item footer .link .text {
  font-size: clamp(14px, 4vw, 26px);
  font-weight: bold;
  text-align: center;
}
.business-item footer .link a {
  width: clamp(300px, 56vw, 800px);
  aspect-ratio: 4/1;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fcfcfc;
  font-size: clamp(18px, 3.5vw, 30px);
  letter-spacing: 0.2em;
  position: relative;
}
.business-item footer .link a::before, .business-item footer .link a::after {
  position: absolute;
  transition: 0.5s;
}
.business-item footer .link a::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 clamp(60px, 12vw, 120px) clamp(60px, 12vw, 120px);
  border-color: transparent transparent #150509 transparent;
  right: clamp(-10px, -1vw, -4px);
  bottom: clamp(-10px, -1vw, -4px);
}
.business-item footer .link a::after {
  content: "GO";
  right: 0;
  bottom: 0;
  letter-spacing: 0;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .business-item footer .link a:hover::before {
    right: 0;
    bottom: 0;
    border-color: transparent transparent #fcfcfc transparent;
  }
  .business-item footer .link a:hover::after {
    color: #150509;
    right: 10px;
    bottom: 10px;
  }
}
.business-item .button-official {
  width: 200px;
  height: 200px;
  font-size: 30px;
  border-radius: 50%;
  background: #150509;
  display: grid;
  place-items: center;
  color: #fcfcfc;
  transition: 0.5s;
}
.business-item .button-official:hover {
  background: #fcfcfc;
  color: #150509;
}
@media screen and (max-width: 767px) {
  .business-item .button-official {
    height: auto;
    width: clamp(300px, 80vw, 500px);
    aspect-ratio: 5/1;
    border-radius: 10px;
    font-size: 20px;
  }
}

img.creature {
  flex-basis: clamp(100px, 20vw, 400px);
}
img.creature.kitsune, img.creature[src$="kitsune.svg"] {
  aspect-ratio: 177/251;
  width: 177px;
  flex-basis: 177px;
}
img.creature.kaeru, img.creature[src$="kaeru.svg"] {
  aspect-ratio: 250/350;
  width: 250px;
  flex-basis: 250px;
  margin-top: -5%;
}
img.creature.kaeru_hat, img.creature[src$="kaeru_hat.svg"] {
  aspect-ratio: 172/234;
  width: 172px;
  flex-basis: 172px;
}
img.creature.usagi, img.creature[src$="usagi.svg"] {
  aspect-ratio: 201/199;
  width: 201px;
  flex-basis: 201px;
}
img.creature.carry, img.creature[src$="carry.svg"] {
  aspect-ratio: 324/234;
  width: 324px;
  flex-basis: 324px;
}
/*# sourceMappingURL=maps/global-business.css.map */