@charset "UTF-8";

html {
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  color: #333333;
  line-height: 1.875;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1rem;
  color: #333333;
  min-height: 100vh;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style-type: none;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
}

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

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

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

/* pcの電話番号発信対応 */

/* ホバー */

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.inner {
  max-width: 1280px;
  width: 89%;
  margin-inline: auto;
}

.inline {
  display: inline-block;
}

.sp {
  display: none;
}

.sp-br {
  display: none;
}

.pc-br {
  display: block;
}

.logo-br {
  display: none;
}

/* =====================
   共通ボタン
   ===================== */

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #333333;
  color: #ffffff;
  max-width: 220px;
  width: 220px;
  height: 40px;
  padding: 5px 10px;
  font-size: 0.9375rem;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px 20px 20px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn:hover {
  color: #010101;
  background-color: #60DDC8;
}

.btn.btn--white {
  background-color: #ffffff;
  color: #333333;
}

.btn.btn--white:hover {
  color: #010101;
  background-color: #60DDC8;
}

/* =====================
   トップセクション共通ヘッダー
   ===================== */

.top-section__header {
  margin-bottom: 80px;
}

.top-section__flex {
  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;
}

.top-section__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.top-section__label-icon {
  display: block;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #60DDC8;
}

.top-section__label-text {
  font-size: 1rem;
  font-weight: 500;
}

.top-section__title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: min(120px, 8.333333333vw);
  line-height: 1;
  letter-spacing: 0.05em;
}

.top-section__description {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
}

.top-section__description--service {
  padding-top: 10px;
}

.top-section__description--service.l-line::before {
  top: calc(50% + 10px);
}

.l-line {
  position: relative;
  padding-left: min(30px, 2.3%);
}

.l-line::before {
  content: "";
  border-left: 1px solid #60DDC8;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* =====================
   Header
   ===================== */

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: 1000;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.header--scrolled {
  background-color: #ffffff;
}

.header--scrolled__inner {
  padding: 20px 0;
}

.header--scrolled .header__nav-item--contact .header__nav-link {
  color: #ffffff;
}

.header--scrolled .header__nav-link {
  color: #333333;
}

.header--scrolled .header__hamburger-line {
  background: #333333;
}

.header__inner {
  max-width: 1380px;
  width: 91.6%;
  margin-inline: auto;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.header__logo a img {
  height: 20px;
  width: auto;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.header__nav-item {
  position: relative;
}

.header__nav-item--contact .header__nav-link {
  padding: 8px 28px;
  background-color: #333333;
  border-radius: 15px 15px 15px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__nav-item--contact .header__nav-link:hover {
  background-color: #60DDC8;
  color: #010101;
}

.header__nav-link {
  font-size: 0.875rem;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  color: #ffffff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 6.7vw;
  height: 4.8vw;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__hamburger-line {
  width: 100%;
  height: 0.4vw;
  background: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  -webkit-transform: translateY(2.2vw) rotate(45deg);
          transform: translateY(2.2vw) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  -webkit-transform: translateY(-2.2vw) rotate(-45deg);
          transform: translateY(-2.2vw) rotate(-45deg);
}

/* =====================
   Menu Open State
   ===================== */

body.is-menu-open {
  overflow: hidden;
}

.header-hamburger__menu {
  display: none;
}

/* =====================
   Footer
   ===================== */

.footer {
  margin-top: 75px;
  background: #333333;
  position: relative;
  /* Contact Banner */
  /* Footer Menu */
  /* Main Footer */
  /* Scrolling Text */
}

.footer__contact-banner {
  background: #60DDC8;
  padding: 28px 60px 29px 78px;
  border-radius: 20px 20px 20px 0px;
  position: absolute;
  top: -75px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__contact-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__contact-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.046875vw;
}

.footer__contact-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 3.125rem;
  margin: 0;
}

.footer__contact-text {
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
}

.footer__contact-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #333333;
  color: #ffffff;
  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;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer__contact-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.9;
}

.footer__contact-btn i {
  font-size: 1.125rem;
  color: #60DDC8;
}

.footer a.footer__contact-banner:hover {
  background-color: #91E6D7;
  opacity: 1;
}

.footer__menu {
  background: #333333;
  padding: 180px 0 80px;
  border-bottom: 1px solid #555555;
}

.footer__menu-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}

.footer__menu-logo img {
  height: 40px;
  width: auto;
  aspect-ratio: 270/40;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(44px, 3.055555556vw);
}

.footer__menu-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__menu-privacy {
  display: none;
}

.footer__menu-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: none;
  border: none;
  color: #ffffff;
  text-align: left;
  padding: 0;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  gap: 10px;
  text-decoration: none;
}

.footer__menu-title-text {
  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;
  width: 100%;
}

.footer__menu-title--en {
  display: block;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 5.333333333vw;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding-right: 5.066666667vw;
}

.footer__menu-title--en::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.6875rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
}

.footer__menu-title--en::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
  width: 4.266666667vw;
  height: 0.133333333vw;
  background: #ffffff;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.footer__menu-title--jp {
  display: block;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 0.625rem;
  font-weight: 300;
  color: #999999;
  text-transform: none;
}

.footer__menu-title:hover {
  opacity: 0.7;
}

.footer__menu-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  display: block;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}

.footer__menu-list li {
  margin-bottom: 8px;
}

.footer__menu-list li:last-child {
  margin-bottom: 0;
}

.footer__menu-list li a {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 0.8125rem;
  font-weight: 300;
  color: #ffffff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: block;
}

.footer__menu-list li a:hover {
  color: #60DDC8;
}

.footer__main {
  padding: 60px 0 10px;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}

.footer__link-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-left: 20px;
}

.footer__link-item:not(:last-child) {
  border-right: 1px solid #60DDC8;
  padding-right: 65px;
}

.footer__link-border {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #60DDC8;
}

.footer__link-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__link-description {
  font-size: 0.75rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  margin: 0;
}

.footer__link-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.footer__link-brand:hover {
  opacity: 0.7;
}

.footer__link-brand img {
  height: 28px;
}

.footer__link-brand .footer__link-icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 15px;
}

.footer__link-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.footer__link-logo--cielas img {
  height: 25px;
}

.footer__link-icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 15px;
}

.footer__link-text {
  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;
}

.footer__link-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.footer__link-sub {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__link-external {
  font-size: 1rem;
  margin-left: 15px;
  color: #999999;
}

.footer__copyright {
  text-align: center;
  font-size: 0.625rem;
  font-weight: 300;
  color: #999999;
  margin-top: 20px;
}

.footer__privacy.pc {
  display: block;
  font-size: 0.8125rem;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #999999;
  margin-top: 20px;
}

.footer__scroll-wrap {
  overflow: hidden;
}

.footer__scroll-text {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  bottom: -15px;
}

.footer__scroll-inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-animation: scrollText 20s linear infinite;
          animation: scrollText 20s linear infinite;
}

.footer__scroll-item {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.0509803922);
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.05em;
  line-height: 1;
}

.footer__scroll-separator {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.0509803922);
  line-height: 1;
}

@-webkit-keyframes scrollText {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scrollText {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/* サブページ用ヘッダーカラー */

.header--sub .header__nav-item--contact .header__nav-link {
  color: #ffffff;
}

.header--sub .header__nav-link {
  color: #333333;
}

.header--sub .header__hamburger-line {
  background: #333333;
}

.header__hamburger.is-active .header__hamburger-line {
  background: #ffffff;
}

/* サービスページ用ヘッダーカラー */

.header--service {
  background-color: #ffffff;
}

.header--service .header__nav-link {
  color: #333333;
}

.header--service .header__nav-item--contact .header__nav-link {
  color: #ffffff;
}

.header--service .header__hamburger-line {
  background-color: #333333;
}

/* =====================
   Sub First View (sub-fv)
   ===================== */

.sub-fv {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 999;
  padding-top: 250px;
  padding-bottom: 135px;
}

.sub-fv__inner {
  position: relative;
  z-index: 1;
  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;
}

.sub-fv__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.sub-fv__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  color: #333333;
}

.sub-fv__subtitle-icon {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #60DDC8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sub-fv__subtitle-text {
  font-size: 1rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  color: #333333;
}

.sub-fv__title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 7.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #333333;
  margin-bottom: 140px;
}

.sub-fv__breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  color: #333333;
  text-transform: uppercase;
}

.sub-fv__breadcrumb a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.sub-fv__breadcrumb a:hover {
  opacity: 0.7;
}

.sub-fv__breadcrumb-separator {
  color: #e4e4e4;
}

.sub-fv__breadcrumb-current {
  color: #333333;
}

/* =====================
   Sub Service FV (サービス系サブページのFV)
   ===================== */

.sub-service-fv {
  background-color: #333333;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
  border-bottom: 1px solid #444444;
}

.sub-service-fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 50px 0 56px;
}

.sub-service-fv__content {
  position: relative;
  z-index: 2;
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-top: 143px;
}

.sub-service-fv__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  color: #ffffff;
}

.sub-service-fv__subtitle-icon {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #4AD384;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sub-service-fv__subtitle-text {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  color: #ffffff;
}

.sub-service-fv--red .sub-service-fv__subtitle-icon {
  background-color: #e65959;
}

.sub-service-fv--purple .sub-service-fv__subtitle-icon {
  background-color: #A460DD;
}

.sub-service-fv--blue .sub-service-fv__subtitle-icon {
  background-color: #60ACDD;
}

.sub-service-fv .sub-fv__title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 7.5rem;
  line-height: 1;
  letter-spacing: 0.035em;
  color: #ffffff;
  margin-bottom: 125px;
  white-space: nowrap;
}

.sub-service-fv .sub-fv__breadcrumb {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.sub-service-fv .sub-fv__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.sub-service-fv .sub-fv__breadcrumb .sub-fv__breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
}

.sub-service-fv .sub-fv__breadcrumb .sub-fv__breadcrumb-current {
  color: rgba(255, 255, 255, 0.7);
}

.sub-service-fv__img {
  position: relative;
  width: 680px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.sub-service-fv__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 680/510;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0 24px 24px 0;
}

.sub-service-description {
  background-color: #333333;
  padding: 6.0625rem 0 20rem;
}

.sub-service-description__text {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 3.125rem;
  letter-spacing: 0.01em;
  color: #ffffff;
}

/* =====================
   Sub Service Menu（アコーディオン）
   ===================== */

/* growページ調整 */

.sub-service-menu {
  background-color: #333333;
  /* padding: 0 0 7.5rem; */
  position: relative;
  margin-top: -204px;
  /* Details セクション（運用内容リスト） */
  /* GROW: Report / Recommend */
  /* Plan セクション */
}

.sub-service-menu::after {
  content: "";
  position: absolute;
  top: 200px;
  left: 0;
  right: 0;
  height: 100%;
  background-color: #dddddd;
  z-index: 0;
}

.sub-service-menu__inner {
  position: relative;
  margin-left: 80px;
}

.sub-service-menu__list {
  position: relative;
  padding-left: 0;
  margin-left: 0;
  list-style: none;
  background-color: #ffffff;
  border-radius: 80px 0 0 0;
  z-index: 1;
}

/* .sub-service-menu__list:has(.sub-service-menu__item.is-open) {
  background-color: transparent;
} */

.sub-service-menu__item {
  position: relative;
  z-index: 1;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-radius: 80px 0 0 0;
  background-color: #ffffff;
  border-radius: 80px 0 0 0;
}

/* .sub-service-menu__item:not(:first-child).is-open {
  margin-top: 100px;
} */

/* .sub-service-menu__item.is-open {
  z-index: 10;
  margin-bottom: 100px;
} */

.sub-service-menu__header {
  max-width: 1250px;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 66px 20px 80px 20px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  -webkit-transition: margin-bottom 0.35s ease, border-radius 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: margin-bottom 0.35s ease, border-radius 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: margin-bottom 0.35s ease, border-radius 0.35s ease, box-shadow 0.35s ease;
  transition: margin-bottom 0.35s ease, border-radius 0.35s ease, box-shadow 0.35s ease, -webkit-box-shadow 0.35s ease;
}

.is-open .sub-service-menu__header {
  margin-bottom: 0;
}

.sub-service-menu__item:last-child .sub-service-menu__header {
  margin-bottom: 0;
}

.sub-service-menu__item.is-open .sub-service-menu__header {
  margin-bottom: 0;
}

.sub-service-menu__number {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-right: 35px;
}

.sub-service-menu__number .slash {
  font-weight: 100;
}

.sub-service-menu__title-block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
}

.sub-service-menu__title-block-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.sub-service-menu__title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sub-service-menu__subtitle {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sub-service-menu__chevron {
  margin-top: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  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;
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sub-service-menu__chevron i {
  font-size: 20px;
}

.is-open .sub-service-menu__chevron {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.sub-service-menu__body {
  max-width: 1250px;
  width: 100%;
  margin-inline: auto;
  padding: 0 20px;
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1), -ms-grid-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.is-open .sub-service-menu__body {
  grid-template-rows: 1fr;
}

.sub-service-menu__body-inner {
  overflow: hidden;
  min-height: 0;
  background-color: #ffffff;
  border-radius: 0 0 16px 16px;
}

.sub-service-menu__body-inner.sub-service-menu__body-inner--open {
  overflow: visible;
  min-height: auto;
}

.is-open .sub-service-menu__body-inner {
  border-radius: 0 0 16px 16px;
  max-width: 1220px;
  width: 100%;
  margin-inline: auto;
}

.sub-service-menu__section {
  padding: 0 0 0 10px;
}

.sub-service-menu__section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: #333333;
  text-transform: uppercase;
}

.sub-service-menu__section-head--red .sub-service-menu__section-dot {
  background-color: #e65959;
}

.sub-service-menu__section-head--purple .sub-service-menu__section-dot {
  background-color: #A460DD;
}

.sub-service-menu__section-head--blue .sub-service-menu__section-dot {
  background-color: #60ACDD;
}

.sub-service-menu__section-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #4AD384;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sub-service-menu__reviews-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #eeeeee;
  padding: 45px 0;
  flex-wrap: wrap;
}

.sub-service-menu__reviews-flex:first-child {
  border-top: 1px solid #eeeeee;
}

.sub-service-menu__reviews-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  max-width: 930px;
  width: 100%;
}

.sub-service-menu__author {
  width: 120px;
  height: 120px;
}

.sub-service-menu__author-wrap-sp {
  display: none;
}

.sub-service-menu__author-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-service-menu__text {
  max-width: 770px;
  width: 85%;
}

.sub-service-menu__quote {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.045em;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 8px;
}

.sub-service-menu__testimonial {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #666666;
  margin-bottom: 17px;
}

.sub-service-menu__author-company {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #666666;
  text-align: right;
}

.sub-service-menu__section.sub-service-menu__details {
  padding: 0 0 0 4px;
}

.sub-service-menu__details-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 50px 0 57px;
  border-bottom: 1px solid #eeeeee;
  flex-wrap: wrap;
}

.sub-service-menu__details .sub-service-menu__section-dot {
  background-color: #e65959;
}

.sub-service-menu__details--purple .sub-service-menu__section-dot {
  background-color: #A460DD;
}

