@charset "UTF-8";
:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-base: #0c1210;
  --color-gray: #ddd;
  --color-theme: #b4e900;
  --color-theme-darken: #6e8f00;
  --color-text: #adbdb7;
  --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
    -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08),
    -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
    inset -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1),
    -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-size: 1.4rem;
  font-family: "Jost", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  overflow-x: hidden;
  background: #000;
  color: #fff;
}

.pos_rel {
  position: relative;
}

.d-inline-block {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
.stretchL,
.stretchR,
.stretchT {
  overflow: hidden;
  position: relative;
  opacity: 0;
}

.stretchL.on {
  -webkit-animation: stretchL 1.5s ease 0s forwards;
          animation: stretchL 1.5s ease 0s forwards;
}

@-webkit-keyframes stretchL {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes stretchL {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.stretchR.on {
  -webkit-animation: stretchR 1.5s ease 0s forwards;
          animation: stretchR 1.5s ease 0s forwards;
}

@-webkit-keyframes stretchR {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes stretchR {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.stretchT.on {
  -webkit-animation: stretchT 1.5s ease 0s forwards;
          animation: stretchT 1.5s ease 0s forwards;
}

@-webkit-keyframes stretchT {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes stretchT {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.inner {
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
}

/* fade_up */
.fadeup {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

.fadeup.on {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* fade_in */
.fadein {
  opacity: 0;
  -webkit-transition-duration: 2s;
          transition-duration: 2s;
}

.fadein.on {
  opacity: 1;
}

/* fade_out */
.fadeout {
  opacity: 1;
  -webkit-transition-duration: 2s;
          transition-duration: 2s;
}

.fadeout.on {
  opacity: 0;
}

/* fadeleft */
.fadeleft.on {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.fadeleft {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}

/* fadeleft */
.faderight.on {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.faderight {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}

.fadesplit {
  display: block;
  overflow: hidden;
}

.fadesplit > span {
  -webkit-transform: translateY(120%);
          transform: translateY(120%);
  display: inline-block;
  opacity: 0;
}

/* .on .fadesplit > span, */
.on.fadesplit > span {
  -webkit-animation: text-split 0.74s cubic-bezier(0.54, 0, 0, 0.99) 0s forwards;
  animation: text-split 0.74s cubic-bezier(0.54, 0, 0, 0.99) 0s forwards;
}

@-webkit-keyframes text-split {
  0% {
    -webkit-transform: translateY(120%);
            transform: translateY(120%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes text-split {
  0% {
    -webkit-transform: translateY(120%);
            transform: translateY(120%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/*==================================================================
	Header setting
===================================================================*/
#header {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* align-items: center; */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  width: 100%;
  padding: 20px 2% 20px 7.8%;
  z-index: 99;
}

/*
#header.scroll {
    background: #000;
}
*/
#logo {
  width: 40%;
}

#logo img {
  width: 150px;
}

#header .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
}

#header .wrap .cont_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

#gnav {
  padding-top: 10px;
  width: 90%;
}

#gnav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#gnav > ul > li > a {
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5rem;
  line-height: 1.2;
  padding: 0 30px;
  position: relative;
  text-transform: uppercase;
  text-align: center;
}

#gnav > ul > li > a > span {
  display: block;
  position: relative;
}

#gnav > ul > li > a > span::after {
  background: #fff;
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  will-change: width;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#gnav > ul > li.active > a > span::after,
#gnav > ul > li > a:hover > span::after {
  width: 100%;
}

#icon-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 10%;
}

#icon-head a {
  display: inline-block;
}

#icon-head img {
  max-width: 33px;
}

/* 親を基準に相対配置 */
.nav.has-dropdown {
  position: relative;
  overflow: visible; /* 子要素がはみ出しても隠れないように */
}

/* 1) 初期状態：隠す・上にオフセット */
.nav.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  pointer-events: none; /* 非表示時はクリック無効 */
  text-align: center;
  text-transform: uppercase;
}

/* 2) デスクトップ：ホバー／フォーカスでフェード＆スライドダウン */
@media screen and (min-width: 768px) {
  .nav.has-dropdown:hover .dropdown,
  .nav.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: auto; /* 表示時にクリック有効 */
  }
}
/* 3) SP：常時表示・アニメーション解除 */
@media screen and (max-width: 767px) {
  .nav.has-dropdown .dropdown {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-transition: none !important;
    transition: none !important;
    pointer-events: auto !important;
    background: transparent;
    /* box-shadow も外したいなら none */
  }
}
/* ドロップダウン内リンク */
.nav.has-dropdown .dropdown li a {
  display: block;
  padding: 1em;
  color: #fff;
  white-space: nowrap;
  font-family: "Jost", sans-serif;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .nav.has-dropdown .dropdown li a {
    padding: 0.3em;
  }
}

@media screen and (max-width: 1280px) {
  #header {
    padding: 20px 2%;
  }
  #logo {
    width: 30%;
  }
  #header .wrap {
    width: 70%;
  }
  #gnav > ul > li > a {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  #logo {
    margin-bottom: 15px;
  }
  #logo img {
    width: 120px;
  }
  #logo02 img {
    height: 20px;
  }
  #header {
    padding: 15px 15px 0;
  }
  #header .wrap {
    background: rgba(0, 0, 0, 0.6);
    display: none;
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    height: calc(100vh - 65px);
  }
  #header .cont_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    padding-bottom: 65px;
  }
  #gnav {
    width: 100%;
    padding-top: 0;
    padding-bottom: 40px;
  }
  #gnav > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #gnav > ul li {
    padding: 15px 0;
  }
  #icon-head {
    background: #ff85bd;
    width: 100%;
  }
  #icon-head a {
    color: #592d37;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px;
  }
  #icon-head a span {
    font-size: 1.4rem;
    font-weight: 500;
    margin-left: 15px;
  }
  #gnav-sp {
    background: #27262b;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-overflow-scrolling: auto;
    padding: 50px 20px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
  }
  #gnav-sp > ul {
    padding: 0 10px;
  }
  #gnav-sp > ul > li {
    margin-top: 50px;
    width: 100%;
  }
  #gnav-sp > ul > li > a,
  #gnav-sp > ul > li > span {
    display: block;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 10px;
  }
  #gnav-sp > ul > li > ul > li > a,
  #gnav-sp > ul > li > ul > li > span {
    display: block;
    color: #8c8c8d;
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 15px;
  }
  #menu {
    display: block;
    height: 19px;
    width: 35px;
    position: absolute;
    right: 16px;
    top: 22px;
    z-index: 99;
  }
  #menu > span {
    background-color: #fff;
    display: block;
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    text-indent: -999em;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  #menu.active > span {
    background-color: #fff;
  }
  #menu > span:nth-child(1) {
    top: 0;
  }
  #menu.active > span:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
            transform: translateY(7px) rotate(45deg);
  }
  #menu > span:nth-child(2) {
    top: 9px;
  }
  #menu.active > span:nth-child(2) {
    opacity: 0;
  }
  #menu > span:nth-child(3) {
    bottom: 0;
  }
  #menu.active > span:nth-child(3) {
    -webkit-transform: translateY(-11px) rotate(-45deg);
            transform: translateY(-11px) rotate(-45deg);
  }
}
/*==================================================================
	Footer setting
===================================================================*/
#footer .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
}

