@charset "UTF-8";
/* リセットCSS */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

button {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  text-align: inherit;
}

/*ローディング*/
#loadingOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background: #FFFFFF;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 2s ease;
  overflow: hidden;
}
#loadingOverlay.fade-out {
  opacity: 0;
  pointer-events: none;
}
#loadingOverlay.fade-out .overlay__inner img {
  transform: scale(100) rotate(-40deg);
  filter: grayscale(50%);
}
#loadingOverlay .overlay__inner {
  width: 6.6137566138vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.3227513228vw;
}
#loadingOverlay .overlay__inner img {
  width: 100%;
  opacity: 0;
  filter: grayscale(0);
  transition: transform 4s ease, opacity 1s ease;
  transform: scale(1) rotate(0deg);
}
#loadingOverlay .overlay__inner img.start {
  opacity: 1;
}

.loading__copy {
  text-align: left;
  display: inline-block;
}
.loading__copy--title {
  display: inline-block;
  color: #5a5b5b;
  font-size: 2.380952381vw;
  font-weight: 400;
  margin: 0 0 0.2em;
  letter-spacing: 0.2em;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  text-align: left;
}
.loading__copy.start .loading__copy--title,
.loading__copy.start .loading__copy--text {
  opacity: 1;
}
.loading__copy--text {
  display: inline-block;
  color: #5a5b5b;
  font-size: 1.1904761905vw;
  letter-spacing: 0.1em;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  opacity: 0;
  text-align: left;
}

.loading__copy--title span,
.loading__copy--text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.loading__copy.start .loading__copy--title span,
.loading__copy.start .loading__copy--text span {
  opacity: 1;
  transform: translateY(0);
}

/* ヘッダー */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
  opacity: 0;
  transition: all 2s ease;
  pointer-events: none;
}
header::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.049) 7.75%, rgba(0, 0, 0, 0.104) 11.25%, rgba(0, 0, 0, 0.45) 23.55%, rgba(0, 0, 0, 0.55) 26.45%, rgba(0, 0, 0, 0.896) 38.75%, rgba(0, 0, 0, 0.951) 42.25%, rgb(0, 0, 0) 50%);
  mask-composite: intersect;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s all;
  pointer-events: none;
}
header.fade-in {
  opacity: 1;
}
header.fade-in::after {
  opacity: 1;
}
header a {
  pointer-events: auto;
}

:root {
  --header-height: 7.9365079365vw;
}
@media screen and (width > 1512px) {
  :root {
    --header-height: 7.9365079365vw;
  }
}
@media screen and (width < 768px) {
  :root {
    --header-height: 7.9365079365vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  :root {
    --header-height: 15.3846153846vw;
  }
}

.header__inner {
  width: 90%;
  height: 7.9365079365vw;
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
}
@media screen and (width > 1512px) {
  .header__inner {
    height: 6.25vw;
    height: var(--header-height);
  }
}
@media screen and (width < 768px) {
  .header__inner {
    height: 7.9365079365vw;
    height: var(--header-height);
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .header__inner {
    height: 12.8205128205vw;
    height: var(--header-height);
  }
}

.header__logo {
  width: 3.9682539683vw;
  width: clamp(40px, 3.9682539683vw, 60px);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5000;
}
@media screen and (width > 1512px) {
  .header__logo {
    width: 3.125vw;
  }
}
@media screen and (width < 768px) {
  .header__logo {
    width: 5.1282051282vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .header__logo {
    width: 10.2564102564vw;
  }
}
.header__logo a img {
  width: 100%;
  filter: grayscale(0);
  transition: 0.3s;
}
.header__logo a:hover img {
  transition: 0.3s;
}
.header__logo.active a img {
  filter: grayscale(100%);
  transition: 0.3s;
}
.header__logo.active a:hover img {
  filter: grayscale(0);
}

.header__nav {
  display: inline-block;
}

.gnav {
  display: flex;
  gap: 2.6455026455vw;
}
@media screen and (width > 1512px) {
  .gnav {
    gap: 2.0833333333vw;
  }
}
.gnav li a {
  font-size: clamp(12px, 0.9259259259vw, 20px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: background-size 0.2s;
}
@media screen and (width > 1512px) {
  .gnav li a {
    font-size: 0.9259259259vw;
  }
}
.gnav li a .en {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(0);
  padding: 0 1.5em;
  opacity: 1;
}
.gnav li a .en span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.gnav li a .jp {
  transform: translate(-50%, 0);
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  position: absolute;
  top: 100%;
  left: 50%;
  white-space: nowrap;
  z-index: 1;
  opacity: 0;
  padding: 0;
}
.gnav li a:hover .jp {
  transform: translate(-50%, -100%);
  opacity: 1;
}
.gnav li a:hover .en {
  transform: translateY(-100%);
  opacity: 0;
}
.gnav.start li a .en span {
  opacity: 1;
  transform: translateY(0);
}

/*ハンバーガーメニュー */
.hamburger-overlay {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  appearance: none;
  position: fixed;
  top: 2.3148148148vw;
  right: 5%;
  z-index: 1000;
  width: 2.9761904762vw;
  width: clamp(40px, 2.9761904762vw, 50px);
  height: 2.9761904762vw;
  pointer-events: auto;
}
@media screen and (width > 1512px) {
  .hamburger-overlay {
    top: 1.8229166667vw;
    width: 2.34375vw;
    height: 2.34375vw;
  }
}
@media screen and (width < 768px) {
  .hamburger-overlay {
    top: 1.8229166667vw;
    width: 2.9761904762vw;
    height: 2.9761904762vw;
    top: 2.0512820513vw;
    width: 7.1794871795vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .hamburger-overlay {
    top: 0;
    width: 12.8205128205vw;
    height: 12.8205128205vw;
  }
}
.hamburger-overlay__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.0661375661vw;
  background-color: #5a5b5b;
  transition: all 1s ease;
}
@media screen and (width < 768px) {
  .hamburger-overlay__line {
    width: 100%;
    height: 0.0661375661vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .hamburger-overlay__line {
    width: 80%;
    left: 20%;
    height: 0.2564102564vw;
  }
}
.hamburger-overlay__line:nth-of-type(1) {
  top: 1.1904761905vw;
}
@media screen and (width > 1512px) {
  .hamburger-overlay__line:nth-of-type(1) {
    top: 0.9375vw;
  }
}
@media screen and (width < 768px) {
  .hamburger-overlay__line:nth-of-type(1) {
    top: 1.0582010582vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .hamburger-overlay__line:nth-of-type(1) {
    top: 5.641025641vw;
  }
}
.hamburger-overlay__line:nth-of-type(2) {
  top: 1.7195767196vw;
}
@media screen and (width > 1512px) {
  .hamburger-overlay__line:nth-of-type(2) {
    top: 1.3541666667vw;
  }
}
@media screen and (width < 768px) {
  .hamburger-overlay__line:nth-of-type(2) {
    top: 2.1164021164vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .hamburger-overlay__line:nth-of-type(2) {
    top: 7.1794871795vw;
  }
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(0.2314814815vw) rotate(-405deg);
}
@media screen and (width > 1512px) {
  .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(0.1822916667vw) rotate(-405deg);
  }
}
@media screen and (width < 768px) {
  .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    top: 20px;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(0.641025641vw) rotate(-405deg);
  }
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  transform: translateY(-0.3306878307vw) rotate(405deg);
}
@media screen and (width > 1512px) {
  .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    transform: translateY(-0.2604166667vw) rotate(405deg);
  }
}
@media screen and (width < 768px) {
  .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    top: 25px;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    transform: translateY(-0.7692307692vw) rotate(405deg);
  }
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background-color: #e6e6e6;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .nav-overlay {
    overflow-y: scroll;
  }
}
.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}
.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
  display: block;
  width: 100%;
}
.nav-overlay.active .nav-overlay__item:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-overlay.active .nav-overlay__item:nth-child(2) {
  transition-delay: 0.2s;
}
.nav-overlay.active .nav-overlay__item:nth-child(3) {
  transition-delay: 0.3s;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .nav-overlay.active .nav-overlay__item:nth-child(3) {
    width: 100%;
  }
}
.nav-overlay.active .nav-overlay__item:nth-child(4) {
  transition-delay: 0.4s;
}
.nav-overlay__content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .nav-overlay__content {
    position: revert;
    transform: none;
    padding-top: 100px;
  }
}
.nav-overlay__list {
  margin: 0 auto;
  padding: 0;
  gap: 5vw;
  list-style: none;
  display: flex;
  width: fit-content;
}
@media screen and (width < 768px) {
  .nav-overlay__list {
    display: block;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .nav-overlay__list {
    width: 80%;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 0;
  }
}
.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
  white-space: nowrap;
  text-align: left;
}
@media screen and (width < 768px) {
  .nav-overlay__item {
    width: 100%;
  }
  .nav-overlay__item:not(:first-of-type) {
    border-top: 1px solid #BBBBBB;
    padding-top: 1em;
    margin-top: 1em;
  }
}
.nav-overlay__link {
  display: inline-block;
  color: #5a5b5b;
  font-size: 1.3227513228vw;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-overlay__footer {
  width: 80%;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 3svh 0;
  bottom: 0;
  left: 50%;
  border-top: 1px solid #BBBBBB;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .nav-overlay__footer {
    position: revert;
    transform: none;
  }
}