.sub-service-menu__details--blue .sub-service-menu__section-dot {
  background-color: #60ACDD;
}

.sub-service-menu__details-content {
  max-width: 930px;
  width: 100%;
}

.sub-service-menu__details-title {
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  color: #333333;
  margin-bottom: 24px;
}

.sub-service-menu__details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub-service-menu__details-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #333333;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.sub-service-menu__details-item:not(:last-child) {
  margin-bottom: 12px;
}

.sub-service-menu__details-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #e65959;
  font-size: 1.25rem;
  line-height: 1.4;
}

.sub-service-menu__details--purple .sub-service-menu__details-icon {
  color: #A460DD;
}

.sub-service-menu__details--blue .sub-service-menu__details-icon {
  color: #60ACDD;
}

.sub-service-menu__report-content,
.sub-service-menu__recommend-content {
  max-width: 930px;
  width: 100%;
}

.sub-service-menu__report-title,
.sub-service-menu__recommend-title {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  color: #333333;
  margin-bottom: 20px;
}

.sub-service-menu__report-list,
.sub-service-menu__recommend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub-service-menu__report-item,
.sub-service-menu__recommend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #333333;
}

.sub-service-menu__report-item:not(:last-child),
.sub-service-menu__recommend-item:not(:last-child) {
  margin-bottom: 12px;
}

.sub-service-menu__report-item {
  gap: 8px;
}

.sub-service-menu__recommend-item {
  gap: 14px;
}

.sub-service-menu__report-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #A460DD;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.sub-service-menu__recommend-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #A460DD;
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1.4;
}

.sub-service-menu__recommend--blue .sub-service-menu__recommend-icon {
  color: #60ACDD;
}

.sub-service-menu__section.sub-service-menu__plan {
  padding: 0 0 0 4px;
}

.sub-service-menu__plan-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 50px 0;
  border-bottom: 1px solid #eeeeee;
  flex-wrap: wrap;
}

.sub-service-menu__item.is-open .sub-service-menu__plan-flex,
.sub-service-menu__item.is-open .sub-service-menu__reviews-flex {
  border-bottom: none;
}

.sub-service-menu__plan .sub-service-menu__section-dot {
  background-color: #e65959;
}

.sub-service-menu__plan--purple .sub-service-menu__section-dot {
  background-color: #A460DD;
}

.sub-service-menu__plan--blue .sub-service-menu__section-dot {
  background-color: #60ACDD;
}

.sub-service-menu__plan-content {
  max-width: 920px;
  width: 100%;
}

.sub-service-menu__plan-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 38px;
}

.sub-service-menu__plan-block {
  border: 1px solid #e65959;
  border-radius: 10px;
  padding: 37px 40px 33px;
}

.sub-service-menu__plan-block:not(:last-child) {
  margin-bottom: 39px;
}

.sub-service-menu__plan--purple .sub-service-menu__plan-block {
  border: 1px solid #A460DD;
}

.sub-service-menu__plan--blue .sub-service-menu__plan-block {
  border: 1px solid #60ACDD;
}

.sub-service-menu__plan-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1;
  gap: 32px;
  margin-bottom: 17px;
}

.sub-service-menu__plan-name {
  color: #e65959;
}

.sub-service-menu .sub-service-menu__plan--purple .sub-service-menu__plan-name {
  color: #A460DD;
}

.sub-service-menu .sub-service-menu__plan--blue .sub-service-menu__plan-name {
  color: #60ACDD;
}

.sub-service-menu__plan-fee {
  color: #333333;
}

.sub-service-menu__plan-desc {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #666666;
  margin-bottom: 21px;
}

.sub-service-menu .sub-service-menu__plan--purple .sub-service-menu__plan-desc {
  letter-spacing: 0.01em;
}

.sub-service-menu__plan-month {
  font-weight: 700;
}

.sub-service-menu__plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub-service-menu__plan-feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #333333;
}

.sub-service-menu__plan-feature-item:not(:last-child) {
  margin-bottom: 7px;
}

.sub-service-menu__plan-feature-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #e65959;
  font-size: 0.875rem;
  line-height: 1.6;
}

.sub-service-menu .sub-service-menu__plan--purple .sub-service-menu__plan-feature-icon {
  color: #A460DD;
}

.sub-service-menu .sub-service-menu__plan--blue .sub-service-menu__plan-feature-icon {
  color: #60ACDD;
}

.sub-service-menu__cta-wrap--plan {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 0;
}

.sub-service-menu__cta.sub-service-menu__cta--plan.red i {
  color: #e65959;
}

.sub-service-menu__cta.sub-service-menu__cta--plan.red:hover {
  background-color: #e65959;
  color: #ffffff;
}

.sub-service-menu__cta.sub-service-menu__cta--plan.red:hover i {
  color: #ffffff;
}

.sub-service-menu__cta.sub-service-menu__cta--plan.purple i {
  color: #A460DD;
}

.sub-service-menu__cta.sub-service-menu__cta--plan.purple:hover {
  background-color: #A460DD;
  color: #ffffff;
}

.sub-service-menu__cta.sub-service-menu__cta--plan.purple:hover i {
  color: #ffffff;
}

.sub-service-menu__cta.sub-service-menu__cta--plan.blue i {
  color: #60ACDD;
}

.sub-service-menu__cta.sub-service-menu__cta--plan.blue:hover {
  background-color: #60ACDD;
  color: #ffffff;
}

.sub-service-menu__cta.sub-service-menu__cta--plan.blue:hover i {
  color: #ffffff;
}

.sub-service-menu__point-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  max-width: 930px;
  width: 100%;
}

.sub-service-menu__point-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.777777778vw;
}

.sub-service-menu__point-item:not(:last-child) {
  padding-bottom: 24px;
}

.sub-service-menu__point-img-wrap-sp {
  display: none;
}

.sub-service-menu__point-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.sub-service-menu__point-content {
  max-width: 780px;
  width: 85%;
}

.sub-service-menu__point-title {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  color: #333333;
  margin-bottom: 8px;
}

.sub-service-menu__point-text {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #666666;
}

.sub-service-menu__cta-wrap {
  padding: 60px 0 80px;
  text-align: right;
}

.sub-service-menu__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 49px;
  padding: 15px 30px 15px 87px;
  background-color: #333333;
  color: #ffffff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 30px 30px 30px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sub-service-menu__cta i {
  color: #4AD384;
  font-size: 0.85em;
}

.sub-service-menu__cta:hover {
  background-color: #4AD384;
  color: #ffffff;
  opacity: 1;
}

.sub-service-menu__cta:hover i {
  color: #ffffff;
}

/* =====================
   Sub FV C Character (固定要素)
   ===================== */

.sub-fv__c {
  position: fixed;
  top: -147px;
  right: 5.6%;
  width: 525px;
  height: auto;
  aspect-ratio: 525/699;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.sub-fv__c--scrolled {
  opacity: 0.3;
}

.sub-fv__c-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  -webkit-mask-image: url("../images/sub/C.png");
  mask-image: url("../images/sub/C.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.sub-fv__c::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #60ddc8;
  z-index: 1;
  -webkit-mask-image: url("../images/sub/C.png");
  mask-image: url("../images/sub/C.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.sub-fv__character {
  position: relative;
}

.sub-fv__character .sub-fv__character-text {
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), to(transparent));
  background-image: linear-gradient(to right, transparent 0%, transparent 100%);
}

/* =====================
   404ページ
   ===================== */

#notfound .sub-fv__title {
  margin-bottom: 50px;
  white-space: nowrap;
}

.notfound-intro__txt {
  font-size: 1.75rem;
  margin-bottom: 50px;
}

/* =====================
   FV Section
   ===================== */

.fv {
  width: 100%;
  z-index: 1;
  height: 114vh;
  /* height: 100vh; */
  border-bottom: 1px solid #eeeeee;
}

.fv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 86vh;
  /* height: 77vh; */
  aspect-ratio: 1440/640;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  overflow: hidden;
}

.fv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 86vh;
  /* height: 77vh; */
  background-color: #000000;
  opacity: 0.2;
  z-index: 1;
}

.fv__content {
  position: relative;
  z-index: 2;
  height: 86vh;
  /* height: 77vh; */
}

.fv__subtitle {
  position: absolute;
  top: calc(86vh - 113px);
  /* top: calc(77vh - 139px); */
  left: 0;
  font-size: 1.25rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.fv__logo picture {
  display: block;
}

.fv__logo-main {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 180px;
  color: #60DDC8;
  line-height: 1;
  letter-spacing: 0.005em;
  white-space: nowrap;
  position: absolute;
  top: calc(86vh - 94px);
  /* top: calc(77vh - 128px); */
  left: 0;
  z-index: 100;
}

.fv__logo1-wrap {
  position: absolute;
  top: calc(86vh - 94px);
  /* top: calc(77vh - 94px); */
  left: 0;
  z-index: 100;
}

.fv__logo1 {
  display: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 180px;
  color: #60DDC8;
  line-height: 1;
  letter-spacing: 0.005em;
  white-space: nowrap;
  position: relative;
  top: 0;
  left: 0;
  z-index: 100;
}

.fv__logo1--sp {
  display: none;
}

.fv__logo2 {
  display: inline-block;
  position: absolute;
  top: calc(86vh - 180px);
  /* top: calc(77vh - 210px); */
  right: 0;
}

.fv__logo2 img {
  width: auto;
  height: 280px;
  aspect-ratio: 210/280;
  -o-object-fit: contain;
     object-fit: contain;
}

/* =====================
   Create & Design Section
   ===================== */

.create-design {
  background-color: #ffffff;
  padding: 80px 0 0;
}

.create-design__inner {
  margin-bottom: 60px;
}

.create-design__title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 180px;
  line-height: 1;
  letter-spacing: 0.005em;
  margin-bottom: 40px;
  white-space: nowrap;
  opacity: 0;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: -webkit-clip-path 0.01s;
  transition: -webkit-clip-path 0.01s;
  transition: clip-path 0.01s;
  transition: clip-path 0.01s, -webkit-clip-path 0.01s;
}

.create-design__title--accent {
  color: #60DDC8;
}

.create-design__title--small {
  font-size: min(140px, 9.722222222vw);
  font-weight: 300;
}

.create-design__title--dot {
  color: #60DDC8;
}

.create-design__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}

