@charset "UTF-8";
/* ===================================================
   Zu Web Craft Global Style (統合版)
   Theme: 福祉・介護DX × Web制作 × コンサル
   Colors: 青 × 緑 × 白 + 温かみ
=================================================== */
/* -----------------------------------
   メインSassファイル
----------------------------------- */
/* -----------------------------------
   Base Variables（介護・福祉向け 落ち着いた清潔感）
                  （テーマカラー・共通スタイル）
----------------------------------- */
/* -----------------------------------
   Recruit Collage Section
----------------------------------- */
/* -----------------------------------
   Sass関数集（色調整・計算用）
----------------------------------- */
/* 明度を暗くする */
/* 明度を明るくする */
/* 透明度を調整する */
/* ===================================================
   Zu Web Craft Global Style (統合版)
   Theme: 福祉・介護DX × Web制作 × コンサル
   Colors: 青 × 緑 × 白 + 温かみ
=================================================== */
/* -----------------------------------
   メインSassファイル
----------------------------------- */
/* -----------------------------------
   Mixin集（共通UI）
----------------------------------- */
/* hoverで浮き上がる効果 */
/* 下線アクセント */
/* グラデーションボタン（引数対応） */
/* ソフトボーダーボックス */
/* レスポンシブ用ミックスイン */
/* ===================================================
   Zu Web Craft Global Style (統合版)
   Theme: 福祉・介護DX × Web制作 × コンサル
   Colors: 青 × 緑 × 白 + 温かみ
=================================================== */
/* -----------------------------------
   メインSassファイル
----------------------------------- */
/* -----------------------------------
   共通アニメーション集（Mixin化・引数対応）
----------------------------------- */
.animated__fadeIn {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.animated__fadeIn.js-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.animated__colorBox {
  position: relative;
  color: #000;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  clip-path: inset(0 100% 0 0);
}
.animated__colorBox::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0400D9;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  pointer-events: none;
}
.animated__colorBox.js-show {
  -webkit-animation: 1.2s forwards ease-in-out textView;
          animation: 1.2s forwards ease-in-out textView;
}
.animated__colorBox.js-show::after {
  -webkit-animation: 1.2s forwards ease-in-out colorBox;
          animation: 1.2s forwards ease-in-out colorBox;
}

