@charset "UTF-8";
/* ========================================
  Works
======================================== */
.works {
  position: relative;
  overflow: hidden;
}
.works::before, .works::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.works::before {
  background-image: url("/wp-content/uploads/2026/05/0424_005.jpg");
  opacity: 1;
}
.works::after {
  background-image: url("/wp-content/uploads/2026/05/0428_001.jpeg");
  opacity: 0;
}
.works.is-bg-change::before {
  opacity: 0;
}
.works.is-bg-change::after {
  opacity: 1;
}
.works > * {
  position: relative;
  z-index: 1;
}

.accordion {
  background: #fff;
}

/* タイトル */
.accordion__title {
  position: relative;
  margin: 0;
  padding: 48px 0 42px;
  color: #121936;
  font-size: 22px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: center;
  cursor: pointer;
}

/* View More */
.accordion__title::after {
  content: "View More";
  display: block;
  margin-top: 42px;
  margin-bottom: 14px;
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.08em;
}

/* View More 下の矢印 */
.accordion__title::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: 14px auto 0;
  border-right: 2px solid #121936;
  border-bottom: 2px solid #121936;
  transform: rotate(45deg);
  position: absolute;
  left: 50%;
  bottom: 40px;
  translate: -50% 0;
}

/* 開いたらView More消す */
.accordion.is-open .accordion__title::before,
.accordion.is-open .accordion__title::after {
  content: none;
  display: none !important;
}

/* コンテンツ */
.accordion__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease;
}

.accordion.is-open .accordion__content {
  max-height: 3000px;
  opacity: 1;
}

/* Close */
.accordion__close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 72px auto 0;
  padding: 0;
  border: none;
  background: transparent;
  color: #121936;
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.accordion__close::after {
  content: "";
  width: 16px;
  height: 16px;
  border-left: 2px solid #121936;
  border-top: 2px solid #121936;
  transform: rotate(45deg);
}

/* ========================================
  Works Responsive
======================================== */
@media (max-width: 781px) {
  .accordion__title {
    padding: 36px 0;
    font-size: 18px;
  }
  .accordion__title::before {
    bottom: 35px;
  }
}
.contact__box .smb-box__background {
  transition: background-color 0.3s ease;
}

.contact__box:hover .smb-box__background {
  background-color: #DADBE8;
}

@media (max-width: 781px) {
  .contact__box__title img {
    width: 25px !important;
  }
  .contact__box__title span {
    font-size: 20px !important;
  }
  .contact__box__content span {
    font-size: 18px !important;
  }
}
.contact__box__content a {
  text-decoration: none;
}

/* ========================================
   About
======================================== */
.about {
  position: relative;
  padding: 120px 0;
}

.about .smb-section__subtitle {
  text-align: left;
}

.about .smb-section__title {
  text-align: left;
}
.about .smb-section__title::after {
  content: none;
}

.about .smb-media-text {
  position: relative;
  max-width: 1120px;
  min-height: 560px;
  margin-left: auto;
  margin-right: 0;
  padding: 80px 120px 80px 0;
  display: flex;
  align-items: center;
  overflow: visible;
  background: none;
}

/* 背景 */
.about .smb-media-text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 240px;
  right: calc(50% - 50vw);
  background: #dfe1ee;
  z-index: -1;
}

/* 画像 */
.about .smb-media-text__figure {
  position: relative;
  flex: 0 0 760px;
  margin-left: -420px;
  margin-right: 95px;
}