.create-design__text {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.create-design__slider {
  width: 100%;
  overflow: hidden;
}

.create-design .create-design-swiper {
  width: 100%;
}

.create-design .create-design-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.create-design .create-design-swiper .swiper-slide {
  width: 25%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.create-design .create-design-swiper .swiper-slide img {
  width: 100%;
  height: 300px;
  aspect-ratio: 400/300;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* =====================
   Service Section
   ===================== */

.service {
  background-color: #ffffff;
  padding: 110px 0;
}

.service .top-section__flex {
  gap: 10px;
}

.service__inner {
  max-width: 1300px;
  margin: 0 auto;
  width: 91%;
}

.service__item {
  position: relative;
  border-bottom: 1px solid #eeeeee;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}

.service__item:first-child {
  border-top: 1px solid #eeeeee;
}

.service__item--featured {
  position: relative;
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}

.service__item--featured .service__item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.service__item--featured .service__item-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service__item--featured .service__item-title {
  color: #333333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.service__item--featured .service__item-subtitle,
.service__item--featured .service__item-description {
  color: #333333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.service__item--featured .service__item-arrow {
  color: #333333;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
}

.service__item--featured:hover {
  height: 373px;
}

.service__item--featured:hover .service__item-bg {
  opacity: 1;
}

.service__item--featured:hover .service__item-content {
  color: #ffffff;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 60px 0;
  height: 100%;
}

.service__item--featured:hover .service__item-main {
  height: 100%;
}

.service__item--featured:hover .service__item-flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.service__item--featured:hover .service__item-number--color,
.service__item--featured:hover .service__item-title {
  color: #60DDC8;
}

.service__item--featured:hover .service__item-subtitle,
.service__item--featured:hover .service__item-description {
  color: #ffffff;
}

.service__item--featured:hover .service__item-arrow {
  color: #ffffff;
  margin-left: auto;
}

.service__item-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 92%;
  margin-inline: auto;
  padding: 60px 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}

.service__item-number {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-size: 1.625rem;
  letter-spacing: 0.05em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 39px;
}

.service__item-number--color {
  font-weight: 600;
}

.service__item-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.service__item-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: min(456px, 35.7%);
  min-width: 320px;
}

.service__item-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 2.625rem;
  line-height: 1;
  letter-spacing: 0.05em;
  max-width: 375px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.service__item-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 64.3%;
  gap: 10px;
  -webkit-transition: -webkit-box-align 0.3s ease;
  transition: -webkit-box-align 0.3s ease;
  transition: align-items 0.3s ease;
  transition: align-items 0.3s ease, -webkit-box-align 0.3s ease, -ms-flex-align 0.3s ease;
}

.service__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 30px;
  position: relative;
}

.service__item-wrap::before {
  position: absolute;
  content: "";
  border-left: 1px solid #eeeeee;
  height: 53px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.service__item-subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.service__item-description {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.service__item-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #333333;
  font-size: 1.125rem;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
}

/* =====================
   Works Section
   ===================== */

.top-section__flex--works {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.works {
  color: #ffffff;
}

.works__bg {
  background-color: #333333;
  padding: 110px 0 215px;
}

.works__inner {
  margin-bottom: 80px;
}

.works__inner .top-section__description {
  margin-top: 30px;
  max-width: 800px;
}

.works__btn-wrap {
  margin-top: 40px;
}

.works__btn-wrap--pc {
  display: block;
}

.works__btn-wrap--sp {
  display: none;
}

.works__slider {
  position: relative;
  margin-top: -142px;
  overflow: hidden;
}

.works__slider-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  background: #60DDC8;
  color: #333333;
  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;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, opacity 0.3s ease;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.works__slider-btn i {
  font-size: 1.125rem;
}

.works__slider-btn:hover {
  background: rgba(96, 221, 200, 0.8);
}

.works__slider-btn--prev {
  left: -40px;
}

.works__slider-btn--prev i {
  padding-left: 35px;
}

.works__slider-btn--next {
  right: -40px;
}

.works__slider-btn--next i {
  padding-right: 35px;
}

.works .works-swiper {
  width: 100%;
}

.works .works-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.works .works-swiper .swiper-slide {
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
}

.works__slide {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
  width: 400px;
  height: 300px;
  overflow: hidden;
  border-radius: 20px 20px 20px 0;
}

a.works__slide:hover{
    opacity: initial;
}

.works__slide-image {
  width: 100%;
  height: 100%;
}

.works__slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -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;
}

.works__slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  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;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
  padding: 40px 30px 30px 40px;
}

.works__slide-category {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
  -webkit-transform: translateY(20px);
          transform: translateY(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;
}

.works__slide-title {
  font-size: 1rem;
  color: #ffffff;
  -webkit-transform: translateY(20px);
          transform: translateY(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;
}

.works__slide-arrow {
  margin-left: auto;
  -webkit-transform: translateX(-20px);
          transform: translateX(-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;
}

.works__slide-arrow i {
  font-size: 15px;
}

.works__slide:hover .works__slide-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.works__slide:hover .works__slide-overlay {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.works__slide:hover .works__slide-category,
.works__slide:hover .works__slide-title {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.works__slide:hover .works__slide-arrow {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.works__logos {
  background-color: #ffffff;
  padding: 80px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid #EEEEEE;
}

.works .works-logos-swiper {
  width: 100%;
}

.works .works-logos-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.works .works-logos-swiper .swiper-slide {
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0 40px;
}

.works__logo-item {
  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;
  height: 60px;
}

.works__logo-item--godai {
  height: 25px;
}

.works__logo-item--kodansha,
.works__logo-item--vector,
.works__logo-item--dnp,
.works__logo-item--united-arrows {
  height: 50px;
}

.works__logo-item--dmm {
  height: 31px;
}

.works__logo-item--gtn {
  height: 49px;
}

.works__logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* =====================
   Staff Section
   ===================== */

.top-section__flex--staff {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.staff {
  background-color: #ffffff;
  padding: 120px 0;
  position: relative;
}

.staff::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 50%;
  background-color: #f5f5f5;
  z-index: 0;
}

.staff__inner {
  position: relative;
  z-index: 1;
}

.staff__btn-wrap {
  text-align: center;
  margin-top: 60px;
}

.staff__btn-wrap--pc {
  display: block;
}

.staff__btn-wrap--sp {
  display: none;
}

.staff__slider {
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 1;
}

.staff .staff-swiper {
  width: 100%;
  position: relative;
}

.staff .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 538px;
}

.staff .swiper-slide {
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.staff__item {
  cursor: pointer;
  -webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.staff__item:hover .staff__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.staff__image {
  width: 240px;
  height: 320px;
  border-radius: 120px 120px 120px 0;
  overflow: hidden;
  margin: 0 auto 20px;
  -webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.staff__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.staff__role {
  font-size: 0.875rem;
  font-weight: 400;
  color: #999999;
  margin-bottom: 3px;
}

.staff__name {
  font-family: "Barlow", sans-serif;
  font-size: 1.625rem;
  font-weight: 400;
  color: #333333;
  position: relative;
  display: inline-block;
}

.staff__name::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #60DDC8;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.staff__item:hover .staff__name::after {
  width: 100%;
}

.staff__progress {
  margin-top: 40px;
  max-width: 890px;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.2);
  position: relative;
  overflow: hidden;
  margin-left: auto;
}

.staff__progress-bar {
  height: 100%;
  background-color: #333333;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

/* =====================
   Recruit Section
   ===================== */

.recruit {
  position: relative;
  overflow: hidden;
}

.recruit .top-section__header {
  margin-bottom: 0;
}

.recruit .top-section__title {
  margin-bottom: 40px;
}

.recruit__bg {
  position: relative;
  background-image: url("../images/top/recruit-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.recruit__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.recruit__inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: visible;
}

.recruit__content {
  display: block;
  cursor: pointer;
  position: relative;
  min-height: 438px;
  background-color: rgba(96, 221, 200, 0.902);
  border-radius: 0 219px 219px 0;
  padding: 60px 4.986111111vw 60px 0;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  -webkit-transition: border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  z-index: 1;
}

.recruit__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 150vw;
  height: 100%;
  background-color: rgba(96, 221, 200, 0.902);
  border-radius: 0 219px 219px 0;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.recruit__content:hover {
  background-color: transparent;
  border-radius: 0;
}

.recruit__content:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  border-radius: 0;
}

.recruit__content .top-section__label-icon {
  background-color: #333333;
}

.recruit__arrow {
  position: absolute;
  right: 44px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #333333;
  -webkit-transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s ease;
  transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s ease, right 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s ease;
}

.recruit__arrow i {
  font-size: 15px;
}

.recruit__content:hover .recruit__arrow {
  right: -40vw;
  -webkit-transform: translateY(-50%) translateX(10px);
          transform: translateY(-50%) translateX(10px);
}

/* =====================
   News Section
   ===================== */

.news {
  background-color: #ffffff;
  padding: 120px 0 80px;
}

.news__inner {
  margin-bottom: 80px;
}

.news__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}

.news__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 20px;
}

.news__title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 7.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #333333;
}

.news__subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
}

.news__btn-wrap {
  text-align: right;
}

.news__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news__item {
  border-bottom: 1px solid #eeeeee;
}

.news__item:first-child {
  border-top: 1px solid #eeeeee;
}

.news__link {
  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: 30px 0;
  gap: 1.25rem;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.news__link:hover {
  opacity: 1;
}

.news__link:hover .news__arrow {
  color: #60DDC8;
}

.news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  min-width: 200px;
}

.news__date {
  font-family: "Barlow", sans-serif;
  font-size: 0.9375rem;
}

.news__category {
  width: 100px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 0 7px;
  background-color: #333333;
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 0.75rem;
  line-height: 1;
  border-radius: 12.5px;
  white-space: nowrap;
}

.news__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.875;
  margin: 0;
}

.news__arrow {
  color: #333333;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  margin-left: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news__arrow i {
  font-size: 15px;
}

/* =====================
   Instagram Section
   ===================== */

.top-section__flex--instagram {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 49px;
}

.instagram {
  position: relative;
  padding: 120px 0;
}

.instagram::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 63%;
  background-color: #F5F5F5;
  z-index: -1;
}

.instagram__inner {
  margin-bottom: 0px;
}

.instagram__btn-wrap {
  text-align: right;
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.instagram__item {
  display: block;
  overflow: hidden;
  border-radius: 20px 20px 20px 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.instagram__item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.9;
}

.instagram__item:nth-child(n+6) {
  display: none;
}

.instagram__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
}

/* =====================
   About Section (コンセプト、企業理念、会社概要)
   ===================== */

.sub-about {
  margin-bottom: 11.875rem;
}

.about-section {
  display: block;
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0;
  min-height: 401px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.about-section--concept {
  background-image: url("../images/sub/concept-bg.webp");
}

.about-section--philosophy {
  background-image: url("../images/sub/philosophy-bg.webp");
}

.about-section--company {
  background-image: url("../images/sub/company-bg.webp");
}

.about-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.about-section__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.about-section__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.625rem;
}

.about-section__number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.6;
}

.about-section__number span {
  font-weight: 300;
}

.about-section__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1;
  color: #333333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.about-section__title-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.1875rem;
  margin-bottom: 2.4375rem;
}

.about-section__subtitle {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  color: #333333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.about-section__text {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.875;
  color: #333333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.about-section__arrow {
  position: absolute;
  right: 2.3%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.9375rem;
  color: #333333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  z-index: 99;
}

.about-section:hover::after {
  background-color: rgba(0, 0, 0, 0.75);
}

.about-section:hover::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 5.56%;
  height: 100%;
  background-color: #60DDC8;
  z-index: 1;
}

.about-section:hover .about-section__number {
  color: #60DDC8;
}

.about-section:hover .about-section__number span {
  color: #ffffff;
}

.about-section:hover .about-section__title {
  color: #60DDC8;
}

.about-section:hover .about-section__subtitle {
  color: #ffffff;
}

.about-section:hover .about-section__text {
  color: #ffffff;
}

/* =====================
   Sub Concept Section (sub-fv 直下)
   ===================== */

.sub-concept {
  margin-bottom: 11.875rem;
}

/* イントロ：CREATE & DESIGN. + リード文 */

.sub-concept__section {
  padding: 7.5rem 0;
  border-bottom: 1px solid #EEEEEE;
}

.sub-concept__section:nth-child(1) {
  border-top: 1px solid #EEEEEE;
}

.sub-concept__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sub-concept__head {
  display: block;
  margin-bottom: 3.125rem;
  font-size: 7.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}

.sub-concept__head-line1 {
  color: #60DDC8;
}

.sub-concept__head-line2 {
  font-weight: 300;
}

.sub-concept__lead {
  font-size: 1.125rem;
  line-height: 2;
}

/* セクション（由来・ロゴ） */

.sub-concept__section {
  width: 100%;
}

.sub-concept__section-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.75rem;
}

.sub-concept__section-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.sub-concept__section-label {
  font-family: "Barlow", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.sub-concept__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.1875rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.sub-concept__section-text {
  font-size: 1rem;
  line-height: 2;
}

.sub-concept__section-visual {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 320px;
  width: 100%;
  aspect-ratio: 1;
}

.sub-concept__sky-image,
.sub-concept__logo-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* CONTACT CTA */

.sub-concept__cta {
  margin-top: 2.5rem;
}

.sub-concept__cta-btn {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 1.25rem 2.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  color: #ffffff;
  background-color: #60DDC8;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.sub-concept__cta-btn:hover {
  opacity: 0.9;
}

.br1000 {
  display: none;
}

/* =====================
   SP
   ===================== */

/* =====================
   Sub Company Info (COMPANY INFO)
   ===================== */

.sub-company-info {
  padding: 7.5rem 0;
  border-top: 1px solid #eeeeee;
}

.sub-company-info__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.75rem;
}

/* セクションタイトル（COMPANY INFO + 緑ドット） */

.sub-company-info__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin: 0;
}

.sub-company-info__title-icon {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #60DDC8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sub-company-info__title-text {
  font-family: "Barlow", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sub-company-info__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}

.sub-company-info__image-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(460px, 36%);
  border-radius: 20px 20px 20px 0;
  overflow: hidden;
}

.sub-company-info__image-wrap picture {
  display: block;
}

.sub-company-info__image {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 会社情報リスト（dl） */

.sub-company-info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 723px;
  width: 57%;
}

.sub-company-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.347222222%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid #EEEEEE;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  color: #333333;
  line-height: 1.7;
}

.sub-company-info__row:first-child {
  padding-top: 0;
}

.sub-company-info__term {
  margin: 0;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  width: 70px;
}

.sub-company-info__desc {
  margin: 0;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  width: calc(94.652777778% - 70px);
}

.sub-company-info__desc a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.sub-company-info__desc a:hover {
  opacity: 0.7;
}

.sub-company-info__bullet-list {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.sub-company-info__bullet-list li {
  margin-bottom: 0.25rem;
}

.sub-company-info__bullet-list li:last-child {
  margin-bottom: 0;
}

/* =====================
   Sub CEO Message
   ===================== */

.sub-ceo-message {
  padding: 7.5rem 0;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 11.875rem;
}

.sub-ceo-message__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.6875rem;
}

.sub-ceo-message__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin: 0;
}

.sub-ceo-message__title-icon {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #60DDC8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sub-ceo-message__title-text {
  font-family: "Barlow", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333333;
}

.sub-ceo-message__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6.25rem;
}

.sub-ceo-message__image-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(460px, 36%);
  border-radius: 20px 20px 20px 0;
  overflow: hidden;
}

.sub-ceo-message__image-wrap picture {
  display: block;
}

.sub-ceo-message__image {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-ceo-message__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.sub-ceo-message__text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
}

.sub-ceo-message__text:last-of-type {
  margin-bottom: 1.8125rem;
}

.sub-ceo-message__signature {
  margin-left: auto;
  max-width: 223px;
}

.sub-ceo-message__signature img {
  aspect-ratio: 223/60;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* CEO MESSAGE - SP */

/* =====================
   Sub Philosophy Section (sub-concept を参考)
   ===================== */

.sub-philosophy {
  border-top: 1px solid #EEEEEE;
  margin-bottom: 11.875rem;
  position: relative;
}

.sub-philosophy__section {
  padding: 3.75rem 0;
  border-bottom: 1px solid #EEEEEE;
  position: relative;
  z-index: 1;
}

.sub-philosophy__section:first-child {
  padding: 7.5rem 0 6.1875rem;
}

.sub-philosophy__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sub-philosophy__head {
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 3.125rem;
}

.sub-philosophy__lead {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 2;
}

.sub-philosophy__section-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: min(13.194444444vw, 11.875rem);
}

.sub-philosophy__section-label {
  font-family: "Barlow", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6875rem;
}

.sub-philosophy__section-bullet {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #60DDC8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 8px;
}

.sub-philosophy__section-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.sub-philosophy__section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2.1875rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.sub-philosophy__section-text {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 2;
}

/* VALUE セクション：番号付きリスト */

.sub-philosophy__value-list {
  list-style: none;
  counter-reset: value-num;
  padding: 0;
  margin: 0;
}

.sub-philosophy__value-item {
  counter-increment: value-num;
  margin-bottom: 2.5rem;
}

.sub-philosophy__value-item:last-child {
  margin-bottom: 0;
}

.sub-philosophy__value-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.sub-philosophy__value-item-title::before {
  content: counter(value-num) ". ";
}

.sub-philosophy__value-item-text {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin: 0;
}

/* =====================
   SP
   ===================== */

/* =====================
   Sub Staff Section
   ===================== */

.sub-staff {
  border-top: 1px solid #eeeeee;
  margin-bottom: 11.875rem;
  padding: 7.5rem 0;
}

.sub-staff__inner {
  max-width: 1200px;
  width: 89%;
  margin: 0 auto;
}

.sub-staff__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(5.555555556vw, 80px) min(7.291666667vw, 105px);
}

/* カード（アーチ形画像 + 役職・名前） */

.sub-staff__card {
  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: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 100%;
  max-width: 330px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: center;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.sub-staff__card:hover {
  opacity: 0.9;
}

.sub-staff__card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 330/440;
  border-radius: 165px 165px 165px 0;
  margin-bottom: 1.5rem;
}

.sub-staff__card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.sub-staff__card-role {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: #999999;
  margin-bottom: 0.5rem;
  text-align: left;
}

.sub-staff__card-name {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
}

/* =====================
   スタッフモーダル
   ===================== */

.sub-staff-modal {
  position: fixed;
  inset: 0;
  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;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.3s, opacity 0.3s ease;
  transition: visibility 0.3s, opacity 0.3s ease;
  /* SP: モーダル全体をスクロールコンテナにし、bodyは高さ制限なしではみ出した分だけスクロール */
}

.sub-staff-modal.sub-staff-modal--open {
  visibility: visible;
  opacity: 1;
}

.sub-staff-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.sub-staff-modal__body {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1110px;
  background: #fff;
  border-radius: 235px 0 0 0;
  overflow: visible;
  /* 閉じるボタンがはみ出しても切れないようにする */
}

.sub-staff-modal__scroll {
  max-height: 90vh;
  overflow-y: auto;
  padding: 3.75rem;
}

.sub-staff-modal__close {
  position: absolute;
  top: -0.9375rem;
  right: -0.9375rem;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #333333;
  color: #fff;
  cursor: pointer;
  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-transition: background 0.25s ease;
  transition: background 0.25s ease;
  z-index: 2;
}

.sub-staff-modal__close:hover {
  background: #60DDC8;
  color: #333333;
}

/* 閉じるボタン：CSSでバツ（×）を描画 */

.sub-staff-modal__close-icon {
  position: relative;
  display: block;
  width: 19px;
  height: 19px;
}

.sub-staff-modal__close-icon::before,
.sub-staff-modal__close-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 100%;
  background-color: currentColor;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.sub-staff-modal__close-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.sub-staff-modal__close-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.sub-staff-modal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3rem;
}

.sub-staff-modal__img-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 330px;
  height: 440px;
  border-radius: 165px 65px 165px 0;
  overflow: hidden;
  position: relative;
}