@-webkit-keyframes textView {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes textView {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes colorBox {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60%, 100% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  60% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes colorBox {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60%, 100% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  60% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.animated__clipView {
  display: block;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 1s ease;
  transition: clip-path 1s ease;
}
.animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}

.animated__clipView2 {
  display: block;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  -webkit-transition: clip-path 1s ease;
  transition: clip-path 1s ease;
}
.animated__clipView2.js-show {
  clip-path: inset(0 0 0 0);
}

.animated__clipView3 {
  display: block;
  overflow: hidden;
  clip-path: inset(0 0 0 100%);
  -webkit-transition: clip-path 1s ease;
  transition: clip-path 1s ease;
}
.animated__clipView3.js-show {
  clip-path: inset(0 0 0 0);
}

/* ===================================================
   Zu Web Craft Global Style (統合版)
   Theme: 福祉・介護DX × Web制作 × コンサル
   Colors: 青 × 緑 × 白 + 温かみ
=================================================== */
/* -----------------------------------
   メインSassファイル
----------------------------------- */
/* -----------------------------------
   Base（共通スタイル）
----------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background: #f7f9fb;
  line-height: 1.7;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-family: serif;
  font-size: 2rem;
  color: #0077cc;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.4rem;
  }
}
.section-title span {
  font-size: 2.7rem;
  font-style: italic;
  font-family: serif;
  font-weight: 700;
  color: #00bfa5;
}
@media (max-width: 768px) {
  .section-title span {
    font-size: 2.2rem;
  }
}
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  -webkit-transform: translateX(-50%) scaleX(0);
          transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 3px;
  background: #00bfa5;
  border-radius: 2px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.section-title:hover::after {
  -webkit-transform: translateX(-50%) scaleX(1);
          transform: translateX(-50%) scaleX(1);
}

/*
  枠組み
============================*/
.inner.--normal {
  width: min(1080px, 100%);
  margin-inline: auto;
}

.inner.--narrow {
  width: min(840px, 100%);
  margin-inline: auto;
}

/*
  (説明見出し用) ヘッダー
============================*/
.c-explain-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #333;
  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;
}

.c-explain-header__text {
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

/*
  見出し
============================*/
h2.c-title__h2 {
  font-size: 32px;
  line-height: 1.8;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
  margin-bottom: 40px;
  padding-left: 20px;
}

h2.c-title__h2.--white {
  color: #fff;
  border-bottom: 2px solid #fff;
}

h3.c-title__h3 {
  font-size: 28px;
  line-height: 1.8;
  font-weight: 700;
  margin-bottom: 40px;
  padding-left: 32px;
  position: relative;
}

h3.c-title__h3.--white {
  color: #fff;
}

h3.c-title__h3::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: #000;
}

h4.c-title__h4 {
  font-size: 24px;
  line-height: 1.8;
  font-weight: 700;
  margin-bottom: 40px;
}

/* ===================================================
   Zu Web Craft Global Style (統合版)
   Theme: 福祉・介護DX × Web制作 × コンサル
   Colors: 青 × 緑 × 白 + 温かみ
=================================================== */
/* -----------------------------------
   メインSassファイル
----------------------------------- */
/* -----------------------------------
   Header（ヘッダー）
----------------------------------- */
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding-inline: 40px;
  background: #fff;
  font-family: serif;
}
@media (max-width: 768px) {
  .header {
    padding-inline: 20px;
  }
}

.header__inner {
  display: grid;
  grid-template-columns: 150px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 17px;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0077cc;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.header__logo:hover {
  color: #00bfa5;
  cursor: pointer;
  opacity: 0.8;
}

/* ===================================================
   Zu Web Craft Global Style (統合版)
   Theme: 福祉・介護DX × Web制作 × コンサル
   Colors: 青 × 緑 × 白 + 温かみ
=================================================== */
/* -----------------------------------
   メインSassファイル
----------------------------------- */
/* -----------------------------------
   Navigation（ナビゲーション）
----------------------------------- */
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
.header__list li a {
  position: relative;
  color: #0077cc;
  font-weight: 600;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.header__list li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #00bfa5;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.header__list li a:hover {
  color: #00bfa5;
}
.header__list li a:hover::after {
  width: 100%;
}

.header__btn {
  background: linear-gradient(135deg, #0077cc 0%, #00bfa5 100%);
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  .header__btn:hover {
    background: linear-gradient(135deg, rgb(0, 148.75, 255), rgb(0, 242, 209.057591623));
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 14px rgba(0, 191, 165, 0.75);
            box-shadow: 0 6px 14px rgba(0, 191, 165, 0.75);
  }
}
@media (max-width: 768px) {
  .header__btn {
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
  }
}

.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 30px;
  right: 25px;
  width: 22px;
  height: 18px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 5px;
  opacity: 0;
}
@media (max-width: 768px) {
  .drawer__icon {
    opacity: 1;
  }
}

.drawer__icon--bar {
  width: 100%;
  height: 2px;
  background: #0077cc;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 375px;
  height: 100vh;
  height: 100svh;
  background: #00bfa5;
  overflow-y: scroll;
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.drawer.js-show {
  translate: 0;
}

.drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 88px 40px;
  padding-left: 34px;
}

.drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
  margin-bottom: 40px;
}
.drawer__list li a {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  font-family: serif;
}

.drawer__btn {
  background: linear-gradient(135deg, #00bfa5 0%, #2c5c8a 100%);
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 60px;
  padding: 0.7rem 1.7rem;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  .drawer__btn:hover {
    background: linear-gradient(135deg, rgb(0, 242, 209.057591623), rgb(56.3296703297, 117.7802197802, 176.6703296703));
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 14px rgba(44, 92, 138, 0.75);
            box-shadow: 0 6px 14px rgba(44, 92, 138, 0.75);
  }
}
@media (max-width: 768px) {
  .drawer__btn {
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
  }
}

/* ===================================================
   Zu Web Craft Global Style (統合版)
   Theme: 福祉・介護DX × Web制作 × コンサル
   Colors: 青 × 緑 × 白 + 温かみ
=================================================== */
/* -----------------------------------
   メインSassファイル
----------------------------------- */
/* -----------------------------------
   Footer
----------------------------------- */
.footer {
  background: #0077cc;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 4rem 0.5rem;
  }
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer p {
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .footer p {
    font-size: 0.85rem;
  }
}
.footer p a {
  color: rgb(0, 242, 209.057591623);
  text-decoration: underline;
}
.footer p a:hover {
  color: #fff;
  cursor: pointer;
}
.footer__sns {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.8rem;
  margin-top: 1.5rem;
}
.footer__sns a {
  color: white;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__sns a:hover {
  color: rgb(89, 255, 232.4031413613);
}

.button-test {
  background: linear-gradient(135deg, #0077cc 0%, #00bfa5 100%);
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  .button-test:hover {
    background: linear-gradient(135deg, rgb(0, 148.75, 255), rgb(0, 242, 209.057591623));
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 14px rgba(0, 191, 165, 0.75);
            box-shadow: 0 6px 14px rgba(0, 191, 165, 0.75);
  }
}
@media (max-width: 768px) {
  .button-test {
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
  }
}
@media (max-width: 1024px) {
  .button-test {
    width: 100%;
  }
}

.card-test {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgb(153, 212.5, 255);
  -webkit-box-shadow: 0 3px 10px rgba(0, 119, 204, 0.08);
          box-shadow: 0 3px 10px rgba(0, 119, 204, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card-test:hover {
  border-color: rgb(63.5, 255, 228.9319371728);
  -webkit-box-shadow: 0 6px 15px rgba(0, 191, 165, 0.12);
          box-shadow: 0 6px 15px rgba(0, 191, 165, 0.12);
}
.card-test {
  padding: 1rem;
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .card-test {
    padding: 0.5rem;
  }
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

button {
  color: #000;
  background: transparent;
}

/* -----------------------------------
   全画面 HERO セクション
   Ken Burns 背景 + 斜め縦長 2 列
----------------------------------- */
.hero-full {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  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;
  padding-inline: 1.5rem;
}

/* -----------------------------------
   HERO コンテンツ
----------------------------------- */
.hero-full__content {
  position: relative;
  z-index: 5;
  max-width: 550px;
  text-align: center;
  margin: 0 auto;
  padding: 1.7rem 1.7rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-family: serif;
  -webkit-transform: translateY(19vh);
          transform: translateY(19vh);
}
.hero-full__content h1 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: #0077cc;
  font-weight: 700;
}
.hero-full__content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .hero-full__content {
    -webkit-transform: translateY(15vh);
            transform: translateY(15vh);
    padding: 2rem 1rem;
    height: 250px;
  }
  .hero-full__content h1 {
    font-size: 0.9rem;
  }
  .hero-full__content p {
    font-size: 0.6rem;
  }
}
@media (max-width: 375px) {
  .hero-full__content {
    -webkit-transform: translateY(10vh);
            transform: translateY(10vh);
    padding: 2rem 1rem;
    height: 230px;
  }
  .hero-full__content h1 {
    font-size: 0.8rem;
  }
  .hero-full__content p {
    font-size: 0.6rem;
  }
}

.hero-full__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .hero-full__buttons {
    font-size: 0.5rem;
    gap: 10px;
  }
}

/* -----------------------------------
   Ken Burns + Slide （img方式）
----------------------------------- */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero-bg .hero-bg__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-animation: kb-slide 18s ease-in-out infinite;
          animation: kb-slide 18s ease-in-out infinite;
}
@media (max-width: 768px) {
  .hero-bg .hero-bg__slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center top;
  }
}
.hero-bg .hero-bg__slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-animation: kb-zoom 18s ease-in-out infinite;
          animation: kb-zoom 18s ease-in-out infinite;
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
  -webkit-box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25), 0 8px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25), 0 8px 18px rgba(0, 0, 0, 0.12);
}
.hero-bg .hero-bg__slide:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.hero-bg .hero-bg__slide:nth-child(1) img {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.hero-bg .hero-bg__slide:nth-child(2) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.hero-bg .hero-bg__slide:nth-child(2) img {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.hero-bg .hero-bg__slide:nth-child(3) {
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}
.hero-bg .hero-bg__slide:nth-child(3) img {
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}

/* -----------------------------------
   Fade animation（スライド切替）
----------------------------------- */
@-webkit-keyframes kb-slide {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes kb-slide {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* -----------------------------------
   Ken Burns Zoom（imgに適用）
----------------------------------- */
@-webkit-keyframes kb-zoom {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
            transform: translate(-50%, -50%) scale(1.05);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.12);
            transform: translate(-50%, -50%) scale(1.12);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.18);
            transform: translate(-50%, -50%) scale(1.18);
  }
}
@keyframes kb-zoom {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
            transform: translate(-50%, -50%) scale(1.05);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.12);
            transform: translate(-50%, -50%) scale(1.12);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.18);
            transform: translate(-50%, -50%) scale(1.18);
  }
}
/* -----------------------------------
   縦長画像 2 列（斜め流れ）
----------------------------------- */
.hero-column {
  position: absolute;
  width: 180px;
  height: 150%;
  top: -25%;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-column {
    display: none;
    width: 130px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.hero-column img {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 22px;
  margin-bottom: 40px;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
  -webkit-box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25), 0 8px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25), 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* 左列（上 → 下） */
.hero-column--left {
  left: 1%;
}
.hero-column--left .hero-column__inner {
  -webkit-animation: slideDown 30s linear infinite;
          animation: slideDown 30s linear infinite;
}

/* 右列（下 → 上） */
.hero-column--right {
  right: 1%;
}
.hero-column--right .hero-column__inner {
  -webkit-animation: slideUp 34s linear infinite;
          animation: slideUp 34s linear infinite;
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
/* -----------------------------------
   Buttons
----------------------------------- */
.btn--primary {
  background: linear-gradient(135deg, #0077cc 0%, #00bfa5 100%);
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  .btn--primary:hover {
    background: linear-gradient(135deg, rgb(0, 148.75, 255), rgb(0, 242, 209.057591623));
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 14px rgba(0, 191, 165, 0.75);
            box-shadow: 0 6px 14px rgba(0, 191, 165, 0.75);
  }
}
@media (max-width: 768px) {
  .btn--primary {
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
  }
}
.btn--outline {
  border: 2px solid #0077cc;
  color: #0077cc;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn--outline:hover {
  background: #0077cc;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media (max-width: 768px) {
  .btn--outline {
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
  }
}

/* -----------------------------------
   Problem Section
----------------------------------- */
.problem {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(rgba(0, 119, 204, 0.03)));
  background: linear-gradient(to bottom, #ffffff, rgba(0, 119, 204, 0.03));
  padding: 7rem 2rem;
  text-align: center;
}
.problem .inner {
  width: min(880px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
}
.problem summary {
  display: block;
  cursor: pointer;
}
.problem summary::-webkit-details-marker {
  display: none;
}
@media (max-width: 768px) {
  .problem {
    padding: 4rem 1rem;
  }
}
.problem .faq__item {
  background: #fff;
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.4rem;
  border-radius: 10px;
  font-size: 1.1rem;
  line-height: 1.75;
  text-align: left;
  border-left: 5px solid #00bfa5;
  -webkit-box-shadow: 0 4px 12px rgba(0, 119, 204, 0.1), 0 1px 4px rgba(51, 51, 51, 0.06);
          box-shadow: 0 4px 12px rgba(0, 119, 204, 0.1), 0 1px 4px rgba(51, 51, 51, 0.06);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.problem .faq__item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 15px rgba(0, 119, 204, 0.15);
          box-shadow: 0 8px 15px rgba(0, 119, 204, 0.15);
}
@media (max-width: 768px) {
  .problem .faq__item {
    font-size: 0.6rem;
    padding: 0.6rem 0.8rem;
  }
}

/* 開閉アイコンとテキストが重ならないように調整 */
.faq__question {
  position: relative;
  display: block;
  padding: 5px 90px 5px 48px;
}
@media (max-width: 375px) {
  .faq__question {
    padding: 3px 50px 3px 48px;
  }
}
.faq__question {
  /* 開閉アイコン（横線） */
}
.faq__question::before, .faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background: #000;
}
.faq__question {
  /* 横線 */
}
.faq__question::before {
  right: 16px;
  width: 20px;
  height: 2px;
}
.faq__question {
  /* 縦線 */
}
.faq__question::after {
  right: 25px;
  width: 2px;
  height: 20px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* 開いたときは縦線を回転してマイナス表示に */
.js-details.is-opened .faq__question::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* Q マークの位置を統一（Aと揃う位置） */
.faq__question-text {
  position: relative;
  font-weight: 600;
}
.faq__question-text::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: -55px;
  translate: 0 -50%;
  font-size: 28px;
  font-weight: 700;
}

/* A マークを Q と同じ位置に配置（真下に揃う） */
.faq__answer-text {
  list-style: none;
  position: relative;
  padding-inline: 48px 20px;
  margin-top: 0.8rem;
}
.faq__answer-text::before {
  content: "A";
  position: absolute;
  top: 6px;
  left: 35px;
  font-size: 28px;
  font-weight: 700;
  line-height: 24px;
  color: #00bfa5;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}

.problem__note {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: #2c5c8a;
}
@media (max-width: 768px) {
  .problem__note {
    font-size: 0.9rem;
  }
}
.problem__note span {
  font-weight: 700;
  color: #00bfa5;
}

/* -----------------------------------
   Mission & Value (新規セクション)
----------------------------------- */
.mission {
  background: #fff;
  padding: 100px 0;
  text-align: center;
}
.mission .mission__box {
  max-width: 900px;
  margin: 4rem auto 0;
  padding: 3.5rem;
  border-radius: 20px;
  background: rgb(153, 212.5, 255);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .mission .mission__box {
    padding: 2.5rem 1.5rem;
  }
}
.mission .mission__catch {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 2rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .mission .mission__catch {
    font-size: 1.3rem;
  }
}
.mission .mission__catch strong {
  color: #0077cc;
  font-weight: 700;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .mission .mission__catch strong {
    font-size: 1.4rem;
  }
}
.mission .mission__detail {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px dashed rgb(102, 191.25, 255);
}
.mission .mission__detail h3 {
  font-size: 1.8rem;
  color: #00bfa5;
  font-weight: 700;
  margin-bottom: 2rem;
}
.mission .value__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .mission .value__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.mission .value__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.mission .value__item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 15px rgba(0, 119, 204, 0.15);
          box-shadow: 0 8px 15px rgba(0, 119, 204, 0.15);
}
.mission .value__item h4 {
  font-size: 1.3rem;
  color: #0077cc;
  margin-bottom: 0.8rem;
}
.mission .value__item p {
  font-size: 0.95rem;
  line-height: 1.7;
}
.mission .value__item .value__circle {
  position: relative;
  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;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.mission .value__item .value__circle .circle-svg circle {
  stroke-dasharray: 439.8;
  stroke-dashoffset: 439.8;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.mission .value__item .value__circle .circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
          transform: translate(-50%, -50%) scale(0.5);
  font-size: 22px;
  font-weight: bold;
  color: #0077cc;
  opacity: 0;
  z-index: 2;
}

/* -----------------------------------
   Concept Section  (グラデーション背景＋カード風)
----------------------------------- */
.concept {
  background: #f7f9fb;
  padding-block: 100px;
  text-align: center;
}
.concept .concept__item-title,
.concept .concept__item-text,
.concept .concept__item-categories,
.concept .concept__item-time {
  padding-inline: 16px;
}
.concept .concept__item-title {
  padding-top: 4px;
}
.concept .concept__item-time {
  padding-bottom: 16px;
}
.concept .concept__item {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgb(153, 212.5, 255);
  -webkit-box-shadow: 0 3px 10px rgba(0, 119, 204, 0.08);
          box-shadow: 0 3px 10px rgba(0, 119, 204, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.concept .concept__item:hover {
  border-color: rgb(63.5, 255, 228.9319371728);
  -webkit-box-shadow: 0 6px 15px rgba(0, 191, 165, 0.12);
          box-shadow: 0 6px 15px rgba(0, 191, 165, 0.12);
}
.concept .concept__item-img img {
  width: 100%;
  height: auto;
  display: block;
}
.concept .concept__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0077cc;
  margin-bottom: 8px;
}
.concept .concept__item-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 12px;
  text-align: left;
}
.concept .concept__item-category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1px 12px;
  border: 1px solid #AFAFAF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  color: #00bfa5;
  border-radius: 100vmax;
}
.concept .concept__item-time {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #AFAFAF;
}
.concept .concept__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media (max-width: 768px) {
  .concept .concept__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 375px) {
  .concept .concept__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.concept .concept__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  gap: 12px;
  margin-bottom: 58px;
  -webkit-transition: -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
}
.concept .concept__item:hover {
  -webkit-transform: translateY(-6px) scale(1.02);
          transform: translateY(-6px) scale(1.02);
  -webkit-box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.08);
}
.concept .concept__item-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  -ms-flex-item-align: center;
      align-self: center;
}
.concept .concept__item-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.concept .concept__item-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}

