@charset "UTF-8";
@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

/* ====================================================
HTML
==================================================== */
html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  font-feature-settings: "palt";
  font-weight: 300;
  color: #222222;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
@media screen and (max-width: 834px) {
  body {
    font-size: 1.5rem;
  }
}

.inner {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

/* ====================================================
FONTS
==================================================== */
.ja {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 2;
}

.en {
  font-family: "Questrial", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}

/* ====================================================
SWIPER
==================================================== */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ====================================================
Animation
==================================================== */
.fadein.scroll-activate {
  opacity: 0;
  filter: blur(10px);
  translate: 0 15px;
}

.fadein.scroll-activate.active {
  opacity: 1;
  filter: blur();
  transition: opacity 0.5s, translate 0.5s, filter 0.5s;
  translate: 0;
}

.fadein-p.scroll-activate {
  position: relative;
  z-index: 1;
}

.fadein-p.scroll-activate::before {
  content: "";
  z-index: 5;
  display: block;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 0.8);
  background-position: 50% 50%;
  background-size: cover;
  filter: blur(0px) contrast(20);
  left: 0;
  top: 0;
  opacity: 1;
  position: absolute;
}

.fadein-p.scroll-activate.active::before {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.104, 0.204, 0.492, 1) 0.25s;
}

/* A Modern CSS Reset */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  font-weight: 400;
}

a,
button {
  cursor: revert;
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  padding-left: 0;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: normal;
  text-align: left;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

/* ====================================================
Module
==================================================== */
/* ====================================================
Header
==================================================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  position: fixed;
  width: 100%;
  top: 0px;
  right: 0;
  left: 0;
  position: fixed;
  z-index: 1000;
}
@media screen and (min-width: 835px) {
  .header {
    margin: 0 auto;
    padding: 20px 2% 20px 5.7%;
    transition: transform 0.6s ease, opacity 0.6s ease;
  }
}
@media screen and (max-width: 834px) {
  .header {
    padding: 10px 3% 5px;
    position: absolute;
  }
}

@media screen and (min-width: 835px) {
  .header.hidden {
    transform: none;
    opacity: 1;
    animation-name: fadein;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadein {
    0% {
      opacity: 0;
      transform: translateY(0);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 834px) {
  .header-left {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }
}

.company__logo {
  opacity: 1;
  width: 110px;
  height: auto;
  transition: width 0.4s ease, opacity 0.4s ease;
}
@media screen and (max-width: 1200px) {
  .company__logo {
    max-width: 13rem;
    height: auto;
  }
}
@media screen and (max-width: 834px) {
  .company__logo {
    max-width: 6rem;
  }
}

.header__access {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__access a {
  color: #5a7da4;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid #5a7da4;
  font-weight: 300;
}

@media screen and (max-width: 834px) {
  .header-right {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.header-right .btn-box .btn-w {
  border: 1px solid #111;
}

/* ====================================================
Footer
==================================================== */
.footer {
  padding: 38.5rem 0 5rem;
  background-color: #0f0f0f;
}
@media screen and (max-width: 834px) {
  .footer {
    padding: 4rem 0 3rem;
  }
}
.footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__instagram {
  display: flex;
  gap: 1rem;
  color: #fff;
  align-items: center;
  justify-content: center;
}
.footer__instagram img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__instagram .en {
  font-size: 14px;
}
.footer .copyright {
  color: #838383;
  font-size: 1.2rem;
  text-align: right;
}
@media screen and (max-width: 834px) {
  .footer .copyright {
    padding: 1rem 0 0;
  }
}

/* ====================================================
common
==================================================== */
body.active {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ====================================================
BTN
==================================================== */
.btn-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 834px) {
  .btn-box {
    gap: 0.5rem;
  }
}

.btn {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 400;
  max-width: 100%;
  line-height: 22px;
  width: 169px;
  height: 39px;
  border-radius: 35px;
  text-align: center;
  color: #fff;
  background-color: #111111;
  border: 1px solid #111111;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .btn {
    font-size: 1rem;
    height: 27.5px;
    width: 140px;
  }
}

.btn-w {
  width: 176px;
  height: 55px;
  color: #111111;
  border: 1px solid #fff;
  background-color: #fff;
}
@media screen and (max-width: 834px) {
  .btn-w {
    height: 27.5px;
    width: 114px;
  }
}

.btn-b {
  width: 278px;
  height: 55px;
  color: #fff;
  background-color: #111111;
  border: 1px solid #111111;
}
@media screen and (max-width: 834px) {
  .btn-b {
    height: 27.5px;
    width: 160px;
  }
}

.fcw .btn {
  color: #ffffff;
  border: 1px solid #ffffff;
  background-color: transparent;
}

.btn.center {
  margin: 0 auto;
}

.btn:hover {
  color: #fff;
}

.btn-w:hover {
  color: #111111;
}

.btn-txt__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  height: 19.5px;
  width: 90%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 834px) {
  .btn-txt__wrap {
    height: 14px;
    text-align: center;
    width: 100%;
  }
}