.sub-staff-modal__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.sub-staff-modal__img-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 50%, rgba(96, 221, 200, 0.15) 50%);
}

.sub-staff-modal__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.sub-staff-modal__role {
  font-size: 0.875rem;
  font-family: "Barlow", sans-serif;
  color: #999999;
  font-weight: 300;
  margin-bottom: 0.1875rem;
}

.sub-staff-modal__name {
  font-family: "Barlow", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.sub-staff-modal__intro {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.sub-staff__card-qa {
  margin: 0;
  display: none;
}

.sub-staff-modal__qa.sub-staff__card-qa--open {
  display: block;
}

.sub-staff-modal__qa-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.875rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.sub-staff-modal__qa-item:last-child {
  margin-bottom: 0;
}

.sub-staff-modal__qa-q {
  margin: 0;
  font-weight: 300;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sub-staff-modal__qa-q::after {
  content: " | ";
  margin-left: 0.75rem;
  font-weight: 300;
  color: #cccccc;
}

.sub-staff-modal__qa-a {
  margin: 0;
  font-weight: 300;
}

/* =====================
   SP
   ===================== */

/* =====================
   Sub Service Section（トップの .service と同じ作り・ホバー、クラス名のみ sub-service）
   ===================== */

.sub-service {
  border-top: 1px solid #eeeeee;
  margin-bottom: 11.875rem;
}

.sub-service__inner {
  padding: 7.5rem 0 6.5625rem 0;
}

.sub-service__description {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.sub-service__list {
  display: block;
}

.sub-service__item {
  position: relative;
  border-bottom: 1px solid #eeeeee;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}

.sub-service__item:first-child {
  border-top: 1px solid #eeeeee;
}

.sub-service__item--featured {
  position: relative;
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}

.sub-service__item--featured .sub-service__item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.sub-service__item--featured .sub-service__item-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-service__item--featured .sub-service__item-title {
  color: #333333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.sub-service__item--featured .sub-service__item-subtitle,
.sub-service__item--featured .sub-service__item-description {
  color: #333333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.sub-service__item--featured .sub-service__item-arrow {
  color: #333333;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
}

.sub-service__item--featured:hover {
  height: 373px;
}

.sub-service__item--featured:hover .sub-service__item-bg {
  opacity: 1;
}

.sub-service__item--featured:hover .sub-service__item-content {
  color: #ffffff;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 60px 0;
  height: 100%;
}

.sub-service__item--featured:hover .sub-service__item-main {
  height: 100%;
}

.sub-service__item--featured:hover .sub-service__item-flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sub-service__item--featured:hover .sub-service__item-subtitle,
.sub-service__item--featured:hover .sub-service__item-description {
  color: #ffffff;
}

.sub-service__item--featured:hover .sub-service__item-arrow {
  color: #ffffff;
  margin-left: auto;
}

.sub-service__item-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 92%;
  margin-inline: auto;
  padding: 60px 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}

.sub-service__item-number {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-size: 1.625rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 39px;
}

.sub-service__item-number--color {
  font-weight: 600;
}

.sub-service__item-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sub-service__item-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 456px;
}

.sub-service__item-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 2.625rem;
  line-height: 1;
  letter-spacing: 0.05em;
  max-width: 375px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.sub-service__item-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 456px);
  -webkit-transition: -webkit-box-align 0.3s ease;
  transition: -webkit-box-align 0.3s ease;
  transition: align-items 0.3s ease;
  transition: align-items 0.3s ease, -webkit-box-align 0.3s ease, -ms-flex-align 0.3s ease;
}

.sub-service__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 30px;
  position: relative;
}

.sub-service__item-wrap::before {
  position: absolute;
  content: "";
  border-left: 1px solid #eeeeee;
  height: 53px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sub-service__item-subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.sub-service__item-description {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.sub-service__item-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #333333;
  font-size: 1.125rem;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
}

.sub-service__item--featured:nth-child(1):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-number--color,
.sub-service__item--featured:nth-child(1):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-title {
  color: #A460DD;
}

.sub-service__item--featured:nth-child(2):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-number--color,
.sub-service__item--featured:nth-child(2):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-title {
  color: #E65959;
}

.sub-service__item--featured:nth-child(3):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-number--color,
.sub-service__item--featured:nth-child(3):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-title {
  color: #60ACDD;
}

.sub-service__item--featured:nth-child(4):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-number--color,
.sub-service__item--featured:nth-child(4):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-title {
  color: #4AD384;
}

.sub-service__item--featured:nth-child(5):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-number--color,
.sub-service__item--featured:nth-child(5):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-title {
  color: #E39131;
}

/* =====================
   Sub News Section（お知らせ一覧）
   ===================== */

.sub-news {
  padding: 0 0 7.5rem;
  /* Pagination */
}

.sub-news__list {
  list-style: none;
  padding: 0;
  margin: 0 0 5.0625rem;
  border-top: 1px solid #eeeeee;
}

.sub-news__item {
  border-bottom: 1px solid #eeeeee;
}

.sub-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding: 2.375rem 0;
  text-decoration: none;
  color: inherit;
}

.sub-news__link:hover .sub-news__arrow {
  color: #60ddc8;
}

.sub-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 0;
}

.sub-news__date {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
}

.sub-news__category {
  display: inline-block;
  padding: 0.40625rem 1.5rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #ffffff;
  background-color: #333333;
  border-radius: 12.5px;
}

.sub-news__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  color: #333333;
  margin: 0;
}

.sub-news__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  width: 0.9375rem;
  color: #333333;
  font-size: 1.25rem;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.sub-news__pagination {
  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;
  gap: 1.875rem;
}

.sub-news__pagination-prev,
.sub-news__pagination-next {
  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;
  width: 3rem;
  height: 3rem;
  color: #333333;
  text-decoration: none;
  font-size: 1.25rem;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.sub-news__pagination-prev:hover,
.sub-news__pagination-next:hover {
  color: #60ddc8;
}

.sub-news__pagination-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub-news__pagination-num {
  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;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.5rem;
  border-radius: 50%;
  border: 1px solid #eeeeee;
  color: #333333;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.sub-news__pagination-num:hover {
  background-color: #60ddc8;
}

.sub-news__pagination-num--current {
  background-color: #333333;
  color: #ffffff;
  pointer-events: none;
}

.sub-news__pagination-num--current:hover {
  background-color: #333333;
  color: #ffffff;
}

/* =====================
   Sub News SP
   ===================== */

/* =====================
   Sub News-detail Section（お知らせ詳細）
   ===================== */

.sub-news-detail {
  padding: 10.625rem 0 7.5rem;
}

/* =====================
   Sub News-detail（詳細）
   ===================== */

.sub-news-detail__article {
  border: 1px solid #EEEEEE;
  border-radius: 0 100px 0 0;
  background-color: #FFFFFF;
  padding: 100px;
  max-width: 1098px;
  width: 100%;
  margin-inline: auto;
}

.sub-news-detail__article h2 {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #333333;
  margin-bottom: 2.1875rem;
}

.sub-news-detail__article .sub-news-detail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.125rem;
}

.sub-news-detail__article .sub-news-detail__meta time {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  color: #333333;
  white-space: nowrap;
}

.sub-news-detail__article .sub-news-detail__meta span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.09375rem 1.5rem;
  background-color: #333333;
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-radius: 12.5px;
  white-space: nowrap;
}

.sub-news-detail__article > p {
  margin: 0 0 3.625rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.01em;
}

.sub-news-detail__article .sub-news-detail__media figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 900/500;
  overflow: hidden;
}

.sub-news-detail__article .sub-news-detail__media figure img span {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 7.5rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1;
  -webkit-transform: translateY(0.25rem);
          transform: translateY(0.25rem);
}

.sub-news-detail__back {
  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;
  gap: 3.3125rem;
  margin-top: 5rem;
}

.sub-news-detail__back--service {
  position: relative;
  padding: 0 0 7.5rem;
  z-index: 1;
}

.sub-news-detail__back-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333333;
  text-decoration: none;
}

.sub-news-detail__back-arrow i {
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
  font-size: 0.9375rem;
}

.sub-news-detail__back-arrow:hover i {
  color: #60ddc8;
}

.sub-news-detail__back-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 12.375rem;
  padding: 0.3125rem 1.25rem;
  border-radius: 25px;
  border: 1px solid #eeeeee;
  background: rgba(255, 255, 255, 0.9);
  color: #333333;
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
  text-transform: uppercase;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.sub-news-detail__back-btn:hover {
  color: #60ddc8;
  border: 1px solid #60ddc8;
}

/* =====================
   Sub Works（実績）
   ===================== */

.sub-works {
  padding: 0 0 7.5rem;
}

.sub-works__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub-works__item {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 7.5rem 0;
}

.sub-works__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-decoration: none;
  color: inherit;
}

.sub-works__image {
  width: 44%;
  height: 100%;
  overflow: hidden;
}

.sub-works__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 640/480;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: inherit;
  border-radius: 20px 20px 20px 0;
}

.sub-works__body {
  width: 53.5%;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 0;
}

.sub-works__bottom {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 210px;
}

.sub-works__content {
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 2.375rem;
}

.sub-works__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
  margin: 0 0 3.625rem;
}

.sub-works__category-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #60DDC8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sub-works__title {
  margin: 0 0 1.5rem;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #333333;
}

.sub-works__tech {
  margin: 0 0 2.375rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.sub-works__desc {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.01em;
  color: #666666;
  margin: 0;
}

.sub-works__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.4375rem;
  min-width: 20rem;
  padding: 0.9375rem 1.5625rem 0.9375rem 5.3125rem;
  border-radius: 30px 30px 30px 0;
  background-color: #333333;
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 1rem;
  margin-top: auto;
  margin-left: auto;
  -webkit-transform: translateY(1.125rem);
          transform: translateY(1.125rem);
  -webkit-transition: color 0.25s ease, background-color 0.25s ease;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.sub-works__cta:hover {
  background-color: #60DDC8;
}

.sub-works__cta i {
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
  font-size: 0.875rem;
}

/* =====================
   Sub Contact（お問い合わせ）
   ===================== */

.sub-contact {
  padding: 7.5rem 0;
  border-top: 1px solid #EEEEEE;
}

.sub-contact__lead {
  max-width: 850px;
  margin: 0 auto 3.75rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.01em;
}

.sub-contact__form {
  max-width: 68.75rem;
  margin-inline: auto;
  border-top: 1px solid #EEEEEE;
}

.sub-contact__row {
  display: grid;
  grid-template-columns: 33.636363636% 1fr;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  gap: 1.875rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #eeeeee;
}

.sub-contact__labelWrap {
  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;
          margin-top: 5px;
}

.sub-contact__label {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.01em;
}

.sub-contact__required {
  width: 3.125rem;
  height: 1.625rem;
  background-color: #333333;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.sub-contact__field {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sub-contact__field span{
  width: 100%;
}

.sub-contact__nameRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  width: 100%;
}

.sub-contact__nameRow .sub-contact__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}

.sub-contact__input,
.sub-contact__select,
.sub-contact__textarea {
  width: 100%;
  background-color: #F3F3F3;
  color: #333333;
  border-radius: 5px;
}

.sub-contact__input::-webkit-input-placeholder, .sub-contact__textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

.sub-contact__input::-moz-placeholder, .sub-contact__textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

.sub-contact__input:-ms-input-placeholder, .sub-contact__textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

.sub-contact__input::-ms-input-placeholder, .sub-contact__textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

.sub-contact__input::placeholder,
.sub-contact__textarea::placeholder {
  color: rgba(0, 0, 0, 0.2);
}

.sub-contact__input,
.sub-contact__select {
  height: 3.125rem;
  padding: 0 1.25rem;
  font-size: 0.9375rem;
  font-weight: 300;
}

.sub-contact__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpath d='M2 2l6 6 6-6' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1rem 0.625rem;
  width: 340px;
}

.sub-contact__textarea {
  min-height: 9.375rem;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  resize: none;
}

.sub-contact__checkboxLabel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  cursor: pointer;
  color: #333333;
  font-size: 1.25rem;
  font-weight: 300;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item-label {
  margin-left: 1em;
}

.sub-contact__check-bold .wpcf7-list-item-label {
  font-weight: 700;
}

.sub-contact__check,
.sub-contact__check-bold {
  width: 100%;
}

.sub-contact__check input,
.sub-contact__check-bold input{
  width: 1rem;
  height: 1rem;
  border: 1px solid #333333;
  background: #ffffff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}

.sub-contact__check input:checked,
.sub-contact__check-bold input:checked {
  border-color: #333333;
  background: #333333;
}

.sub-contact__check input:checked::after,
.sub-contact__check-bold input:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 0.3125rem;
  height: 0.5625rem;
  border: solid #ffffff;
  border-width: 0 0.125rem 0.125rem 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.sub-contact__privacy {
  padding: 3.75rem 0 0;
  text-align: center;
}

.sub-contact__privacyTitle {
  font-size: 1.125rem;
  font-weight: 300;
  text-decoration: underline;
  margin-bottom: 2.75rem;
  letter-spacing: 0.01em;
  display: inline-block;
  -webkit-transform: opacity 0.25s ease;
          transform: opacity 0.25s ease;
}

.sub-contact__privacyTitle:hover {
  opacity: 0.7;
}

.sub-contact__privacyCheck {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3.5rem;
}

.sub-contact__submit {
  width: 20rem;
  height: 3.75rem;
  margin-inline: auto;
  background-color: #333333;
  color: #ffffff;
  border-radius: 30px 30px 30px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 1.3125rem 0 6.25rem;
  gap: 4.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 1rem;
  border: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  margin-bottom: 3.5rem;
}

.sub-contact__submit:hover {
  background-color: #60DDC8;
}

.sub-contact__submit i {
  font-size: 0.9375rem;
}

.splide__container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
          animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }

  .footer__menu-list {
    height: auto;
    margin-top: 15px;
  }

  .footer__menu-list {
    height: auto;
    margin-top: 15px;
  }

  .footer__menu-title .footer__menu-title--en {
    font-size: 1.125rem;
    padding-right: 20px;
  }

  .footer__menu-title .footer__menu-title--en::before {
    display: block;
  }

  .footer__menu-title .footer__menu-title--en::after {
    display: none;
  }

  .footer__menu-title-toggle {
    display: none;
  }

  .staff .swiper-slide:first-child .staff__item {
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }

  .staff .swiper-slide:not(:first-child) .staff__item {
    margin-right: 50px;
  }

  .staff .swiper-slide.swiper-slide-active .staff__item {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    margin-right: 60px;
  }

  .staff .swiper-slide.swiper-slide-active .staff__image {
    width: 330px;
    height: 440px;
    border-radius: 165px 165px 165px 0;
  }
}

@media (min-width: 1441px) {
  /* .fv {
    height: 845px;
    padding-bottom: 0px;
  } */

  /* .fv__video {
    height: 640px;
  }

  .fv__overlay {
    height: 640px;
  }

  .fv__content {
    height: 640px;
  }

  .fv__subtitle {
    top: 510px;
  }

  .fv__logo-main {
    top: 545px;
  }

  .fv__logo1-wrap {
    top: 545px;
  }

  .fv__logo2 {
    top: 460px;
  } */
}