/* -----------------------------------
   Servicesセクション
----------------------------------- */
.service {
  font-family: serif;
  background-color: rgba(0, 191, 165, 0.07);
  color: #333;
  padding-bottom: 100px;
}
.service h1, .service h2, .service h3 {
  font-family: serif;
}
.service p {
  font-family: serif;
}

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

.main__title {
  font-family: serif;
  padding: 50px;
}

.main__title h1 {
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 60px;
  white-space: nowrap;
  -webkit-animation: titleAnimation 1.5s;
          animation: titleAnimation 1.5s;
}
@media (max-width: 768px) {
  .main__title h1 {
    font-size: 30px;
    margin-bottom: 30px;
    margin-right: 50px;
  }
}
@media (max-width: 375px) {
  .main__title h1 {
    font-size: 25px;
    margin-bottom: 20px;
    margin-right: 30px;
  }
}
@-webkit-keyframes titleAnimation {
  0% {
    letter-spacing: 0.3em;
    opacity: 0;
  }
}
@keyframes titleAnimation {
  0% {
    letter-spacing: 0.3em;
    opacity: 0;
  }
}

.service {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

.contents li {
  position: relative;
}

.contents li.show h2,
.contents li.show p,
main .contents li.show img {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.contents li:not(:first-of-type) {
  margin-top: 200px;
}
@media (max-width: 768px) {
  .contents li:not(:first-of-type) {
    margin-top: 100px;
  }
}

.contents li:nth-of-type(odd) .contentsText {
  right: 0;
}

.contents li:nth-of-type(even) .contentsText {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 768px) {
  .contents li:nth-of-type(even) .contentsText {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contents li:nth-of-type(odd) img {
  -webkit-transform: translate(-20px, 20px);
          transform: translate(-20px, 20px);
}

.contents li:nth-of-type(even) img {
  margin-left: auto;
  -webkit-transform: translate(20px, 20px);
          transform: translate(20px, 20px);
}

.contentsText {
  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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  top: 40px;
}
@media (max-width: 768px) {
  .contentsText {
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 30px 30px 0px 30px;
  }
}

.contentsText h2 {
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  white-space: nowrap;
  background-color: rgba(20, 20, 20, 0.8);
  padding: 10px 20px;
  line-height: 1.4;
  list-style: 0.05em;
  border-radius: 5px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 1s;
  transition: 1s;
}
@media (max-width: 768px) {
  .contentsText h2 {
    font-size: 30px;
  }
}

.contentsText p {
  color: #fff;
  line-height: 1.6;
  background-color: #555;
  font-size: 14px;
  max-width: 340px;
  padding: 15px;
  margin-top: 30px;
  border-radius: 5px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 1s;
  transition: 1s;
}
@media (max-width: 768px) {
  .contentsText p {
    font-size: 12px;
    max-width: 240px;
    margin-top: 15px;
  }
}

.contents img {
  width: 65%;
  display: block;
  border-radius: 5px;
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: 1s 0.5s;
  transition: 1s 0.5s;
}
@media (max-width: 768px) {
  .contents img {
    width: 100%;
  }
}

/* -----------------------------------
   Works Section
----------------------------------- */
.works {
  padding: 120px 20px;
  background: rgb(193.8, 229.5, 255);
  text-align: center;
}

.works__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;
  margin-bottom: 60px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #333;
}
@media (max-width: 768px) {
  .works__description {
    font-size: 0.8rem;
    margin-bottom: 40px;
    text-align: left;
  }
}

.work__item-title,
.work__item-text,
.work__item-categories,
.work__item-time,
.work__item-price {
  padding-inline: 16px;
}

.work__item-title {
  padding-top: 4px;
}

.work__item-time {
  padding-bottom: 16px;
}

.work-item {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgb(153, 212.5, 255);
  -webkit-box-shadow: 0 3px 10px rgba(0, 119, 204, 0.08);
          box-shadow: 0 3px 10px rgba(0, 119, 204, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.work-item:hover {
  border-color: rgb(63.5, 255, 228.9319371728);
  -webkit-box-shadow: 0 6px 15px rgba(0, 191, 165, 0.12);
          box-shadow: 0 6px 15px rgba(0, 191, 165, 0.12);
}

.work__item-img img {
  width: 100%;
  height: auto;
  display: block;
}

.work__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0077cc;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .work__item-title {
    font-size: 1rem;
  }
}

.work__item-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .work__item-text {
    font-size: 0.7rem;
  }
}

.work__item-category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1px 12px;
  border: 1px solid #AFAFAF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  color: #00bfa5;
  border-radius: 100vmax;
}

.work__item-time {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #AFAFAF;
  margin-top: 10px;
}

.works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media (max-width: 1024px) {
  .works__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .works__list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.work-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 12px;
  margin-bottom: 58px;
  -webkit-transition: -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
}
.work-item:hover {
  -webkit-transform: translateY(-6px) scale(1.02);
          transform: translateY(-6px) scale(1.02);
  -webkit-box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.08);
}
.work-item img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .work-item img {
    height: auto;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.work-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 191, 165, 0.25);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.work-item .dx-icon {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(209, 204, 204, 0.85);
  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;
  color: #0077cc;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.work__item-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  -ms-flex-item-align: center;
      align-self: center;
}

.work__item-text {
  overflow: hidden;
  text-align: start;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.work__item-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}

.work-item__link {
  display: contents;
}

/* -----------------------------------
   CTA after Works (新規セクション)
----------------------------------- */
.cta-works {
  position: relative;
  overflow: hidden;
  background: #0077cc;
  height: 500px;
  padding: 70px 20px;
  text-align: center;
  /* ===== 追加：左右の画像パネル ===== */
}
.cta-works__panels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cta-works .panel {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  overflow: hidden;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 1.2s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 1.2s cubic-bezier(0.7, 0, 0.3, 1);
}
.cta-works .panel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta-works {
  /* 初期状態：中心で閉じている */
}
.cta-works .panel--left {
  -webkit-transform: translateX(0) rotateY(0deg);
          transform: translateX(0) rotateY(0deg);
}
.cta-works .panel--right {
  -webkit-transform: translateX(0) rotateY(0deg);
          transform: translateX(0) rotateY(0deg);
}
.cta-works {
  /* スクロールで開くアニメーション後 */
}
.cta-works.open .panel--left {
  -webkit-transform: translateX(-30%) rotateY(60deg);
          transform: translateX(-30%) rotateY(60deg);
  clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%);
}
.cta-works.open .panel--right {
  -webkit-transform: translateX(30%) rotateY(-60deg);
          transform: translateX(30%) rotateY(-60deg);
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
}
.cta-works {
  /* ====== 既存（そのまま） ====== */
}
.cta-works .cta-works__title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .cta-works .cta-works__title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
}
.cta-works .cta-works__text {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.cta-works .hero-full__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 600px) {
  .cta-works .hero-full__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cta-works .hero-full__buttons .btn {
    width: 50%;
    margin: 0 auto;
  }
}