#footer #logo img {
  width: 120px;
}

#footer .f-section {
  background: #592d37;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px 2% 35px 7.8%;
}

.copyright {
  background: #4d4d4d;
  color: #fff;
  font-size: 1rem;
  padding: 10px 0;
  text-align: center;
}

@media screen and (max-width: 1280px) {
  #footer .wrap {
    width: 70%;
  }
  #footer .f-section {
    padding: 20px 2%;
  }
  #footer #logo img {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  #footer .wrap {
    display: none;
  }
  #footer .f-section {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #footer #logo {
    margin-bottom: 0;
  }
}
.pageTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
}

/*==================================================================
	contents setting
===================================================================*/
section h2 {
  font-size: clamp(3.2rem, 1.9844408428rem + 3.2414910859vw, 5.2rem);
  font-weight: 400;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 2rem;
  margin-bottom: 60px;
}

.mainvisual {
  position: relative;
}
.mainvisual #Spacing .scroll {
  left: 40px;
  bottom: 40px;
  position: absolute;
}
.mainvisual #Spacing .scroll span {
  opacity: 0.7;
  display: block;
  font-size: 10px;
  color: #DDDDDD;
  letter-spacing: 3px;
  margin: 0 0 -4px -2px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "brockmann-medium";
  -webkit-animation: appearingText 1.5s ease infinite;
  animation: appearingText 1.5s ease infinite;
}