@media (max-width: 1260px) {
  .logo-br {
    display: block;
  }

  .fv {
    /* height: 100vh; */
    height: calc(77vh + 11.7vw);
    padding-bottom: 0;
  }

  /* .fv__video {
    height: 77vh;
  }

  .fv__overlay {
    height: 77vh;
  } */

  .fv__subtitle {
    font-size: min(26px, 2.063492063vw);
    /* top: calc(77vh - 13.5vw); */
  }

  .fv__logo-main {
    font-size: min(180px, 14.285714286vw);
    /* top: calc(77vh - 10.5vw); */
    top: hoge;
  }

  .fv__logo1-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
  }

  .fv__logo1 {
    font-size: min(180px, 14.285714286vw);
  }

  .fv__logo2 {
    /* top: calc(77vh - 16.5vw); */
  }

  .fv__logo2 img {
    width: auto;
    height: min(280px, 22.222222222vw);
    aspect-ratio: 210/280;
    -o-object-fit: contain;
       object-fit: contain;
  }

  .create-design__title {
    font-size: min(180px, 14.285714286vw);
  }
}

@media (max-width: 1200px) {
  .sub-service-fv .sub-fv__title {
    font-size: 10vw;
  }

  .sub-service-fv__img {
    width: 63.7%;
  }
}

@media (max-width: 1100px) {
  .footer__menu-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }

  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .footer__copyright {
    margin-top: 90px;
  }

  .footer__privacy.pc {
    display: none;
  }
}