.recruit-collage-section {
  padding: 100px 0 80px;
  background-color: #fcfcfc;
  text-align: center;
}

.recruit-header {
  margin-bottom: 50px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.recruit-header .cta-link {
  display: inline-block;
  padding: 12px 30px;
  background-color: #86C7B2;
  color: #fff;
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 16px;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  -webkit-box-shadow: 0 4px 15px rgba(134, 199, 178, 0.4);
          box-shadow: 0 4px 15px rgba(134, 199, 178, 0.4);
  margin-bottom: 25px;
}
.recruit-header .cta-link:hover {
  background-color: rgb(106.1084745763, 186.0915254237, 160.2508474576);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.recruit-header .cta-link:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.recruit-header .section-catch {
  font-size: 20px;
  color: #0077cc;
  margin-top: 0;
}
@media (max-width: 768px) {
  .recruit-header .section-catch {
    font-size: 16px;
  }
}

.diamond-collage-wrapper {
  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;
  max-width: 990px;
  margin: 0 auto 50px;
}
.diamond-collage-wrapper .diamond-collage:nth-child(2) {
  z-index: 5;
}
.diamond-collage-wrapper .diamond-collage:nth-child(3) {
  z-index: 10;
}

.diamond-collage {
  position: relative;
  width: 350px;
  height: 350px;
  overflow: hidden;
  margin-top: 0;
}
.diamond-collage:not(:first-child) {
  margin-left: -50px;
}
.diamond-collage:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  z-index: 15;
}
.diamond-collage {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.diamond-collage .collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  width: 100%;
  height: 100%;
  gap: 8px;
}
.diamond-collage .photo-item {
  position: relative;
  overflow: hidden;
}
.diamond-collage .photo-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background-color: #eee;
}
.diamond-collage .photo-large {
  grid-column: 1/span 2;
  grid-row: 1/span 3;
}
.diamond-collage .photo-small-top {
  grid-column: 3/4;
  grid-row: 1/span 1;
}
.diamond-collage .photo-small-bottom {
  grid-column: 3/4;
  grid-row: 2/span 2;
}