#about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  #about {
    display: block;
  }
}
#about > * {
  width: 50%;
}
@media screen and (max-width: 767px) {
  #about > * {
    width: 100%;
  }
}
#about .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#about .description .inner {
  max-width: 50%;
  padding: 0 15px;
}
@media screen and (max-width: 1024px) {
  #about .description .inner {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
#about .description .inner .en {
  font-size: clamp(2rem, 1.6353322528rem + 0.9724473258vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 2rem;
  margin-bottom: 20px;
  line-height: 1.45;
}
#about .description .inner .ja {
  letter-spacing: 0.5rem;
}
#about .description .inner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 40px 0;
}
#about .description .inner dl dt {
  width: 15%;
}
#about .description .inner dl dd {
  width: 85%;
  margin-bottom: 10px;
}
#about .description .inner .icon {
  width: 30px;
}

#works {
  padding: 120px 80px;
}
@media screen and (max-width: 767px) {
  #works {
    padding: 60px 15px;
  }
}
#works .note {
  text-align: justify;
  font-size: 1.2rem;
  line-height: 1.45;
}
#works .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#works .wrapper ul {
  list-style: none;
}
#works .wrapper ul li {
  padding: 0 20px;
  margin-bottom: 40px;
  letter-spacing: 0.5rem;
  line-height: 1.45;
}
#works .genre li a {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  font-weight: 500;
}

.l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10rem;
}
@media screen and (min-width: 1920px) {
  .l-inner {
    max-width: 100vw;
  }
}

.l-section {
  border-top: 1px solid #eee;
}

.l-section .l-inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.c-temp {
  line-height: 1;
}

.c-temp .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.c-temp .text {
  font-size: 2.4rem;
  font-weight: bold;
}

.c-temp .button {
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
  width: 12rem;
  padding: 1.6rem 0 1.2rem;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 100px;
  background-color: var(--color-theme);
}

.c-footer .l-inner {
  padding-top: 0;
}

.c-footer .text {
  color: var(--color-gray);
}

.c-info {
  font-size: 1.4rem;
  display: inline-block;
  margin-top: 4rem;
  margin-bottom: 6.4rem;
}

.c-info li {
  position: relative;
  padding-left: 16px;
  color: #fff;
}

.c-info li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  display: inline-block;
  width: 8px;
  height: 2px;
  content: "";
  background-color: var(--color-gray);
}

.c-info li + li {
  margin-top: 0.8rem;
}

.c-title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  display: inline-block;
  min-width: 32rem;
  margin-bottom: 6.4rem;
  vertical-align: top;
  color: #fff;
}

.c-title [class*=ico-] {
  font-size: 1.3rem;
  line-height: 1;
  display: block;
  width: 10rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem 0 0.6rem;
  text-align: center;
  letter-spacing: 0.05em;
  border-radius: 100px;
  background-color: var(--color-theme-darken);
}

.c-title .ico-advanced {
  color: #fff;
  background-color: #333;
}

/* slider */
.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.splide {
  z-index: 0;
}

/* 前へ / 次へボタン */
.splide__arrow--prev,
.splide__arrow--next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border: 1px solid #fff;
  border-radius: 50%;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #fff;
  border-width: 3px 3px 0 0;
}

.splide__arrow--prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.splide__arrow--next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.splide__arrow:disabled {
  pointer-events: none;
  opacity: 0;
}

.splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  -webkit-transition: none;
  transition: none;
}

.splide__pagination {
  font-size: 0;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  -webkit-transition: none;
  transition: none;
}

.splide__slide:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  -webkit-transition: none;
  transition: none;
}

.splide-wrapper {
  position: relative;
}

.splide__arrow > svg {
  display: none;
}

.card02 {
  overflow: hidden;
}

.card02 .splide__track {
  overflow: visible;
}

.card02 .splide-controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 6.2rem;
}

.card02 .splide__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 0.8rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 auto 0 0;
  text-align: center;
}

.card02 .splide__pagination > li {
  font-size: 0;
  /* liタグの下にある余白を消すため */
}