.main__nav {
  display: flex;
  gap: 1svh;
  justify-content: center;
  text-align: left;
  flex-direction: column;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .main__nav li {
    width: fit-content;
  }
}
.main__nav li a {
  font-size: clamp(16px, 1.3227513228vw, 20px);
  font-weight: 300;
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0.3306878307vw 0;
  background-image: linear-gradient(#5a5b5b, #5a5b5b);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.2s;
}
@media screen and (width > 1512px) {
  .main__nav li a {
    font-size: 1.3227513228vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .main__nav li a {
    font-size: 5.1282051282vw;
    padding: 0;
  }
}
.main__nav li a:hover {
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */
}

.sub__nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.sub__nav li a {
  font-size: clamp(14px, 1.3227513228vw, 20px);
  font-weight: 300;
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 5px;
  background-image: linear-gradient(#5a5b5b, #5a5b5b);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.2s;
}
@media screen and (width > 1512px) {
  .sub__nav li a {
    font-size: 1.3227513228vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .sub__nav li a {
    font-size: 4.1025641026vw;
  }
}
.sub__nav li a:hover {
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */
}

.nav__item--title {
  font-size: clamp(16px, 1.3227513228vw, 24px);
  font-weight: 300;
  margin-bottom: 1.2svh;
  display: block;
}
@media screen and (width > 1512px) {
  .nav__item--title {
    font-size: 1.3227513228vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .nav__item--title {
    font-size: 5.1282051282vw;
  }
}
.nav__item--text {
  font-size: 0.9259259259vw;
  font-size: clamp(14px, 0.9259259259vw, 16px);
  font-weight: 300;
  margin-bottom: 1.2svh;
  display: block;
}
@media screen and (width > 1512px) {
  .nav__item--text {
    font-size: 0.9259259259vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .nav__item--text {
    font-size: 3.5897435897vw;
    white-space: normal;
  }
}
.nav__item--link {
  position: relative;
  display: inline-block;
}
.nav__item--link::before {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #5a5b5b;
  right: 0;
  top: calc(50% - 1px);
  transform: translateY(-50%);
}
@media screen and (width > 1512px) {
  .nav__item--link::before {
    width: 1.8518518519vw;
    height: 1.8518518519vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .nav__item--link::before {
    width: 7.1794871795vw;
    height: 7.1794871795vw;
  }
}
.nav__item--link a {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  overflow: hidden;
  padding: 8px 36px 8px 0;
  background-image: linear-gradient(#5a5b5b, #5a5b5b);
  background-repeat: no-repeat;
  transition: background-size 0.2s;
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */
  position: relative;
}
@media screen and (width > 1512px) {
  .nav__item--link a {
    font-size: 1.0582010582vw;
    padding: 0.5291005291vw 2.380952381vw 0.5291005291vw 0;
  }
}
.nav__item--link a::before, .nav__item--link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #5a5b5b;
  transform-origin: calc(100% - 0.5px) 50%;
}
@media screen and (width > 1512px) {
  .nav__item--link a::before, .nav__item--link a::after {
    right: 0.6613756614vw;
    width: 0.5291005291vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .nav__item--link a::before, .nav__item--link a::after {
    right: 2.5641025641vw;
    width: 2.0512820513vw;
  }
}
.nav__item--link a::before {
  transform: rotate(30deg);
}
.nav__item--link a::after {
  transform: rotate(-30deg);
}
.nav__item--link a:hover {
  animation: linkAnime 0.5s linear forwards;
}

@keyframes linkAnime {
  0% {
    background-position: bottom right; /* 下線のホバー時位置 */
    background-size: 100% 1px; /* 下線の横幅を100%にする */
  }
  33% {
    background-position: bottom right; /* 下線の初期位置 */
    background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  }
  66% {
    background-position: bottom left; /* 下線の初期位置 */
    background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  }
  100% {
    background-position: bottom left; /* 下線のホバー時位置 */
    background-size: 100% 1px; /* 下線の横幅を100%にする */
  }
}
.branch__nav {
  display: flex;
  gap: 0.8svh;
  justify-content: center;
  text-align: left;
  flex-direction: column;
}
.branch__nav li a {
  font-size: 0.9259259259vw;
  font-weight: 300;
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0.2645502646vw 0;
  background-image: linear-gradient(#5a5b5b, #5a5b5b);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.2s;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .branch__nav li a {
    font-size: 3.5897435897vw;
    padding: 0;
    white-space: normal;
  }
}
.branch__nav li a:hover {
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */
}

/* お問い合わせ */
.contact__wrap {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
  transition: 0.5s all;
  font-size: 1.3227513228vw;
  white-space: nowrap;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl; /* Safari 対応 */
  text-orientation: upright;
  -webkit-text-orientation: upright; /* Safari 対応 */
  border: 1px solid #bbbbbb;
  z-index: 400;
  letter-spacing: 0.2em;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6.6137566138vw;
  height: 16.5343915344vw;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .contact__wrap {
    font-size: 5.1282051282vw;
    left: 0;
    top: auto;
    bottom: 0;
    transform: translate(0%, 100%);
    transition: 0.5s all;
    writing-mode: inherit;
    -webkit-writing-mode: inherit;
    text-orientation: inherit;
    -webkit-text-orientation: inherit;
    width: 100%;
    height: 12.8205128205vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
}
.contact__wrap.show {
  transform: translate(0%, -50%);
}
@media screen and (width < 480px) and (orientation: portrait) {
  .contact__wrap.show {
    transform: translate(0%, 0%);
  }
}
.contact__wrap a {
  padding: 2.5em 1.5em;
  display: block;
  transition: letter-spacing 0.3s ease;
}
.contact__wrap a:hover {
  letter-spacing: 0.5em;
}

@media screen and (max-width: 1000px) {
  .header__nav {
    display: none;
  }
}
footer {
  background: #E6E6E6;
  width: 100%;
  position: relative;
  z-index: 2;
}
footer .footer__inner {
  width: 90%;
  max-width: 74.0740740741vw;
  margin: 0 auto;
  padding: 2.6455026455vw 0 5.291005291vw;
}
@media screen and (width < 768px) {
  footer .footer__inner {
    max-width: none;
    padding: 10.2564102564vw 0 20.5128205128vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  footer .footer__inner {
    max-width: none;
    padding: 15.3846153846vw 0 20.5128205128vw;
  }
}
footer .footer__book--list {
  display: flex;
  justify-content: center;
  gap: 2.6455026455vw;
  padding: 2.6455026455vw 0;
}
@media screen and (width < 768px) {
  footer .footer__book--list {
    gap: 2.5641025641vw;
    padding: 5.1282051282vw 0 0;
    justify-content: space-around;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  footer .footer__book--list {
    display: block;
  }
}
footer .footer__book--item {
  width: 21.164021164vw;
  width: clamp(280px, 21.164021164vw, 320px);
  position: relative;
  background: #999999;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  padding-bottom: clamp(32px, 2.6455026455vw, 80px);
}
@media screen and (width > 1512px) {
  footer .footer__book--item {
    width: 21.164021164vw;
    padding-bottom: 2.6455026455vw;
  }
}
@media screen and (width < 768px) {
  footer .footer__book--item {
    width: 100%;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  footer .footer__book--item {
    width: 100%;
    padding-bottom: 10.2564102564vw;
  }
  footer .footer__book--item + .footer__book--item {
    margin-top: 80px;
  }
}
footer .footer__book--img {
  width: 13.2275132275vw;
  width: clamp(160px, 13.2275132275vw, 200px);
  position: relative;
  top: -2.6455026455vw;
  box-shadow: 1.3227513228vw 1.3227513228vw 2.6455026455vw 0px rgba(0, 0, 0, 0.2);
}
@media screen and (width > 1512px) {
  footer .footer__book--img {
    width: 13.2275132275vw;
  }
}
@media screen and (width < 768px) {
  footer .footer__book--img {
    width: 70%;
    box-shadow: 5.1282051282vw 5.1282051282vw 10.2564102564vw 0px rgba(0, 0, 0, 0.2);
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  footer .footer__book--img {
    width: 70%;
    top: -10.2564102564vw;
    box-shadow: 5.1282051282vw 5.1282051282vw 10.2564102564vw 0px rgba(0, 0, 0, 0.2);
  }
}
footer .footer__book--img img {
  width: 100%;
}
footer .footer__book--title {
  font-weight: 500;
  margin: 0 auto auto;
  padding-bottom: 56px;
}
footer .footer__book--title-sub {
  font-size: 1.3227513228vw;
  font-size: clamp(16px, 1.3227513228vw, 24px);
  display: block;
}
@media screen and (width > 1512px) {
  footer .footer__book--title-sub {
    font-size: 1.3227513228vw;
  }
}
@media screen and (width < 768px) {
  footer .footer__book--title-sub {
    font-size: 3.0769230769vw;
    font-size: clamp(16px, 1.3227513228vw, 24px);
  }
}
footer .footer__book--title-main {
  font-size: 1.5873015873vw;
  font-size: clamp(18px, 1.5873015873vw, 24px);
  display: block;
}
@media screen and (width > 1512px) {
  footer .footer__book--title-main {
    font-size: 1.5873015873vw;
  }
}
@media screen and (width < 768px) {
  footer .footer__book--title-main {
    font-size: 4.6153846154vw;
    font-size: clamp(18px, 1.5873015873vw, 24px);
  }
}
footer .footer__book--link .layout__list--link {
  display: flex;
  gap: 2em;
}
footer .footer__book--link .more__link {
  margin-top: 0.5em;
}
footer .footer__book--link .more__link--arrow::before {
  border: 1px solid #FFFFFF;
}
footer .footer__book--link .more__link--arrow a {
  background-image: linear-gradient(#FFFFFF);
}
footer .footer__book--link .more__link--arrow a::before, footer .footer__book--link .more__link--arrow a::after {
  background-color: #FFFFFF;
}
footer .footer__nav--item {
  padding: 2.6455026455vw 0;
}
@media screen and (width < 768px) {
  footer .footer__nav--item {
    padding: 10.2564102564vw 0;
  }
}
footer .footer__nav--item + .footer__nav--item {
  border-top: 1px solid #BBBBBB;
}
footer .footer__nav--item .main__nav {
  flex-direction: row;
  justify-content: flex-start;
  gap: 2.6455026455vw;
}
@media screen and (width < 768px) {
  footer .footer__nav--item .main__nav {
    gap: 2.5641025641vw;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (width < 768px) {
  footer .footer__nav--item .main__nav li {
    width: calc((100% - 2.5641025641vw) / 2);
  }
}
footer .footer__nav--item .main__nav li a {
  font-size: 1.0582010582vw;
  font-size: clamp(14px, 1.0582010582vw, 24px);
}
@media screen and (width > 1512px) {
  footer .footer__nav--item .main__nav li a {
    font-size: 1.0582010582vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  footer .footer__nav--item .main__nav li a {
    font-size: 4.1025641026vw;
  }
}
footer .footer__nav--item .branch__nav {
  flex-direction: row;
  justify-content: flex-start;
  gap: 2.6455026455vw;
}
@media screen and (width < 768px) {
  footer .footer__nav--item .branch__nav {
    gap: 2.5641025641vw;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (width < 768px) {
  footer .footer__nav--item .branch__nav li {
    width: calc((100% - 2.5641025641vw) / 2);
  }
}
footer .footer__nav--item .branch__nav li a {
  font-size: 0.7936507937vw;
}
@media screen and (width < 768px) {
  footer .footer__nav--item .branch__nav li a {
    font-size: 3.0769230769vw;
  }
}
footer .footer__nav--item .sub__nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
@media screen and (width < 768px) {
  footer .footer__nav--item .sub__nav {
    justify-content: flex-start;
  }
}
footer .footer__nav--item .sub__nav li a {
  font-size: clamp(14px, 1.0582010582vw, 24px);
}
@media screen and (width > 1512px) {
  footer .footer__nav--item .sub__nav li a {
    font-size: 1.0582010582vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  footer .footer__nav--item .sub__nav li a {
    font-size: 4.1025641026vw;
  }
}
footer .footer__contact--title {
  font-size: 1.0582010582vw;
  font-size: clamp(14px, 1.0582010582vw, 24px);
  font-weight: 300;
  margin-top: 0;
}
@media screen and (width > 1512px) {
  footer .footer__contact--title {
    font-size: 1.0582010582vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  footer .footer__contact--title {
    font-size: 4.1025641026vw;
  }
}
footer .footer__contact--wrap {
  display: flex;
  gap: 2.6455026455vw;
}
@media screen and (width < 768px) {
  footer .footer__contact--wrap {
    gap: 10.2564102564vw;
    display: block;
  }
}
footer .footer__contact--text {
  font-size: 0.9259259259vw;
  font-size: clamp(14px, 0.9259259259vw, 16px);
  font-weight: 300;
  padding-top: 8px;
}
@media screen and (width > 1512px) {
  footer .footer__contact--text {
    font-size: 0.9259259259vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  footer .footer__contact--text {
    font-size: 3.5897435897vw;
  }
}
@media screen and (width < 768px) {
  footer .footer__contact--link {
    margin-top: 60px;
  }
}
footer .footer__logo--img {
  width: clamp(120px, 13.2275132275vw, 220px);
}
@media screen and (width > 1512px) {
  footer .footer__logo--img {
    width: 13.2275132275vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  footer .footer__logo--img {
    width: 51.2820512821vw;
  }
}
footer .footer__logo--img img {
  width: 100%;
}
footer .footer__copy-right {
  font-size: clamp(10px, 0.7936507937vw, 14px);
  font-weight: 300;
  padding-top: 20px;
}
@media screen and (width > 1512px) {
  footer .footer__copy-right {
    font-size: 0.7936507937vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  footer .footer__copy-right {
    font-size: 3.0769230769vw;
  }
}

.page-top {
  position: fixed;
  right: 3.0423280423vw;
  bottom: 3.0423280423vw;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media screen and (width < 768px) {
  .page-top {
    right: 5.1282051282vw;
    bottom: 17.9487179487vw;
  }
}
.page-top.active {
  opacity: 1;
  visibility: visible;
}
.page-top a {
  display: block;
  width: 3.9682539683vw;
  height: 3.9682539683vw;
  border: 1px solid #BBBBBB;
  border-radius: 50%;
  background: #FFFFFF;
}
@media screen and (width < 768px) {
  .page-top a {
    width: 11.5384615385vw;
    height: 11.5384615385vw;
  }
}
.page-top a::before, .page-top a::after {
  content: "";
  position: absolute;
  top: 1.3227513228vw;
  right: 50%;
  width: 1px;
  height: 1.3227513228vw;
  background-color: #BBBBBB;
  transform-origin: 50% calc(0% - 0.5px);
  border-radius: 9999px;
}
@media screen and (width < 768px) {
  .page-top a::before, .page-top a::after {
    top: 3.8461538462vw;
    height: 3.8461538462vw;
  }
}
.page-top a::before {
  transform: rotate(-30deg);
}
.page-top a::after {
  transform: rotate(30deg);
}

.mv__wrap {
  position: relative;
  margin-top: -1.3227513228vw;
  width: 100%;
  height: calc(100svh - 5.291005291vw);
  overflow: hidden;
  background: #fff;
}
@media screen and (width > 1512px) {
  .mv__wrap {
    margin-top: -1.0416666667vw;
    height: calc(100svh - 4.1666666667vw);
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .mv__wrap {
    margin-top: -5.1282051282vw;
    height: calc(100svh - 7.6923076923vw);
  }
}
.mv__wrap .splide {
  width: calc((100svh - 7.9365079365vw) * 1.5073170732 * 2);
}
@media screen and (width > 1512px) {
  .mv__wrap .splide {
    width: calc((100svh - 6.25vw) * 1.5073170732 * 2);
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .mv__wrap .splide {
    width: calc((100svh - 12.8205128205vw) * 1.5073170732 * 1);
    padding-top: 5.1282051282vw;
    padding-bottom: 5.1282051282vw;
  }
}
.mv__wrap .splide__track {
  background: #fff;
  padding: 1.3227513228vw 0;
  /* cursor: grab; */
}
@media screen and (width < 480px) and (orientation: portrait) {
  .mv__wrap .splide__track {
    padding: 30px 0;
  }
}

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

.swiper {
  width: calc((100svh - 7.9365079365vw) * 1.5073170732 * 2);
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (width > 1512px) {
  .swiper {
    width: calc((100svh - 6.25vw) * 1.5073170732 * 2);
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .swiper {
    padding-top: 5.1282051282vw;
    padding-bottom: 5.1282051282vw;
    width: calc(100svh - 54.1088180113vw);
    height: calc(100svh - 17.94871794871795vw x);
  }
}

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

/* スライド移動を常に一定速度に */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* GPUでスムーズに（transform系を使うSplideには効果大） */
.keen-slider__wrapper {
  width: calc((100svh - 7.9365079365vw) * 1.5073170732 * 2);
}
@media screen and (width > 1512px) {
  .keen-slider__wrapper {
    width: calc((100svh - 6.25vw) * 1.5073170732 * 2);
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .keen-slider__wrapper {
    width: calc((100svh - 12.8205128205vw) * 0.7953216374 * 2);
  }
}

.keen-slider__slide {
  padding-top: 1.3227513228vw;
  padding-bottom: 1.3227513228vw;
}
@media screen and (width > 1512px) {
  .keen-slider__slide {
    padding-top: 1.0416666667vw;
    padding-bottom: 1.0416666667vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .keen-slider__slide {
    padding-top: 5.1282051282vw;
    padding-bottom: 2.5641025641vw;
  }
}
.keen-slider__slide img {
  height: auto;
  width: 100%;
}

.grid__wrap {
  width: 100%;
  /* height: 900px; */
  height: auto;
  aspect-ratio: 1420/780;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__wrap {
    width: 100%;
    height: calc(100svh - 15.3846153846vw);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
.grid__wrap.grid__wrap--5_4 {
  grid-template-columns: repeat(5, 1fr);
  aspect-ratio: 618/410;
}
@media screen and (768px <= width <= 1280px) {
  .grid__wrap.grid__wrap--5_4 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}
@media screen and (width < 768px) {
  .grid__wrap.grid__wrap--5_4 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__wrap.grid__wrap--5_4 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
    aspect-ratio: 408/513;
  }
}

.grid__item {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
  position: relative;
  transition-delay: var(--d, 0ms);
}
.grid__item.show {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.8s ease;
  opacity: 1;
}
.grid__item.show.grid__item-2-05 {
  box-shadow: none;
}
.grid__item a {
  display: flex;
  width: 100%;
  height: 100%;
  background: #fff;
  /* cursor: grab; */
}
.grid__item a:hover::after {
  opacity: 1;
  letter-spacing: 0.2em;
  transform: scale(1.2);
}
.grid__item .full-size {
  display: flex;
  width: 100%;
  height: 100%;
  background: #fff;
}

.slide-revealed .grid__item {
  /* ← 親にだけクラスを付ける */
  opacity: 1;
  transform: none;
  filter: blur(0);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.grid__item-1-01 {
  grid-area: 1/1/4/2;
}

.grid__item-1-02 {
  grid-area: 1/2/3/4;
}

.grid__item-1-03 {
  grid-area: 1/4/3/5;
}

.grid__item-1-04 {
  grid-area: 1/5/3/7;
}

.grid__item-1-05 {
  grid-area: 3/2/5/3;
}

.grid__item-1-06 {
  grid-area: 3/3/4/5;
}

.grid__item-1-07 {
  grid-area: 3/5/4/6;
}

.grid__item-1-08 {
  grid-area: 3/6/5/7;
}

.grid__item-1-09 {
  grid-area: 4/1/5/2;
}

.grid__item-1-10 {
  grid-area: 4/3/5/4;
}

.grid__item-1-11 {
  grid-area: 4/4/5/6;
}

.grid__item-1-01 .img {
  aspect-ratio: 220/260;
}

.grid__item-1-02 .img {
  aspect-ratio: 460/232;
}

.grid__item-1-03 .img {
  aspect-ratio: 220/160;
}

.grid__item-1-04 .img {
  aspect-ratio: 460/300;
}

.grid__item-1-05 .img {
  aspect-ratio: 220/160;
}

/* .grid__item-1-06 .img { aspect-ratio: 460 / 120; } */
.grid__item-1-06 .img {
  width: calc((100% - 20px) / 2) !important;
  height: 100% !important;
  margin-right: 20px;
}

.grid__item-1-06 .text {
  width: calc((100% - 20px) / 2);
}

.grid__item-1-07 .img {
  aspect-ratio: 220/83;
}

.grid__item-1-08 .img {
  aspect-ratio: 220/240;
}

.grid__item-1-09 .img {
  aspect-ratio: 220/80;
}

.grid__item-1-10 .img {
  aspect-ratio: 220/80;
}

.grid__item-1-11 .img {
  width: calc((100% - 20px) / 2) !important;
  height: 100% !important;
  margin-right: 20px;
}

.grid__item-1-11 .text {
  width: calc((100% - 20px) / 2);
}

.grid__item-2-01 {
  grid-area: 1/1/4/2;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-2-01 {
    grid-area: 2/4/5/5;
  }
}
.grid__item-2-01 .img {
  aspect-ratio: 117/165;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-2-01 .img {
    aspect-ratio: 94/200;
  }
}
.grid__item-2-01 img {
  object-position: 100% 100%;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-2-01 img {
    object-position: 80% 100%;
  }
}

.grid__item-2-02 {
  grid-area: 1/2/2/3;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-2-02 {
    grid-area: 5/4/6/5;
  }
}

.grid__item-2-03 {
  grid-area: 1/3/2/5;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-2-03 {
    grid-area: 1/2/2/4;
  }
}
.grid__item-2-03 .img {
  width: calc((100% - 20px) / 2) !important;
  height: 100% !important;
  margin-right: 20px;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-2-03 .img {
    width: calc((100% - 10px) / 2) !important;
    margin-right: 10px;
  }
}
.grid__item-2-03 .text {
  width: calc((100% - 20px) / 2);
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-2-03 .text {
    width: calc((100% - 10px) / 2);
  }
}

.grid__item-2-04 {
  grid-area: 1/5/2/6;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-2-04 {
    grid-area: 1/4/2/5;
  }
}

.grid__item-2-05 {
  grid-area: 2/2/3/4;
}

.grid__item-2-06 {
  grid-area: 2/4/3/5;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-2-06 {
    grid-area: 3/2/4/3;
  }
}

.grid__item-2-07 {
  grid-area: 2/5/4/6;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-2-07 {
    grid-area: 1/1/3/2;
  }
}
.grid__item-2-07 .img {
  aspect-ratio: 116/124;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-2-07 .img {
    aspect-ratio: 94/110;
  }
}

.grid__item-2-08 {
  grid-area: 3/2/5/3;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-2-08 {
    grid-area: 3/1/5/2;
  }
}

.grid__item-2-09 {
  grid-area: 3/3/5/5;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-2-09 {
    grid-area: 4/2/6/4;
  }
}
.grid__item-2-09 .img {
  aspect-ratio: 242/144;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-2-09 .img {
    aspect-ratio: 200/124;
  }
}

.grid__item-2-10 {
  grid-area: 4/1/5/2;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-2-10 {
    grid-area: 5/1/6/2;
  }
}

.grid__item-2-11 {
  grid-area: 4/5/5/6;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-2-11 {
    grid-area: 3/3/4/4;
  }
}

.grid__item-3-01 {
  grid-area: 1/1/3/3;
}
.grid__item-3-01 .img {
  aspect-ratio: 242/155;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-3-01 .img {
    aspect-ratio: 200/135;
  }
}

.grid__item-3-02 {
  grid-area: 1/3/2/4;
}

.grid__item-3-03 {
  grid-area: 1/4/3/6;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-3-03 {
    grid-area: 2/3/4/5;
  }
}
.grid__item-3-03 .img {
  aspect-ratio: 242/136;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-3-03 .img {
    aspect-ratio: 200/116;
  }
}

.grid__item-3-04 {
  grid-area: 2/3/3/4;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-3-04 {
    grid-area: 1/4/2/5;
  }
}

.grid__item-3-05 {
  grid-area: 3/1/5/2;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-3-05 {
    grid-area: 4/1/6/2;
  }
}
.grid__item-3-05 .img {
  aspect-ratio: 117/77;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-3-05 .img {
    aspect-ratio: 95/125;
  }
}

.grid__item-3-06 {
  grid-area: 3/2/4/4;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-3-06 {
    grid-area: 4/2/5/4;
  }
}
.grid__item-3-06 img {
  object-position: 80% 100%;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-3-06 img {
    object-position: 100% 100%;
  }
}

.grid__item-3-07 {
  grid-area: 3/4/5/5;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-3-07 {
    grid-area: 4/4/6/5;
  }
}
.grid__item-3-07.show {
  box-shadow: none;
}

.grid__item-3-08 {
  grid-area: 3/5/4/6;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-3-08 {
    grid-area: 3/1/4/2;
  }
}

.grid__item-3-09 {
  grid-area: 4/2/5/3;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-3-09 {
    grid-area: 5/2/6/3;
  }
}

.grid__item-3-10 {
  grid-area: 4/3/5/4;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-3-10 {
    grid-area: 5/3/6/4;
  }
}

.grid__item-3-11 {
  grid-area: 4/5/5/6;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item-3-11 {
    grid-area: 3/2/4/3;
  }
}
.grid__item-3-11 img {
  object-position: 80% 100%;
}

.grid__item--inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.grid__item--inner .img {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.grid__item--inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform-origin: center center;
}
.grid__item--inner .video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.grid__item--inner video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.grid__item--inner .contain-img video {
  object-fit: contain;
}
.grid__item--inner .text {
  overflow: hidden;
  position: relative;
}
.grid__item--inner .text h3 {
  font-size: 1.7svh;
  color: #5A5B5B;
  font-weight: 300;
  line-height: 1.2;
  padding: 1.2svh 1.6svh 0.4svh;
  margin: 0;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item--inner .text h3 {
    font-size: 1.6svh;
    padding: 1.2svh 1.5svh 0.3svh;
  }
}
.grid__item--inner .text h3 + p {
  padding: 0 1.6svh;
}
.grid__item--inner .text p {
  color: #5A5B5B;
  font-weight: 300;
  font-size: 1.3svh;
  padding: 0.8svh 1.6svh 0;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  margin: 0;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item--inner .text p {
    font-size: 1.3svh;
    padding: 0 1.5svh;
  }
}
.grid__item--inner .text p .pc {
  display: block;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item--inner .text p .pc {
    display: none;
  }
}
.grid__item--inner .text p .sp {
  display: none;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item--inner .text p .sp {
    display: block;
  }
}
.grid__item--inner .cap {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1em;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item--inner .cap {
    padding: 0.5em 0;
  }
}
.grid__item--inner .cap h3 {
  font-size: 1.7svh;
  color: #FFFFFF;
  font-weight: 300;
  line-height: 1.2;
  padding: 0.8svh 1.6svh 0.3svh;
  margin: 0;
}
.grid__item--inner .cap h3 + p {
  padding: 0 1.6svh;
}
.grid__item--inner .cap p {
  color: #FFFFFF;
  font-weight: 300;
  font-size: 1.3svh;
  padding: 0.8svh 1.6svh 0;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  margin: 0;
}
.grid__item--inner .title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.grid__item--inner .title .company-name-en {
  color: #aaabab;
  font-size: 7.8svh;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0 auto 0.2em;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item--inner .title .company-name-en {
    font-size: 3svh;
  }
}
.grid__item--inner .title .company-name-jp {
  color: #5A5B5B;
  font-size: 2.8svh;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: left;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item--inner .title .company-name-jp {
    font-size: 2.4svh;
  }
}
.grid__item--inner .title .grid-title {
  color: #5A5B5B;
  font-size: 3.4svh;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin: 0 auto 0.4em;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item--inner .title .grid-title {
    font-size: 3svh;
  }
}
.grid__item--inner .title .grid-copy {
  color: #5A5B5B;
  font-size: 2svh;
  letter-spacing: 0.05em;
  margin: 0;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .grid__item--inner .title .grid-copy {
    font-size: 1.6svh;
  }
}
.grid__item--inner .box {
  width: 100%;
  height: 100%;
  /* 子要素の3Dの位置関係を保持 */
  transform-style: preserve-3d;
  /* アニメーションの時間 */
  animation: animation-cardImage 8s ease-in-out 15s infinite alternate;
}
.grid__item--inner .box img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  object-fit: cover;
}
.grid__item--inner .box img:last-of-type {
  transform: rotateY(180deg);
}

@keyframes animation-cardImage {
  0% {
    transform: rotateY(0deg);
  }
  90% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.grid__item--raw .grid__item--inner {
  flex-direction: row;
  align-items: stretch;
  height: 100%;
}

.grid__item--col .grid__item--inner {
  justify-content: space-between;
}
.grid__item--col .grid__item--inner .img {
  order: 2;
}
.grid__item--col .grid__item--inner .text {
  order: 1;
}

a .grid__item--inner img::after {
  position: absolute;
  content: "VIEW MORE";
  color: #fff;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.6svh;
}

.color-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  background-image: linear-gradient(-55deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 25%, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0) 58%, rgb(0, 0, 0) 75%, rgb(0, 0, 0) 100%);
  mix-blend-mode: saturation;
  transform: translate3d(0, 0, 0);
}
@media screen and (width < 768px) {
  .color-layer {
    background-image: none;
    display: none;
  }
}

.typewriter {
  font-weight: 400;
  color: #5A5B5B;
  width: 7em;
  text-align: center;
  font-family: serif;
  line-height: 1.5;
  margin: 0;
  transition: none !important;
}
.typewriter__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.bound__item {
  animation: jiggly 4.2s linear 12s infinite alternate;
}

@keyframes jiggly {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  80% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  83% {
    transform: scale(0.95, 0.95) translate(0%, 5%);
  }
  86% {
    transform: scale(1.15, 0.9) translate(0%, 10%);
  }
  90% {
    transform: scale(0.9, 1.15) translate(0%, -10%);
  }
  94% {
    transform: scale(1.05, 0.95) translate(0%, 5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
.control__wrap {
  display: flex;
  gap: 20px;
  font-size: 16px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 2s ease;
  color: #5A5B5B;
  position: absolute;
  left: 50%;
  bottom: 50px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 50px;
}

.control__wrap.fade-in {
  opacity: 1;
}

body {
  overflow-x: hidden;
}

.top_page main {
  margin: 0 auto;
}

.scratch__wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.scratch__wrap .cursor {
  display: none;
}

.top_page .section {
  background: #fff;
  position: relative;
  z-index: 2;
}
.top_page .section + .section {
  margin-top: 0;
  padding-top: 13.2275132275vw;
}
@media screen and (width < 768px) {
  .top_page .section + .section {
    padding-top: 25.641025641vw;
  }
}
.top_page .section:last-of-type {
  padding-bottom: 13.2275132275vw;
}
@media screen and (width > 1512px) {
  .top_page .section:last-of-type {
    padding-bottom: 13.2275132275vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .top_page .section:last-of-type {
    padding-bottom: 51.2820512821vw;
  }
}
.top_page .section.copy__wrap {
  margin-top: 100svh;
  min-height: 120svh;
  padding-top: 13.2275132275vw;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (width < 768px) {
  .top_page .section.copy__wrap {
    padding-top: 25.641025641vw;
    height: auto;
  }
}
.top_page .section.news__wrap {
  padding-bottom: 7.9365079365vw;
}
@media screen and (width > 1512px) {
  .top_page .section.news__wrap {
    padding-bottom: 6.25vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .top_page .section.news__wrap {
    padding-bottom: 12.8205128205vw;
  }
}

.scratch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  z-index: 10000;
  /* cursor: none; デフォルトカーソルを非表示 */
}

.scratch > canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 10000;
}

.progress {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 15;
  color: #333;
  font-size: 14px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(3px);
  z-index: 10001;
  display: none;
}

#scratchCursor {
  /* display: none; */
  position: absolute;
  width: 150px;
  height: 150px;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0) rotate(45deg);
  opacity: 0;
  z-index: 29999;
  user-select: none;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.2s ease;
}

#scratchCursor.active {
  transform: translate(-50%, -33%) scale(1) rotate(10deg);
  opacity: 1;
}

#scratchCursor .cursor-progress {
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 900;
  font-size: 60px;
  color: #000;
  transform: rotate(-10deg) translate(0, -50%);
  animation: 1s progressMove infinite;
}

@keyframes progressMove {
  0% {
    transform: rotate(-10deg) translate(0, -50%) scale(1);
  }
  50% {
    transform: rotate(-10deg) translate(0, -50%) scale(1.2);
  }
  100% {
    transform: rotate(-10deg) translate(0, -50%) scale(1);
  }
}
/* スライダーコンテンツ（ローディング中は非表示） */
.slider-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  padding: 0;
  height: 100svh;
  opacity: 0;
  width: calc(6.884 * (100svh - 6.6137566138vw));
  transition: opacity 2s ease-in-out;
}
@media screen and (width > 1512px) {
  .slider-container {
    width: calc(6.884 * (100svh - 5.2083333333vw));
  }
}
@media screen and (width < 768px) {
  .slider-container {
    width: calc(6.884 * (100svh - 12.8205128205vw));
  }
}

.slider-container.visible {
  opacity: 1;
}

.keen-slider {
  overflow: hidden;
}

.keen-slider.no-scroll {
  touch-action: none;
  /* スマホのスワイプも無効化 */
}

.keen-slider .keen-slider__slide {
  height: 100svh !important;
  padding: 6.6137566138vw 0 0;
}
@media screen and (width > 1512px) {
  .keen-slider .keen-slider__slide {
    padding: 5.2083333333vw 0 0;
  }
}
@media screen and (width < 768px) {
  .keen-slider .keen-slider__slide {
    padding: 12.8205128205vw 0 0;
  }
}

.slide {
  height: calc(100svh - 6.6137566138vw);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (width > 1512px) {
  .slide {
    height: calc(100svh - 5.2083333333vw);
  }
}
@media screen and (width < 768px) {
  .slide {
    height: calc(100svh - 12.8205128205vw);
  }
}

.slide img,
.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-content {
  width: calc(6.884 * (100svh - 6.6137566138vw));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (width > 1512px) {
  .slide-content {
    width: calc(6.884 * (100svh - 5.2083333333vw));
  }
}
@media screen and (width < 768px) {
  .slide-content {
    width: calc(6.884 * (100svh - 12.8205128205vw));
  }
}

.skip-button {
  position: absolute;
  bottom: 1.9841269841vw;
  right: 1.9841269841vw;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 10002;
  content: "";
  width: 7.9365079365vw;
  height: 2.380952381vw;
  background: url(/assets/images/top/skip.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (width > 1512px) {
  .skip-button {
    bottom: 1.5625vw;
    right: 1.5625vw;
    width: 6.25vw;
    height: 1.875vw;
  }
}
@media screen and (width < 768px) {
  .skip-button {
    bottom: 7.6923076923vw;
    right: 50%;
    width: 30.7692307692vw;
    height: 9.2307692308vw;
    transform: translateX(50%);
  }
}

@media print, screen and (width <= 768px) {
  .skip-button:hover {
    transform: scale(1.1);
  }
}

.skip-button.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.slide-content {
  position: relative;
}
.slide-content .link {
  position: absolute;
}
.slide-content .link a {
  display: block;
}
.slide-content .link a:hover {
  background: rgba(255, 255, 255, 0.2);
}
.slide-content .link-game {
  left: calc(6.884 * (100svh - 6.6137566138vw) * 0.3930283224);
  top: calc(6.884 * (100svh - 6.6137566138vw) * 0.03805374);
}
@media screen and (width > 1512px) {
  .slide-content .link-game {
    left: calc(6.884 * (100svh - 5.2083333333vw) * 0.3930283224);
    top: calc(6.884 * (100svh - 5.2083333333vw) * 0.03805374);
  }
}
@media screen and (width < 768px) {
  .slide-content .link-game {
    left: calc(6.884 * (100svh - 12.8205128205vw) * 0.3930283224);
    top: calc(6.884 * (100svh - 12.8205128205vw) * 0.03805374);
  }
}
.slide-content .link-game a {
  width: calc(6.884 * (100svh - 6.6137566138vw) * 0.0399419027);
  height: calc(6.884 * (100svh - 6.6137566138vw) * 0.0329702251);
}
@media screen and (width > 1512px) {
  .slide-content .link-game a {
    width: calc(6.884 * (100svh - 5.2083333333vw) * 0.0399419027);
    height: calc(6.884 * (100svh - 5.2083333333vw) * 0.0329702251);
  }
}
@media screen and (width < 768px) {
  .slide-content .link-game a {
    width: calc(6.884 * (100svh - 12.8205128205vw) * 0.0399419027);
    height: calc(6.884 * (100svh - 12.8205128205vw) * 0.0329702251);
  }
}
.slide-content .link-contact {
  left: calc(6.884 * (100svh - 6.6137566138vw) * 0.9583151779);
  top: calc(6.884 * (100svh - 6.6137566138vw) * 0.1108206245);
}
@media screen and (width > 1512px) {
  .slide-content .link-contact {
    left: calc(6.884 * (100svh - 5.2083333333vw) * 0.9583151779);
    top: calc(6.884 * (100svh - 5.2083333333vw) * 0.1108206245);
  }
}
@media screen and (width < 768px) {
  .slide-content .link-contact {
    left: calc(6.884 * (100svh - 12.8205128205vw) * 0.9583151779);
    top: calc(6.884 * (100svh - 12.8205128205vw) * 0.1108206245);
  }
}
.slide-content .link-contact a {
  width: calc(6.884 * (100svh - 6.6137566138vw) * 0.0399419027);
  height: calc(6.884 * (100svh - 6.6137566138vw) * 0.0326797386);
}
@media screen and (width > 1512px) {
  .slide-content .link-contact a {
    width: calc(6.884 * (100svh - 5.2083333333vw) * 0.0399419027);
    height: calc(6.884 * (100svh - 5.2083333333vw) * 0.0326797386);
  }
}
@media screen and (width < 768px) {
  .slide-content .link-contact a {
    width: calc(6.884 * (100svh - 12.8205128205vw) * 0.0399419027);
    height: calc(6.884 * (100svh - 12.8205128205vw) * 0.0326797386);
  }
}
.slide-content .clock-wrap {
  position: absolute;
  left: calc(6.884 * (100svh - 6.6137566138vw) * 0.9147421932);
  top: calc(6.884 * (100svh - 6.6137566138vw) * 0.1108206245);
  width: calc(6.884 * (100svh - 6.6137566138vw) * 0.0399419027);
  height: calc(6.884 * (100svh - 6.6137566138vw) * 0.0326797386);
  background: #8dc556;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (width > 1512px) {
  .slide-content .clock-wrap {
    left: calc(6.884 * (100svh - 5.2083333333vw) * 0.9147421932);
    top: calc(6.884 * (100svh - 5.2083333333vw) * 0.1108206245);
    width: calc(6.884 * (100svh - 5.2083333333vw) * 0.0399419027);
    height: calc(6.884 * (100svh - 5.2083333333vw) * 0.0326797386);
  }
}
@media screen and (width < 768px) {
  .slide-content .clock-wrap {
    left: calc(6.884 * (100svh - 12.8205128205vw) * 0.9147421932);
    top: calc(6.884 * (100svh - 12.8205128205vw) * 0.1108206245);
    width: calc(6.884 * (100svh - 12.8205128205vw) * 0.0399419027);
    height: calc(6.884 * (100svh - 12.8205128205vw) * 0.0326797386);
  }
}
.slide-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/top/slider.avif") center center no-repeat;
  background-size: cover;
  z-index: -1;
}
@media screen and (width < 768px) {
  .slide-content::before {
    background-image: url("/assets/images/top/slider.avif");
  }
}

.clock-container {
  width: 18svh;
  height: 18svh;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.clock-container .clock {
  width: 100%;
  height: 100%;
  border: 0.75svh solid #4a4a4a;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  /* 画像がはみ出さないように */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, transform 0.3s;
  display: block;
}
.clock-container .clock.hidden {
  display: none;
}
.clock-container .clock-face-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
}
.clock-container {
  /* 針のスタイル */
}
.clock-container .hand {
  position: absolute;
  bottom: 50%;
  transform-origin: bottom center;
  border-radius: 5svh;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.clock-container .hour-hand {
  width: 2.5%;
  height: 30%;
  background-color: #4a4a4a;
  z-index: 8;
  left: 48.75%;
}
.clock-container .minute-hand {
  width: 1.75%;
  height: 40%;
  background-color: #4a4a4a;
  z-index: 7;
  left: 49.125%;
}
.clock-container .second-hand {
  width: 1%;
  height: 45%;
  background-color: #4a4a4a;
  z-index: 6;
  left: 49.5%;
}
.clock-container .center-dot {
  width: 6.25%;
  height: 6.25%;
  background-color: #4a4a4a;
  border-radius: 50%;
  position: absolute;
  top: 46.875%;
  left: 46.875%;
  z-index: 9;
  border: 2px solid white;
}
.clock-container {
  /* 鳩人間アニメーション共通 */
}
.clock-container .cuckoo-bird {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  top: 0;
  left: 0;
}
.clock-container .cuckoo-bird.show {
  transform: translateY(0);
}
.clock-container .cuckoo-bird img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.clock-container {
  /* ======================================================
               【アナログ時計用】透明度の調整
               ====================================================== */
  /* アナログ側の鳩人間の透明度 */
}
.clock-container .analog-cuckoo-window .cuckoo-bird img {
  opacity: 1;
  /* 0.0 ～ 1.0 で調整 */
}
.clock-container {
  /* アナログ側の窓の背景透明度 */
}
.clock-container .analog-cuckoo-window {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 中央寄せ */
  width: 50%;
  /* 大きく変更 */
  height: 50%;
  overflow: hidden;
  border-radius: 50%;
  z-index: 5;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
  /* 最後の数値(0.8)が透明度。d2b894は元のベージュ色 */
  background-color: rgba(210, 184, 148, 0.8);
}
.clock-container {
  /* ======================================================
               【デジタル時計用】透明度の調整
               ====================================================== */
  /* デジタル側の鳩人間の透明度 */
}
.clock-container .digital-cuckoo-window .cuckoo-bird img {
  opacity: 0.7;
  /* 少し透かしたい場合はここを下げてください */
}
.clock-container {
  /* デジタル側の背景透明度 */
}
.clock-container .digital-cuckoo-window {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  z-index: 5;
  /* 最後の数値(1.0)を下げると、黒背景が透けます */
  background-color: rgb(0, 0, 0);
}
.clock-container {
  /* デジタル時計のその他スタイル */
}
.clock-container .digital-clock {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s, transform 0.3s;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  border: 1.5svh solid #ccc;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.1), 0 10px 20px rgba(0, 0, 0, 0.5);
  display: none;
}
.clock-container .digital-content {
  z-index: 10;
  text-align: center;
}
.clock-container .time-main {
  font-size: 4.8svh;
  line-height: 1;
  letter-spacing: 0.1rem;
}
.clock-container .date-info {
  font-size: 1.8svh;
  margin-top: 0.2svh;
  letter-spacing: 0.1rem;
}
.clock-container .digital-clock.show {
  display: flex;
}

@view-transition {
  navigation: auto;
}
.works-0001 {
  view-transition-name: works-0001;
  contain: paint;
}

.works-0002 {
  view-transition-name: works-0002;
  contain: paint;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 7.9365079365vw;
}
@media screen and (width > 1512px) {
  html {
    scroll-padding-top: 6.25vw;
  }
}
@media screen and (width < 768px) {
  html {
    scroll-padding-top: 12.8205128205vw;
  }
}

body {
  color: #5A5B5B;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  margin: 0;
  background: #fff;
}
@media print, screen and (width <= 768px) {
  body {
    cursor: none;
  }
}
body.fixed {
  outline: none;
  appearance: none;
  position: fixed;
  overflow: hidden;
}

a {
  color: #5A5B5B;
  text-decoration: none;
  cursor: none !important;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: none !important;
  outline: none;
  padding: 0;
  appearance: none;
}

body {
  cursor: none;
}

main {
  margin: 10.582010582vw auto 13.2275132275vw;
}
@media screen and (width > 1512px) {
  main {
    margin: 10.582010582vw auto 13.2275132275vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  main {
    margin: 41.0256410256vw auto 30.7692307692vw;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* マウスカーソル追随アイコン */
.cursor {
  width: 8px;
  height: 8px;
  background: #5a5b5b;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 20001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ホバー時：背景が消えてパルスアニメーション */
.cursor.active {
  background: transparent;
  animation: cursorHover 1s infinite;
}

@keyframes cursorHover {
  0% {
    transform: translate(-50%, -50%) scale(4);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
  50% {
    transform: translate(-50%, -50%) scale(5);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  }
  100% {
    transform: translate(-50%, -50%) scale(4);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
}
/* スマホでは非表示 */
@media (max-width: 768px) {
  .cursor {
    display: none !important;
  }
}
/* トップページ */
.mv__copy {
  position: absolute;
  left: 0;
  top: 0px;
  background: rgba(255, 255, 255, 0.8);
  padding: 30px 50px 40px;
  z-index: 100;
  overflow: hidden;
  width: 0;
  opacity: 0;
  transition: width 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  white-space: nowrap; /* 横に一行で収まるように */
}
@media screen and (width < 480px) and (orientation: portrait) {
  .mv__copy {
    padding: 0 5vw 4vw;
    width: 100%;
  }
}
.mv__copy.start {
  width: 770px; /* 動的に全体表示、もしくは max-width: 100% にしてもOK */
  opacity: 1;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .mv__copy.start {
    width: 100%;
  }
}
.mv__copy--title {
  color: #5A5B5B;
  font-size: 2.1164021164vw;
  font-weight: 400;
  margin-bottom: 5px;
  letter-spacing: 0.2em;
  overflow: hidden;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .mv__copy--title {
    font-size: 5.5vw;
    margin-bottom: 0.2em;
  }
}
.mv__copy--text {
  color: #5A5B5B;
  font-size: 1.3227513228vw;
  letter-spacing: 0.1em;
  overflow: hidden;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .mv__copy--text {
    font-size: 4vw;
  }
}

.mv__copy--title span,
.mv__copy--text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.mv__copy.start .mv__copy--title span,
.mv__copy.start .mv__copy--text span {
  opacity: 1;
  transform: translateY(0);
}

.layout__special {
  display: flex;
  flex-direction: column;
  border: 1px solid #BBBBBB;
  max-width: 80%;
  padding: 4em;
}
@media screen and (width < 768px) {
  .layout__special {
    padding: 2em;
  }
}
.layout__special img {
  width: 100%;
  max-width: 200px;
  margin-inline: auto;
  margin-top: 4em;
}
.layout__special .special__text {
  font-size: clamp(18px, 1.3227513228vw, 24px);
  font-weight: 400;
}
@media screen and (width < 768px) {
  .layout__special .special__text {
    font-size: 4.6153846154vw;
  }
}
.layout__special .special__link {
  margin-top: 0;
}
.layout__special .special__link .more__link--arrow::before {
  zoom: 1.5;
  top: calc(50% - 0px);
}
@media screen and (width < 768px) {
  .layout__special .special__link .more__link--arrow::before {
    zoom: revert;
    top: calc(50% - 3px);
  }
}
.layout__special .special__link .more__link--arrow a {
  font-size: clamp(36px, 2.6455026455vw, 44px);
  padding-right: 54px;
}
@media screen and (width > 1512px) {
  .layout__special .special__link .more__link--arrow a {
    padding-right: 3.5714285714vw;
  }
}
@media screen and (width < 768px) {
  .layout__special .special__link .more__link--arrow a {
    font-size: revert;
  }
}
.layout__special .special__link .more__link--arrow a::before, .layout__special .special__link .more__link--arrow a::after {
  zoom: 1.5;
}
@media screen and (width < 768px) {
  .layout__special .special__link .more__link--arrow a::before, .layout__special .special__link .more__link--arrow a::after {
    zoom: revert;
  }
}

.top-bnr-wrap {
  display: grid;
  gap: 8vh;
}

.bnr {
  margin-inline: auto;
  text-align: center;
}
.bnr a {
  display: inline-block;
  width: 50vw;
}
@media screen and (width < 768px) {
  .bnr a {
    width: 80vw;
    max-width: 600px;
  }
}

.copy__wrap {
  text-align: center;
}
.copy__wrap--inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 20svh auto 20svh;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl; /* Safari 対応 */
  text-orientation: upright;
  -webkit-text-orientation: upright; /* Safari 対応 */
  white-space: nowrap;
}
@media screen and (width < 768px) {
  .copy__wrap--inner {
    writing-mode: revert;
    -webkit-writing-mode: revert;
    margin-block: 10svh 0;
  }
}
.copy__wrap--inner span {
  display: inline-block;
  opacity: 0;
  transform: scale(1.5);
  filter: blur(2px);
  transition: all 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.copy__wrap--inner.start span {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
.copy__wrap--inner.no-transition span {
  transition: none !important;
}

.copy__main--text {
  font-size: clamp(32px, 3.1746031746vw, 52px);
  font-weight: 700;
  color: #bbbbbb;
  /* margin-left: .5em; */
  letter-spacing: 0.1em;
  text-align: left;
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
  white-space: nowrap;
  line-height: 1.5;
}
@media screen and (width < 768px) {
  .copy__main--text {
    font-size: 9.2vw;
    font-size: clamp(18px, 6.1538461538vw, 24px);
    writing-mode: vertical-rl;
    margin-block: auto;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .copy__main--text {
    font-size: 5.2vw;
    font-size: clamp(20px, 6.1538461538vw, 24px);
  }
}

.copy__sub--text {
  font-size: clamp(16px, 1.2566137566vw, 24px);
  font-weight: 300;
  color: #5a5b5b;
  text-align: left;
  line-height: 2.5;
  letter-spacing: 0.1em;
  overflow: hidden;
  margin-left: 0;
  margin-right: 2em;
}
@media screen and (width < 768px) {
  .copy__sub--text {
    font-size: 3.8vw;
    font-size: clamp(14px, 4.1025641026vw, 18px);
    line-height: 2;
    writing-mode: vertical-rl;
    margin-block: auto;
    margin-top: 40px;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .copy__sub--text {
    font-size: 3.8vw;
    font-size: clamp(14px, 4.1025641026vw, 18px);
  }
}

.pc-only {
  display: block;
}
@media screen and (width < 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (width < 768px) {
  .sp-only {
    display: block;
  }
}

.section + .section {
  margin-top: 13.2275132275vw;
}
@media screen and (width < 768px) {
  .section + .section {
    margin-top: 25.641025641vw;
  }
}
.section + .section.section_stop {
  margin-top: 0;
}
.section__inner {
  width: 90%;
  max-width: 79.3650793651vw;
  margin: 0 auto;
}
@media screen and (width < 768px) {
  .section__inner {
    max-width: none;
  }
}
.section__inner--wrap {
  width: 100%;
  max-width: 74.0740740741vw;
  margin: 0 auto;
}
@media screen and (width < 768px) {
  .section__inner--wrap {
    max-width: none;
  }
}
.section__title {
  margin-bottom: 5.291005291vw;
  overflow: hidden;
}
@media screen and (width < 768px) {
  .section__title {
    margin-bottom: clamp(80px, 20.5128205128vw, 80px);
  }
}
.section__title.start .jp,
.section__title.start .en {
  opacity: 1;
}
.section__title.section__title-top {
  margin-bottom: 5.291005291vw;
  overflow: hidden;
}
@media screen and (width < 768px) {
  .section__title.section__title-top {
    margin-bottom: 10.2564102564vw;
  }
}
.section__title .jp {
  display: block;
  font-size: clamp(18px, 1.3227513228vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  opacity: 0;
}
@media screen and (width > 1512px) {
  .section__title .jp {
    font-size: 1.3227513228vw;
  }
}
@media screen and (width < 768px) {
  .section__title .jp {
    font-size: clamp(16px, 4.6153846154vw, 20px);
  }
}
.section__title .jp span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.section__title .en {
  display: block;
  font-size: 2.6455026455vw;
  font-size: clamp(32px, 2.6455026455vw, 44px);
  font-weight: 500;
  line-height: 1.5;
  opacity: 0;
}
@media screen and (width > 1512px) {
  .section__title .en {
    font-size: 2.6455026455vw;
  }
}
@media screen and (width < 768px) {
  .section__title .en {
    font-size: 8.2051282051vw;
    font-size: clamp(24px, 1.8518518519vw, 32px);
  }
}
.section__title .en span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.section__title.start .jp span, .section__title.start .en span {
  opacity: 1;
  transform: translateY(0);
}
.section__title.heading--lg .jp {
  font-size: clamp(18px, 1.3227513228vw, 24px);
}
@media screen and (width > 1512px) {
  .section__title.heading--lg .jp {
    font-size: 1.3227513228vw;
  }
}
@media screen and (width < 768px) {
  .section__title.heading--lg .jp {
    font-size: clamp(16px, 1.1904761905vw, 20px);
  }
}
.section__title.heading--lg .en {
  font-size: clamp(28px, 2.1164021164vw, 36px);
}
@media screen and (width > 1512px) {
  .section__title.heading--lg .en {
    font-size: 2.1164021164vw;
  }
}
@media screen and (width < 768px) {
  .section__title.heading--lg .en {
    font-size: clamp(24px, 1.8518518519vw, 32px);
  }
}
.section__title.heading--md .jp {
  font-size: clamp(18px, 1.3227513228vw, 24px);
}
@media screen and (width > 1512px) {
  .section__title.heading--md .jp {
    font-size: 1.3227513228vw;
  }
}
@media screen and (width < 768px) {
  .section__title.heading--md .jp {
    font-size: clamp(16px, 1.1904761905vw, 20px);
  }
}
.section__title.heading--md .en {
  font-size: clamp(20px, 1.8518518519vw, 28px);
}
@media screen and (width > 1512px) {
  .section__title.heading--md .en {
    font-size: 1.8518518519vw;
  }
}
@media screen and (width < 768px) {
  .section__title.heading--md .en {
    font-size: clamp(18px, 1.3227513228vw, 20px);
  }
}
.section__copy--main {
  font-size: clamp(24px, 1.8518518519vw, 32px);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1.3227513228vw;
}
@media screen and (width > 1512px) {
  .section__copy--main {
    font-size: clamp(24px, 1.8518518519vw, 32px);
    font-size: 1.8518518519vw;
    margin-bottom: 1.3227513228vw;
  }
}
@media screen and (width < 768px) {
  .section__copy--main {
    font-size: clamp(24px, 7.1794871795vw, 32px);
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .section__copy--main {
    font-size: clamp(24px, 7.1794871795vw, 32px);
    margin-bottom: 5.1282051282vw;
  }
}
.section__copy--sub {
  font-size: clamp(18px, 1.3227513228vw, 22px);
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (width > 1512px) {
  .section__copy--sub {
    font-size: clamp(18px, 1.3227513228vw, 22px);
    font-size: 1.3227513228vw;
  }
}
@media screen and (width < 768px) {
  .section__copy--sub {
    font-size: clamp(14px, 4.1025641026vw, 18px);
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .section__copy--sub {
    font-size: clamp(14px, 4.1025641026vw, 18px);
  }
}
.section__copy--sub + .service__list {
  margin-top: 5.291005291vw;
}
@media screen and (width < 768px) {
  .section__copy--sub + .service__list {
    margin-top: 10.2564102564vw;
  }
}

.case-study__wrap .splide__track {
  padding: 1.3227513228vw 0;
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__track {
    padding: 0 0 5.1282051282vw;
    padding-bottom: clamp(10px, 5.1282051282vw, 24px);
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .case-study__wrap .splide__track {
    padding: 0 0 5.1282051282vw;
  }
}
.case-study__wrap .splide__arrows--ltr {
  display: flex;
  gap: 1.3227513228vw;
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__arrows--ltr {
    gap: 5.1282051282vw;
  }
}
.case-study__wrap .splide__arrows--ltr .splide__btn {
  position: static;
  background: none;
  border-radius: 100%;
  height: auto;
  font-size: clamp(14px, 1.0582010582vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  transform: translate(0, 0);
  padding-bottom: 0.1322751323vw;
}
@media screen and (width > 1512px) {
  .case-study__wrap .splide__arrows--ltr .splide__btn {
    font-size: clamp(14px, 1.0582010582vw, 18px);
    font-size: 1.0582010582vw;
  }
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__arrows--ltr .splide__btn {
    font-size: clamp(14px, 4.1025641026vw, 18px);
    padding-bottom: 0.5128205128vw;
    color: #5A5B5B;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .case-study__wrap .splide__arrows--ltr .splide__btn {
    font-size: clamp(14px, 4.1025641026vw, 18px);
  }
}
.case-study__wrap .splide__arrows--ltr .splide__btn::after {
  width: 100%;
  height: 0.0661375661vw;
  background: #5A5B5B;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__arrows--ltr .splide__btn::after {
    height: 0.2564102564vw;
  }
}
.case-study__wrap .splide__arrows--big {
  position: absolute;
  bottom: 0; /* JSで上書きされる */
  left: 0;
  width: 100%;
}
.case-study__wrap .splide__arrows--big .splide__arrow--prev,
.case-study__wrap .splide__arrows--big .splide__arrow--next {
  background: none;
  border: 1px solid #FFFFFF;
  width: 5.291005291vw;
  height: 5.291005291vw;
  border-radius: 50%;
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__arrows--big .splide__arrow--prev,
  .case-study__wrap .splide__arrows--big .splide__arrow--next {
    width: 10.2564102564vw;
    height: 10.2564102564vw;
  }
}
.case-study__wrap .splide__arrows--big .splide__arrow--prev {
  left: 2.6455026455vw;
  bottom: 2.6455026455vw;
  top: inherit;
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__arrows--big .splide__arrow--prev {
    left: 5.1282051282vw;
  }
}
.case-study__wrap .splide__arrows--big .splide__arrow--prev::before, .case-study__wrap .splide__arrows--big .splide__arrow--prev::after {
  content: "";
  position: absolute;
  top: calc(50% + 0.5px);
  left: 1.8518518519vw;
  width: 1.3227513228vw;
  height: 1px;
  border-radius: 9999px;
  background-color: #FFFFFF;
  transform-origin: calc(0% - 0.5px) 50%;
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__arrows--big .splide__arrow--prev::before, .case-study__wrap .splide__arrows--big .splide__arrow--prev::after {
    left: 3.5897435897vw;
    width: 2.5641025641vw;
  }
}
.case-study__wrap .splide__arrows--big .splide__arrow--prev::before {
  transform: rotate(-30deg);
}
.case-study__wrap .splide__arrows--big .splide__arrow--prev::after {
  transform: rotate(30deg);
}
.case-study__wrap .splide__arrows--big .splide__arrow--next {
  right: 2.6455026455vw;
  bottom: 2.6455026455vw;
  top: inherit;
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__arrows--big .splide__arrow--next {
    right: 5.1282051282vw;
  }
}
.case-study__wrap .splide__arrows--big .splide__arrow--next::before, .case-study__wrap .splide__arrows--big .splide__arrow--next::after {
  content: "";
  position: absolute;
  top: calc(50% + 0.5px);
  right: 1.8518518519vw;
  width: 1.3227513228vw;
  height: 1px;
  border-radius: 9999px;
  background-color: #FFFFFF;
  transform-origin: calc(100% - 0.5px) 50%;
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__arrows--big .splide__arrow--next::before, .case-study__wrap .splide__arrows--big .splide__arrow--next::after {
    right: 3.5897435897vw;
    width: 2.5641025641vw;
  }
}
.case-study__wrap .splide__arrows--big .splide__arrow--next::before {
  transform: rotate(30deg);
}
.case-study__wrap .splide__arrows--big .splide__arrow--next::after {
  transform: rotate(-30deg);
}
.case-study__wrap .splide__pagination--ltr {
  position: static;
  padding: 0;
  gap: 1.3227513228vw;
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__pagination--ltr {
    gap: 5.1282051282vw;
  }
}
.case-study__wrap .splide__pagination--ltr li .splide__pagination__page {
  background: none;
  border-radius: 100%;
  width: auto;
  height: auto;
  margin: 0;
  opacity: 1;
  color: #BBBBBB;
}
.case-study__wrap .splide__pagination--ltr li .splide__pagination__page.is-active {
  transform: scale(1);
  color: #5A5B5B;
}
.case-study__wrap .splide__pagination--ltr li .splide__pagination__page.is-active .splide-pagination-bullet::after {
  background: #5A5B5B;
}
.case-study__wrap .splide__pagination--ltr li .splide__pagination__page .splide-pagination-bullet {
  font-size: clamp(14px, 1.0582010582vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding-bottom: 0.1322751323vw;
}
@media screen and (width > 1512px) {
  .case-study__wrap .splide__pagination--ltr li .splide__pagination__page .splide-pagination-bullet {
    font-size: clamp(14px, 1.0582010582vw, 18px);
    font-size: 1.0582010582vw;
  }
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__pagination--ltr li .splide__pagination__page .splide-pagination-bullet {
    font-size: clamp(14px, 4.1025641026vw, 18px);
    padding-bottom: 0.5128205128vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .case-study__wrap .splide__pagination--ltr li .splide__pagination__page .splide-pagination-bullet {
    font-size: clamp(14px, 4.1025641026vw, 18px);
  }
}
.case-study__wrap .splide__pagination--ltr li .splide__pagination__page .splide-pagination-bullet::after {
  width: 100%;
  height: 0.0661375661vw;
  background: #BBBBBB;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__pagination--ltr li .splide__pagination__page .splide-pagination-bullet::after {
    height: 0.2564102564vw;
  }
}
.case-study__wrap .splide__slide {
  position: relative;
  overflow: hidden;
}
.case-study__wrap .splide__slide--img {
  transition: 0.3s filter;
  overflow: hidden;
  transform: translateZ(0);
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__slide--img {
    filter: grayscale(0%);
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .case-study__wrap .splide__slide--img {
    filter: grayscale(0%);
    aspect-ratio: 1/1;
  }
}
.case-study__wrap .splide__slide--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1) rotate(0);
  transition: 7s transform;
}
.case-study__wrap .splide__slide--img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.case-study__wrap .splide__slide--copy {
  position: absolute;
  left: 5%;
  top: 5%;
  color: #FFFFFF;
  filter: drop-shadow(0px 0px 8px black);
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__slide--copy {
    position: revert;
    color: #5A5B5B;
    filter: none;
  }
}
.case-study__wrap .splide__slide--copy-main {
  font-size: clamp(18px, 1.5873015873vw, 26px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (width > 1512px) {
  .case-study__wrap .splide__slide--copy-main {
    font-size: clamp(20px, 1.5873015873vw, 26px);
    font-size: 1.5873015873vw;
  }
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__slide--copy-main {
    font-size: clamp(14px, 4.1025641026vw, 18px);
    line-height: 1.6;
    letter-spacing: 0;
    font-weight: 400;
    margin-top: 1em;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .case-study__wrap .splide__slide--copy-main {
    font-size: clamp(14px, 4.1025641026vw, 18px);
  }
}
.case-study__wrap .splide__slide--list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.8em;
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__slide--list {
    margin-top: 0.5em;
  }
}
.case-study__wrap .splide__slide--list li {
  font-size: clamp(12px, 0.9259259259vw, 16px);
  font-weight: 700;
  padding-right: 1em;
  margin-right: 1em;
  border-right: 1px solid #FFFFFF;
  margin-bottom: 0.5em;
}
@media screen and (width > 1512px) {
  .case-study__wrap .splide__slide--list li {
    font-size: clamp(12px, 0.9259259259vw, 16px);
    font-size: 0.9259259259vw;
  }
}
@media screen and (width < 768px) {
  .case-study__wrap .splide__slide--list li {
    font-size: clamp(12px, 3.5897435897vw, 16px);
    font-weight: 500;
    line-height: 1;
    border-right: 1px solid #5A5B5B;
    margin-top: 1em;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .case-study__wrap .splide__slide--list li {
    font-size: clamp(11px, 3.0769230769vw, 14px);
  }
}
.case-study__wrap .splide__slide--list li:last-child {
  border-right: none;
}
.case-study__wrap a:hover .splide__slide--img {
  filter: grayscale(0);
}
.case-study__wrap a:hover .splide__slide--img img {
  transform: scale(1.05) rotate(1deg);
}

.works__list {
  width: 100%;
  max-width: 74.0740740741vw;
  margin: 0 auto;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.3068783069vw;
}
@media screen and (768px <= width <= 1280px) {
  .works__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (width < 768px) {
  .works__list {
    max-width: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 5.1282051282vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .works__list {
    grid-template-columns: 1fr;
    row-gap: 10.2564102564vw;
  }
}
.works__list--item {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  gap: 0;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .works__list--item {
    width: 100%;
  }
}
.works__list--item a {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
}
.works__list--item a .works__list--img {
  position: relative;
}
.works__list--item a .works__list--img.is-light::after {
  border-color: #BBBBBB;
}
.works__list--item a .works__list--img.is-light .arrow::before,
.works__list--item a .works__list--img.is-light .arrow::after {
  background-color: #BBBBBB;
}
.works__list--item a .works__list--img::after {
  content: "";
  position: absolute;
  bottom: 1.3227513228vw;
  right: 1.3227513228vw;
  width: 3.0423280423vw;
  height: 3.0423280423vw;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
}
@media screen and (width < 768px) {
  .works__list--item a .works__list--img::after {
    bottom: 2.5641025641vw;
    right: 2.5641025641vw;
    width: 10.2564102564vw;
    height: 10.2564102564vw;
    bottom: clamp(8px, 2.5641025641vw, 12px);
    right: clamp(8px, 2.5641025641vw, 12px);
    width: clamp(36px, 10.2564102564vw, 44px);
    height: clamp(36px, 10.2564102564vw, 44px);
  }
}
.works__list--item a .arrow {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.works__list--item a .arrow::before, .works__list--item a .arrow::after {
  content: "";
  position: absolute;
  bottom: 2.7777777778vw;
  right: 2.380952381vw;
  width: 0.9259259259vw;
  height: 1px;
  border-radius: 9999px;
  background-color: #FFFFFF;
  transform-origin: calc(100% - 0.5px) 50%;
  z-index: 100;
}
@media screen and (width < 768px) {
  .works__list--item a .arrow::before, .works__list--item a .arrow::after {
    bottom: 7.6923076923vw;
    right: 6.4102564103vw;
    width: 2.5641025641vw;
    bottom: clamp(24px, 7.6923076923vw, 32px);
    right: clamp(23px, 6.4102564103vw, 27px);
    width: clamp(8px, 2.5641025641vw, 12px);
  }
}
.works__list--item a .arrow::before {
  transform: rotate(30deg);
}
.works__list--item a .arrow::after {
  transform: rotate(-30deg);
}
.works__list--item:hover .works__list--img {
  filter: grayscale(0%);
}
.works__list--img {
  width: 100%;
  aspect-ratio: 1;
  transition: 0.3s filter;
  margin-bottom: 1.5em;
  min-height: 0;
  min-width: 0;
}
@media screen and (width < 768px) {
  .works__list--img {
    filter: grayscale(0%);
  }
}
.works__list--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.works__list--title {
  text-wrap: auto;
  font-size: clamp(12px, 0.9259259259vw, 14px);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 最大行数 */
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.5em; /* 行数 × line-height */
}
@media screen and (width > 1512px) {
  .works__list--title {
    font-size: clamp(12px, 0.9259259259vw, 16px);
    font-size: 0.9259259259vw;
  }
}
@media screen and (768px <= width <= 1280px) {
  .works__list--title {
    font-size: clamp(12px, 0.9259259259vw, 14px);
  }
}
@media screen and (width < 768px) {
  .works__list--title {
    font-size: clamp(12px, 3.5897435897vw, 14px);
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .works__list--title {
    font-size: clamp(12px, 3.5897435897vw, 14px);
  }
}
.works__list--title--lg {
  text-wrap: auto;
  font-size: clamp(14px, 1.0582010582vw, 16px);
  font-weight: 500;
  line-height: 150%;
  padding-bottom: 0.5em;
}
@media screen and (width > 1512px) {
  .works__list--title--lg {
    font-size: 1.0582010582vw;
  }
}
@media screen and (width < 768px) {
  .works__list--title--lg {
    font-size: clamp(14px, 4.1025641026vw, 16px);
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .works__list--title--lg {
    font-size: clamp(14px, 4.1025641026vw, 16px);
  }
}
.works__list--cat {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
.works__list--cat li {
  color: #BBBBBB;
  font-size: clamp(11px, 3.0769230769vw, 12px);
  font-weight: 400;
  padding: 0 0.5em 0 0;
  margin: 0 0.5em 0.7em 0;
  border-right: 1px solid #5A5B5B;
  line-height: 1;
}
.works__list--cat li:last-of-type {
  border-right: none;
}
@media screen and (width > 1512px) {
  .works__list--cat li {
    font-size: clamp(11px, 0.7936507937vw, 12px);
    font-size: 0.7936507937vw;
  }
}
@media screen and (width < 768px) {
  .works__list--cat li {
    font-size: clamp(11px, 3.0769230769vw, 12px);
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .works__list--cat li {
    font-size: clamp(11px, 3.0769230769vw, 12px);
  }
}

.works__top .works__list--item:nth-child(n+9) {
  display: none;
}

.more__link {
  margin-top: 2.6455026455vw;
}
@media screen and (width < 480px) and (orientation: portrait) {
  .more__link {
    margin-top: 10.2564102564vw;
  }
}
.more__link--center {
  text-align: center;
}
.more__link--pagetop {
  margin-block: 0 1em;
}
.more__link--arrow {
  position: relative;
  display: inline-block;
}
.more__link--arrow::before {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #5a5b5b;
  right: 0;
  top: calc(50% - 3px);
  transform: translateY(-50%);
}
@media screen and (width > 1512px) {
  .more__link--arrow::before {
    width: 1.8518518519vw;
    height: 1.8518518519vw;
  }
}
@media screen and (width < 768px) {
  .more__link--arrow::before {
    width: 28px;
    height: 28px;
  }
}
.more__link--arrow a {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  overflow: hidden;
  padding: 8px 36px 8px 0;
  background-image: linear-gradient(#5a5b5b, #5a5b5b);
  background-repeat: no-repeat;
  transition: background-size 0.2s;
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */
  position: relative;
}
@media screen and (width > 1512px) {
  .more__link--arrow a {
    font-size: 1.0582010582vw;
    padding: 0.5291005291vw 2.380952381vw 0.5291005291vw 0;
  }
}
.more__link--arrow a::before, .more__link--arrow a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #5a5b5b;
  transform-origin: calc(100% - 0.5px) 50%;
}
@media screen and (width > 1512px) {
  .more__link--arrow a::before, .more__link--arrow a::after {
    right: 0.6613756614vw;
    width: 0.5291005291vw;
  }
}
.more__link--arrow a::before {
  transform: rotate(30deg);
}
.more__link--arrow a::after {
  transform: rotate(-30deg);
}
.more__link--arrow a:hover {
  animation: linkAnime 0.5s linear forwards;
}
.more__link--arrow.is-return::before {
  right: auto;
  left: 0;
}
.more__link--arrow.is-return a {
  padding: 8px 0 8px 36px;
}
@media screen and (width > 1512px) {
  .more__link--arrow.is-return a {
    padding: 0.5291005291vw 0 0.5291005291vw 2.380952381vw;
  }
}
.more__link--arrow.is-return a::before, .more__link--arrow.is-return a::after {
  right: auto;
  left: 10px;
  transform-origin: 0.5px 50%;
}
@media screen and (width > 1512px) {
  .more__link--arrow.is-return a::before, .more__link--arrow.is-return a::after {
    left: 0.6613756614vw;
  }
}
.more__link--arrow.is-return a::before {
  transform: rotate(-30deg);
}
.more__link--arrow.is-return a::after {
  transform: rotate(30deg);
}
.more__link--arrow.is-down a::before, .more__link--arrow.is-down a::after {
  transform-origin: 50% 50%;
}
.more__link--arrow.is-down a::before {
  transform: rotate(60deg);
  right: 12px;
}
@media screen and (width > 1512px) {
  .more__link--arrow.is-down a::before {
    right: 0.7936507937vw;
  }
}
.more__link--arrow.is-down a::after {
  transform: rotate(-60deg);
  right: 8px;
}
@media screen and (width > 1512px) {
  .more__link--arrow.is-down a::after {
    right: 0.5291005291vw;
  }
}

.service__list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 3.9682539683vw 5.291005291vw;
}
@media screen and (768px <= width <= 1280px) {
  .service__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .service__list {
    gap: 15.3846153846vw 10.2564102564vw;
    display: flex;
  }
}
.service__list--item {
  width: calc((100% - 10.582010582vw) / 3);
}
@media screen and (768px <= width <= 1280px) {
  .service__list--item {
    width: 100%;
  }
}
@media screen and (width < 768px) {
  .service__list--item {
    width: 100%;
  }
}
.service__list--item a {
  width: 100%;
  display: block;
  position: relative;
  transition: 0.3s all;
}
@media screen and (width < 768px) {
  .service__list--item a {
    padding: 0 5.1282051282vw 1.0256410256vw;
  }
}
.service__list--item a::before, .service__list--item a::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  vertical-align: middle;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all;
}
.service__list--item a::before {
  width: 0.0661375661vw;
  height: 1.6534391534vw;
  right: 0.6283068783vw;
  border-radius: 9999px;
  background: #5A5B5B;
  transform: translateY(200%);
}
.service__list--item a::after {
  top: 0.1984126984vw;
  width: 1.3227513228vw;
  height: 1.3227513228vw;
  border-top: 0.0661375661vw solid #5A5B5B;
  border-left: 0.0661375661vw solid #5A5B5B;
  transform: translateY(200%) rotate(45deg);
}
.service__list--item a:hover::before, .service__list--item a:hover::after {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.service__list--item a:hover::before {
  transform: translateY(0);
}
.service__list--item a:hover::after {
  transform: translateY(0) rotate(45deg);
}
.service__list--link {
  border-left: 1px solid #BBBBBB;
  padding: 0 1.3227513228vw 0.2645502646vw;
}
@media screen and (width < 768px) {
  .service__list--link {
    padding: 0 5.1282051282vw 1.0256410256vw;
  }
}
.service__list--title {
  font-size: clamp(16px, 1.3227513228vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2.6455026455vw;
}
@media screen and (width > 1512px) {
  .service__list--title {
    font-size: 1.3227513228vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .service__list--title {
    font-size: 5.1282051282vw;
  }
}
.service__list--text {
  font-size: clamp(14px, 0.9259259259vw, 28px);
  font-weight: 300;
}
@media screen and (width > 1512px) {
  .service__list--text {
    font-size: 0.9259259259vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .service__list--text {
    font-size: 3.5897435897vw;
  }
}

.news__wrap .splide {
  margin-bottom: 3.3068783069vw;
}
@media screen and (width < 768px) {
  .news__wrap .splide {
    margin-bottom: 12.8205128205vw;
  }
}
.news__wrap .splide::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #FFFFFF;
  z-index: 10;
}
.news__wrap .splide::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #FFFFFF;
  z-index: 10;
}
.news__wrap .splide__track {
  height: 12vw !important;
}
@media screen and (width < 768px) {
  .news__wrap .splide__track {
    height: 48vw !important; /* ← 数値を調整してください */
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .news__wrap .splide__track {
    height: 60vw !important; /* ← 数値を調整してください */
  }
}
.news__wrap .splide__slide--cat, .news__wrap .splide__slide--date, .news__wrap .splide__slide--titile {
  display: inline-block;
  flex-shrink: 0; /* catとdateは縮まないように */
}
.news__wrap .splide__slide--wrap {
  display: flex;
  height: 4.4973544974vw;
  width: 100%;
  align-items: center;
  padding: 0 2.6455026455vw;
}
@media screen and (width < 768px) {
  .news__wrap .splide__slide--wrap {
    height: 17.4358974359vw;
    height: 17.4358974359vw;
    padding: 0;
    flex-wrap: wrap;
  }
}
.news__wrap .splide__slide--cat {
  background: #E6E6E6;
  font-size: clamp(11px, 0.7936507937vw, 12px);
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 11.3756613757vw;
  height: 1.3227513228vw;
  height: auto;
  font-weight: 300;
  padding-inline: 1em;
}
@media screen and (width > 1512px) {
  .news__wrap .splide__slide--cat {
    font-size: clamp(11px, 0.7936507937vw, 12px);
    font-size: 0.7936507937vw;
    min-width: 11.3756613757vw;
  }
}
@media screen and (768px <= width <= 1280px) {
  .news__wrap .splide__slide--cat {
    font-size: clamp(11px, 3.0769230769vw, 12px);
    min-width: 11.3756613757vw;
  }
}
@media screen and (width < 768px) {
  .news__wrap .splide__slide--cat {
    font-size: clamp(11px, 3.0769230769vw, 12px);
    min-width: 44.1025641026vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .news__wrap .splide__slide--cat {
    font-size: clamp(11px, 3.0769230769vw, 12px);
    min-width: 44.1025641026vw;
  }
}
.news__wrap .splide__slide--cat + .splide__slide--date {
  margin-left: 1.3227513228vw;
}
@media screen and (width < 768px) {
  .news__wrap .splide__slide--cat + .splide__slide--date {
    margin-left: 5.1282051282vw;
  }
}
.news__wrap .splide__slide--date {
  color: #999999;
  font-size: clamp(12px, 0.9259259259vw, 14px);
  font-weight: 300;
  display: block;
}
@media screen and (width > 1512px) {
  .news__wrap .splide__slide--date {
    font-size: clamp(12px, 0.9259259259vw, 14px);
    font-size: 0.9259259259vw;
  }
}
@media screen and (width < 768px) {
  .news__wrap .splide__slide--date {
    font-size: clamp(12px, 3.5897435897vw, 14px);
    width: 17.9487179487vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .news__wrap .splide__slide--date {
    font-size: clamp(12px, 3.5897435897vw, 14px);
  }
}
.news__wrap .splide__slide--date + .splide__slide--title {
  margin-left: 2.1164021164vw;
}
@media screen and (width < 768px) {
  .news__wrap .splide__slide--date + .splide__slide--title {
    margin-left: 0;
  }
}
.news__wrap .splide__slide--title {
  flex-shrink: 1; /* titleは縮んでOK */
  font-size: clamp(14px, 1.0582010582vw, 16px);
  width: calc(100% - 11.3756613757vw - 4.6296296296vw - 1.3227513228vw - 2.1164021164vw);
  width: 100% !important;
  font-weight: 300;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* 最大行数 */
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 1.75em; /* 行数 × line-height */
}
@media screen and (width > 1512px) {
  .news__wrap .splide__slide--title {
    font-size: clamp(14px, 1.0582010582vw, 16px);
    font-size: 1.0582010582vw;
  }
}
@media screen and (width < 768px) {
  .news__wrap .splide__slide--title {
    font-size: clamp(14px, 4.1025641026vw, 16px);
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .news__wrap .splide__slide--title {
    font-size: clamp(14px, 4.1025641026vw, 16px);
  }
}
.news__wrap .splide__slide + .splide__slide {
  border-bottom: 1px solid #BBBBBB;
}

/* サイト本文 */
.page__content-title {
  font-size: clamp(16px, 1.3227513228vw, 24px);
  font-weight: 500;
  margin-bottom: 2em;
}
@media screen and (width > 1512px) {
  .page__content-title {
    font-size: 1.3227513228vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .page__content-title {
    font-size: 5.1282051282vw;
  }
}
.page__content-title--sm {
  font-size: clamp(14px, 1.0582010582vw, 18px);
  font-weight: 500;
  margin-bottom: 2em;
  line-height: 175%;
}
@media screen and (width > 1512px) {
  .page__content-title--sm {
    font-size: 1.0582010582vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .page__content-title--sm {
    font-size: 4.1025641026vw;
  }
}
.page__text {
  font-size: clamp(14px, 1.0582010582vw, 18px);
  font-weight: 400;
  padding-top: 1em;
}
.page__text:first-of-type {
  padding-top: 0;
}
@media screen and (width > 1512px) {
  .page__text {
    font-size: 1.0582010582vw;
  }
}
.page__text--sm {
  font-size: clamp(12px, 0.9259259259vw, 16px);
  font-weight: 400;
  padding-top: 1em;
}
@media screen and (width > 1512px) {
  .page__text--sm {
    font-size: 0.9259259259vw;
  }
}

/* 制作事例*/
.page__title {
  margin: 0 auto 1.3227513228vw;
  padding-bottom: 0.6613756614vw;
  border-bottom: 1px solid #BBBBBB;
  overflow: hidden;
}
@media screen and (width < 768px) {
  .page__title {
    margin: 0 auto 5.1282051282vw;
    padding-bottom: 2.5641025641vw;
  }
}
.page__title .sub {
  display: block;
  font-size: 1.0582010582vw;
  font-size: clamp(14px, 1.0582010582vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (width > 1512px) {
  .page__title .sub {
    font-size: 1.0582010582vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .page__title .sub {
    font-size: 4.1025641026vw;
  }
}
.page__title .sub span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.page__title .main {
  display: block;
  font-size: 1.8518518519vw;
  font-size: clamp(20px, 1.8518518519vw, 28px);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (width > 1512px) {
  .page__title .main {
    font-size: 1.8518518519vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .page__title .main {
    font-size: 5.1282051282vw;
  }
}
.page__title .main span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.page__title.start .jp span, .page__title.start .en span {
  opacity: 1;
  transform: translateY(0);
}
.page__main--img {
  width: 100%;
}
.page__main--img img {
  width: 100%;
}
.page__section {
  border-top: 1px solid #BBBBBB;
  padding: 2.6455026455vw 2.6455026455vw 1.3227513228vw;
}
@media screen and (width < 768px) {
  .page__section {
    padding: 5.1282051282vw 0 5.1282051282vw;
  }
}
.page__section > a {
  display: inline-block;
}
.page__section > a > img {
  width: 100%;
}
.page__section--title {
  text-wrap: auto;
  font-size: 1.0582010582vw;
  font-size: clamp(14px, 1.0582010582vw, 18px);
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 1.5em;
}
@media screen and (width > 1512px) {
  .page__section--title {
    font-size: 1.0582010582vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .page__section--title {
    font-size: 4.1025641026vw;
  }
}
.page__section--text {
  font-size: 1.0582010582vw;
  font-size: clamp(14px, 1.0582010582vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  margin: 0;
}
@media screen and (width > 1512px) {
  .page__section--text {
    font-size: 1.0582010582vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .page__section--text {
    font-size: 4.1025641026vw;
  }
}
.page__section--text + .page__section--text {
  margin-top: 1.5em;
}
.page__section--text > a {
  border-bottom: 1px solid;
}
.page__section--img {
  padding-top: 1em;
  width: 60%;
}
.page__section--link {
  margin-top: 4em;
}
.page__img--list {
  margin-top: 5.291005291vw;
  display: flex;
  flex-wrap: wrap;
  gap: 2.6455026455vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (width < 768px) {
  .page__img--list {
    margin-top: 20.5128205128vw;
    flex-direction: column;
    gap: 10.2564102564vw;
    grid-template-columns: 1fr;
  }
}
.page__img--item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
@media screen and (width < 768px) {
  .page__img--item {
    width: 100%;
  }
}
.page__img--title {
  font-size: 0.9259259259vw;
  font-size: clamp(12px, 0.9259259259vw, 16px);
  font-weight: 300;
  margin: 0 0 0.5em;
}
@media screen and (width > 1512px) {
  .page__img--title {
    font-size: 0.7291666667vw;
  }
}
@media screen and (width < 480px) and (orientation: portrait) {
  .page__img--title {
    font-size: 3.5897435897vw;
    margin: 0 0 0.2em;
  }
}
.page__img--img img {
  width: 100%;
}

.works-0001 {
  view-transition-name: works-0001;
  contain: paint;
}

.works-0002 {
  view-transition-name: works-0002;
  contain: paint;
}

.works-0003 {
  view-transition-name: works-0003;
  contain: paint;
}

.works-0004 {
  view-transition-name: works-0004;
  contain: paint;
}

.works-0005 {
  view-transition-name: works-0005;
  contain: paint;
}

.works-0006 {
  view-transition-name: works-0006;
  contain: paint;
}

.works-0007 {
  view-transition-name: works-0007;
  contain: paint;
}

.works-0008 {
  view-transition-name: works-0008;
  contain: paint;
}

.works-0009 {
  view-transition-name: works-0009;
  contain: paint;
}

.works-0010 {
  view-transition-name: works-0010;
  contain: paint;
}

.works-0011 {
  view-transition-name: works-0011;
  contain: paint;
}

.works-0012 {
  view-transition-name: works-0012;
  contain: paint;
}

.works-0013 {
  view-transition-name: works-0013;
  contain: paint;
}

.works-0014 {
  view-transition-name: works-0014;
  contain: paint;
}

.works-0015 {
  view-transition-name: works-0015;
  contain: paint;
}

.works-0016 {
  view-transition-name: works-0016;
  contain: paint;
}

.works-0017 {
  view-transition-name: works-0017;
  contain: paint;
}

.works-0018 {
  view-transition-name: works-0018;
  contain: paint;
}

.works-0019 {
  view-transition-name: works-0019;
  contain: paint;
}

.works-0020 {
  view-transition-name: works-0020;
  contain: paint;
}

.works-0021 {
  view-transition-name: works-0021;
  contain: paint;
}

.works-0022 {
  view-transition-name: works-0022;
  contain: paint;
}

.works-0023 {
  view-transition-name: works-0023;
  contain: paint;
}

.works-0024 {
  view-transition-name: works-0024;
  contain: paint;
}

.works-0025 {
  view-transition-name: works-0025;
  contain: paint;
}

.works-0026 {
  view-transition-name: works-0026;
  contain: paint;
}

.works-0027 {
  view-transition-name: works-0027;
  contain: paint;
}

.works-0028 {
  view-transition-name: works-0028;
  contain: paint;
}

.works-0029 {
  view-transition-name: works-0029;
  contain: paint;
}

.works-0030 {
  view-transition-name: works-0030;
  contain: paint;
}

.works-0031 {
  view-transition-name: works-0031;
  contain: paint;
}

.works-0032 {
  view-transition-name: works-0032;
  contain: paint;
}

.works-0033 {
  view-transition-name: works-0033;
  contain: paint;
}

.works-0034 {
  view-transition-name: works-0034;
  contain: paint;
}

.works-0035 {
  view-transition-name: works-0035;
  contain: paint;
}

.works-0036 {
  view-transition-name: works-0036;
  contain: paint;
}

.works-0037 {
  view-transition-name: works-0037;
  contain: paint;
}

.works-0038 {
  view-transition-name: works-0038;
  contain: paint;
}

.works-0039 {
  view-transition-name: works-0039;
  contain: paint;
}

.works-0040 {
  view-transition-name: works-0040;
  contain: paint;
}

.works-0041 {
  view-transition-name: works-0041;
  contain: paint;
}

.works-0042 {
  view-transition-name: works-0042;
  contain: paint;
}

.works-0043 {
  view-transition-name: works-0043;
  contain: paint;
}

.works-0044 {
  view-transition-name: works-0044;
  contain: paint;
}

.works-0045 {
  view-transition-name: works-0045;
  contain: paint;
}

.works-0046 {
  view-transition-name: works-0046;
  contain: paint;
}

.works-0047 {
  view-transition-name: works-0047;
  contain: paint;
}

.works-0048 {
  view-transition-name: works-0048;
  contain: paint;
}

.works-0049 {
  view-transition-name: works-0049;
  contain: paint;
}

.works-0050 {
  view-transition-name: works-0050;
  contain: paint;
}

.works-0051 {
  view-transition-name: works-0051;
  contain: paint;
}

.works-0052 {
  view-transition-name: works-0052;
  contain: paint;
}

.works-0053 {
  view-transition-name: works-0053;
  contain: paint;
}

.works-0054 {
  view-transition-name: works-0054;
  contain: paint;
}

.works-0055 {
  view-transition-name: works-0055;
  contain: paint;
}

.works-0056 {
  view-transition-name: works-0056;
  contain: paint;
}

.works-0057 {
  view-transition-name: works-0057;
  contain: paint;
}

.works-0058 {
  view-transition-name: works-0058;
  contain: paint;
}

.works-0059 {
  view-transition-name: works-0059;
  contain: paint;
}

.works-0060 {
  view-transition-name: works-0060;
  contain: paint;
}

.works-0061 {
  view-transition-name: works-0061;
  contain: paint;
}

.works-0062 {
  view-transition-name: works-0062;
  contain: paint;
}

.works-0063 {
  view-transition-name: works-0063;
  contain: paint;
}

.works-0064 {
  view-transition-name: works-0064;
  contain: paint;
}

.works-0065 {
  view-transition-name: works-0065;
  contain: paint;
}

.works-0066 {
  view-transition-name: works-0066;
  contain: paint;
}

.works-0067 {
  view-transition-name: works-0067;
  contain: paint;
}

.works-0068 {
  view-transition-name: works-0068;
  contain: paint;
}

.works-0069 {
  view-transition-name: works-0069;
  contain: paint;
}

.works-0070 {
  view-transition-name: works-0070;
  contain: paint;
}

.works-0071 {
  view-transition-name: works-0071;
  contain: paint;
}

.works-0072 {
  view-transition-name: works-0072;
  contain: paint;
}

.works-0073 {
  view-transition-name: works-0073;
  contain: paint;
}

.works-0074 {
  view-transition-name: works-0074;
  contain: paint;
}

.works-0075 {
  view-transition-name: works-0075;
  contain: paint;
}

.works-0076 {
  view-transition-name: works-0076;
  contain: paint;
}

.works-0077 {
  view-transition-name: works-0077;
  contain: paint;
}

.works-0078 {
  view-transition-name: works-0078;
  contain: paint;
}

.works-0079 {
  view-transition-name: works-0079;
  contain: paint;
}

.works-0080 {
  view-transition-name: works-0080;
  contain: paint;
}

.works-0081 {
  view-transition-name: works-0081;
  contain: paint;
}

.works-0082 {
  view-transition-name: works-0082;
  contain: paint;
}

.works-0083 {
  view-transition-name: works-0083;
  contain: paint;
}

.works-0084 {
  view-transition-name: works-0084;
  contain: paint;
}

.works-0085 {
  view-transition-name: works-0085;
  contain: paint;
}

.works-0086 {
  view-transition-name: works-0086;
  contain: paint;
}

.works-0087 {
  view-transition-name: works-0087;
  contain: paint;
}

.works-0088 {
  view-transition-name: works-0088;
  contain: paint;
}

.works-0089 {
  view-transition-name: works-0089;
  contain: paint;
}

.works-0090 {
  view-transition-name: works-0090;
  contain: paint;
}

.works-0091 {
  view-transition-name: works-0091;
  contain: paint;
}

.works-0092 {
  view-transition-name: works-0092;
  contain: paint;
}

.works-0093 {
  view-transition-name: works-0093;
  contain: paint;
}

.works-0094 {
  view-transition-name: works-0094;
  contain: paint;
}

.works-0095 {
  view-transition-name: works-0095;
  contain: paint;
}

.works-0096 {
  view-transition-name: works-0096;
  contain: paint;
}

.works-0097 {
  view-transition-name: works-0097;
  contain: paint;
}

.works-0098 {
  view-transition-name: works-0098;
  contain: paint;
}

.works-0099 {
  view-transition-name: works-0099;
  contain: paint;
}

.works-0100 {
  view-transition-name: works-0100;
  contain: paint;
}

.works__info--wrap {
  width: 100%;
  margin-top: 5.291005291vw;
}
@media screen and (width < 768px) {
  .works__info--wrap {
    margin-top: 10.2564102564vw;
  }
}
.works__info--wrap.flex-wrap {
  display: flex;
}
@media screen and (width < 768px) {
  .works__info--wrap.flex-wrap {
    flex-direction: column;
    gap: 0vw;
  }
}
.works__info--block {
  width: calc((100% - 5.291005291vw) / 2);
}
@media screen and (width < 768px) {
  .works__info--block {
    width: 100%;
  }
}
.works__info--block.left-block .page__section {
  padding-right: 0;
}
.works__info--block.right-block {
  position: sticky;
  top: 7.9365079365vw;
  right: 0;
  margin-left: 5.291005291vw;
  height: fit-content;
}
@media screen and (width < 768px) {
  .works__info--block.right-block {
    position: static;
    margin-left: 0;
  }
}
.works__info--block.right-block .page__section {
  padding-left: 0;
  padding-right: 0;
}
.works__detail--wrap .page__section--title {
  font-size: 1.0582010582vw;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 0.9259259259vw;
  border-bottom: 1px solid #BBBBBB;
  margin-bottom: 0;
}
@media screen and (width < 768px) {
  .works__detail--wrap .page__section--title {
    font-size: 4.1025641026vw;
    padding-bottom: 3.5897435897vw;
  }
}
.works__detail--inner {
  width: 100%;
  max-width: 52.9100529101vw;
  padding: 2.6455026455vw;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  margin: 13.2275132275vw auto 0;
}
@media screen and (width < 768px) {
  .works__detail--inner {
    max-width: none;
    padding: 5.1282051282vw;
    margin: 10.2564102564vw auto 0;
  }
}
.works__detail--item {
  font-size: 0.9259259259vw;
  font-weight: 300;
  padding: 0.7936507937vw 0;
  border-bottom: 1px solid #BBBBBB;
  line-height: 1.75;
}
@media screen and (width < 768px) {
  .works__detail--item {
    font-size: 3.5897435897vw;
    padding: 3.0769230769vw 0;
  }
}
.works__detail--link {
  width: fit-content;
  margin: 2.6455026455vw 0 0 auto;
}
@media screen and (width < 768px) {
  .works__detail--link {
    margin: 10.2564102564vw 0 0 auto;
  }
}

.floating-image {
  position: absolute;
  width: 150px;
  height: auto;
  border-radius: 1rem;
  /* ここから box-shadow (影) を削除しました */
  opacity: 0;
  /* Hidden initially */
  transition: opacity 0.5s ease-in-out;
}/*# sourceMappingURL=main.css.map */