@media (max-width: 765px) {
  .diamond-collage-wrapper {
    -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;
    gap: 0;
    max-width: 390px;
  }
  .diamond-collage {
    margin: 0px;
    width: 300px;
    height: 300px;
    margin-left: 0 !important;
    -webkit-transform: none !important;
            transform: none !important;
    margin-bottom: 20px !important;
  }
  .diamond-collage:hover {
    -webkit-transform: scale(1.05) !important;
            transform: scale(1.05) !important;
  }
}
/* -----------------------------------
   LINE CTA1 セクション
----------------------------------- */
.line-cta {
  background: #f5fdf4;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #def2de;
  max-width: 550px;
  margin: 130px auto 60px auto;
}

.fv-line-cta img {
  width: 150px;
  margin-bottom: 10px;
}

.line-cta-text {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

.line-btn img {
  width: 240px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.line-btn img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* -----------------------------------
   About Section（グラデーション背景＋画像縦長揃え）
----------------------------------- */
.about {
  /* 白 → モスグレーの上品グラデーション */
  background: linear-gradient(135deg, #ffffff 0%, #e5e5e0 60%, #cfcfc7 100%);
  padding: 90px 0;
  text-align: center;
  /* 左右の高さを自動的に揃える */
}
.about .about__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; /* ← これが高さを揃えるポイント！ */
  gap: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: left;
}
.about .inner {
  width: min(1064px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
}
.about {
  /* ======== 左側：画像エリア ======== */
}
.about .about__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 35%;
          flex: 1 1 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* ← 高さ合わせのため */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about .about__image img {
  width: 100%;
  height: 100%; /* ← テキストと同じ高さになる！ */
  max-height: 650px; /* 安全上限（必要に応じて調整） */
  -o-object-fit: cover;
     object-fit: cover; /* ← 縦長でも美しいまま */
  border-radius: 14px;
  -webkit-box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .about .about__image img {
    max-height: 400px; /* モバイルでは安全に */
    width: 100%;
    height: auto;
  }
}
.about {
  /* ======== 右側：テキストエリア ======== */
}
.about .about__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 55%;
          flex: 1 1 55%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /* 画像と自然に揃う */
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .about .about__content {
    padding-inline: 5px;
  }
}
.about .about__content .about__name {
  font-size: 2rem;
  font-weight: 700;
  color: #0077cc;
}
@media (max-width: 768px) {
  .about .about__content .about__name {
    font-size: 1.5rem;
  }
}
.about .about__content .about__position {
  color: #555;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3em;
}
@media (max-width: 768px) {
  .about .about__content .about__position {
    font-size: 0.9rem;
    font-weight: 700;
  }
}
.about .about__content .about__intro {
  font-size: 1rem;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .about .about__content .about__intro {
    font-size: 0.9rem;
    text-align: left;
  }
}
.about .about__content {
  /* リスト装飾 */
}
.about .about__content .about__list {
  padding-left: 1.2em;
  list-style: none;
}
.about .about__content .about__list li {
  position: relative;
  margin-bottom: 0.6em;
  line-height: 1.6;
  padding-left: 0.6em;
}
@media (max-width: 768px) {
  .about .about__content .about__list li {
    font-size: 0.9rem;
    text-align: left;
  }
}
.about .about__content .about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: #00bfa5;
  border-radius: 50%;
}
.about .about__content .about__message {
  border-left: 4px solid #00bfa5;
  padding-left: 1em;
  line-height: 1.7;
  background: rgba(0, 191, 165, 0.07);
  border-radius: 6px;
  padding-block: 0.9em;
  font-style: italic;
}
@media (max-width: 768px) {
  .about .about__content .about__message {
    font-size: 0.7rem;
    margin-top: 1.6rem;
  }
}
.about {
  /* ======== SP：縦並び調整 ======== */
}
@media (max-width: 768px) {
  .about .about__grid {
    -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;
  }
  .about .about__image img {
    width: 100%;
    max-height: 360px; /* モバイルでは安全に */
    margin-bottom: 20px;
  }
  .about .about__content {
    text-align: center;
    gap: 1.2rem;
  }
  .about .about__message {
    border-left: none;
    border-top: 3px solid #00bfa5;
    padding-left: 0;
    padding-top: 1rem;
  }
}

/* -----------------------------------
   Contact Form Styles
----------------------------------- */
.contact {
  padding: 80px 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(180.8, 255, 244.8994764398)), to(white));
  background: linear-gradient(180deg, rgb(180.8, 255, 244.8994764398), white);
  text-align: center;
  color: #333;
}