@media (max-width: 1000px) {
  .br1000 {
    display: block;
  }

  .sub-works__item {
    padding: 4.5rem 0;
  }

  .sub-works__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .sub-works__image {
    width: 100%;
  }

  .sub-works__image img {
    min-height: 0;
    aspect-ratio: 640/480;
    height: auto;
    border-radius: 2.666666667vw 2.666666667vw 2.666666667vw 0;
  }

  .sub-works__body {
    width: 100%;
    padding: 7.333333333vw 0 0;
  }

  .sub-works__bottom {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    display: block;
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .inner {
    width: 90%;
  }

  .sp {
    display: block;
  }

  .sp-br {
    display: block;
  }

  .pc-br {
    display: none;
  }

  .btn {
    font-size: 3.333333333vw;
    padding: 3%;
    min-width: 100px;
    border-radius: 6vw 6vw 6vw 0;
    height: 12vw;
    max-width: 400px;
    width: 60%;
  }

  .top-section__header {
    margin-bottom: 10.666666667vw;
  }

  .top-section__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .top-section__label {
    gap: 2vw;
    margin-bottom: 2.6vw;
  }

  .top-section__label-icon {
    width: 2.4vw;
    height: 2.4vw;
  }

  .top-section__label-text {
    font-size: 3.733333333vw;
  }

  .top-section__title {
    font-size: 18.666666667vw;
    margin-bottom: 5.333333333vw;
  }

  .top-section__description {
    font-size: 3.733333333vw;
    line-height: 2;
  }

  .top-section__description--service {
    padding-top: 0px;
  }

  .l-line {
    padding-left: 0;
  }

  .l-line::before {
    content: none;
  }

  .hamburger__menu-open,
  .menu-open {
    cursor: pointer;
  }

  .header__inner {
    width: 89%;
    padding: 5.2vw 0;
  }

  .header__logo {
    z-index: 999;
  }

  .header__logo a img {
    height: 4.666666667vw;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #333333;
    -webkit-transition: right 0.3s ease;
    transition: right 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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 15.2vw;
    overflow-y: auto;
  }

  .header__nav.is-active {
    right: 0;
  }

  .header__nav-list {
    display: none;
  }

  .header__nav-item {
    border-bottom: 0.12em solid #444444;
    padding: 10.6% 0;
  }

  .header__nav-item:first-child {
    border-top: 0.12em solid #444444;
  }

  .header__nav-link {
    font-size: 4.79vw;
    letter-spacing: 0.01em;
    line-height: 1;
    display: block;
    font-weight: 400;
    color: #ffffff;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

  .header__nav-link:hover {
    opacity: 0.7;
  }

  .header__nav-link::after {
    display: none;
  }

  .header__nav .header__hamburger-menu-logo {
    width: 90%;
    margin-bottom: 5vw;
    display: none;
  }

  .header__nav .header__hamburger-menu-logo img {
    width: auto;
    height: 4.666666667vw;
  }

  .header__nav .header-hamburger__menu {
    width: 90%;
    display: none;
    margin: 10.666666667vw 0;
  }

  .header__nav .header-hamburger__menu-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .header__nav .header-hamburger__nav-list {
    max-width: 650px;
    margin-inline: auto;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .header__nav .header-hamburger__nav-item {
    border-bottom: 0.125em solid #444444;
  }

  .header__nav .header-hamburger__nav-item:first-child {
    border-top: 0.125em solid #444444;
  }

  .header__nav .header-hamburger__nav-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
    position: relative;
    min-height: 18vw;
  }

  .header__nav .header-hamburger__nav-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 6vw 0;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 5.333333333vw;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .header__nav .header-hamburger__nav-title:hover {
    opacity: 0.7;
  }

  .header__nav .header-hamburger__nav-toggle {
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 8vw;
    min-width: 30px;
    padding: 0;
    margin: -2vw 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #ffffff;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

  .header__nav .header-hamburger__nav-toggle::before {
    content: "";
    position: absolute;
    right: 3.7vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0.133333333vw;
    height: 4.266666667vw;
    min-height: 4px;
    background: currentColor;
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  }

  .header__nav .header-hamburger__nav-toggle::after {
    content: "";
    position: absolute;
    right: 1.6vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 4.266666667vw;
    min-width: 16px;
    height: 0.133333333vw;
    min-height: 1px;
    background: currentColor;
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  }

  .header__nav .header-hamburger__nav-toggle[aria-expanded=true]::before {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }

  .header__nav .header-hamburger__nav-link {
    display: block;
    padding: 6vw 0;
    width: 100%;
    cursor: pointer;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 5.333333333vw;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding-right: 5.066666667vw;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    min-height: 14vw;
    padding-top: 8vw;
    padding-bottom: 8vw;
    margin: -2vw 0;
  }

  .header__nav .header-hamburger__nav-link:hover {
    opacity: 0.7;
  }

  .header__nav .header-hamburger__privacy .header-hamburger__nav-link {
    display: block;
    padding: 12vw 0;
    width: 100%;
    cursor: pointer;
    font-family: "Barlow", sans-serif;
    font-weight: 300;
    font-size: 3.466666667vw;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding-right: 5.066666667vw;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    min-height: auto;
  }

  .header__nav .header-hamburger__menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.4s ease;
    transition: height 0.4s ease;
  }

  .header__nav .header-hamburger__menu-list li {
    margin-bottom: 10px;
    padding-left: 0;
  }

  .header__nav .header-hamburger__menu-list li:last-child {
    margin-bottom: 0;
  }

  .header__nav .header-hamburger__menu-list li a {
    font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
    font-size: 4vw;
    color: #ffffff;
    padding: 1.333333333vw 0;
    display: block;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

  .header__nav .header-hamburger__menu-list li a:hover {
    color: #60DDC8;
  }

  .header__nav .header-hamburger__nav-item:has(.header-hamburger__nav-toggle[aria-expanded=true]) .header-hamburger__menu-list {
    margin-bottom: 5.333333333vw;
  }

  .header__nav .header-hamburger__links {
    margin-top: 10.666666667vw;
    display: none;
    gap: 8vw;
  }

  .header__nav .header-hamburger__link-item {
    border: 2px solid #444444;
    padding: 3.2vw;
    max-width: 646px;
    width: 100%;
    margin-inline: auto;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .header__nav .header-hamburger__link-item:hover {
    opacity: 0.7;
  }

  .header__nav .header-hamburger__link-content {
    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: 3.2vw;
    position: relative;
  }

  .header__nav .header-hamburger__link-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 3.466666667vw;
    height: 3.466666667vw;
  }

  .header__nav .header-hamburger__link-name {
    font-size: 8vw;
    font-family: "Barlow", sans-serif;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
  }

  .header__nav .header-hamburger__link-logo img {
    display: block;
    height: 5.4vw;
  }

  .header__nav .header-hamburger__link-img {
    height: 4.4vw;
  }

  .header__nav.is-active .header__hamburger-menu-logo,
  .header__nav.is-active .header-hamburger__menu {
    display: block;
  }

  .header__nav.is-active .header-hamburger__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1001;
  }

  .footer__menu-title--en::before {
    content: "";
    font-family: initial;
    right: 3.7vw;
    width: 0.133333333vw;
    height: 4.266666667vw;
    background: #ffffff;
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  }

  .footer__menu-title--en::after {
    display: block;
    right: 1.6vw;
  }

  .footer__menu-title[aria-expanded=true] .footer__menu-title--en::before {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }

  .footer .footer__menu-group:nth-child(n+3) a .footer__menu-title-text .footer__menu-title--en::before,
  .footer .footer__menu-group:nth-child(n+3) a .footer__menu-title-text .footer__menu-title--en::after {
    display: none;
  }

  .footer__menu-title-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
    position: relative;
    min-height: 14vw;
    color: #ffffff;
  }

  .footer__menu-group.menu-open .footer__menu-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }

  .footer__menu-group.menu-open .footer__menu-title .footer__menu-title--en {
    padding-right: 0;
  }

  .footer__menu-group.menu-open .footer__menu-title .footer__menu-title--en::before,
  .footer__menu-group.menu-open .footer__menu-title .footer__menu-title--en::after {
    display: none !important;
  }

  .footer__menu-title-toggle {
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 20vw;
    min-width: 80px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #ffffff;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

  .footer__menu-title-toggle::before {
    content: "";
    position: absolute;
    right: 3.7vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0.133333333vw;
    height: 4.266666667vw;
    min-height: 4px;
    background: currentColor;
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  }

  .footer__menu-title-toggle::after {
    content: "";
    position: absolute;
    right: 1.6vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 4.266666667vw;
    min-width: 16px;
    height: 0.133333333vw;
    min-height: 1px;
    background: currentColor;
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  }

  .footer__menu-title-toggle[aria-expanded=true]::before {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }

  .footer__menu-group.menu-open.is-open .footer__menu-list {
    height: auto;
    margin-top: 0;
    padding-bottom: 5.333333333vw;
  }

  .footer {
    margin-top: 18vw;
  }

  .footer__contact-banner {
    padding: 8.3% 5.4% 5.4% 6.8%;
    top: -18vw;
  }

  .footer__contact-inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .footer__contact-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 5vw;
  }

  .footer__contact-title {
    font-size: 9.333333333vw;
    line-height: 1;
  }

  .footer__contact-text {
    font-size: 3.466666667vw;
  }

  .footer__contact-btn {
    width: 10.666666667vw;
    height: 10.666666667vw;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .footer__contact-btn i {
    font-size: 4vw;
  }

  .footer__menu {
    padding: 38.666666667vw 0 13.333333333vw;
    border-bottom: none;
  }

  .footer__menu-inner {
    max-width: 650px;
    gap: 13.333333333vw;
  }

  .footer__menu-logo {
    text-align: center;
  }

  .footer__menu-logo img {
    height: 10.666666667vw;
  }

  .footer__menu-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }

  .footer__menu-group {
    border-bottom: 0.125em solid #444444;
  }

  .footer__menu-privacy {
    display: block;
    width: 100%;
    cursor: pointer;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    padding: 6vw 0;
  }

  .footer__menu-privacy a{
    display: block;
    font-family: "Barlow", sans-serif;
    font-weight: 300;
    font-size: 3.466666667vw;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    padding-right: 5.066666667vw;
  }

  .footer__menu-group:first-child {
    border-top: 0.125em solid #444444;
  }

  .footer__menu-title {
    padding: 6vw 0;
    width: 100%;
    cursor: pointer;
  }

  .footer__menu-title--jp {
    display: none;
  }

  .footer__menu-title--en::before {
    display: block;
  }

  .footer__menu-title--en::after {
    display: block;
  }

  .footer__menu-list {
    padding-left: 0;
    margin-top: 0;
  }

  .footer__menu-list li {
    margin-bottom: 10px;
    padding-left: 0;
  }

  .footer__menu-list li a {
    font-size: 4vw;
    padding: 1.333333333vw 0;
  }

  .footer__menu-group.is-accordion--open .footer__menu-list {
    height: auto;
    margin-top: 0;
    padding-bottom: 10px;
  }

  .footer__main {
    padding: 0 0 13.333333333vw 0;
    border-bottom: 0.125em solid #555555;
  }

  .footer__link-item {
    padding-left: 5.333333333vw;
  }

  .footer__link-item:not(:last-child) {
    border-right: none;
    padding-right: 7.866666667vw;
  }

  .footer__link-border {
    width: 2px;
  }

  .footer__link-content {
    gap: 4vw;
  }

  .footer__link-description {
    font-size: 2.933333333vw;
    line-height: 1.6;
  }

  .footer__link-brand img {
    height: 4.4vw;
  }

  .footer__link-brand .footer__link-icon {
    width: 3.466666667vw;
    height: 3.466666667vw;
    margin-left: 2.8vw;
  }

  .footer__link-name {
    font-size: 8vw;
  }

  .footer__copyright {
    margin-top: 13.3333vw;
    font-size: 2.666666667vw;
  }

  .footer_scroll-text {
    bottom: -2vw;
  }

  .footer__scroll-inner {
    margin-top: 10.4vw;
  }

  .footer__scroll-item,
  .footer__scroll-separator {
    font-size: 21.333333333vw;
  }

  .sub-service-fv__content {
    padding: 50px 0 50px;
    padding-right: 10%;
  }

  .sub-service-fv__img img {
    min-height: 280px;
    border-radius: 0 16px 16px 0;
  }

  .sub-fv {
    padding-top: calc(77vw - 110px);
    min-height: auto;
    padding-bottom: 10.933333333vw;
  }

  .sub-fv__inner {
    min-height: auto;
  }

  .sub-fv__content {
    max-width: 100%;
    width: 100%;
  }

  .sub-fv__subtitle {
    font-size: 3.733333333vw;
  }

  .sub-fv__subtitle-text {
    font-size: 3.733333333vw;
  }

  .sub-fv__title {
    font-size: 18.666666667vw;
    margin-bottom: 26vw;
  }

  .sub-fv__breadcrumb {
    font-size: 3.2vw;
  }

  .sub-fv__character {
    position: absolute;
    top: auto;
    bottom: -20%;
    right: -20%;
    width: 80%;
    height: 60vh;
  }

  .sub-fv__character-background {
    width: 100%;
    height: 100%;
  }

  .sub-fv__character-text {
    font-size: 50vw;
    top: auto;
    bottom: 0;
    -webkit-transform: none;
            transform: none;
  }

  .sub-fv__c {
    top: -16vw;
    right: -9vw;
    width: 70vw;
  }

  #notfound .sub-fv__title {
    margin-bottom: 13.333333333vw;
    white-space: pre-wrap;
  }

  .notfound-intro__txt {
    font-size: 3.733333333vw;
    margin-bottom: 13.333333333vw;
  }

  .fv {
    aspect-ratio: 750/1050;
    height: 180.266666667vw;
    padding-bottom: 46.266666667vw;
    border-bottom: 1px solid #eeeeee;
  }

  .fv__video {
    height: 140vw;
    max-height: none;
  }

  .fv__overlay {
    height: 140vw;
    max-height: none;
  }

  .fv__subtitle {
    font-size: 3.466666667vw;
    top: 118vw;
  }

  .fv__logo-main {
    top: 121vw;
    font-size: 24vw;
  }

  .fv__logo1 {
    top: 0;
    left: 0;
    font-size: 24vw;
    position: relative;
    white-space: nowrap;
  }

  .fv__logo2 {
    top: 118vw;
  }

  .fv__logo2 img {
    margin-left: -8%;
    height: 42.666666667vw;
  }

  .create-design {
    padding: 13.333333333vw 0 0;
  }

  .create-design__inner {
    margin-bottom: 10.533333333vw;
  }

  .create-design__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .create-design__title {
    font-size: 24vw;
    margin-bottom: 10.533333333vw;
  }

  .create-design__title--small {
    font-size: 18.666666667vw;
  }

  .create-design__text {
    font-size: 4vw;
    line-height: 2;
    margin-bottom: 10.533333333vw;
    text-align: left;
  }

  .create-design__btn {
    margin-left: auto;
  }

  .create-design .create-design-swiper .swiper-slide {
    width: 50%;
  }

  .create-design .create-design-swiper .swiper-slide img {
    height: 40vw;
    aspect-ratio: 450/400;
  }

  .service {
    padding: 20vw 0;
  }

  .service__inner {
    width: 89.5%;
  }

  .service__item--featured .service__item-bg {
    opacity: 0.8;
  }
  
  .service__item--featured .service__item-content {
    color: #ffffff;
    padding: 60px 0;
    height: 100%;
  }
  
  .service__item--featured .service__item-main {
    height: 100%;
  }
  
  .service__item--featured .service__item-flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  
  .service__item--featured .service__item-number--color,
  .service__item--featured .service__item-title {
    color: #60DDC8;
  }
  
  .service__item--featured .service__item-subtitle,
  .service__item--featured .service__item-description {
    color: #ffffff;
  }
  
  .service__item--featured .service__item-arrow {
    color: #ffffff;
    margin-left: auto;
  }

  .service__item--featured .service__item-content {
    padding: 10.666666667vw 0;
  }

  .service__item--featured {
    height: 100%;
  }

  .service__item--featured .service__item-content {
    padding: 10.666666667vw 0;
  }

  .service__item.service__item--featured,
  .service__item--featured .service__item-bg,
  .service__item--featured .service__item-bg img,
  .service__item--featured .service__item-content,
  .service__item--featured .service__item-main,
  .service__item--featured .service__item-flex,
  .service__item--featured .service__item-title,
  .service__item--featured .service__item-number,
  .service__item--featured .service__item-number--color,
  .service__item--featured .service__item-subtitle,
  .service__item--featured .service__item-description,
  .service__item--featured .service__item-arrow,
  .service__item--featured:hover .service__item-bg,
  .service__item--featured:hover .service__item-content,
  .service__item--featured:hover .service__item-main,
  .service__item--featured:hover .service__item-flex,
  .service__item--featured:hover .service__item-title,
  .service__item--featured:hover .service__item-number--color,
  .service__item--featured:hover .service__item-subtitle,
  .service__item--featured:hover .service__item-description,
  .service__item--featured:hover .service__item-arrow {
    -webkit-transition: none;
    transition: none;
  }

  .service__item--featured:hover {
    height: 100%;
  }

  .service__item--featured:hover .service__item-bg {
    opacity: 0.8;
  }

  .service__item--featured:hover .service__item-content {
    color: #ffffff;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 10.666666667vw 0;
    height: 100%;
  }

  .service__item--featured:hover .service__item-main {
    height: 100%;
  }

  .service__item--featured:hover .service__item-flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .service__item--featured:hover .service__item-number--color,
  .service__item--featured:hover .service__item-title {
    color: #60DDC8;
  }

  .service__item--featured:hover .service__item-subtitle,
  .service__item--featured:hover .service__item-description {
    color: #ffffff;
  }

  .service__item--featured:hover .service__item-arrow {
    color: #ffffff;
    margin-left: auto;
  }

  .service__item-content {
    gap: 4vw;
  }

  .service__item-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .service__item-title-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    min-width: auto;
  }

  .service__item-number {
    font-size: 5.6vw;
    line-height: 1;
    margin-bottom: 2.666666667vw;
  }

  .service__item-title {
    max-width: 100%;
    font-size: 9.333333333vw;
    margin-bottom: 4.666666667vw;
  }

  .service__item-flex {
    width: 100%;
  }

  .service__item-wrap {
    padding-left: 0px;
    padding-right: 4.466667vw;
  }

  .service__item-wrap::before {
    content: none;
  }

  .service__item-subtitle {
    font-size: 4vw;
    margin-bottom: 2.666666667vw;
  }

  .service__item-description {
    font-size: 3.733333333vw;
  }

  .service__item-arrow {
    font-size: 4.466667vw;
  }

  .works__bg {
    padding: 16.133333333vw 0 42.266666667vw;
  }

  .works__inner {
    margin-bottom: 0;
  }

  .works .top-section__header {
    margin-bottom: 0;
  }

  .works__btn-wrap {
    text-align: right;
    width: 90%;
    margin-inline: auto;
  }

  .works__btn-wrap--pc {
    display: none;
  }

  .works__btn-wrap--sp {
    display: block;
  }

  .works__slider {
    margin-top: -28.666666667vw;
    margin-bottom: 10.666666667vw;
  }

  .works__slider-btn {
    width: 10.666666667vw;
    height: 10.666666667vw;
  }

  .works__slider-btn i {
    font-size: 2.4vw;
  }

  .works__slider-btn--prev {
    left: -5vw;
  }

  .works__slider-btn--prev i {
    padding-left: 4vw;
  }

  .works__slider-btn--next {
    right: -5vw;
  }

  .works__slider-btn--next i {
    padding-right: 4vw;
  }

  .works__slide {
    width: auto;
    height: 56vw;
    aspect-ratio: 560/420;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .works__slide-overlay {
    padding: 6.666666667vw 5.333333333vw 5.333333333vw 6.666666667vw;
  }

  .works__slide-category {
    font-size: 3.466666667vw;
    margin-bottom: 0;
  }

  .works__slide-title {
    font-size: 3.466666667vw;
  }

  .works__slide-arrow i {
    font-size: 4vw;
  }

  .works__logos {
    margin-top: 10.666666667vw;
    border-top: 1px solid #EEEEEE;
    padding: 10.666666667vw 0;
  }

  .works .works-logos-swiper .swiper-slide {
    padding: 0 6.666666667vw;
  }

  .works__logo-item {
    height: 8vw;
  }

  .works__logo-item--godai {
    height: 5.333333333vw;
  }

  .works__logo-item--kodansha,
  .works__logo-item--vector,
  .works__logo-item--dnp,
  .works__logo-item--united-arrows {
    height: 10vw;
  }

  .works__logo-item--dmm {
    height: 6.266666667vw;
  }

  .works__logo-item--gtn {
    height: 8.533333333vw;
  }

  .works__logo-item img {
    max-width: 100%;
    max-height: 100%;
  }

  .staff {
    padding: 20vw 0;
  }

  .staff__btn-wrap {
    margin-top: 10.666666667vw;
  }

  .staff__btn-wrap--pc {
    display: none;
  }

  .staff__btn-wrap--sp {
    display: block;
    text-align: right;
  }

  .staff__btn-wrap--sp .btn {
    width: 60%;
  }

  .staff__slider {
    padding-left: 0;
    padding-right: 0;
    margin-left: calc(50% - 50vw);
  }

  .staff__slider .swiper-wrapper {
    min-height: 109.466666667vw;
  }

  .staff .swiper-slide .staff__item {
    margin-right: 5.333333333vw;
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }

  .staff .swiper-slide:not(.swiper-slide-active) .staff__item {
    margin-top: -8vw;
  }

  .staff .swiper-slide:not(.swiper-slide-active) .staff__role,
  .staff .swiper-slide:not(.swiper-slide-active) .staff__name {
    display: none;
  }

  .staff .swiper-slide.swiper-slide-active .staff__image {
    width: 60vw;
    height: 80vw;
    border-radius: 30vw 30vw 30vw 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }

  .staff__image {
    width: 48vw;
    height: 64vw;
    border-radius: 24vw 24vw 24vw 0;
    margin-bottom: 4vw;
  }

  .staff__role {
    font-size: 3.466666667vw;
    margin-bottom: 1.6vw;
  }

  .staff__name {
    font-size: 5vw;
  }

  .staff__progress {
    margin-top: 5.333333333vw;
    height: 2px;
  }

  .recruit__bg {
    background-image: url("../images/top/recruit-bg-sp.webp");
    min-height: 138.666666667vw;
  }

  .recruit__bg::before {
    content: none;
  }

  .recruit__inner {
    display: block;
  }

  .recruit__content {
    background-color: rgba(96, 221, 200, 0.902);
    border-radius: 0 0 13.333333333vw 0;
    padding: 13.333333333vw 5.333333333vw 13.333333333vw 5.333333333vw;
    margin-right: calc(50% - 50vw);
    -webkit-transition: border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    z-index: 1;
  }

  .recruit__content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: rgba(96, 221, 200, 0.902);
    border-radius: 0 0 13.333333333vw 0;
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
  }

  .recruit__content:hover {
    background-color: transparent;
    border-radius: 0;
  }

  .recruit__content:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    border-radius: 0;
  }

  .recruit__arrow {
    position: absolute;
    right: 10%;
    top: 32%;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s ease;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s ease, right 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s ease;
  }

  .recruit__arrow i {
    font-size: 4vw;
  }

  .recruit__content:hover .recruit__arrow {
    right: 7%;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }

  .news {
    padding: 19vw 0 10.666666667vw;
  }

  .news__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }

  .news__header {
    display: contents;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5.333333333vw;
    margin-bottom: 8vw;
  }

  .news__title-wrap {
    gap: 4vw;
  }

  .news__title {
    font-size: 16vw;
  }

  .news__subtitle {
    font-size: 4vw;
  }

  .news__btn-wrap {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    text-align: right;
    margin-top: 7.5vw;
  }

  .news__list {
    margin-top: 7.5vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .news__link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 5.333333333vw 0;
    gap: 4vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .news__meta {
    width: 100%;
    min-width: auto;
    gap: 4vw;
  }

  .news__date {
    font-size: 3.733333333vw;
  }

  .news__category {
    padding: 0.8vw 0 1.333333333vw;
    font-size: 3.2vw;
    border-radius: 2.666666667vw;
    width: 24vw;
  }

  .news__text {
    width: 100%;
    font-size: 3.733333333vw;
    line-height: 1.875;
  }

  .news__arrow {
    margin-left: 0;
    margin-top: -2.666666667vw;
  }

  .news__arrow i {
    font-size: 4vw;
  }

  .top-section__flex--instagram {
    display: contents;
  }

  .top-section__flex--instagram .top-section__title {
    font-size: 16vw;
  }

  .instagram {
    padding: 13.333333333vw 0 20vw;
  }

  .instagram::before {
    top: auto;
    bottom: -18vw;
    height: calc(100% + 18vw);
  }

  .instagram__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .instagram__btn-wrap {
    width: 100%;
    text-align: right;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 8vw;
  }

  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.666666667vw;
  }

  .instagram__item:nth-child(n+6) {
    display: block;
  }

  .instagram__item:nth-child(n+10) {
    display: none;
  }

  .instagram__image {
    aspect-ratio: 1/1;
  }

  .sub-about {
    margin-bottom: 35.066666667vw;
  }

  .about-section {
    min-height: 88vw;
    padding: 10.666666667vw 0;
    opacity: 0.8;
  }

  .about-section::after {
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-transition: none;
    transition: none;
  }

  .about-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 13.36%;
    height: 100%;
    background-color: #60DDC8;
    z-index: 1;
  }

  .about-section,
  .about-section::after,
  .about-section::before,
  .about-section__content,
  .about-section__flex,
  .about-section__number,
  .about-section__number span,
  .about-section__title,
  .about-section__subtitle,
  .about-section__text,
  .about-section__arrow,
  .about-section__arrow i {
    -webkit-transition: none;
    transition: none;
  }

  .about-section:hover::after {
    background-color: rgba(0, 0, 0, 0.75);
  }

  .about-section:hover::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 13.36%;
    height: 100%;
    background-color: #60DDC8;
    z-index: 1;
  }

  .about-section:hover .about-section__number {
    color: #60DDC8;
  }

  .about-section:hover .about-section__number span {
    color: #ffffff;
  }

  .about-section:hover .about-section__title {
    color: #60DDC8;
  }

  .about-section:hover .about-section__subtitle,
  .about-section:hover .about-section__text {
    color: #ffffff;
  }

  .about-section__content {
    max-width: 100%;
    width: 100%;
  }

  .about-section__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.666666667vw;
  }

  .about-section__number {
    font-size: 5.6vw;
    color: #60DDC8;
  }

  .about-section__number span {
    color: #ffffff;
  }

  .about-section__title {
    font-size: 9.333333333vw;
    color: #60DDC8;
  }

  .about-section__title-flex {
    gap: 4vw;
    margin-bottom: 6vw;
  }

  .about-section__subtitle {
    font-size: 3.2vw;
    color: #ffffff;
  }

  .about-section__text {
    font-size: 3.733333333vw;
    line-height: 1.8;
    letter-spacing: 0.01em;
    width: min(520px, 70vw);
    color: #ffffff;
  }

  .about-section__arrow {
    right: 5.3%;
  }

  .about-section__arrow i {
    font-size: 2.933333333vw;
  }

  .sub-concept {
    margin-bottom: 19.066666667vw;
  }

  .sub-concept__section {
    padding: 16vw 0;
  }

  .sub-concept__section:last-child {
    border-bottom: none;
  }

  .sub-concept__head {
    font-size: 24vw;
    margin-bottom: 10.666666667vw;
  }

  .sub-concept__head-line2 {
    font-size: 16vw;
  }

  .sub-concept__lead {
    font-size: 3.733333333vw;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.8;
  }

  .sub-concept__section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }

  .sub-concept__section-visual {
    max-width: 600px;
    width: min(600px, 80vw);
    margin-inline: auto;
  }

  .sub-concept__section-label {
    font-size: 3.466666667vw;
    margin-bottom: 4.666666667vw;
  }

  .sub-concept__section-title {
    font-size: 6.933333333vw;
    margin-bottom: 8.666666667vw;
  }

  .sub-concept__section-text {
    font-size: 3.733333333vw;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.8;
    margin-bottom: 9.333333333vw;
  }

  .sub-company-info {
    padding: 16vw 0;
  }

  .sub-company-info__inner {
    width: 89.4%;
    gap: 13.333333333vw;
  }

  .sub-company-info__title {
    gap: 2.133333333vw;
  }

  .sub-company-info__title-icon {
    width: 2.4vw;
    height: 2.4vw;
  }

  .sub-company-info__title-text {
    font-size: 4.266666667vw;
  }

  .sub-company-info__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10.666666667vw;
  }

  .sub-company-info__image-wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    max-width: 100%;
  }

  .sub-company-info__list {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }

  .sub-company-info__row {
    gap: 6.133333333vw;
    padding: 5.333333333vw 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .sub-company-info__term {
    font-size: 3.6vw;
    width: 18%;
  }

  .sub-company-info__desc {
    font-size: 3.6vw;
    letter-spacing: 0.01em;
    width: calc(82% - 6.133333333vw);
  }

  .sub-company-info__bullet-list {
    padding-left: 1.125rem;
  }

  .sub-ceo-message {
    padding: 16vw 0;
    margin-bottom: 35.066666667vw;
  }

  .sub-ceo-message__inner {
    width: 89.4%;
    gap: 13.333333333vw;
  }

  .sub-ceo-message__title-icon {
    width: 2.4vw;
    height: 2.4vw;
  }

  .sub-ceo-message__title-text {
    font-size: 4.266666667vw;
  }

  .sub-ceo-message__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8vw;
  }

  .sub-ceo-message__image-wrap {
    width: 100%;
    max-width: 100%;
  }

  .sub-ceo-message__text {
    font-size: 3.733333333vw;
  }

  .sub-ceo-message__text:last-of-type {
    margin-bottom: 10.666666667vw;
  }

  .sub-ceo-message__signature {
    max-width: 300px;
    width: 45%;
  }

  .sub-philosophy {
    margin-bottom: 35.066666667vw;
  }

  .sub-philosophy__section {
    padding: 10.666666667vw 0;
  }

  .sub-philosophy__section:first-child {
    padding: 16vw 0 13.333333333vw;
  }

  .sub-philosophy__head {
    font-size: 8.266666667vw;
    margin-bottom: 10.666666667vw;
  }

  .sub-philosophy__lead {
    font-size: 4vw;
  }

  .sub-philosophy__section-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8vw;
  }

  .sub-philosophy__section-label {
    width: auto;
    font-size: 4.266666667vw;
    gap: 2.266666667vw;
  }

  .sub-philosophy__section-bullet {
    width: 2.4vw;
    height: 2.4vw;
    margin-top: 1.6vw;
  }

  .sub-philosophy__section-title {
    font-size: 5.333333333vw;
    margin-bottom: 8vw;
  }

  .sub-philosophy__section-text {
    font-size: 3.733333333vw;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.8;
  }

  .sub-philosophy__value-item {
    margin-bottom: 10.4vw;
  }

  .sub-philosophy__value-item-title {
    font-size: 3.733333333vw;
    margin-bottom: 3.466666667vw;
  }

  .sub-philosophy__value-item-text {
    font-size: 3.733333333vw;
  }

  .sub-staff-modal {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 5vh;
    padding-bottom: 5vh;
    padding: 5.333333333vw;
  }

  .sub-staff-modal__overlay {
    display: none;
  }

  .sub-staff-modal__qa-item {
    gap: 2.933333333vw;
  }

  .sub-staff-modal__qa-q::after {
    margin-left: 2.933333333vw;
  }

  /* モーダル表示時は body の上に暗いレイヤーを重ねる（JSで body に .sub-staff-modal-open を付与） */

  body.sub-staff-modal-open {
    position: relative;
  }

  body.sub-staff-modal-open::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 2;
  }

  .sub-staff-modal--open .sub-staff-modal__overlay {
    background: transparent;
  }

  .sub-staff {
    margin-bottom: 19.066666667vw;
    padding: 10.666666667vw 0;
  }

  .sub-staff__list {
    grid-template-columns: 1fr;
    gap: 10.666666667vw;
  }

  .sub-staff__card {
    max-width: 600px;
    margin-inline: auto;
  }

  .sub-staff__card-img-wrap {
    aspect-ratio: 600/800;
    border-radius: 40vw 40vw 40vw 0;
    margin-bottom: 5.333333333vw;
  }

  .sub-staff__card-role {
    font-size: 3.466666667vw;
    margin-bottom: 1.333333333vw;
  }

  .sub-staff-modal__body {
    border-radius: 44.666666667vw 44.666666667vw 0 0;
    /* max-height は付けない。親 .sub-staff-modal がスクロールし、はみ出した分だけ表示される */
    overflow: visible;
    min-height: 225vw;
    padding: 6.8vw 6.8vw 10.666666667vw;
  }

  .sub-staff__card-name {
    font-size: 4vw;
  }

  .sub-staff-modal__scroll {
    padding: 6.666666667vw;
    overflow: visible;
    max-height: none;
    padding: 0;
  }

  .sub-staff-modal__close {
    top: auto;
    bottom: -2.7vw;
    right: -2.7vw;
    width: 9.333333333vw;
    height: 9.333333333vw;
  }

  .sub-staff-modal__close-icon {
    width: 4vw;
    height: 4vw;
  }

  .sub-staff-modal__content {
    -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: 8vw;
  }

  .sub-staff-modal__img-wrap {
    border-radius: 38vw 38vw 40vw 0;
    width: 76vw;
    height: 101.333333333vw;
    max-width: 570px;
    max-height: 760px;
  }

  .sub-staff-modal__text {
    width: 100%;
  }

  .sub-staff-modal__role {
    font-size: 3.466666667vw;
    margin-bottom: 0;
  }

  .sub-staff-modal__name {
    font-size: 4.533333333vw;
    margin-bottom: 6.666666667vw;
  }

  .sub-staff-modal__intro {
    font-size: 3.733333333vw;
    margin-bottom: 6vw;
  }

  .sub-staff-modal__qa-item {
    font-size: 3.733333333vw;
  }

  .sub-service {
    margin-bottom: 35.066666667vw;
  }

  .sub-service__inner {
    padding: 16vw 0 13.333333333vw;
  }

  .sub-service__description {
    font-size: 3.733333333vw;
  }

  .sub-service__item--featured .sub-service__item-bg {
    opacity: 1;
  }

  .sub-service__item--featured .sub-service__item-content {
    color: #ffffff;
    padding: 60px 0;
    height: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .sub-service__item--featured .sub-service__item-main {
    height: 100%;
  }

  .sub-service__item--featured .sub-service__item-flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .sub-service__item--featured .sub-service__item-subtitle,
  .sub-service__item--featured .sub-service__item-description {
    color: #ffffff;
  }

  .sub-service__item--featured .sub-service__item-arrow {
    color: #ffffff;
    margin-left: auto;
  }

  .sub-service__item--featured .sub-service__item-content {
    padding: 10.666666667vw 0;
  }

  .sub-service__item--featured {
    height: 100%;
    opacity: 0.8;
  }

  .sub-service__item--featured:nth-child(1) .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-number--color,
  .sub-service__item--featured:nth-child(1) .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-title {
    color: #A460DD;
  }

  .sub-service__item--featured:nth-child(2) .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-number--color,
  .sub-service__item--featured:nth-child(2) .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-title {
    color: #E65959;
  }

  .sub-service__item--featured:nth-child(3) .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-number--color,
  .sub-service__item--featured:nth-child(3) .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-title {
    color: #60ACDD;
  }

  .sub-service__item--featured:nth-child(4) .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-number--color,
  .sub-service__item--featured:nth-child(4) .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-title {
    color: #4AD384;
  }

  .sub-service__item--featured:nth-child(5) .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-number--color,
  .sub-service__item--featured:nth-child(5) .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-title {
    color: #E39131;
  }

  .sub-service__item.sub-service__item--featured,
  .sub-service__item--featured .sub-service__item-bg,
  .sub-service__item--featured .sub-service__item-bg img,
  .sub-service__item--featured .sub-service__item-content,
  .sub-service__item--featured .sub-service__item-main,
  .sub-service__item--featured .sub-service__item-flex,
  .sub-service__item--featured .sub-service__item-title,
  .sub-service__item--featured .sub-service__item-number,
  .sub-service__item--featured .sub-service__item-number--color,
  .sub-service__item--featured .sub-service__item-subtitle,
  .sub-service__item--featured .sub-service__item-description,
  .sub-service__item--featured .sub-service__item-arrow,
  .sub-service__item--featured:hover .sub-service__item-bg,
  .sub-service__item--featured:hover .sub-service__item-content,
  .sub-service__item--featured:hover .sub-service__item-main,
  .sub-service__item--featured:hover .sub-service__item-flex,
  .sub-service__item--featured:hover .sub-service__item-subtitle,
  .sub-service__item--featured:hover .sub-service__item-description,
  .sub-service__item--featured:hover .sub-service__item-arrow {
    -webkit-transition: none;
    transition: none;
  }

  .sub-service__item--featured:hover {
    height: 100%;
  }

  .sub-service__item--featured:hover .sub-service__item-bg {
    opacity: 1;
  }

  .sub-service__item--featured:hover .sub-service__item-content {
    color: #ffffff;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 10.666666667vw 0;
    height: 100%;
  }

  .sub-service__item--featured:hover .sub-service__item-main {
    height: 100%;
  }

  .sub-service__item--featured:hover .sub-service__item-flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .sub-service__item--featured:hover .sub-service__item-subtitle,
  .sub-service__item--featured:hover .sub-service__item-description {
    color: #ffffff;
  }

  .sub-service__item--featured:hover .sub-service__item-arrow {
    color: #ffffff;
    margin-left: auto;
  }

  .sub-service__item--featured:nth-child(1):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-number--color,
  .sub-service__item--featured:nth-child(1):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-title {
    color: #A460DD;
  }

  .sub-service__item--featured:nth-child(2):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-number--color,
  .sub-service__item--featured:nth-child(2):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-title {
    color: #E65959;
  }

  .sub-service__item--featured:nth-child(3):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-number--color,
  .sub-service__item--featured:nth-child(3):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-title {
    color: #60ACDD;
  }

  .sub-service__item--featured:nth-child(4):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-number--color,
  .sub-service__item--featured:nth-child(4):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-title {
    color: #4AD384;
  }

  .sub-service__item--featured:nth-child(5):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-number--color,
  .sub-service__item--featured:nth-child(5):hover .sub-service__item-content .sub-service__item-title-wrap .sub-service__item-title {
    color: #E39131;
  }

  .sub-service__item-content {
    gap: 4vw;
  }

  .sub-service__item-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .sub-service__item-title-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }

  .sub-service__item-number {
    font-size: 5.6vw;
    line-height: 1;
    margin-bottom: 2.666666667vw;
  }

  .sub-service__item-title {
    max-width: 100%;
    font-size: 9.333333333vw;
    margin-bottom: 4.666666667vw;
  }

  .sub-service__item-flex {
    width: 100%;
  }

  .sub-service__item-wrap {
    padding-left: 0;
    padding-right: 4.466667vw;
  }

  .sub-service__item-wrap::before {
    content: none;
  }

  .sub-service__item-subtitle {
    font-size: 4vw;
    margin-bottom: 2.666666667vw;
  }

  .sub-service__item-description {
    font-size: 3.733333333vw;
  }

  .sub-service__item-arrow {
    font-size: 4.466667vw;
  }

  .sub-works {
    padding: 0 0 20vw;
  }

  .sub-works__item {
    border-top-width: 0.266666667vw;
    border-bottom-width: 0.266666667vw;
    padding: 16vw 0;
  }

  .sub-works__content {
    border-bottom-width: 0.266666667vw;
    margin-bottom: 6.666666667vw;
  }

  .sub-works__category {
    font-size: 4.266666667vw;
    margin-bottom: 8.933333333vw;
  }

  .sub-works__category-dot {
    width: 2.4vw;
    height: 2.4vw;
  }

  .sub-works__title {
    font-size: 5.066666667vw;
    margin: 0 0 4.533333333vw;
  }

  .sub-works__tech {
    font-size: 3.466666667vw;
    margin: 0 0 6.666666667vw;
  }

  .sub-works__desc {
    font-size: 3.733333333vw;
    /* margin-bottom: 12vw; */
  }

  .sub-works__cta {
    margin-top: 0;
    margin-left: auto;
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 74.1%;
    min-width: 0;
    padding: 2.5vw 4.033333vw 2.5vw 15.333333vw;
    gap: 9.333333333vw;
    font-size: 3.733333333vw;
    border-radius: 6vw 6vw 6vw 0;
  }

  .sub-works__cta i {
    font-size: 3.2vw;
  }

  .sub-contact {
    padding: 16vw 0 16vw;
    border-top-width: 0.266666667vw;
  }

  .sub-contact__lead {
    max-width: 570px;
    margin-bottom: 21.333333333vw;
    font-size: 4vw;
  }

  .sub-contact__form {
    border-top-width: 0.266666667vw;
  }

  .sub-contact__row {
    grid-template-columns: 1fr;
    padding: 6.666666667vw 0 8vw;
    gap: 4vw;
    border-bottom-width: 0.266666667vw;
  }

  .sub-contact__labelWrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3vw;
  }

  .sub-contact__label {
    font-size: 3.733333333vw;
  }

  .sub-contact__required {
    width: 10.666666667vw;
    height: 5.333333333vw;
    font-size: 2.933333333vw;
  }

  .sub-contact__input,
  .sub-contact__select {
    height: 12vw;
    padding: 0 4vw;
    font-size: 3.466666667vw;
  }

  .sub-contact__nameRow {
    gap: 3.2vw;
  }

  .sub-contact__select {
    width: 100%;
    background-position: right 4vw center;
  }

  .sub-contact__textarea {
    min-height: 36vw;
    padding: 4vw;
    font-size: 3.733333333vw;
  }

  .sub-contact__checkboxLabel {
    font-size: 4vw;
    gap: 3.733333333vw;
  }

  .sub-contact__check {
    width: 3.6vw;
    height: 3.6vw;
  }

  .sub-contact__check:checked::after {
    left: 0.8vw;
    top: 1px;
    width: 1.066666667vw;
    height: 1.6vw;
    border-width: 0 0.4vw 0.4vw 0;
  }

  .sub-contact__privacy {
    padding: 10vw 0 0;
  }

  .sub-contact__privacyTitle {
    font-size: 3.733333333vw;
    margin-bottom: 7.333333333vw;
  }

  .sub-contact__privacyCheck {
    margin-bottom: 10vw;
  }

  .sub-contact__submit {
    width: 66.7vw;
    height: 12vw;
    font-size: 3.733333333vw;
    border-radius: 6vw 6vw 6vw 0;
    padding: 0 5.5vw 0 20vw;
    gap: 15vw;
    margin-bottom: 10vw;
  }

  .sub-contact__submit i {
    font-size: 3.2vw;
  }
}