.btn-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  transform: translateY(0);
  transition: transform 0.6s ease;
}

.btn:hover .btn-txt {
  transform: translateY(-100%);
}

.btn-txt .arrow {
  width: 10px;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 5;
}
@media screen and (max-width: 834px) {
  .btn-txt .arrow {
    width: 8px;
    height: auto;
  }
}

.btn-txt .arrow img {
  display: block;
  height: auto;
}

.btn:hover .btn-txt {
  transform: translate(0, -100%);
  transition: all 0.6s;
}

/* ====================================================
Path animation
==================================================== */
/* 初期状態 */
.path {
  opacity: 0;
  transform: translateY(60px);
}

/* 発火後 */
.scroll-activate.active .path {
  animation: fadeUp 0.6s ease-out forwards;
}

/* 遅延（順番に） */
.scroll-activate.active .path:nth-child(1) {
  animation-delay: 0.08s;
}

.scroll-activate.active .path:nth-child(2) {
  animation-delay: 0.16s;
}

.scroll-activate.active .path:nth-child(3) {
  animation-delay: 0.24s;
}

.scroll-activate.active .path:nth-child(4) {
  animation-delay: 0.32s;
}

.scroll-activate.active .path:nth-child(5) {
  animation-delay: 0.4s;
}

.scroll-activate.active .path:nth-child(6) {
  animation-delay: 0.48s;
}

.scroll-activate.active .path:nth-child(7) {
  animation-delay: 0.56s;
}

.scroll-activate.active .path:nth-child(8) {
  animation-delay: 0.64s;
}

.scroll-activate.active .path:nth-child(9) {
  animation-delay: 0.72s;
}

.scroll-activate.active .path:nth-child(10) {
  animation-delay: 0.8s;
}

.scroll-activate.active .path:nth-child(11) {
  animation-delay: 0.88s;
}

.scroll-activate.active .path:nth-child(12) {
  animation-delay: 0.96s;
}

.scroll-activate.active .path:nth-child(13) {
  animation-delay: 1.04s;
}

.scroll-activate.active .path:nth-child(14) {
  animation-delay: 1.12s;
}

.scroll-activate.active .path:nth-child(15) {
  animation-delay: 1.2s;
}

.scroll-activate.active .path:nth-child(16) {
  animation-delay: 1.28s;
}

.scroll-activate.active .path:nth-child(17) {
  animation-delay: 1.36s;
}

.scroll-activate.active .path:nth-child(18) {
  animation-delay: 1.44s;
}

.scroll-activate.active .path:nth-child(19) {
  animation-delay: 1.52s;
}

.scroll-activate.active .path:nth-child(20) {
  animation-delay: 1.6s;
}

.scroll-activate.active .path:nth-child(21) {
  animation-delay: 1.68s;
}

.scroll-activate.active .path:nth-child(22) {
  animation-delay: 1.76s;
}

.scroll-activate.active .path:nth-child(23) {
  animation-delay: 1.84s;
}

.scroll-activate.active .path:nth-child(24) {
  animation-delay: 1.92s;
}

.scroll-activate.active .path:nth-child(25) {
  animation-delay: 2s;
}

.scroll-activate.active .path:nth-child(26) {
  animation-delay: 2.08s;
}

.scroll-activate.active .path:nth-child(27) {
  animation-delay: 2.16s;
}

.scroll-activate.active .path:nth-child(28) {
  animation-delay: 2.24s;
}

.scroll-activate.active .path:nth-child(29) {
  animation-delay: 2.32s;
}

.scroll-activate.active .path:nth-child(30) {
  animation-delay: 2.4s;
}

.scroll-activate.active .path:nth-child(31) {
  animation-delay: 2.48s;
}

.scroll-activate.active .path:nth-child(32) {
  animation-delay: 2.56s;
}

.scroll-activate.active .path:nth-child(33) {
  animation-delay: 2.64s;
}

.scroll-activate.active .path:nth-child(34) {
  animation-delay: 2.72s;
}

.scroll-activate.active .path:nth-child(35) {
  animation-delay: 2.8s;
}

.scroll-activate.active .path:nth-child(36) {
  animation-delay: 2.88s;
}

.scroll-activate.active .path:nth-child(37) {
  animation-delay: 2.96s;
}

.scroll-activate.active .path:nth-child(38) {
  animation-delay: 3.04s;
}

.scroll-activate.active .path:nth-child(39) {
  animation-delay: 3.12s;
}

.scroll-activate.active .path:nth-child(40) {
  animation-delay: 3.2s;
}

.scroll-activate.active .path:nth-child(41) {
  animation-delay: 3.28s;
}

.scroll-activate.active .path:nth-child(42) {
  animation-delay: 3.36s;
}

.scroll-activate.active .path:nth-child(43) {
  animation-delay: 3.44s;
}

.scroll-activate.active .path:nth-child(44) {
  animation-delay: 3.52s;
}

.scroll-activate.active .path:nth-child(45) {
  animation-delay: 3.6s;
}

.scroll-activate.active .path:nth-child(46) {
  animation-delay: 3.68s;
}