.contact__lead {
  margin-top: 30px;
  font-size: 18px;
  letter-spacing: 0.48px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact__lead {
    font-size: 15px;
  }
}

.contacts__form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.contact__form {
  margin-top: 48px;
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 10px;
}

.form-field__label {
  display: inline-block;
  white-space: nowrap;
  font-size: 18px;
}

.form-field__required {
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #FC6B6B;
  width: 39px;
  height: 21px;
  color: #fff;
  font-size: 12px;
}

.form-field__item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.form-field__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}

.form-field__radio .wpcf7-list-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 180px;
          flex: 1 1 180px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .form-field__radio .wpcf7-list-item {
    margin-left: 0;
  }
}

/* -------------------
   レスポンシブ設定
------------------- */
@media screen and (max-width: 1024px) {
  .form-field__radio .wpcf7-list-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 45%;
            flex: 1 1 45%;
  }
}
@media screen and (max-width: 600px) {
  .form-field__radio .wpcf7-list-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.form-field__item--radio {
  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;
  gap: 8px;
}

input[type=email],
input[type=tel],
input[type=text],
textarea {
  height: 50px;
}

input[type=email],
input[type=tel],
input[type=text],
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgb(127.5, 201.875, 255);
  border-radius: 10px;
  background: #fff;
  font-size: 1rem;
}
input[type=email]:hover,
input[type=tel]:hover,
input[type=text]:hover,
textarea:hover {
  opacity: 0.6;
}