@media screen and (max-width:768px) {
  #grow .sub-service-description {
    padding: 13vw 0 46.7vw;
  }

  #grow .sub-service-menu {
    margin-top: -33.4vw;
  }

  #grow .sub-service-menu__header {
    padding: 9.666667vw 7vw 8.066667vw 6.666666667vw;
  }

  #grow .sub-service-menu__subtitle {
    letter-spacing: 0.04em;
  }

  #marketing .sub-service-menu__section,
  #grow .sub-service-menu__section,
  #support .sub-service-menu__section {
    padding: 0 3.6vw;
  }

  #support .sub-service-menu__quote {
    letter-spacing: 0.001em;
  }

  #grow .sub-service-menu__testimonial {
    letter-spacing: 0.05em;
  }

  #support .sub-service-menu__testimonial {
    letter-spacing: 0.1em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }

  #grow .sub-service-menu__details-item {
    gap: 1.933333vw;
  }

  .sub-service-menu {
    /* padding: 0 0 20vw; */
    margin-top: -46.1vw;
    position: static;
    background-color: #dddddd;
  }

  .sub-service-menu::after {
    top: auto;
  }

  .sub-service-menu__inner {
    margin-left: 4vw;
  }

  .sub-service-menu__list {
    border-radius: 6.666666667vw 0 0 0;
  }

  .sub-service-menu__item {
    border-top: 0.266666667vw solid #dddddd;
    border-left: 0.266666667vw solid #dddddd;
    border-radius: 6.666666667vw 0 0 0;
  }

  .sub-service-menu__header {
    padding: 6.666666667vw 7vw 9.066667vw 6.666666667vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .sub-service-menu__body {
    padding: 0px 6.666666667vw;
  }

  .sub-service-menu__number {
    font-size: 5.6vw;
  }

  .sub-service-menu__title-block-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3vw;
  }

  .sub-service-menu__title {
    font-size: 9.333333333vw;
  }

  .sub-service-menu__subtitle {
    font-size: 4vw;
  }

  .sub-service-menu__chevron {
    margin-top: 4vw;
    width: 4.266666667vw;
    height: 4.266666667vw;
  }

  .sub-service-menu__chevron i {
    font-size: 4.533333333vw;
  }

  /* .sub-service-menu__section {
    padding: 0px 6.666666667vw;
  } */

  .sub-service-menu__section-head {
    font-size: 4.266666667vw;
    gap: 1.766667vw;
  }

  .sub-service-menu__section-dot {
    width: 2.4vw;
    height: 2.4vw;
  }

  .sub-service-menu__reviews-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 8.3vw 0 11.3vw;
    gap: 6vw;
    border-bottom: 0.266666667vw solid #eeeeee;
  }

  .sub-service-menu__reviews-flex:first-child {
    border-top: 0.266666667vw solid #eeeeee;
  }

  .sub-service-menu__reviews-content {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .sub-service-menu__author {
    width: 21.333333333vw;
    height: 21.333333333vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .sub-service-menu__author-wrap-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5.333333333vw;
  }

  .sub-service-menu__author-pc {
    display: none;
  }

  .sub-service-menu__text {
    width: 100%;
    margin-bottom: 3vw;
  }

  .sub-service-menu__quote {
    font-size: 5.333333333vw;
    margin-bottom: 2.9vw;
  }

  .sub-service-menu__testimonial {
    font-size: 3.733333333vw;
    margin-bottom: 1vw;
    line-height: 2;
    letter-spacing: 0.001em;
  }

  .sub-service-menu__author-company {
    font-size: 3.733333333vw;
    text-align: left;
  }

  .sub-service-menu__author-company-pc {
    display: none;
  }

  .sub-service-menu__details-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 8.3vw 0 11.3vw;
    gap: 6vw;
  }

  .sub-service-menu__details-content {
    width: 100%;
  }

  .sub-service-menu__details-title {
    font-size: 5.066666667vw;
    margin-bottom: 2vw;
  }

  .sub-service-menu__details-item:not(:last-child) {
    margin-bottom: 2.933333333vw;
  }

  .sub-service-menu__details-item {
    font-size: 4vw;
    line-height: 1.6;
    gap: 2.933333333vw;
  }

  .sub-service-menu__details-icon {
    font-size: 4vw;
  }

  .sub-service-menu__report-content,
  .sub-service-menu__recommend-content {
    width: 100%;
  }

  .sub-service-menu__report-title,
  .sub-service-menu__recommend-title {
    font-size: 5.066666667vw;
    margin-bottom: 2vw;
  }

  .sub-service-menu__report-item:not(:last-child),
  .sub-service-menu__recommend-item:not(:last-child) {
    margin-bottom: 1.633333vw;
  }

  .sub-service-menu__report-item,
  .sub-service-menu__recommend-item {
    font-size: 3.733333333vw;
    line-height: 1.8;
    gap: 2.933333333vw;
  }

  .sub-service-menu__report-item {
    gap: 2.933333333vw;
  }

  .sub-service-menu__recommend-item {
    gap: 2.933333333vw;
  }

  .sub-service-menu__report-icon {
    font-size: 3.466666667vw;
  }

  .sub-service-menu__recommend-icon {
    font-size: 4vw;
    line-height: 1.6;
  }

  .sub-service-menu__plan-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 8.3vw 0 11.3vw;
    gap: 8vw;
  }

  .sub-service-menu__plan-content {
    width: 100%;
  }

  .sub-service-menu__plan-title {
    font-size: 5.066666667vw;
  }

  .sub-service-menu__plan-block:not(:last-child) {
    margin-bottom: 6vw;
  }

  .sub-service-menu__plan-block {
    border: 0.266666667vw solid #e65959;
    border-radius: 2.666666667vw;
    padding: 4.733333vw;
  }

  .sub-service-menu__plan--purple .sub-service-menu__plan-block {
    border: 0.266666667vw solid #A460DD;
  }

  .sub-service-menu__plan--blue .sub-service-menu__plan-block {
    border: 0.266666667vw solid #60ACDD;
  }

  .sub-service-menu__plan-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
    font-size: 5.066666667vw;
    gap: 3vw;
    margin-bottom: 3.1vw;
  }

  .sub-service-menu__plan-name {
    font-size: 5.066666667vw;
  }

  .sub-service-menu__plan-desc {
    font-size: 3.2vw;
    line-height: 1.9;
    margin-bottom: 3vw;
  }

  .sub-service-menu__plan-feature-item:not(:last-child) {
    margin-bottom: 1.366667vw;
  }

  .sub-service-menu__plan-feature-item {
    font-size: 3.733333333vw;
    letter-spacing: 0.05em;
    gap: 1.666666667vw;
  }

  .sub-service-menu__plan-feature-icon {
    font-size: 3.466666667vw;
  }

  .sub-service-menu__cta-wrap--plan {
    padding-top: 10vw;
    padding-bottom: 0;
  }

  .sub-service-menu__cta-wrap.sub-service-menu__cta-wrap--plan {
    padding: 10.7vw 4.666667vw;
  }

  .sub-service-menu__cta.sub-service-menu__cta--plan {
    padding: 2.6vw 4.4vw 2.6vw 18vw;
    gap: 7.666667vw;
  }

  .sub-service-menu__point-list {
    gap: 0;
  }

  .sub-service-menu .sub-service-menu__reviews-flex {
    padding: 8.3vw 0 10.2vw;
    gap: 7vw;
  }

  .sub-service-menu__point-item:not(:last-child) {
    padding-bottom: 5vw;
  }

  .sub-service-menu__point-img-wrap-sp {
    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;
    gap: 6.666666667vw;
  }

  .sub-service-menu__point-img {
    width: 21.333333333vw;
    height: 21.333333333vw;
  }

  .sub-service-menu__point-img-pc {
    display: none;
  }

  .sub-service-menu__point-content {
    width: 100%;
  }

  .sub-service-menu__point-title {
    font-size: 5.066666667vw;
    margin-bottom: 2vw;
    letter-spacing: 0.01em;
  }

  .sub-service-menu__point-text {
    font-size: 3.733333333vw;
    line-height: 2;
    letter-spacing: 0.001em;
  }

  .sub-service-menu__cta-wrap {
    padding: 10.4vw 6.666666667vw 10vw;
  }

  .sub-service-menu__cta-wrap:not(last-child) {
    padding: 10.4vw 6.666666667vw 15vw;
  }

  .sub-service-menu__cta {
    font-size: 3.733333333vw;
    padding: 2.466667vw 5vw 2.466667vw 18vw;
    gap: 8vw;
    border-radius: 6vw 6vw 6vw 0;
  }

  .sub-service-fv {
    margin-top: 15.2vw;
  }

  .sub-service-fv__inner.inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 8.3vw 0 9.9vw;
    width: 100%;
  }

  .sub-service-fv__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 8vw 0 0;
    padding-right: 0;
    max-width: 670px;
    width: 90%;
    margin-inline: auto;
  }

  .sub-service-fv__subtitle {
    font-size: 3.733333333vw;
    margin-bottom: 9.666667vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .sub-service-fv__subtitle-icon {
    width: 2.4vw;
    height: 2.4vw;
  }

  .sub-service-fv__subtitle-text {
    font-size: 3.733333333vw;
  }

  .sub-service-fv .sub-fv__title {
    font-size: 18.666666667vw;
    margin-bottom: 1.733333vw;
    padding: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: -19vw;
  }

  .sub-service-fv .sub-fv__breadcrumb {
    font-size: 3.2vw;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    font-weight: 300;
    letter-spacing: 0.005em;
    gap: 3.8vw;
  }

  .sub-service-fv .sub-fv__breadcrumb-separator i {
    font-size: 3.7vw;
  }

  .sub-service-fv__img {
    max-width: 720px;
    width: 96%;
    height: auto;
    margin-left: 0;
    margin-right: 4vw;
  }

  .sub-service-fv__img img {
    aspect-ratio: 720/540;
    border-radius: 8vw 8vw 8vw 0;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .sub-service-description {
    padding: 13vw 0 59.7vw;
    position: relative;
  }

  .sub-service-description__text {
    font-size: 8.266666667vw;
    line-height: 1.6;
  }

  .sub-news-detail {
    padding: 48vw 0 20vw;
  }

  .sub-news-detail__inner {
    margin-left: 0;
  }

  .sub-news-detail__article {
    border: 0.266666667vw solid #eeeeee;
    padding: 16vw 5.3vw 16vw 5.6vw;
    max-width: 630px;
    width: 100%;
    margin-inline: auto;
    margin-left: 0;
  }

  .sub-news-detail__article h2 {
    font-size: 5.333333333vw;
    margin-bottom: 8vw;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }

  .sub-news-detail__article .sub-news-detail__meta {
    gap: 4vw;
    margin-bottom: 8vw;
  }

  .sub-news-detail__article .sub-news-detail__meta time {
    font-size: 3.733333333vw;
  }

  .sub-news-detail__article .sub-news-detail__meta span {
    padding: 0vw 5vw;
    font-size: 3.2vw;
    line-height: 1.7;
    border-radius: 2.666666667vw;
  }

  .sub-news-detail__article > p {
    margin: 0 0 10.666666667vw;
    font-size: 3.733333333vw;
    line-height: 1.8;
  }

  .sub-news-detail__article .sub-news-detail__media figure img {
    aspect-ratio: 630/350;
  }

  .sub-news-detail__article .sub-news-detail__media figure img span {
    font-size: 34vw;
    -webkit-transform: translateY(1vw);
            transform: translateY(1vw);
  }

  .sub-news-detail__back {
    gap: 8.933333333vw;
    margin-top: 16vw;
  }
  .sub-news-detail__back--service {
    padding: 0 0 20vw;
  }

  .sub-news-detail__back-arrow i {
    font-size: 4vw;
  }

  .sub-news-detail__back-btn {
    min-width: 0;
    padding: 1vw 5.4vw;
    font-size: 4.266666667vw;
    border-radius: 5.333333333vw;
    border: 0.266666667vw solid #eeeeee;
  }
}

@media screen and (max-width:768px) and (max-width:768px) {
  .sub-service-menu__item:not(:first-child) {
    margin-top: -5vw;
  }

  .sub-service-menu__item:nth-child(n+2) {
    z-index: 12;
  }
}

@media screen and (max-width: 768px) {
  .sub-news {
    padding: 0 0 20vw;
  }

  .sub-news__list {
    margin-bottom: 12vw;
    border-top-width: 0.266666667vw;
  }

  .sub-news__item {
    border-bottom-width: 0.266666667vw;
  }

  .sub-news__link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.666666667vw;
    padding: 5.333333333vw 0;
  }

  .sub-news__meta {
    gap: 2.966667vw;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }

  .sub-news__date {
    font-size: 3.733333333vw;
  }

  .sub-news__category {
    padding: 0.8vw 5.4vw;
    font-size: 3.2vw;
    border-radius: 2.666666667vw;
  }

  .sub-news__text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: calc(100% - 8vw);
    font-size: 3.733333333vw;
    padding-left: 0;
  }

  .sub-news__arrow {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-left: auto;
    width: 5.333333333vw;
    font-size: 3.466666667vw;
  }

  .sub-news__pagination {
    gap: 2.666666667vw;
  }

  .sub-news__pagination-prev,
  .sub-news__pagination-next {
    width: 8.533333333vw;
    height: 8.533333333vw;
    font-size: 3.466666667vw;
  }

  .sub-news__pagination-list {
    gap: 1.866666667vw;
  }

  .sub-news__pagination-num {
    min-width: 8.533333333vw;
    height: 8.533333333vw;
    padding: 0 1.6vw;
    font-size: 3.466666667vw;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
/*# sourceMappingURL=styles.css.map */

/* =====================
   PRIVACY POLICY（個人情報保護方針）
   ===================== */
   .sub-privacy {
    border-top: 1px solid #eeeeee;
    margin-bottom: 11.875rem;
  }
  
  .sub-privacy__content {
    padding: 7.5rem 0 6.5625rem 0;
    border-bottom: 1px solid #eeeeee;
  }
  
  .sub-privacy__description {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
  
  .sub-privacy__list {
    display: block;
  }
  
  .sub-privacy__item {
    padding: 50px 0 0;
    display: block;
  }

  .sub-privacy__item--last {
    text-align: right;
  }

  .sub-privacy__item-list {
    list-style: disc;
    padding-left: 0.5em;
    margin-left: 1em;
  }

  .sub-privacy__item-title {
    font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: 0.045em;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #333333;
  }

  .sub-privacy__item-text,
  .sub-privacy__item-list {
    font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.01em;
    color: #666666;
    margin-bottom: 17px;
  }

  .sub-privacy__tel-sp {
    display: none;
    color: inherit;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .sub-privacy {
      border-top: 0.266666667vw solid #eeeeee;
      margin-bottom: 35.066666667vw;
    }

    .sub-privacy__content {
    padding: 16vw 0 13.333333333vw;
    border-bottom: 0.266666667vw solid #eeeeee;
  }

  .sub-privacy__description {
    font-size: 3.733333333vw;
  }

  .sub-privacy__item {
    padding: 6.7vw 0 0;
  }

  .sub-privacy__item-list {
    margin-left: 0.5em;
    padding-left: 0.5em;
}

  .sub-privacy__item-title {
    font-size: 5.333333333vw;
    margin-bottom: 5.8vw;
    padding-bottom: 2.9vw;
    border-bottom: 0.266666667vw solid #333333;
  }

  .sub-privacy__item-text,
  .sub-privacy__item-list {
    font-size: 3.733333333vw;
    margin-bottom: 1vw;
    line-height: 2;
    letter-spacing: 0.001em;
  }

  .sub-privacy__tel-pc {
    display: none;
  }

  .sub-privacy__tel-sp {
    display: inline;
  }
}
