@charset "utf-8";

/********************/
/* フォント */
/********************/

:root {
  --ShipporiMincho: "Shippori Mincho", serif;
  --Inter: "Inter", sans-serif;
  --Gotu: "Gotu", sans-serif;
}



/********************/
/* 共通 */
/********************/

html {
  margin: 0;
}

.body {
  background-color: #0B0B0B;
  font-family: var(--ShipporiMincho);
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
  overflow: auto;
  overflow-x: hidden;
  transition: background-color 0.5s;
}
.body:has(.drawer__menu.is-active) {
  overflow-y: hidden !important;
}
.body.is-white-bg {
  background-color: #fff;
}

img {
  width: 100%;
  height: auto;
}

a {
  display: block;
}

.u-md-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-md-show {
    display: block;
  }
  .u-md-none {
    display: none;
  }
}

.common__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}



/********************/
/* オープニングアニメーション */
/********************/

.main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  display: block;
}

.js-main {
  overflow: hidden;
}
.js-main.is-active {
  animation: anime-mainFadeIn 1.5s linear forwards;
}

@keyframes anime-mainFadeIn {
  0% {
    overflow: hidden;
  }
  100% {
    overflow: visible;
  }
}

.js-fixed-show {
  opacity: 0;
  visibility: hidden;
}
.js-fixed-show.is-active {
  animation: anime-fixed-show 1.5s forwards;
}
@keyframes anime-fixed-show {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.js-fixed-show.is-again {
  animation-name: anime-again;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes anime-again {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}



/********************/
/* フェードイン */
/********************/

.anime-fade {
  opacity: 0;
  animation-name: anime-fade;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes anime-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



/********************/
/* タイトルアニメーション */
/********************/

.js-fadeIn {
  opacity: 0;
  visibility: hidden;
  transition-delay: 0.3s;
}
.js-fadeIn.is-inview {
  opacity: 1;
  visibility: visible;
}

.popup-zone {
  overflow: hidden;
}

.js-popupText {
  opacity: 0;
}
.js-fadeIn.is-inview .js-popupText {
  opacity: 1;
  position: relative;
  animation: anime-popup 1.2s;
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.84, 0);
}

@keyframes anime-popup {
  0% {
    bottom: -60px;
  }
  50% {
    bottom: -60px;
  }
  100% {
    bottom: 0;
  }
}



/********************/
/* header */
/********************/

.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 112px;
  background-color: #0B0B0B;
  z-index: 9;
}

.header__inner {
  width: 100%;
  height: 100%;
  padding-top: 2.6vh;
  padding-bottom: 2.2vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  position: relative;
  z-index: 9999;
}

.header__logo-link {
  font-family: var(--Inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.header__lang {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}
.header__lang::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 4px), calc(-50% - 1px));
  content: "";
  width: 1px;
  height: 13px;
  border-radius: 2px;
  background-color: #8A8A8A;
}

.header__lang-link {
  font-family: var(--Gotu);
  font-size: 16px;
  color: #fff;
  transition: all 0.3s;
}
.header__lang-link.current {
  color: #8A8A8A;
}
@media (hover: hover) {
  a.header__lang-link:hover {
    opacity: 0.7;
  }
}

.header__sound {
  margin-top: 5.2vh;
  position: relative;
}

.header__sound-text {
  text-align: center;
  font-family: var(--Gotu);
  font-size: 14px;
  line-height: calc(23 / 14);
}

.header__sound-switch {
  width: 52px;
  height: 24px;
  border-radius: 52px;
  border: 1px solid #BABABA;
  position: relative;
  cursor: pointer;
}
.header__sound-switch::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #BABABA;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.header__sound-switch.on::before {
  left: 32px;
  background-color: #fff;
}

.header__sound-active {
  position: absolute;
  bottom: 0;
  left: calc(50% + 26px);
  font-family: var(--Gotu);
  font-size: 14px;
  line-height: calc(23 / 14);
}

.header__nav__list {
  margin-top: -20px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
}

.header__nav__item {
  margin-top: 40px;
  font-size: 16px;
  line-height: 27px;
  writing-mode: vertical-rl;
  transform: rotate(-180deg);
}

.hamburger {
  position: fixed;
  top: 50%;
  left: 34px;
  transform: translateY(-50%);
  width: 44px;
  height: 26px;
  padding: 5px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 9999;
  transition: all 0.3s;
}
@media (hover: hover) {
  .hamburger:hover {
    opacity: 0.7;
  }
}

.js-hamburger__line {
  display: inline-block;
  position: absolute;
  content: "";
  width: 28px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}
.js-hamburger__line:nth-child(1) {
  top: 5px;
  left: 5px;
}
.js-hamburger__line:nth-child(2) {
  bottom: 5px;
  right: 5px;
}
.js-hamburger__line.is-active:nth-child(1) {
  top: 10px;
  width: 30px;
  transform: rotate(-20deg);
}
.js-hamburger__line.is-active:nth-child(2) {
  bottom: 12px;
  right: 3px;
  transform: rotate(30deg);
  width: 32px;
}

.js-hamburger__dot {
  display: inline-block;
  position: absolute;
  content: "";
  width: 3px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}
.js-hamburger__dot:nth-last-child(2) {
  top: 5px;
  right: 5px;
}
.js-hamburger__dot:nth-last-child(1) {
  bottom: 5px;
  left: 5px;
}