textarea {
  height: 160px;
  resize: vertical;
}

/* -----------------------------------
   Contact Form - Privacy Checkbox
----------------------------------- */
.contact__privacy {
  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;
  width: 100%;
  margin-top: 15px;
  font-size: 17px;
}
@media (max-width: 768px) {
  .contact__privacy {
    font-size: 15px;
  }
}
.contact__privacy .form-checkbox__text {
  cursor: pointer;
}
.contact__privacy .form-checkbox__text a {
  color: #00bfa5;
  text-decoration: underline;
}

/* 親要素 */
.wpcf7-acceptance {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; /* ラベルとチェックを横並び */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

/* input を非表示 */
.wpcf7-acceptance input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

/* 修正後（プライバシー用チェックボックスのみ） */
.contact__privacy .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #4f4f4f;
  border-radius: 5px;
  background: #fff;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}

/* チェック時 */
.wpcf7-acceptance input:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 20px;
  border-right: 2px solid #0077cc;
  border-bottom: 2px solid #0077cc;
  top: 50%;
  left: 25px; /* 擬似ボックス内の位置調整 */
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
@media (max-width: 768px) {
  .wpcf7-acceptance input:checked + .wpcf7-list-item-label::after {
    top: 15%;
    -webkit-transform: translateY(-15%) rotate(45deg);
            transform: translateY(-15%) rotate(45deg);
    left: 27px; /* モバイル時の位置調整 */
  }
}

.contact__submit {
  margin-top: 40px;
  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;
}

.button--submit {
  background: linear-gradient(135deg, #0077cc 0%, #00bfa5 100%);
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  .button--submit:hover {
    background: linear-gradient(135deg, rgb(0, 148.75, 255), rgb(0, 242, 209.057591623));
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 14px rgba(0, 191, 165, 0.75);
            box-shadow: 0 6px 14px rgba(0, 191, 165, 0.75);
  }
}
@media (max-width: 768px) {
  .button--submit {
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
  }
}
.button--submit {
  display: block;
  width: auto;
}

/* -----------------------------------
   Back to Top Button
----------------------------------- */
.btn-back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 55px;
  height: 55px;
  background: #00bfa5;
  color: #fff;
  font-size: 1.6rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  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;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  -webkit-transition: opacity 0.4s ease, background 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.4s ease, background 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.4s ease, transform 0.3s ease, background 0.3s;
  transition: opacity 0.4s ease, transform 0.3s ease, background 0.3s, -webkit-transform 0.3s ease;
}
@media (max-width: 768px) {
  .btn-back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}
.btn-back-to-top:hover {
  background: rgb(0, 242, 209.057591623);
  -webkit-transform: translateY(-4px) scale(1.05);
          transform: translateY(-4px) scale(1.05);
}
.btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* -----------------------------------
   LINE Fixed Button
----------------------------------- */
.line-fixed-btn {
  position: fixed;
  bottom: 40px;
  left: 15px;
  background: #06c755;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .line-fixed-btn {
    bottom: 20px;
    left: 10px;
    padding: 10px 18px;
    font-size: 14px;
  }
}

.line-fixed-btn:hover {
  opacity: 0.9;
}

/* ============================
  Single Works
============================ */
.single-work {
  padding: 120px 50px 160px;
}
@media (max-width: 1024px) {
  .single-work {
    padding: 100px 20px 120px;
  }
}
@media (max-width: 768px) {
  .single-work {
    padding: 100px 16px;
  }
}

.single-work-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0077cc;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .single-work-title {
    font-size: 1.5rem;
  }
}

.single-work-image {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}
.single-work-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-work-date {
  font-size: 0.9rem;
  color: #0077cc;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .single-work-date {
    font-size: 0.8rem;
  }
}

.single-work-note {
  font-size: 0.9rem;
  color: #0077cc;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .single-work-note {
    font-size: 0.8rem;
  }
}

.single-work-summary {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #0077cc;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .single-work-summary {
    font-size: 0.95rem;
  }
}

.single-work-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  color: #0077cc;
  margin-bottom: 40px;
}

.single-work-category {
  padding: 4px 12px;
  border: 1px solid #AFAFAF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  color: #00bfa5;
  border-radius: 100vmax;
}