.scroll-activate.active .path:nth-child(47) {
  animation-delay: 3.76s;
}

.scroll-activate.active .path:nth-child(48) {
  animation-delay: 3.84s;
}

.scroll-activate.active .path:nth-child(49) {
  animation-delay: 3.92s;
}

.scroll-activate.active .path:nth-child(50) {
  animation-delay: 4s;
}

.scroll-activate.active .path:nth-child(51) {
  animation-delay: 4.08s;
}

.scroll-activate.active .path:nth-child(52) {
  animation-delay: 4.16s;
}

.scroll-activate.active .path:nth-child(53) {
  animation-delay: 4.24s;
}

.scroll-activate.active .path:nth-child(54) {
  animation-delay: 4.32s;
}

.scroll-activate.active .path:nth-child(55) {
  animation-delay: 4.4s;
}

.scroll-activate.active .path:nth-child(56) {
  animation-delay: 4.48s;
}

.scroll-activate.active .path:nth-child(57) {
  animation-delay: 4.56s;
}

.scroll-activate.active .path:nth-child(58) {
  animation-delay: 4.64s;
}

.scroll-activate.active .path:nth-child(59) {
  animation-delay: 4.72s;
}

.scroll-activate.active .path:nth-child(60) {
  animation-delay: 4.8s;
}

.scroll-activate.active .path:nth-child(61) {
  animation-delay: 4.88s;
}

.scroll-activate.active .path:nth-child(62) {
  animation-delay: 4.96s;
}

.scroll-activate.active .path:nth-child(63) {
  animation-delay: 5.04s;
}

.scroll-activate.active .path:nth-child(64) {
  animation-delay: 5.12s;
}

.scroll-activate.active .path:nth-child(65) {
  animation-delay: 5.2s;
}

.scroll-activate.active .path:nth-child(66) {
  animation-delay: 5.28s;
}

.scroll-activate.active .path:nth-child(67) {
  animation-delay: 5.36s;
}

.scroll-activate.active .path:nth-child(68) {
  animation-delay: 5.44s;
}

.scroll-activate.active .path:nth-child(69) {
  animation-delay: 5.52s;
}

.scroll-activate.active .path:nth-child(70) {
  animation-delay: 5.6s;
}

.scroll-activate.active .path:nth-child(71) {
  animation-delay: 5.68s;
}

.scroll-activate.active .path:nth-child(72) {
  animation-delay: 5.76s;
}

.scroll-activate.active .path:nth-child(73) {
  animation-delay: 5.84s;
}

.scroll-activate.active .path:nth-child(74) {
  animation-delay: 5.92s;
}

.scroll-activate.active .path:nth-child(75) {
  animation-delay: 6s;
}

.scroll-activate.active .path:nth-child(76) {
  animation-delay: 6.08s;
}

.scroll-activate.active .path:nth-child(77) {
  animation-delay: 6.16s;
}

.scroll-activate.active .path:nth-child(78) {
  animation-delay: 6.24s;
}

.scroll-activate.active .path:nth-child(79) {
  animation-delay: 6.32s;
}

.scroll-activate.active .path:nth-child(80) {
  animation-delay: 6.4s;
}

.scroll-activate.active .path:nth-child(81) {
  animation-delay: 6.48s;
}

.scroll-activate.active .path:nth-child(82) {
  animation-delay: 6.56s;
}

.scroll-activate.active .path:nth-child(83) {
  animation-delay: 6.64s;
}

.scroll-activate.active .path:nth-child(84) {
  animation-delay: 6.72s;
}

.scroll-activate.active .path:nth-child(85) {
  animation-delay: 6.8s;
}

.scroll-activate.active .path:nth-child(86) {
  animation-delay: 6.88s;
}

.scroll-activate.active .path:nth-child(87) {
  animation-delay: 6.96s;
}

.scroll-activate.active .path:nth-child(88) {
  animation-delay: 7.04s;
}

.scroll-activate.active .path:nth-child(89) {
  animation-delay: 7.12s;
}

.scroll-activate.active .path:nth-child(90) {
  animation-delay: 7.2s;
}

.scroll-activate.active .path:nth-child(91) {
  animation-delay: 7.28s;
}

.scroll-activate.active .path:nth-child(92) {
  animation-delay: 7.36s;
}

.scroll-activate.active .path:nth-child(93) {
  animation-delay: 7.44s;
}

.scroll-activate.active .path:nth-child(94) {
  animation-delay: 7.52s;
}

.scroll-activate.active .path:nth-child(95) {
  animation-delay: 7.6s;
}

.scroll-activate.active .path:nth-child(96) {
  animation-delay: 7.68s;
}

.scroll-activate.active .path:nth-child(97) {
  animation-delay: 7.76s;
}

.scroll-activate.active .path:nth-child(98) {
  animation-delay: 7.84s;
}

.scroll-activate.active .path:nth-child(99) {
  animation-delay: 7.92s;
}

.scroll-activate.active .path:nth-child(100) {
  animation-delay: 8s;
}

/* アニメーション */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=common.css.map */