.drawer__menu {
  position: fixed;
  top: 0;
  left: 112px;
  width: calc(100% - 112px);
  height: 100vh;
  padding-inline: 80px;
  background-color: #fff;
  display: flex;
  align-items: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.drawer__menu.is-active {
  opacity: 1;
  visibility: visible;
}
.drawer__menu::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 670px;
  height: auto;
  aspect-ratio: 1340 / 1348;
  background-image: url(../image/drawer_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.drawer__inner {
  padding-block: 40px;
  position: relative;
}

.drawer__nav-list {
  display: flex;
  flex-direction: column;
  width: 361px;
}

.drawer__nav-item--contact {
  text-align: right;
}
.drawer__nav-item:not(:first-child) {
  margin-top: 3.1vh;
}

.drawer__nav-link {
  display: inline-block;
  font-family: var(--Inter);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.4em;
  color: #000615;
  text-transform: uppercase;
  transition: all 0.3s;
}
@media (hover: hover) {
  .drawer__nav-link:hover {
    opacity: 0.7;
  }
}

.drawer__sns {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
}

.drawer__sns-instagram {
  transition: all 0.3s;
}
@media (hover: hover) {
  .drawer__sns-instagram:hover {
    opacity: 0.7;
  }
}

.drawer__copy {
  position: absolute;
  bottom: 10.4vh;
  left: 80px;
  font-family: var(--Inter);
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}



/********************/
/* 追従contactボタン */
/********************/

.fixed__buttonZone {
  position: fixed;
  right: 4.17vw;
  bottom: 3.6vh;
  z-index: 8;
}

.fixed__button {
  font-family: var(--Inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #BABABA;
  padding-right: 20px;
  position: relative;
  transition: all 0.3s;
}
.fixed__button--top {
  text-transform: uppercase;
}

.fixed__button::before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 6px;
  height: 10px;
  background-color: #BABABA;
  clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
  transition: all 0.3s;
}
.fixed__button::after {
  position: absolute;
  bottom: 0;
  left: 60px;
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s;
}
.fixed__button.is-hover-black::after {
  background-color: #000615;
}

@media (hover: hover) {
  .fixed__button:hover {
    color: #fff;
  }
  .fixed__button:hover::before {
    background-color: #fff;
  }
  .fixed__button:hover::after {
    left: 0;
    width: calc(100% - 20px);
  }
  .fixed__button.is-hover-black:hover {
    color: #000615;
  }
  .fixed__button.is-hover-black:hover::before {
    background-color: #000615;
  }
}



/********************/
/* 横スクロール */
/********************/

.js-scroll-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

.js-scroll-list {
  position: absolute;
  display: flex;
}



/********************/
/* fv */
/********************/

.fv {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.fv::before {
  position: absolute;
  top: 0;
  left: calc(50% + 20px);
  content: "";
  width: 945px;
  height: auto;
  aspect-ratio: 945 / 674;
  background-image: url(../image/fv_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.fv__title {
  width: 402px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  position: relative;
}

.fv__title-row {
  display: flex;
  justify-content: flex-start;
  gap: 0.3em;
  position: relative;
}
.fv__title-row:nth-child(4) {
  justify-content: flex-end;
}

.fv__title-row-space {
  display: flex;
  gap: 0.2em;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

.fv__title-char {
  display: inline-block;
  font-family: var(--Inter);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.4em;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.1s ease;
}



/********************/
/* セクション共通 */
/********************/

.common-section {
  height: 100vh;
  position: relative;
}

.common-section__title {
  font-family: var(--Gotu);
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.common-section__subTitle {
  font-size: 16px;
  line-height: 1.5;
}

.common-section__text {
  font-size: 14px;
  line-height: 1.8;
}
.common-section__text:not(:first-child) {
  margin-top: 25px;
}

.flex-section {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.flex-section__body {
  display: flex;
  flex-direction: column;
}

.flex-section__body-content {
  flex: 1;
  height: calc(100% - 56px);
}

.flex-section__content-inner {
  padding: 10.4vh 0;
  height: 100%;
  width: 350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.flex-section__content-inner.flex-section__content-inner--picture {
  width: 911px;
}
.flex-section__content-inner.flex-section__content-inner--concept {
  width: 1205px;
}
.flex-section__content-inner.flex-section__content-inner--service {
  width: auto;
}
.flex-section__content-inner.flex-section__content-inner--profile {
  width: 450px;
}
.flex-section__content-inner.flex-section__content-inner--company {
  width: 400px;
}
.flex-section__content-inner.flex-section__content-inner--contact {
  width: 546px;
  position: relative;
}

.flex-section__content-wrapper {
  margin-top: auto;
}



/********************/
/* picture */
/********************/

.picture-section {
  padding-right: 60px;
  position: relative;
  z-index: 1;
}

.picture-section__image {
  height: 100%;
  width: auto;
}

.picture-section__image figure {
  height: 100%;
}

.js-anime-wrap {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.js-anime-parallax {
  width: 120%;
  margin-top: -10%;
  margin-left: -20%;
  object-fit: cover;
}



/********************/
/* concept */
/********************/

.concept-section {
  padding-left: 60px;
}

.concept-section .common-section__title {
  text-transform: uppercase;
}

.concept-section__textZone {
  margin-top: 4.17vh;
  width: 380px;
}

.flex-section__content-inner--concept {
  position: relative;
  z-index: 1;
}
.flex-section__content-inner--concept::before {
  position: absolute;
  top: 80px;
  left: 603px;
  content: "";
  width: 684px;
  height: auto;
  aspect-ratio: 1368 / 1216;
  background-image: url(../image/concept_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.concept-section__image {
  position: absolute;
  right: 0;
  bottom: 7.3vh;
  height: 19.66vh;
  width: auto;
  aspect-ratio: 1151 / 151;
}
.main--en .concept-section__image {
  top: 50vh;
  bottom: auto;
}



/********************/
/* service */
/********************/

.service-section {
  margin-left: -150px;
  padding-right: 100px;
}
.main--en .service-section {
  margin-left: 24px;
}

.service-section__flex {
  height: 100%;
  display: flex;
}

.service-section__heading {
  width: 230px;
}

.service-section__body {
  height: 100%;
}

.service-section__list {
  height: 100%;
  display: flex;
}

.service-section__item {
  width: 548px;
  padding: 5.2vh 64px;
  background-color: #1B1B1B;
  position: relative;
}
.service-section__item:not(:first-child) {
  margin-left: 24px;
}

.service-section__item-body {
  margin-top: 4.17vh;
  position: relative;
}

.service-section__item-title {
  font-family: var(--Gotu);
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.service-section__item-subTitle {
  font-size: 16px;
  line-height: 1.5;
}

.service-section__item-textZone {
  margin-top: 2.08vh;
}

.service-section__item-bottom {
  position: absolute;
  bottom: 20px;
  left: 64px;
}

.service-section__item-link {
  padding: 5px 40px 4px 20px;
  border: 1px solid #fff;
  border-radius: 999px;
  font-family: var(--Gotu);
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  transition: all 0.3s;
}
.main--en .service-section__item-link {
  display: inline-block;
}
.service-section__item-link::before {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  content: "";
  width: 6px;
  height: 10px;
  background-color: #fff;
  clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
  transition: all 0.3s;
}
@media (hover: hover) {
  .service-section__item-link:hover {
    background-color: #fff;
    color: #1B1B1B;
  }
  .service-section__item-link:hover::before {
    background-color: #1B1B1B;
  }
}



/********************/
/* profile */
/********************/

.profile-section {
  padding-right: 100px;
  color: #000615;
}

.flex-section__content-inner--profile {
  position: relative;
}

.profile-section__body {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.flex-section__textZone {
  margin-top: 4.17vh;
  width: 328px;
}

.flex-section__name {
  font-family: var(--Gotu);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.flex-section__imageZone {
  position: absolute;
  top: 19vh;
  right: 86px;
  width: 205px;
}

.concept-section__image01 {
  position: relative;
  z-index: 2;
}

.concept-section__image02 {
  position: absolute;
  top: -62px;
  right: calc(100% - 45px);
  width: 206px;
}

.concept-section__image03 {
  position: absolute;
  top: 100%;
  left: calc(100% - 50px);
  transform: translateY(-50%);
  width: 206px;
}



/********************/
/* gallery */
/********************/

.gallery-section__container {
  height: 100%;
  width: 5350px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.gallery-section__container::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  content: "";
  width: 150px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 3;
}
.gallery-section__container::after {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  content: "";
  width: 1200px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 33%, rgba(255, 255, 255, 1));
  z-index: 3;
}

.gallery-section__item {
  position: absolute;
}

.gallery-section__item--01 {
  top: 15.1%;
  transform: translateX(-580px);
  animation: anime-gallery01 20s linear infinite;
  z-index: 1;
}
.gallery-section__item--01 .gallery-section__item-image {
  width: 580px;
}
@keyframes anime-gallery01 {
  0% {
    left: 3.5%;
  }
  3.4999% {
    left: 0;
  }
  3.5% {
    left: 100%;
  }
  100% {
    left: 3.5%;
  }
}

.gallery-section__item--02 {
  top: 3.5%;
  transform: translateX(-340px);
  animation: anime-gallery02 20s linear infinite;
}
.gallery-section__item--02 .gallery-section__item-image {
  width: 340px;
}
@keyframes anime-gallery02 {
  0% {
    left: 7%;
  }
  6.6499% {
    left: 0;
  }
  6.65% {
    left: 100%;
  }
  11.65% {
    left: 100%;
  }
  100% {
    left: 7%;
  }
}

.gallery-section__item--03 {
  bottom: 5.7%;
  transform: translateX(-411px);
  animation: anime-gallery03 20s linear infinite;
  z-index: 2;
}
.gallery-section__item--03 .gallery-section__item-image {
  width: 411px;
}
@keyframes anime-gallery03 {
  0% {
    left: 6.8%;
  }
  5.9999% {
    left: 0;
  }
  6% {
    left: 100%;
  }
  16% {
    left: 100%;
  }
  100% {
    left: 6.8%;
  }
}

.gallery-section__item--04 {
  top: 27.3%;
  transform: translateX(-254px);
  animation: anime-gallery04 20s linear infinite;
  z-index: 1;
}
.gallery-section__item--04 .gallery-section__item-image {
  width: 254px;
}
@keyframes anime-gallery04 {
  0% {
    left: 10%;
  }
  8.4999% {
    left: 0;
  }
  8.5% {
    left: 100%;
  }
  23.5% {
    left: 100%;
  }
  100% {
    left: 10%;
  }
}

.gallery-section__item--05 {
  bottom: 3.1%;
  transform: translateX(-444px);
  animation: anime-gallery05 20s linear infinite;
  z-index: 2;
}
.gallery-section__item--05 .gallery-section__item-image {
  width: 444px;
}
@keyframes anime-gallery05 {
  0% {
    left: 16%;
  }
  12.7999% {
    left: 0;
  }
  12.8% {
    left: 100%;
  }
  32.8% {
    left: 100%;
  }
  100% {
    left: 16%;
  }
}

.gallery-section__item--06 {
  top: 12.5%;
  transform: translateX(-250px);
  animation: anime-gallery06 20s linear infinite;
}
.gallery-section__item--06 .gallery-section__item-image {
  width: 250px;
}
@keyframes anime-gallery06 {
  0% {
    left: 15.5%;
  }
  15.4999% {
    left: 0;
  }
  15.5% {
    left: 100%;
  }
  100% {
    left: 15.5%;
  }
}

.gallery-section__item--07 {
  top: 20.3%;
  transform: translateX(-580px);
  animation: anime-gallery07 20s linear infinite;
  z-index: 1;
}
.gallery-section__item--07 .gallery-section__item-image {
  width: 580px;
}
@keyframes anime-gallery07 {
  0% { left: 25.0%; }
  23.7499% { left: 0; }
  23.7500% { left: 100%; }
  28.7500% { left: 100%; }
  100% { left: 25.0%; }
}

.gallery-section__item--08 {
  top: 3.5%;
  transform: translateX(-360px);
  animation: anime-gallery08 20s linear infinite;
}
.gallery-section__item--08 .gallery-section__item-image {
  width: 360px;
}
@keyframes anime-gallery08 {
  0% { left: 28.7%; }
  25.8299% { left: 0; }
  25.8300% { left: 100%; }
  35.8300% { left: 100%; }
  100% { left: 28.7%; }
}

.gallery-section__item--09 {
  bottom: 8.9%;
  transform: translateX(-400px);
  animation: anime-gallery09 20s linear infinite;
  z-index: 2;
}
.gallery-section__item--09 .gallery-section__item-image {
  width: 400px;
}
@keyframes anime-gallery09 {
  0% { left: 27.5%; }
  23.3749% { left: 0; }
  23.3750% { left: 100%; }
  38.3750% { left: 100%; }
  100% { left: 27.5%; }
}

.gallery-section__item--10 {
  top: 27.3%;
  transform: translateX(-240px);
  animation: anime-gallery10 20s linear infinite;
  z-index: 1;
}
.gallery-section__item--10 .gallery-section__item-image {
  width: 240px;
}
@keyframes anime-gallery10 {
  0% { left: 31.0%; }
  24.7999% { left: 0; }
  24.8000% { left: 100%; }
  44.8000% { left: 100%; }
  100% { left: 31.0%; }
}

.gallery-section__item--11 {
  bottom: 3.1%;
  transform: translateX(-444px);
  animation: anime-gallery11 20s linear infinite;
  z-index: 2;
}
.gallery-section__item--11 .gallery-section__item-image {
  width: 444px;
}
@keyframes anime-gallery11 {
  0% { left: 38.0%; }
  37.9999% { left: 0; }
  38.0000% { left: 100%; }
  100% { left: 38.0%; }
}

.gallery-section__item--12 {
  top: 13%;
  transform: translateX(-255px);
  animation: anime-gallery12 20s linear infinite;
}
.gallery-section__item--12 .gallery-section__item-image {
  width: 255px;
}
@keyframes anime-gallery12 {
  0% { left: 37.0%; }
  33.2999% { left: 0; }
  33.3000% { left: 100%; }
  38.3000% { left: 100%; }
  100% { left: 37.0%; }
}

.gallery-section__item--13 {
  top: 23.8%;
  transform: translateX(-580px);
  animation: anime-gallery13 20s linear infinite;
  z-index: 1;
}
.gallery-section__item--13 .gallery-section__item-image {
  width: 580px;
}
@keyframes anime-gallery13 {
  0% {
    left: 47.5%;
  }
  41.5599% {
    left: 0;
  }
  41.56% {
    left: 100%;
  }
  49.06% {
    left: 100%;
  }
  100% {
    left: 47.5%;
  }
}

.gallery-section__item--14 {
  top: 3.5%;
  transform: translateX(-368px);
  animation: anime-gallery14 20s linear infinite;
}
.gallery-section__item--14 .gallery-section__item-image {
  width: 368px;
}
@keyframes anime-gallery14 {
  0% { left: 50.0%; }
  39.9999% { left: 0; }
  40.0000% { left: 100%; }
  55.0000% { left: 100%; }
  100% { left: 50.0%; }
}

.gallery-section__item--15 {
  bottom: 8.9%;
  transform: translateX(-380px);
  animation: anime-gallery15 20s linear infinite;
  z-index: 2;
}
.gallery-section__item--15 .gallery-section__item-image {
  width: 380px;
}
@keyframes anime-gallery15 {
  0% {
    left: 49%;
  }
  47.7999% {
    left: 0;
  }
  47.8% {
    left: 100%;
  }
  50.3% {
    left: 100%;
  }
  100% {
    left: 49%;
  }
}

.gallery-section__item--16 {
  top: 20.5%;
  transform: translateX(-240px);
  animation: anime-gallery16 20s linear infinite;
  z-index: 1;
}
.gallery-section__item--16 .gallery-section__item-image {
  width: 240px;
}
@keyframes anime-gallery16 {
  0% { left: 54.0%; }
  53.9999% { left: 0; }
  54.0000% { left: 100%; }
  100% { left: 54.0%; }
}

.gallery-section__item--17 {
  bottom: 9%;
  transform: translateX(-372px);
  animation: anime-gallery17 20s linear infinite;
  z-index: 2;
}
.gallery-section__item--17 .gallery-section__item-image {
  width: 372px;
}
@keyframes anime-gallery17 {
  0% { left: 60.0%; }
  53.9999% { left: 0; }
  54.0000% { left: 100%; }
  59.0000% { left: 100%; }
  100% { left: 60.0%; }
}

.gallery-section__item--18 {
  top: 7%;
  transform: translateX(-372px);
  animation: anime-gallery18 19s linear infinite;
  z-index: 2;
}
.gallery-section__item--18 .gallery-section__item-image {
  width: 372px;
}
@keyframes anime-gallery18 {
  0% {
    left: 60.5%;
  }
  55.9999% {
    left: 0;
  }
  56% {
    left: 100%;
  }
  63.5% {
    left: 100%;
  }
  100% {
    left: 60.5%;
  }
}

.gallery-section__item--19 {
  top: 27%;
  transform: translateX(-438px);
  animation: anime-gallery19 20.2s linear infinite;
  z-index: 3;
}
.gallery-section__item--19 .gallery-section__item-image {
  width: 438px;
}
@keyframes anime-gallery19 {
  0% {
    left: 64%;
  }
  60.7999% {
    left: 0;
  }
  60.8% {
    left: 100%;
  }
  65.8% {
    left: 100%;
  }
  100% {
    left: 64%;
  }
}

.gallery-section__item--20 {
  bottom: 12.2%;
  transform: translateX(-339px);
  animation: anime-gallery20 20s linear infinite;
}
.gallery-section__item--20 .gallery-section__item-image {
  width: 339px;
}
@keyframes anime-gallery20 {
  0% {
    left: 67.8%;
  }
  66.0999% {
    left: 0;
  }
  66.1% {
    left: 100%;
  }
  68.6% {
    left: 100%;
  }
  100% {
    left: 67.8%;
  }
}

.gallery-section__item--21 {
  top: 10.4%;
  transform: translateX(-358px);
  animation: anime-gallery21 19.8s linear infinite;
}
.gallery-section__item--21 .gallery-section__item-image {
  width: 358px;
}
@keyframes anime-gallery21 {
  0% { left: 70.0%; }
  69.9999% { left: 0; }
  70.0000% { left: 100%; }
  100% { left: 70.0%; }
}

.gallery-section__item--22 {
  top: 4.4%;
  transform: translateX(-438px);
  animation: anime-gallery22 20.8s linear infinite;
  z-index: 1;
}
.gallery-section__item--22 .gallery-section__item-image {
  width: 438px;
}
@keyframes anime-gallery22 {
  0% {
    left: 75%;
  }
  74.9999% {
    left: 0;
  }
  75% {
    left: 100%;
  }
  100% {
    left: 75%;
  }
}

.gallery-section__item--23 {
  top: 50%;
  transform: translateX(-339px);
  animation: anime-gallery23 20s linear infinite;
}
.gallery-section__item--23 .gallery-section__item-image {
  width: 339px;
}
@keyframes anime-gallery23 {
  0% {
    left: 74.5%;
  }
  67.0499% {
    left: 0;
  }
  67.05% {
    left: 100%;
  }
  77.05% {
    left: 100%;
  }
  100% {
    left: 74.5%;
  }
}

.gallery-section__item--24 {
  top: 14.7%;
  transform: translateX(-300px);
  animation: anime-gallery24 20s linear infinite;
  z-index: 2;
}
.gallery-section__item--24 .gallery-section__item-image {
  width: 300px;
}
@keyframes anime-gallery24 {
  0% {
    left: 80%;
  }
  73.9999% {
    left: 0;
  }
  74% {
    left: 100%;
  }
  81.5% {
    left: 100%;
  }
  100% {
    left: 80%;
  }
}

.gallery-section__item--25 {
  bottom: 9.4%;
  transform: translateX(-372px);
  animation: anime-gallery25 20s linear infinite;
}
.gallery-section__item--25 .gallery-section__item-image {
  width: 372px;
}
@keyframes anime-gallery25 {
  0% {
    left: 86%;
  }
  85.9999% {
    left: 0;
  }
  86% {
    left: 100%;
  }
  100% {
    left: 86%;
  }
}

.gallery-section__item--26 {
  top: 7%;
  transform: translateX(-372px);
  animation: anime-gallery26 20s linear infinite;
}
.gallery-section__item--26 .gallery-section__item-image {
  width: 372px;
}
@keyframes anime-gallery26 {
  0% {
    left: 87.5%;
  }
  85.2999% {
    left: 0;
  }
  85.3% {
    left: 100%;
  }
  87.8% {
    left: 100%;
  }
  100% {
    left: 87.5%;
  }
}

.gallery-section__item--27 {
  top: 33.2%;
  transform: translateX(-345px);
  animation: anime-gallery27 20s linear infinite;
  z-index: 1;
}
.gallery-section__item--27 .gallery-section__item-image {
  width: 345px;
}
@keyframes anime-gallery27 {
  0% {
    left: 92%;
  }
  87.3999% {
    left: 0;
  }
  87.4% {
    left: 100%;
  }
  92.4% {
    left: 100%;
  }
  100% {
    left: 92%;
  }
}

.gallery-section__item--28 {
  bottom: 13.8%;
  transform: translateX(-306px);
  animation: anime-gallery28 20s linear infinite;
}
.gallery-section__item--28 .gallery-section__item-image {
  width: 306px;
}
@keyframes anime-gallery28 {
  0% {
    left: 94.6%;
  }
  92.1999% {
    left: 0;
  }
  92.2% {
    left: 100%;
  }
  97.7% {
    left: 100%;
  }
  100% {
    left: 94.6%;
  }
}

.gallery-section__text {
  margin-top: auto;
  margin-left: 100px;
  width: 578px;
  position: relative;
  z-index: 2;
}



/********************/
/* company */
/********************/

.company-section {
  margin-left: -800px;
  padding-left: 100px;
  padding-right: 60px;
  color: #000615;
  z-index: 3;
}

.company-section__information-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  padding-bottom: 16px;
  border-bottom: 1px solid #2E3251;
}

.company-section__table {
  margin-top: 8px;
}

.company-section__table-title,
.company-section__table-data {
  padding: 8px 0;
  font-size: 14px;
  line-height: calc(17 / 14);
  color: #202020;
}

.company-section__table-title {
  width: 90px;
}

.company-section__table-data {
  margin-left: 18px;
}

.company-section__table-data span {
  display: inline-block;
}



/********************/
/* contact */
/********************/

.contact-section {
  padding-left: 60px;
  padding-right: 80px;
  color: #000615;
  position: relative;
  z-index: 3;
}

.contact-section .flex-section__content-wrapper {
  position: relative;
}

.contact-form {
  text-align: left;
}

.contact-form__container {
  font-size: 16px;
  line-height: calc(19 / 16);
}

.contact-field {
  display: flex;
}
.contact-field:not(:first-child) {
  margin-top: 2.1vh;
}

.contact-field__label-zone {
  width: 122px;
}
.contact-field__input-zone {
  margin-left: 24px;
  flex: 1;
}

.contact-field__label {
  font-size: 16px;
  line-height: calc(19 / 16);
}
.contact-field__label-must {
  position: relative;
}
.contact-field__label-must::before {
  position: absolute;
  top: 0;
  right: -10px;
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #B40000;
}

.contact-field__input {
  height: 5vh;
  width: 100%;
  font-size: 14px;
  padding: 5px;
  background-color: #F7F7F7;
}
.contact-field__input--area {
  height: 23vh;
  width: 100%;
  font-size: 14px;
  padding: 5px;
  background-color: #F7F7F7;
  resize: vertical;
}

input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  visibility: hidden;
}
.contact-checkbox-label {
  margin-top: -2px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}
.contact-checkbox-label .wpcf7-list-item {
  margin-left: 0;
}
.contact-checkbox-label .wpcf7-list-item > label {
  cursor: pointer;
}
.contact-checkbox-label .wpcf7-list-item-label {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  color: #000;
}
.contact-checkbox-label .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #9B9B9B;
  border-radius: 50%;
  background-color: #F7F7F7;
  vertical-align: middle;
}
.contact-checkbox-label input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  content: "";
  width: 6px;
  height: 6px;
  background-color: #000615;
  border-radius: 50%;
}

.contact-form__bottom {
  margin-left: auto;
  width: calc(100% - 146px);
  padding-bottom: 18px;
  position: relative;
}

.contact-form__privacy {
  margin-top: 2.8vh;
  width: 280px;
  padding-left: 13px;
}

.contact-form__privacy .wpcf7-list-item {
  margin: 0;
}

.contact-check-label .wpcf7-list-item-label {
  padding-left: 22px;
  cursor: pointer;
}

.contact-form__check {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-check-label {
  display: inline-block;
}
.contact-check-label .wpcf7-list-item {
  margin-left: 0;
}
.contact-check-label .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #BABABA;
  border-radius: 2px;
  background-color: #fff;
  vertical-align: middle;
  cursor: pointer;
}
.contact-check-label input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background-color: #BABABA;
}
.contact-check-label input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  position: absolute;
  top: 7px;
  left: 3px;
  content: "";
  width: 8px;
  height: 4px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
}

.contact-privacy {
  margin-top: 8px;
  width: 280px;
  position: relative;
  z-index: 2;
}

.contact-privacy__text {
  width: 280px;
  padding: 5px 16px;
  background-color: #F7F7F7;
  cursor: pointer;
  position: relative;
}
.contact-privacy__text::before {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #000;
}
.contact-privacy__text::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  width: 10px;
  height: 1px;
  transform: rotate(90deg);
  background-color: #000;
  transition: 0.3s;
}

.contact-privacy__text.is-active::after {
  transform: rotate(180deg);
}

.contact-privacy__area {
  position: absolute;
  bottom: 31px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 122px;
  margin: 0 auto;
  padding: 16px;
  background-color: #F7F7F7;
  z-index: 1;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  filter: drop-shadow(0 -1px 1px rgba(0,0,0,0.1));
}

.contact-privacy__area.is-active {
  opacity: 1;
  visibility: visible;
}

.contact-privacy__area p:not(:first-child) {
  margin-top: 15px;
}

.contact-submit-buttonZone {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 76px;
  height: 76px;
}
.contact-submit-buttonZone > p {
  display: contents;
}
.contact-submit-button {
  width: 100%;
  height: 100%;
  border: 1px solid #000615;
  background-color: #000615;
  border-radius: 50%;
  text-align: center;
  font-family: var(--Inter);
  font-size: 16px;
  color: #fff;
  transition: all 0.3s;
}
.contact-submit-button:disabled {
  cursor: not-allowed;
}
.contact-form:has(.wpcf7-not-valid-tip) .contact-submit-buttonZone {
  cursor: not-allowed;
}
.contact-form:has(.wpcf7-not-valid-tip) .contact-submit-button {
  pointer-events: none;
}
@media (hover: hover) {
  .contact-submit-button:hover {
    background-color: #fff;
    color: #000615;
  }
  .contact-submit-button:disabled:hover,
  .contact-form:has(.wpcf7-not-valid-tip) .contact-submit-buttonZone .contact-submit-button:hover {
    background-color: #000615;
    color: #fff;
  }
}

.wpcf7 form .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  position: absolute;
  bottom: -3vh;
  margin: 0;
  width: calc(100% - 118px);
  font-size: 12px;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  display: none !important;
}



/********************/
/* フッター */
/********************/

.footer {
  width: 110px;
  background-color: #0B0B0B;
  position: relative;
}

.footer__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 21px;
}





/*------------------------------*/
/* レスポンシブ */
/*------------------------------*/

@media screen and (min-width: 768px) and (max-height: 699px) {

  .header__nav__item {
    margin-top: 5.71vh;
    font-size: 2.29vh;
  }

  .flex-section__content-inner {
    padding: 6vh 0;
  }

  .drawer__copy {
    bottom: 6vh;
  }

  .fixed__buttonZone {
    bottom: 2.1vh;
  }

  .common-section__text {
    font-size: calc(100vh / 650 * 14);
  }

  .service-section__item {
    width: 420px;
    padding: 24px;
  }

  .service-section__item-image img {
    aspect-ratio: 2 / 1;
    object-fit: cover;
  }

  .service-section__item-title {
    font-size: 36px;
  }

  .service-section__item-bottom {
    left: 24px;
  }

}



@media screen and (max-width: 767.98px) {

  /********************/
  /* header */
  /********************/

  .header {
    height: 86px;
    width: 100%;
    background-color: unset;
  }

  .header__inner {
    padding-top: 0;
    padding-bottom: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 0 20px;
  }

  .header__logo-link {
    transition: all 0.3s;
  }
  .header__logo-link.is-active,
  .body.is-white-bg .header__logo-link {
    color: #000615;
  }

  .hamburger {
    top: 30px;
    left: auto;
    right: 15px;
    transform: unset;
  }

  .js-hamburger__line.is-active,
  .body.is-white-bg .js-hamburger__line {
    background-color: #000615;
  }
  .js-hamburger__dot.is-active,
  .body.is-white-bg .js-hamburger__dot {
    background-color: #000615;
  }
  .js-hamburger__line.is-active:nth-child(1) {
    width: 29px;
    transform: rotate(-24deg);
  }

  .drawer__menu {
    left: 0;
    width: 100%;
    padding-inline: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .drawer__menu::before {
    width: 94.67vw;
    aspect-ratio: 710 / 1016;
    background-image: url(../image/drawer_bg_sp.png);
  }

  .drawer__inner {
    width: 100%;
    height: auto;
    padding-top: 106px;
    padding-bottom: 6.2vh;
  }

  .header__bottom {
    display: flex;
    justify-content: space-between;
  }
  .header__bottom.u-md-none {
    display: none;
  }

  .header__lang {
    width: 59px;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .header__lang::before {
    transform: translate(calc(-50% - 4px), calc(-50% + 10px));
    background-color: #000615;
  }

  .header__lang-link {
    color: #BABABA;
  }

  .header__lang-link.current {
    color: #000615;
  }

  .header__sound {
    margin-top: 0;
    padding-right: 25px;
  }

  .header__sound-text {
    color: #4A4A4A;
  }

  .header__sound-switch {
    border: 1px solid #4A4A4A;
  }
  .header__sound-switch::before {
    background-color: #4A4A4A;
  }
  .header__sound-switch.on::before {
    left: 32px;
    background-color: #4A4A4A;
  }

  .header__sound-active {
    left: auto;
    right: 0;
    color: #4A4A4A;
  }

  .drawer__nav {
    margin-top: 6vh;
  }

  .drawer__nav-list {
    width: 100%;
  }

  .drawer__nav-item:not(:first-child) {
    margin-top: 28px;
  }

  .drawer__nav-link {
    font-size: 20px;
  }

  .drawer__sns {
    position: relative;
    bottom: auto;
    margin-top: 6vh;
  }

  .drawer__copy {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: auto;
    width: 100%;
    text-align: center;
    margin-bottom: 4vh;
  }



  /********************/
  /* 追従contactボタン */
  /********************/

  .fixed__buttonZone {
    right: 20px;
    bottom: 12px;
  }
  .fixed__button::before {
    right: 2px;
    transform: translateY(-50%) rotate(90deg);
  }



  /********************/
  /* 横スクロール */
  /********************/

  .js-scroll-list {
    position: relative;
    display: flex;
    flex-direction: column;
  }



  /********************/
  /* fv */
  /********************/

  .fv {
    width: 100%;
    height: 100vh;
    justify-content: flex-start;
    padding-inline: 20px;
  }
  .fv::before {
    left: auto;
    right: 0;
    width: 94.67%;
    aspect-ratio: 710 / 1016;
    background-image: url(../image/fv_bg_sp.png);
  }

  .fv__title {
    width: min(calc(100vw / 375 * 289), 289px);
    padding-bottom: 10vh;
  }

  .fv__title-row {
    gap: 0.05em;
  }
  .fv__title-row-space {
    gap: 0.05em;
    margin-left: 0.35em;
    margin-right: 0.35em;
  }

  .fv__title-char {
    font-size: min(calc(100vw / 375 * 24), 24px);
    letter-spacing: 0.2em;
  }



  /********************/
  /* セクション共通 */
  /********************/

  .common-section {
    height: auto;
  }

  .common-section__title {
    font-size: 28px;
  }

  .common-section__subTitle {
    font-size: 14px;
  }

  .flex-section {
    flex-direction: column;
  }

  .flex-section__content-inner {
    width: 100%;
    padding: 0 20px;
  }
  .flex-section__content-inner.flex-section__content-inner--picture,
  .flex-section__content-inner.flex-section__content-inner--concept,
  .flex-section__content-inner.flex-section__content-inner--service,
  .flex-section__content-inner.flex-section__content-inner--profile,
  .flex-section__content-inner.flex-section__content-inner--company,
  .flex-section__content-inner.flex-section__content-inner--contact {
    width: 100%;
  }



  /********************/
  /* picture */
  /********************/

  .picture-section {
    margin-top: 42px;
    padding-right: 0;
  }

  .picture-section__image {
    width: 100%;
    height: auto;
  }

  .picture-section__image figure {
    width: 100%;
    height: auto;
  }

  .js-anime-parallax {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }



  /********************/
  /* concept */
  /********************/

  .concept-section {
    margin-top: 22px;
    padding-inline: 0;
    overflow: hidden;
  }

  .concept-section__textZone {
    margin-top: 24px;
    width: 100%;
  }

  .flex-section__content-inner--concept::before {
    top: auto;
    bottom: 83px;
    left: auto;
    right: -76px;
    width: 88.27%;
    aspect-ratio: 1 / 1;
    background-image: url(../image/concept_bg_sp.png);
  }

  .concept-section__image {
    position: relative;
    bottom: auto;
    margin-top: 32px;
    width: 100%;
    height: auto;
    aspect-ratio: unset;
  }
  .main--en .concept-section__image {
    top: auto;
  }



  /********************/
  /* service */
  /********************/

  .service-section {
    margin-top: 80px;
    margin-left: 0;
    padding-inline: 0;
    padding-bottom: 64px;
  }
  .main--en .service-section {
    margin-left: 0;
  }

  .service-section__flex {
    flex-direction: column;
  }

  .service-section__heading {
    width: 100%;
  }

  .service-section__body {
    margin-top: 24px;
  }

  .service-section__list {
    flex-direction: column;
  }

  .service-section__item {
    width: 100%;
    padding: 20px;
  }
  .service-section__item:not(:first-child) {
    margin-left: 0;
    margin-top: 24px;
  }

  .service-section__item-body {
    margin-top: 16px;
  }

  .service-section__item-title {
    font-size: 28px;
  }

  .service-section__item-subTitle {
    font-size: 14px;
  }

  .service-section__item-textZone {
    margin-top: 24px;
  }

  .service-section__item-bottom {
    position: relative;
    bottom: 0;
    left: 0;
    display: inline-block;
    margin-top: 16px;
  }



  /********************/
  /* profile */
  /********************/

  .profile-section {
    margin-top: 30px;
    padding-top: 34px;
    padding-inline: 0;
  }

  .flex-section__content-inner--profile {
    flex-direction: column-reverse;
  }

  .flex-section__imageZone {
    position: relative;
    top: 0;
    right: auto;
    padding-top: 58px;
    margin-inline: auto;
    width: min(calc(100vw / 375 * 167), 167px);
  }

  .concept-section__image02 {
    top: -9px;
    right: calc(50% + 16px);
    width: min(calc(100vw / 375 * 158), 158px);
  }

  .concept-section__image03 {
    left: calc(100% - 28px);
    transform: translateY(-58%);
    width: min(calc(100vw / 375 * 120), 120px);
  }

  .profile-section__body {
    margin-top: 82px;
  }

  .flex-section__textZone {
    margin-top: 24px;
    width: 100%;
  }

  .flex-section__name {
    margin-top: 24px;
  }



  /********************/
  /* gallery */
  /********************/

  .gallery-section {
    margin-top: 80px;
    z-index: 3;
    overflow: hidden;
  }

  .gallery-section__container {
    width: 2500px;
    height: 360px;
  }
  .gallery-section__container::before,
  .gallery-section__container::after {
    display: none;
  }

  .gallery-section__item--01 {
    top: 12.2%;
    transform: translateX(-290px);
  }
  .gallery-section__item--01 .gallery-section__item-image {
    width: 290px;
  }

  .gallery-section__item--02 {
    top: 0;
    transform: translateX(-170px);
  }
  .gallery-section__item--02 .gallery-section__item-image {
    width: 170px;
  }

  .gallery-section__item--03 {
    bottom: 12%;
    transform: translateX(-206px);
  }
  .gallery-section__item--03 .gallery-section__item-image {
    width: 206px;
  }

  .gallery-section__item--04 {
    top: 25.5%;
    transform: translateX(-132px);
  }
  .gallery-section__item--04 .gallery-section__item-image {
    width: 132px;
  }

  .gallery-section__item--05 {
    bottom: 8.3%;
    transform: translateX(-222px);
  }
  .gallery-section__item--05 .gallery-section__item-image {
    width: 222px;
  }

  .gallery-section__item--06 {
    top: 3%;
    transform: translateX(-130px);
  }
  .gallery-section__item--06 .gallery-section__item-image {
    width: 130px;
  }

  .gallery-section__item--07 {
    top: 12.2%;
    transform: translateX(-290px);
  }
  .gallery-section__item--07 .gallery-section__item-image {
    width: 290px;
  }

  .gallery-section__item--08 {
    top: 0;
    transform: translateX(-180px);
  }
  .gallery-section__item--08 .gallery-section__item-image {
    width: 180px;
  }

  .gallery-section__item--09 {
    bottom: 12%;
    transform: translateX(-200px);
  }
  .gallery-section__item--09 .gallery-section__item-image {
    width: 200px;
  }

  .gallery-section__item--10 {
    top: 25.5%;
    transform: translateX(-120px);
  }
  .gallery-section__item--10 .gallery-section__item-image {
    width: 120px;
  }

  .gallery-section__item--11 {
    bottom: 8.3%;
    transform: translateX(-222px);
  }
  .gallery-section__item--11 .gallery-section__item-image {
    width: 222px;
  }

  .gallery-section__item--12 {
    top: 6%;
    transform: translateX(-130px);
  }
  .gallery-section__item--12 .gallery-section__item-image {
    width: 130px;
  }

  .gallery-section__item--13 {
    top: 12.2%;
    transform: translateX(-290px);
  }
  .gallery-section__item--13 .gallery-section__item-image {
    width: 290px;
  }

  .gallery-section__item--14 {
    top: 0;
    transform: translateX(-180px);
  }
  .gallery-section__item--14 .gallery-section__item-image {
    width: 180px;
  }

  .gallery-section__item--15 {
    bottom: 12%;
    transform: translateX(-190px);
  }
  .gallery-section__item--15 .gallery-section__item-image {
    width: 190px;
  }

  .gallery-section__item--16 {
    top: 15%;
    transform: translateX(-130px);
  }
  .gallery-section__item--16 .gallery-section__item-image {
    width: 130px;
  }

  .gallery-section__item--17 {
    bottom: 14%;
    transform: translateX(-180px);
  }
  .gallery-section__item--17 .gallery-section__item-image {
    width: 180px;
  }

  .gallery-section__item--18 {
    top: 2%;
    transform: translateX(-180px);
  }
  .gallery-section__item--18 .gallery-section__item-image {
    width: 180px;
  }

  .gallery-section__item--19 {
    top: 16%;
    transform: translateX(-220px);
  }
  .gallery-section__item--19 .gallery-section__item-image {
    width: 220px;
  }

  .gallery-section__item--20 {
    bottom: 20%;
    transform: translateX(-170px);
  }
  .gallery-section__item--20 .gallery-section__item-image {
    width: 170px;
  }

  .gallery-section__item--21 {
    top: 5%;
    transform: translateX(-180px);
  }
  .gallery-section__item--21 .gallery-section__item-image {
    width: 180px;
  }

  .gallery-section__item--22 {
    top: 10%;
    transform: translateX(-200px);
    animation-duration: 20s;
  }
  .gallery-section__item--22 .gallery-section__item-image {
    width: 200px;
  }

  .gallery-section__item--23 {
    top: 56%;
    transform: translateX(-170px);
  }
  .gallery-section__item--23 .gallery-section__item-image {
    width: 170px;
  }

  .gallery-section__item--24 {
    top: 9%;
    transform: translateX(-150px);
  }
  .gallery-section__item--24 .gallery-section__item-image {
    width: 150px;
  }

  .gallery-section__item--25 {
    bottom: 16%;
    transform: translateX(-180px);
  }
  .gallery-section__item--25 .gallery-section__item-image {
    width: 180px;
  }

  .gallery-section__item--26 {
    top: 2%;
    transform: translateX(-180px);
  }
  .gallery-section__item--26 .gallery-section__item-image {
    width: 180px;
  }

  .gallery-section__item--27 {
    top: 23%;
    transform: translateX(-170px);
  }
  .gallery-section__item--27 .gallery-section__item-image {
    width: 170px;
  }

  .gallery-section__item--28 {
    bottom: 20%;
    transform: translateX(-160px);
  }
  .gallery-section__item--28 .gallery-section__item-image {
    width: 160px;
  }

  .gallery-section__text {
    width: 204px;
    margin-left: 2%;
  }



  /********************/
  /* company */
  /********************/

  .company-section {
    order: 1;
    margin-left: 0;
    padding-top: 40px;
    padding-inline: 0;
    color: #fff;
    background-color: #0B0B0B;
    position: relative;
  }

  .company-section__information {
    margin-top: 55px;
  }

  .company-section__information__title {
    border-bottom: 1px solid #BABABA;
  }

  .company-section__table {
    margin-top: 9px;
  }

  .company-section__table-title,
  .company-section__table-data {
    padding-block: 9px;
    color: #fff;
  }
  .company-section__table-title {
    width: 108px;
  }



  /********************/
  /* contact */
  /********************/

  .contact-section {
    margin-block: 40px;
    padding-inline: 0;
  }

  .contact-form {
    margin-top: 42px;
  }

  .contact-field {
    flex-direction: column;
  }
  .contact-field:not(:first-child) {
    margin-top: 22px;
  }

  .contact-field__label-zone {
    width: auto;
  }

  .contact-field__input-zone {
    margin-top: 12px;
    margin-left: 0;
  }

  .contact-field__input {
    height: 46px;
  }

  .contact-field__input--area {
    height: 180px;
  }

  .contact-checkbox-label {
    margin-top: 7px;
    gap: 22px 18px;
  }

  .contact-form__bottom {
    width: 100%;
    padding-bottom: 0;
  }

  .contact-form__privacy {
    margin-top: 37px;
    width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .contact-form__privacy .wpcf7-list-item {
    margin-left: -18px;
  }

  .contact-check-label .wpcf7-list-item-label {
    position: relative;
  }

  .contact-privacy {
    margin-top: 8px;
    margin-inline: auto;
    width: 84%;
  }

  .contact-privacy__text {
    width: 100%;
    text-align: center;
  }

  .contact-privacy__area {
    width: 100%;
    height: 150px;
    bottom: 0;
    top: calc(100% + 1px);
    filter: unset;
  }

  .contact-submit-buttonZone {
    position: relative;
    margin-top: 48px;
    margin-inline: auto;
  }

  .wpcf7 form .wpcf7-response-output,
  .wpcf7 form.sent .wpcf7-response-output {
    position: relative;
    bottom: auto;
    margin-top: 14px;
    width: 100%;
  }



  /********************/
  /* footer */
  /********************/

  .footer {
    order: 2;
    margin-top: -1px;
    width: 100%;
    height: 100px;
    background-color: #0B0B0B;
  }

  .footer__image {
    transform: translate(-50%, -50%) rotate(90deg);
    width: 13px;
  }

}


@media screen and (max-width: 767.98px) and (max-height: 677.98px) {
  .drawer__nav-item:not(:first-child) {
    margin-top: 4.05vh;
  }
}





/********************/
/* ギャラリーページ */
/********************/

.gallery-category {
  position: fixed;
  bottom: 10.4vh;
  left: 250px;
  width: calc(100vw - 250px);
  padding-right: 156px;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.gallery-category__text {
  width: 321px;
}

.gallery-category__list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding-bottom: 14px;
}

.gallery-category__item {
  width: 100px;
}

.gallery-category__link {
  padding: 6px 6px 4px;
  border: 1px solid #fff;
  border-radius: 999px;
  text-align: center;
  font-family: var(--Gotu);
  font-size: 16px;
  line-height: 1;
  transition: all 0.3s;
}
.gallery-category__link--all {
  text-transform: uppercase;
}
@media (hover: hover) {
  .gallery-category__link:hover {
    background-color: #fff;
    color: #000615;
  }
}

.gallery-block {
  width: 1318px;
  height: 100vh;
  padding-top: 10.4vh;
  padding-bottom: calc(10.4vh + 120px);
  padding-left: 250px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.gallery-block::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: calc(10.4vh + 120px);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 35%);
}

.gallery-en-title {
  position: absolute;
  width: 96px;
  height: max-content;
  top: -500px;
  left: 115px;
  transform: translateY(-100%);
  z-index: -1;
  animation-name: anime-gallery-en;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes anime-gallery-en {
  0% {
    top: -500px;
  }
  100% {
    top: calc(100vh + 500px);
  }
}

.gallery-container {
  display: flex;
  gap: 10px;
  height: 100%;
  padding-right: 54px;
  position: relative;
}

.gallery-bigImage {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-bigImage img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery-imageColumn {
  width: 171px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-smallImage {
  height: calc((100% - 8px * 3) / 4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-smallImage:nth-child(n+5) {
  display: none;
}
.gallery-smallImage img {
  height: 100%;
  object-fit: cover;
}

.gallery-bigImage img.portrait,
.gallery-smallImage img.portrait {
  width: auto;
}

.gallery-pagination {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 34px;
  height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-pagination__button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #fff;
  position: relative;
  transition: all 0.3s;
}
@media (hover: hover) {
  .gallery-pagination__button:hover {
    opacity: 0.7;
  }
}

.gallery-pagination__button--prev::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  content: "";
  width: 10px;
  height: 6px;
  background-color: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.gallery-pagination__button--next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  content: "";
  width: 10px;
  height: 6px;
  background-color: #fff;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

.gallery-not {
  font-size: 20px;
}


@media (max-width: 767.98px) {

  .gallery-category {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 87px 20px 0;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 1;
  }
  .gallery-category::before {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 94.67%;
    height: auto;
    aspect-ratio: 710 / 1016;
    background-image: url(../image/fv_bg_sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
  }

  .gallery-category__text {
    width: 100%;
    max-width: 321px;
    margin-inline: auto;
    transform: translateX(-7px);
  }

  .gallery-category__list {
    margin-inline: auto;
    max-width: 335px;
    justify-content: center;
    gap: 20px 17px;
    padding-bottom: 12px;
  }

  .gallery-block {
    width: 100%;
    height: auto;
    padding: 0 20px;
    margin-top: 40px;
  }
  .gallery-block::before {
    display: none;
  }

  .gallery-en-title {
    display: block;
    position: relative;
    width: max-content;
    top: 0;
    left: 0;
    transform: unset;
    z-index: 1;
    animation: unset;
  }
  .gallery-en-title--spSmall {
    height: 48px;
    margin-bottom: 20px;
  }
  .gallery-en-title--spBig {
    height: 66px;
    margin-bottom: 14px;
  }
  .gallery-en-title img {
    height: 100%;
    width: auto;
  }

  .gallery-container {
    flex-direction: column;
    gap: 0;
    padding-right: 0;
    min-height: 186px;
  }

  .gallery-bigImage {
    flex: auto;
    width: 100%;
    aspect-ratio: 335 / 223;
  }

  .gallery-bigImage img {
    width: 100%;
    height: auto;
  }

  .gallery-imageColumn {
    margin-top: 8px;
    width: 100%;
    flex-direction: row;
    gap: 0;
  }

  .gallery-smallImage {
    width: 50%;
    aspect-ratio: 167 / 99;
  }
  .gallery-smallImage:nth-child(n+5) {
    display: block;
  }
  .gallery-smallImage:nth-child(n+3) {
    display: none;
  }
  .gallery-smallImage img {
    width: 100%;
    height: 100%;
  }

  .gallery-bigImage img.portrait,
  .gallery-smallImage img.portrait {
    height: 100%;
  }

  .gallery-pagination {
    position: relative;
    bottom: auto;
    margin-top: 24px;
    margin-left: auto;
    width: 108px;
    height: 34px;
    flex-direction: row;
  }
  .gallery-pagination.gallery-pagination--all {
    margin-top: 44px;
    margin-right: auto;
    width: 246px;
  }

  .gallery-pagination__all-link {
    padding-inline: 26px;
    background-color: #fff;
    border-radius: 999px;
    font-family: var(--Gotu);
    font-size: 16px;
    line-height: 34px;
    color: #000615;
  }

  .gallery-pagination__button--prev {
    transform: rotate(-90deg);
  }
  .gallery-pagination__button--next {
    transform: rotate(-90deg);
  }

  .gallery-not {
    margin-top: 24px;
  }

}





/********************/
/* 画像一覧ページ */
/********************/

.archive-block {
  height: 100vh;
  min-width: 100vw;
  width: max-content;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 112px;
}

.archive-container {
  height: 100%;
}

.archive-list {
  height: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows:repeat(3, minmax(0, 1fr));
  /* display: flex;
  flex-direction: column;
  flex-wrap: wrap; */
  gap: 44px 100px;
}

.archive-item {
  width: 300px;
  height: auto;
  /* height: 100%; */
  /* height: calc((100% - 44px * 2) / 3); */
  /* aspect-ratio: 3 / 2; */
}

.archive-image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.archive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: auto;
  transition: all 0.3s;
}
.archive-image img.portrait {
  width: auto;
}
@media (hover: hover) {
  .archive-image img:hover {
    opacity: 0.7;
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.modal-content {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
}

.modal-image {
  width: 55vw;
  height: auto;
}

.modal-image img {
  width: 100%;
  max-height: calc(100vh - 240px);
  object-fit: contain;
}

.modal-closeButton {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(96px, -64px);
  width: 70px;
  height: 33px;
  cursor: pointer;
  transition: all 0.3s;
}
@media (hover: hover) {
  .modal-closeButton:hover {
    opacity: 0.7;
  }
}


@media screen and (max-width: 767.98px) {

  .archive-block {
    height: auto;
    min-width: auto;
    width: 100%;
    padding: 86px 20px 0;
  }

  .archive-container {
    height: auto;
  }

  .archive-list {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .archive-item {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
  }

  .archive-image {
    height: auto;
  }

  .archive-image img {
    height: auto;
  }
  .archive-image img.portrait {
    width: 80%;
  }

  .modal-image {
    width: calc(100vw - 40px);
  }

  .modal-closeButton {
    transform: translate(0, -88px);
    width: 34px;
    height: 16px;
  }

}