.card02 .splide__pagination__page {
  width: 1.6rem;
  height: 3px;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  vertical-align: top;
  background-color: var(--color-gray);
}

.card02 .splide__pagination__page.is-active {
  width: 4rem;
  background-color: var(--color-theme);
}

.card02 .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.6rem;
}

.card02 .splide__arrow--prev,
.card02 .splide__arrow--next {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
}

.card02 .splide__arrow:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.card02 .splide__arrow:disabled::before {
  -webkit-box-shadow: var(--box-shadow-inset);
          box-shadow: var(--box-shadow-inset);
}

.card02 .splide__slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 0.6;
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
}

.card02 .splide__slide.is-active {
  opacity: 1;
}

.card02 .slide {
  overflow: hidden;
  border-radius: 4px;
}

.card02 .slide-media {
  padding-top: 62.5%;
}

.card02 .slide-media img {
  height: calc(100% + 16px);
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
}

.card02 .slide-content {
  padding: 3.2rem;
  background-color: #3c3c3c;
}

.card02 .slide-date {
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  color: var(--color-theme);
}

.card02 .slide-title {
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3.2em;
  margin-top: 1.6rem;
}

@media only screen and (max-width: 1024px) {
  .l-inner {
    padding: 0 4rem;
  }
  .pc {
    display: none !important;
  }
}
@media only screen and (max-width: 599px) {
  .pc-tab {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
  .splide__arrow--prev::before,
  .splide__arrow--next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .splide__arrow--prev:hover::before,
  .splide__arrow--next:hover::before {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .card02 .slide {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .card02 .slide img {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .card02 .slide:hover {
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
  }
  .card02 .slide:hover img {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* スライド上に重ねるオーバーレイ */
.slide__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1em;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* ホバー時にタイトルをフェードイン */
.splide__slide:hover .slide__overlay {
  opacity: 1;
}

/* style.css に入れる */
.splide__slide img {
  width: 480px;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover; /* 元画像をCSSで切り抜き */
}

/* モーダル内 Splide の矢印を下端左右に固定 */
#modal-splide {
  position: relative; /* 既に設定済みか確認 */
}

/* 上書き */
#modal-splide .splide__arrows {
  position: absolute;
  top: auto; /* 上は無効化 */
  bottom: 1em; /* 下端から1em上 */
  left: 0;
  width: 100%;
  -webkit-transform: none;
          transform: none; /* 中央寄せトランスフォームをリセット */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
}

#modal-splide .splide__arrow {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ───── CONTACT セクションを2カラムに ───── */
#contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem; /* カラム間の余白 */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 高さを揃えたい場合は center に */
  padding: 120px 80px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #contact {
    padding: 60px 15px;
  }
}

/* 左カラム：DESCRIPTION */
#contact .description {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%; /* 横幅を全体の30%に */
  min-width: 200px; /* 狭すぎないように */
}

/* 右カラム：FORM */
#contact .form {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 65%;
          flex: 1 1 65%; /* 残り65%を使う */
  max-width: 100%; /* 横幅最大化 */
}

/* モバイル時は縦並びに */
@media screen and (max-width: 767px) {
  #contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact .description,
  #contact .form {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
/* ───────────────── CONTACT FORM ───────────────── */
#contact .form form {
  padding: 2rem;
  border-radius: 8px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 各フィールド毎に余白を */
#contact .form form p {
  margin-bottom: 2.5rem;
}

/* ラベル */
#contact .form form p label {
  display: block;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
#contact .form form p label #text {
  padding-bottom: 10px;
}

/* テキスト／メール／セレクト／テキストエリア 共通 */
#contact .form form input[type=text],
#contact .form form input[type=email],
#contact .form form select,
#contact .form form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1.4rem;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fafafa;
}

/* フォーカス時のアクセント */
#contact .form form input[type=text]:focus,
#contact .form form input[type=email]:focus,
#contact .form form select:focus,
#contact .form form textarea:focus {
  outline: none;
  border-color: #999;
}

/* テキストエリアの高さ調整 */
#contact .form form textarea {
  min-height: 180px;
}

/* 送信ボタン */
#contact .form form input[type=submit],
#contact .form form button[type=submit] {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

/* 送信ボタンホバー */
#contact .form form input[type=submit]:hover,
#contact .form form button[type=submit]:hover {
  background: #555;
}