.single-work-tech {
  font-size: 0.9rem;
  color: #0077cc;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .single-work-tech {
    font-size: 0.95rem;
  }
}

.single-work-price {
  font-size: 1rem;
  font-weight: 600;
  color: #0077cc;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .single-work-price {
    font-size: 0.9rem;
  }
}

.single-work-url {
  margin-bottom: 60px;
  font-size: 1rem;
  color: #0077cc;
}
.single-work-url a {
  background: linear-gradient(135deg, #0077cc 0%, #00bfa5 100%);
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  .single-work-url a:hover {
    background: linear-gradient(135deg, rgb(0, 148.75, 255), rgb(0, 242, 209.057591623));
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 14px rgba(0, 191, 165, 0.75);
            box-shadow: 0 6px 14px rgba(0, 191, 165, 0.75);
  }
}
@media (max-width: 768px) {
  .single-work-url a {
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
  }
}
.single-work-url a {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .single-work-url a {
    font-size: 0.7rem;
    padding: 10px 18px;
  }
}

.single-work-content {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
}
@media (max-width: 768px) {
  .single-work-content {
    font-size: 0.9rem;
  }
}
.single-work-content h2, .single-work-content h3, .single-work-content h4 {
  color: #0077cc;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.single-work-content p {
  margin-bottom: 1.5rem;
}
.single-work-content ul, .single-work-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.single-work-content ul li, .single-work-content ol li {
  margin-bottom: 0.8rem;
}
.single-work-content a {
  color: #00bfa5;
  text-decoration: underline;
}
.single-work-content a:hover {
  color: rgb(0, 140, 120.942408377);
}

/* ----------------------------------------
   共通カードリスト（トップページ / ターム / 関連実績）
---------------------------------------- */
.works-category {
  padding: 80px 20px;
  background: rgb(193.8, 229.5, 255);
  text-align: center;
}

.works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 横3列 */
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .works-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .works-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* 各カード */
.work-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.work-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.work-item__link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

/* 画像 */
.work__item-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* アイコン（トップページで使用する場合） */
.dx-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.5rem;
}

/* カテゴリラベル */
.work__item-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  padding: 5px 15px 5px 15px;
}

.work__item-category {
  padding: 4px 12px;
  border: 1px solid #00bfa5;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  color: #00bfa5;
  border-radius: 100vmax;
}

/* タイトル・本文・価格・技術 */
.work__item-title {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px 15px 5px;
}

.work__item-text {
  font-size: 0.95rem;
  padding: 0 15px 10px;
  color: #555;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /* 高さを揃える */
}

.work__item-tech,
.work__item-price {
  font-size: 0.9rem;
  padding: 0 15px 5px;
  color: #333;
  font-weight: 500;
  text-align: left;
}

/* レスポンシブ：タブレット */
@media (max-width: 992px) {
  .works-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
/* レスポンシブ：スマホ */
@media (max-width: 600px) {
  .works-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
/* ===== Breadcrumb ===== */
.breadcrumb {
  max-width: 1200px;
  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;
  padding: 0 20px;
  font-size: 0.9rem;
  color: #777;
}
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 0.5rem;
  }
}
.breadcrumb a {
  color: #007acc;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* ----------------------------------------
   関連実績カード専用マージン調整
---------------------------------------- */
.related-works {
  margin-top: 60px;
}

.related-works .section-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

/* -----------------------------------
   Privacy Section
----------------------------------- */
.privacy__page {
  background: #333 url(../img/sp/works-page_bigIcon.png) no-repeat center right/contain;
  margin-top: 40px;
}

.privacy__wrap {
  width: 375px;
  height: 224px;
}

.privacy__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-top: 110px;
  padding-left: 10px;
}

.heading__privacy-title {
  color: #FAFAFA;
  font-family: "League Spartan";
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 35px */
  letter-spacing: 1.75px;
  text-transform: uppercase;
  white-space: nowrap;
}

.privacy__heading img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 33.331px;
  height: 40.003px;
  margin: -15px 10px 0px 0;
}

.privacy__text01 {
  color: #FAFAFA;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding-left: 50px;
}

#js-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(124, 114, 108, 0.9);
  width: 100%;
  height: 100vh;
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  backdrop-filter: blur(4px);
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
  line-height: 1.5;
}

.p-contact__modal-inner {
  margin: 64px auto;
  border: 4px solid #999;
  border-radius: 6px;
  width: 90%;
  max-width: 1200px;
  height: 90%;
  overflow-y: scroll;
}

.p-contact__modal-contents {
  background-color: #f2f2f2;
  padding: 40px 16px;
}

.p-contact__modal-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.p-contact__modal-text {
  padding-left: 1em;
}

.p-contact__modal-list {
  margin-top: 24px;
  padding-left: 1em;
}

.p-contact__modal-item {
  margin-top: 32px;
}

.p-contact__modal-sub-title {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
}

.p-contact__modal-sub01-list {
  margin-top: 16px;
  padding-left: 1em;
}

.p-contact__modal-sub01-item {
  margin-top: 16px;
}

.p-contact__modal-sub02-list {
  margin-top: 16px;
  padding-left: 1em;
}

.p-contact__modal-sub02-item {
  margin-top: 16px;
}

.p-contact__modal-sub03-list {
  margin-top: 16px;
  padding-left: 1em;
}

.p-contact__modal-sub03-item {
  margin-top: 16px;
}

.p-contact__modal-info-list {
  margin-top: 16px;
  padding-left: 1em;
}

.p-contact__modal-end-text {
  margin-top: 24px;
  text-align: right;
}

.p-contact__modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  background-color: transparent;
  width: 40px;
  height: 40px;
}

.p-contact__modal-line {
  display: block;
  position: absolute;
  top: 50%;
  left: 5%;
  background-color: #f2f2f2;
  width: 90%;
  height: 1px;
}
.p-contact__modal-line:first-child {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.p-contact__modal-line:last-child {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}