/* ========================================
   Tablet
======================================== */
@media (max-width: 1200px) {
  .about .smb-media-text {
    max-width: 100%;
    padding: 80px 0px 80px 0;
  }
  .about .smb-media-text::before {
    left: 160px;
  }
  .about .smb-media-text__figure {
    flex: 0 0 620px;
    margin-left: 0px;
    margin-right: 0px;
  }
}
/* ========================================
   SP
======================================== */
@media (max-width: 781px) {
  .about {
    padding: 80px 0px;
  }
  .about .smb-media-text {
    padding: 60px 0px;
  }
}
/* 初期状態 */
.about .smb-media-text__figure {
  opacity: 0;
  transform: translateX(-120px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.about .smb-media-text__body {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s ease 0.25s, transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.25s;
}

/* 表示後 */
.about.is-show .smb-media-text__figure {
  opacity: 1;
  transform: translateX(0);
}

.about.is-show .smb-media-text__body {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   Header
======================================== */
@media (min-width: 1024px) {
  .l-header {
    display: none;
  }
}
.c-site-branding__title .custom-logo {
  width: 150px !important;
}

/* ========================================
   Side Navigation
======================================== */
.side-nav {
  position: fixed;
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  mix-blend-mode: difference;
}

/* ロゴ */
.side-nav__logo {
  display: block;
  width: 150px;
}

.side-nav__logo img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
.side-nav__logo img:hover {
  opacity: 0.5;
}

/* メニュー */
.side-nav__menu {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 100px;
}

.side-nav__menu a {
  position: relative;
  color: #fff;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.side-nav__menu a:hover {
  opacity: 0.5;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
  .side-nav {
    display: none;
  }
}
@media (min-width: 1024px) {
  .smb-section__inner {
    padding-left: 160px;
  }
}
@media (max-width: 1024px) {
  .side-nav {
    display: none;
  }
}
@media (min-width: 1024px) {
  .service h3 {
    font-size: 26px;
  }
  .service-sub-title {
    font-size: 18px;
  }
}
.organic-image {
  position: relative;
  width: min(520px, 100%);
  opacity: 0;
  transform: translateY(60px) scale(0.92);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.organic-image.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.organic-image::before {
  content: "";
  position: absolute;
  inset: 18px -14px -14px 18px;
  background: #212644;
  border-radius: 42% 58% 54% 46%/48% 42% 58% 52%;
  z-index: 0;
  transform: scale(0.9);
  opacity: 0;
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.organic-image.show::before {
  opacity: 1;
  transform: scale(1);
}

.organic-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1.25/1;
  -o-object-fit: cover;
     object-fit: cover;
  border: 12px solid #fff;
  border-radius: 45% 55% 52% 48%/42% 48% 52% 58%;
}

.organic-image.show img {
  animation: floatMove 6s ease-in-out infinite;
}

@keyframes floatMove {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}
.organic-image img {
  transition: transform 0.8s ease;
}

.organic-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 781px) {
  .service .wp-block-columns {
    display: flex;
    flex-direction: column;
  }
  .service .wp-block-column:has(.organic-image) {
    order: 1;
  }
  .service .wp-block-column:not(:has(.organic-image)) {
    order: 2;
  }
}
/* ========================================
  Split Text Animation
======================================== */
.js-split span {
  display: inline-flex;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(30px);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* 表示後 */
.js-split.is-show span {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Snow Monkey の改行を維持 */
.js-split br {
  display: block;
  content: "";
}

/* ========================================
   FV
======================================== */
.fv {
  position: relative;
  overflow: hidden;
}

/* 動画をゆっくりズーム */
.fv video {
  animation: fvZoom 12s ease-out forwards;
}

/* 黒グラデ */
.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

/* 英字 */
.fv::after {
  position: absolute;
  content: "Jack of all trades, master of none.";
  bottom: 40px;
  right: 40px;
  z-index: 3;
  color: #fff;
  font-family: var(--font-en) !important;
  font-size: 17px;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(20px);
  animation: fvText 1.4s cubic-bezier(0.19, 1, 0.22, 1) 1s forwards;
}

/* タイトル */
.fv .smb-section__title,
.fv .smb-section__lede {
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(30px);
  animation: fvFade 1.4s cubic-bezier(0.19, 1, 0.22, 1) 0.4s forwards;
}

/* タイトルサイズ */
@media (min-width: 1024px) {
  .fv .smb-section__title {
    font-size: 38px;
  }
  .fv .smb-section__lede {
    font-size: 20px;
  }
}
/* ========================================
   Animation
======================================== */
@keyframes fvFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fvText {
  to {
    opacity: 0.7;
    transform: translateY(0);
  }
}
/* *****************************************************************

Stylesheet: ベーススタイル（全て）に適応

******************************************************************/
:root {
  --font-en: "Baskervville", serif;
  --font-ja: "Sawarabi Mincho", serif;
  --font-base: var(--font-ja), var(--font-en), serif;
}

body {
  font-family: var(--font-base);
}

.ja {
  font-family: var(--font-ja);
}

.en {
  font-family: var(--font-en);
}

.smb-section__title {
  font-family: var(--font-en);
  margin-top: 0 !important;
  letter-spacing: 0.04em !important;
}

.c-copyright {
  display: none;
}

@media (min-width: 1024px) {
  .smb-section__subtitle {
    font-size: 17px;
  }
  .smb-section__title {
    font-size: 50px !important;
  }
}
@media (max-width: 1023px) {
  /******************************************************************

  Stylesheet: 1023px以下（タブレット）で適用

  ******************************************************************/
}
@media (max-width: 639px) {
  /******************************************************************

  Stylesheet: 639px以下(スマホ)で適用

  ******************************************************************/
}