/* SP時はパディングを少しコンパクトに */
@media screen and (max-width: 767px) {
  #contact .form form {
    padding: 1.5rem;
  }
  #contact .form form p {
    margin-bottom: 1.2rem;
  }
}
#contact .form form p {
  margin-bottom: 2rem;
}
#contact .form form p label {
  display: block;
  margin-bottom: 0.75rem;
}
#contact .form form input[type=text],
#contact .form form input[type=email],
#contact .form form select,
#contact .form form textarea {
  width: 100%;
}
#contact .form form input[type=submit],
#contact .form form button[type=submit] {
  display: inline-block;
  padding: 1.25rem 8rem;
  font-size: 1.125rem;
  background: #ff9900;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: background 0.2s, -webkit-transform 0.1s;
  transition: background 0.2s, -webkit-transform 0.1s;
  transition: background 0.2s, transform 0.1s;
  transition: background 0.2s, transform 0.1s, -webkit-transform 0.1s;
}
#contact .form form input[type=submit]:hover,
#contact .form form button[type=submit]:hover,
#contact .form form input[type=submit]:focus,
#contact .form form button[type=submit]:focus {
  background: #444;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
@media screen and (max-width: 767px) {
  #contact .form form p {
    margin-bottom: 1.5rem;
  }
  #contact .form form input[type=submit],
  #contact .form form button[type=submit] {
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
  }
}

/* シンプルモーダル */
#simple-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw; /* ビューポート幅いっぱい */
  height: 100vh; /* ビューポート高さいっぱい */
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#simple-modal-overlay img {
  /* 縦横比を保ちつつ、画面内に最大限フィット */
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* 閉じる／前後ボタンはそのまま */
#simple-modal-overlay .close-btn,
#simple-modal-overlay .nav-btn {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

#simple-modal-overlay .close-btn {
  top: 20px;
  right: 20px;
}

#simple-modal-overlay .nav-btn.prev {
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#simple-modal-overlay .nav-btn.next {
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* Opening スクリーンの背景フラッシュ */
#Opening .frame01 {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  -webkit-animation: flashing 0.8s step-start infinite;
          animation: flashing 0.8s step-start infinite;
}
@media screen and (max-width: 767px) {
  #Opening .frame01 {
    background-size: 200%;
    background-repeat: no-repeat;
  }
}

@-webkit-keyframes flashing {
  0% {
    background-image: url("../imgs/splash/01.png");
  }
  25% {
    background-image: url("../imgs/splash/05.png");
  }
  50% {
    background-image: url("../imgs/splash/08.png");
  }
  75% {
    background-image: url("../imgs/splash/09.png");
  }
  to {
    background-image: url("../imgs/splash/07.png");
  }
}
@keyframes flashing {
  0% {
    background-image: url("../imgs/splash/01.png");
  }
  25% {
    background-image: url("../imgs/splash/05.png");
  }
  50% {
    background-image: url("../imgs/splash/08.png");
  }
  75% {
    background-image: url("../imgs/splash/09.png");
  }
  to {
    background-image: url("../imgs/splash/07.png");
  }
}
/* Loader 全体を真っ黒／全画面で覆う */
#Loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

/* 中の bar を横幅0→100% で伸ばすアニメ */
#Loader .bar {
  width: 0;
  height: 4px; /* 好きな太さに */
  background: #fff; /* 好きな色に */
  -webkit-animation: loaderBar 1.2s ease-out forwards;
          animation: loaderBar 1.2s ease-out forwards;
}

/* バー伸びアニメ */
@-webkit-keyframes loaderBar {
  0% {
    width: 0;
  }
  80% {
    width: 100%;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
@keyframes loaderBar {
  0% {
    width: 0;
  }
  80% {
    width: 100%;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
/* 透過フェードアウト（JSで .loaded を付与） */
#Loader.loaded {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

.description .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* アイテムを縦中央揃え */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /* 左右に余白を均等配置 */
}

.work-category-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .work-category-nav ul {
    margin-top: 20px;
  }
}

.work-category-nav li a {
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5rem;
  line-height: 1.2;
  padding: 0 30px;
  position: relative;
  text-transform: uppercase;
  text-align: center;
}/*# sourceMappingURL=style.css.map */