@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;
  background: #F5F5F5;
  background-image: url("../images/bg.webp");
  background-size: contain;
  background-position: center;
}

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: 1360px;
  width: 92%;
  margin-inline: auto;
}

.inline {
  display: inline-block;
}

.sp-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;
  color: #ffffff;
  max-width: 240px;
  width: 240px;
  padding: 5px 10px;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 400;
  text-decoration: none;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.05em;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.6s ease;
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn--black {
  background: rgba(0, 0, 0, 0.8);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.btn--black:hover {
  background: rgba(0, 0, 0, 0.9);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.btn--black:active {
  background: rgb(0, 0, 0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.btn--black:focus {
  outline: none;
}

.btn--gradient {
  max-width: 400px;
  width: 100%;
  padding: 15px 20px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "halt" on;
  font-feature-settings: "halt" on;
  color: #ffffff;
  background: -webkit-gradient(linear, right top, left top, color-stop(0, #0083DB), to(#00D7DE));
  background: linear-gradient(270deg, #0083DB 0, #00D7DE 100%);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.btn--gradient:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.btn--gradient:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.btn--gradient:focus {
  outline: none;
}

/* =====================
   共通タイトル
   ===================== */

.top__company {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.top__title {
  font-size: 3.75rem;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 500;
}

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

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

/* トップページのヘッダーがスクロールされた時の背景 */
.header.is-scrolled {
  background-color: rgb(255, 255, 255, 0.902);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  max-width: 100%;
}

.header.is-scrolled .header__inner {
  padding-top: 0;
  height: 60px;
}

/* スクロール時のナビゲーションリンクの色 */
.header.is-scrolled .header__nav-link {
  color: #333333;
}

.header.is-scrolled .header__nav.is-active .header__nav-link {
  color: #ffffff;
}

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

.header__inner {
  max-width: 1270px;
  width: 94%;
  margin-inline: auto;
  padding-top: 30px;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.header__logo img {
  height: 30px;
  width: auto;
}

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

.header__nav-item {
  position: relative;
}

.header__nav-link {
  font-size: 0.9375rem;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 400;
  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: 5.1vw;
  -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.9vw) rotate(45deg);
  transform: translateY(2.9vw) 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(-2vw) rotate(-45deg);
  transform: translateY(-2vw) rotate(-45deg);
}

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

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

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

.footer {
  background: #000000;
  color: #ffffff;
  padding: 80px 0;
}

.footer__inner {
  max-width: 1100px;
  width: 87%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__logo {
  width: auto;
  max-height: 60px;
  height: 5.3vw;
  gap: 10px;
}

.footer__logo img {
  height: 100%;
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 13px;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 27px;
}

.footer__nav-item:not(:last-child)::after {
  content: "|";
  color: #999999;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
}

.footer__nav-link {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
  -webkit-font-feature-settings: "halt" on;
  font-feature-settings: "halt" on;
  letter-spacing: -0.003em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  padding: 0 1.9vw;
}

.footer__nav-link:hover {
  opacity: 0.7;
}

.footer__right nav ul li:last-child a {
  padding-right: 0;
}

.footer__right nav ul li:first-child a {
  padding-left: 0;
}

.footer__copyright {
  font-weight: 400;
  font-size: 10px;
  line-height: 3;
  color: #999999;
  -webkit-font-feature-settings: "halt" on;
  font-feature-settings: "halt" on;
  letter-spacing: 0.05em;
}

/* =====================
   スクロールアニメーション
   ===================== */

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.bounce-in {
  opacity: 0;
  -webkit-transform: scale(0.3);
  transform: scale(0.3);
  -webkit-transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.stagger-animation>* {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -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);
}

.stagger-animation>*:nth-child(1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.stagger-animation>*:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.stagger-animation>*:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.stagger-animation>*:nth-child(4) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.stagger-animation>*:nth-child(5) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.stagger-animation>*:nth-child(6) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.stagger-animation>*:nth-child(7) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.stagger-animation>*:nth-child(8) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.stagger-animation>*:nth-child(9) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.stagger-animation>*:nth-child(10) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.stagger-animation.is-active>* {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.load-animation {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.load-animation.is-loaded {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

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

.header--sub {
  background: #ffffff;
  max-width: 100%;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #eeeeee;
}

.header--sub .header__inner {
  max-width: 1280px;
  width: 90%;
  padding-top: 25px;
}

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

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

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

.sub-header__hight {
  height: 80px;
}

/* subMV Section */

.sub-mv {
  width: 100%;
  padding: 111px 0 75px;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
}

.sub-mv__title {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: -0.005em;
  text-align: center;
  background: -webkit-gradient(linear, right top, left top, color-stop(0, #0083DB), to(#00D7DE));
  background: linear-gradient(270deg, #0083DB 0, #00D7DE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 17px;
  font-family: "Roboto", sans-serif;
  -webkit-font-feature-settings: "halt" on;
  font-feature-settings: "halt" on;
}

.sub-mv__subtitle {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.142857;
  letter-spacing: -0.005em;
  text-align: center;
  color: rgba(51, 51, 51, 0.2);
  -webkit-font-feature-settings: "halt" on;
  font-feature-settings: "halt" on;
}

/* Section Title*/

.section-title {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 2.5rem;
  -webkit-font-feature-settings: "halt" on;
  font-feature-settings: "halt" on;
  line-height: 1;
}

/* Works Card Component */

.works-card {
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.works-card__image {
  width: 100%;
  height: auto;
}

.works-card__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 166/94;
  -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-card__image:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.sub-works__content.sub-works__content--logo .works-card__image img {
  aspect-ratio: 115/110;
}

/* Works Grid Layout */

.works-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.sub-works__content.sub-works__content--logo .works-grid {
  grid-template-columns: repeat(8, 1fr);
}

/* =====================
   MV Section
   ===================== */

.mv {
  position: relative;
  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;
  background-image: url("../images/kv.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 95%;
  max-width: 1360px;
  height: min(96vh, 720px);
  aspect-ratio: 1360/720;
  overflow: hidden;
  z-index: 1;
  border-radius: 0 0 10px 10px;
}

.mv__content {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 4%;
}

.mv__logo {
  width: auto;
  height: 100%;
  margin-bottom: 50px;
  margin-top: 25px;
}

.mv__logo img {
  width: auto;
  height: 240px;
}

.mv__title {
  font-size: 1.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  color: #ffffff;
  line-height: 2.5;
  letter-spacing: 0.4em;
  text-align: center;
}

.mv__scroll {
  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: 10px;
  position: absolute;
  bottom: 9.8%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 300;
  color: #ffffff;
  z-index: 10;
}

.mv__scroll::before {
  -webkit-animation: scrollDown 2s infinite;
  animation: scrollDown 2s infinite;
  background-color: #ffffff;
  bottom: -70px;
  content: "";
  height: 60px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  51% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

@keyframes scrollDown {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  51% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

/* =====================
   Quality
   ===================== */

.quality {
  margin-top: 60px;
  background: -webkit-gradient(linear, right top, left top, color-stop(0, #0083DB), to(#00D7DE));
  background: linear-gradient(270deg, #0083DB 0, #00D7DE 100%);
  border-radius: 10px;
  position: relative;
}

.quality__inner {
  max-width: 1280px;
  width: 95%;
  margin: 0 auto;
  padding: 178px 0 93px;
  text-align: center;
  position: relative;
  color: #ffffff;
}

.quality__inner::before,
.quality__inner::after,
.quality__inner .quality__corner--bottom-left,
.quality__inner .quality__corner--bottom-right {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
}

.quality__inner::before {
  top: 40px;
  left: 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.quality__inner::after {
  top: 40px;
  right: 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.quality__inner .quality__corner--bottom-left {
  bottom: 40px;
  left: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.quality__inner .quality__corner--bottom-right {
  bottom: 40px;
  right: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.quality__bg-img {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  max-width: 348px;
  width: 100%;
  aspect-ratio: 348/114;
  background-image: url("../images/high.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.quality__title {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 60px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.001em;
  margin-bottom: 20px;
}

.quality__text {
  font-size: 1rem;
  line-height: 1.875;
  text-align: center;
}

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

.service {
  margin-top: -252px;
  padding: 350px 0 100px;
  background: #ffffff;
  color: #000000;
}

.service__inner {
  max-width: 1200px;
  margin-inline: auto;
  width: 94%;
}

.service__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  max-width: 1100px;
  width: 100%;
  margin-inline: auto;
}

.service__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-right: 5vw;
  border-right: 1px solid #eeeeee;
}

.service__title-wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  margin-top: -13px;
}

.service__company {
  line-height: 1.1428;
  letter-spacing: -0.005em;
  color: rgba(51, 51, 51, 0.5);
}

.service__title {
  letter-spacing: -0.02em;
  background: -webkit-gradient(linear, right top, left top, color-stop(0, #0083DB), to(#00D7DE));
  background: linear-gradient(270deg, #0083DB 0, #00D7DE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.service__list {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 33px;
  padding-left: 4.7vw;
}

.service__btn {
  width: 109%;
}

.service__btn--pc {
  display: block;
}

.service__btn--sp {
  display: none;
}

.service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(white)) padding-box, -webkit-gradient(linear, right top, left top, color-stop(0, #0083DB), to(#00D7DE)) border-box;
  background: linear-gradient(white, white) padding-box, linear-gradient(270deg, #0083DB 0, #00D7DE 100%) border-box;
  border: 1px solid transparent;
  position: relative;
  letter-spacing: -0.005em;
}

.service-item__icon {
  width: 100px;
  height: 60px;
  background: #01cede;
  border-radius: 9px 0px 0px 9px;
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service-item__icon i {
  font-size: 1.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.service-item__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 2vw;
}

.service-item__text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.66666;
  font-weight: 500;
}

.service-item__text.text--sp {
  display: none;
}

/* =====================
   Service Responsive
   ===================== */

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

.works {
  margin-top: 100px;
  padding: 88px 0 80px;
  background: #ffffff;
  color: #000000;
  position: relative;
  overflow: hidden;
}

.works::after {
  content: "";
  background: -webkit-gradient(linear, right top, left top, color-stop(0, #0083DB), to(#00D7DE));
  background: linear-gradient(270deg, #0083DB 0, #00D7DE 100%);
  width: 100%;
  height: 350px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.works__inner {
  max-width: 1100px;
  width: 77%;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

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

.works__title-wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.works__company {
  line-height: 1.1428;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.5);
}

.works__title {
  letter-spacing: -0.05em;
  line-height: 1;
  color: #ffffff;
}

.works__slider1 {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 50px;
  overflow: hidden;
}

.works__slider2 {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 20px;
  overflow: hidden;
}

.works__btn {
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#000000)) padding-box, -webkit-gradient(linear, right top, left top, color-stop(0, #0083DB), to(#00D7DE)) border-box;
  background: linear-gradient(#000000, #000000) padding-box, linear-gradient(270deg, #0083DB 0, #00D7DE 100%) border-box;
  border: 1px solid transparent;
  border-radius: 60px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.works__btn:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#000000)) padding-box, -webkit-gradient(linear, right top, left top, color-stop(0, #0083DB), to(#00D7DE)) border-box;
  background: linear-gradient(#000000, #000000) padding-box, linear-gradient(270deg, #0083DB 0, #00D7DE 100%) border-box;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.works__btn--pc {
  display: block;
}

.works__btn--sp {
  display: none;
  text-align: center;
}

.work-item {
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
  display: block;
  text-decoration: none;
}

.work-item:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.work-item img {
  width: 100%;
  aspect-ratio: 320/180;
  -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;
}

.work-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* =====================
   Works Swiper
   ===================== */

.works__slider1 {
  overflow: visible;
}

.works__slider1 .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.works__slider1 .swiper-slide {
  height: auto;
}

.works__slider2 {
  overflow: visible;
}

.works__slider2 .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

/* =====================
   Works Responsive
   ===================== */

/* =====================
   Contact
   ===================== */

.contact {
  padding: 100px 0;
}

.contact__inner {
  max-width: 1240px;
  width: 90%;
  margin-inline: auto;
  background-color: #ffffff;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(white)) padding-box, -webkit-gradient(linear, right top, left top, color-stop(0, #0083DB), to(#00D7DE)) border-box;
  background: linear-gradient(white, white) padding-box, linear-gradient(270deg, #0083DB 0, #00D7DE 100%) border-box;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.contact__header {
  max-width: 1020px;
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 68px auto 80px;
}

.contact__left {
  width: calc(245px + 4.1vw);
  padding-right: 4.1vw;
  border-right: 1px solid #eeeeee;
}

.contact__title-wrap {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contact__title--en {
  font-weight: 500;
  letter-spacing: -0.03em;
  background: -webkit-gradient(linear, right top, left top, color-stop(0, #0083DB), to(#00D7DE));
  background: linear-gradient(270deg, #0083DB 0, #00D7DE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  -webkit-font-feature-settings: "halt" on;
  font-feature-settings: "halt" on;
}

.contact__title--jp {
  font-size: 1.25rem;
  font-weight: 400;
  -webkit-font-feature-settings: "halt" on;
  font-feature-settings: "halt" on;
}

.contact__content {
  width: calc(100% - (245px + 4.1vw));
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-left: 4.9vw;
}

.contact__text {
  font-size: 1rem;
  line-height: 1.875;
  -webkit-font-feature-settings: "halt" on;
  font-feature-settings: "halt" on;
  margin-bottom: 34px;
}

.contact__btn {
  width: 100%;
}

/* =====================
   About Us Page
   ===================== */

/* Message Section */

.message {
  padding: 70px 0 132px;
  background: -webkit-gradient(linear, right top, left top, color-stop(0, #0083DB), to(#00D7DE));
  background: linear-gradient(270deg, #0083DB 0, #00D7DE 100%);
  border-radius: 10px;
  margin-inline: auto;
  margin-bottom: 60px;
  max-width: 1240px;
  width: 90%;
}

.message__inner {
  max-width: 1100px;
  width: 89%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.message__content {
  max-width: 633px;
  margin-right: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #ffffff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.message__title {
  letter-spacing: -0.03em;
  margin-left: auto;
  margin-bottom: 20px;
}

.message__text {
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.08em;
  -webkit-font-feature-settings: "halt" on;
  font-feature-settings: "halt" on;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 30px;
}

.message__text:last-child {
  margin-bottom: 0;
}

.message__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 36.4%;
  overflow: hidden;
}

.message__image img {
  max-width: 400px;
  width: 100%;
  aspect-ratio: 400/385;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Company Section */

.company {
  padding: 92px 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  margin-inline: auto;
  max-width: 1240px;
  width: 90%;
}

.company__title {
  letter-spacing: -0.05em;
  text-align: center;
  background: -webkit-gradient(linear, right top, left top, color-stop(0, #0083DB), to(#00D7DE));
  background: linear-gradient(270deg, #0083DB 0, #00D7DE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 36px;
}

.company__content {
  max-width: 960px;
  width: 78%;
  margin-inline: auto;
}

.company__info {
  background: rgba(248, 248, 248, 0.5);
  border-radius: 4px;
  overflow: hidden;
}

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

.company__row:last-child {
  border-bottom: none;
}

.company__label {
  width: 120px;
  padding: 23px 20px 23px 30px;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.2;
  background: #EEEEEE;
  border-width: 2px 1px 1px 2px;
  border-style: solid;
  border-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.company__value {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px 20px 19px 30px;
  font-weight: 400;
  font-size: 0.9375rem;
  background: #F5F5F5;
  border-width: 2px 2px 1px 1px;
  border-style: solid;
  border-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.company__business-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.company__business-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.5;
}

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

.company__business-list li::before {
  content: "•";
  position: absolute;
  left: 0;
}

/* Responsive */

/* Sub Service Section */

.sub-service {
  padding: 120px 0 0;
}

.sub-service__inner {
  max-width: 1240px;
  width: 87%;
  margin-inline: auto;
}

.sub-service-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 45px;
}

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

.sub-service-item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-bottom: 53px;
}

.sub-service-item__card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 70px 260px 70px 5.65%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 960px;
  width: calc(50% - 480px - 140px);
}

.sub-service-item--reverse .sub-service-item__card {
  padding: 80px 5.65% 70px 307px;
}

.sub-service-item__content {
  width: 100%;
}

.sub-service-item__number {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  color: #0185DA;
  margin-bottom: 14px;
}

.sub-service-item__title {
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.363636;
  color: #0185DA;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "halt" on;
  font-feature-settings: "halt" on;
  margin-bottom: 15px;
}

.sub-service-item:nth-child(2) .sub-service-item__title {
  letter-spacing: 0.09em;
}

.sub-service-item__list {
  margin-bottom: 30px;
}

.sub-service-item--reverse .sub-service-item__description {
  letter-spacing: -0.008em;
}

.sub-service-item__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 2;
}

.sub-service-item__list-item i {
  color: #0185DA;
  margin-right: 8px;
  margin-top: 4px;
  font-size: 0.9375rem;
  line-height: 1.5;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.sub-service-item:nth-child(3) .sub-service-item__card {
  padding: 70px 295px 70px 5.65%;
}

.sub-service-item:nth-child(3) .sub-service-item__card .sub-service-item__content .sub-service-item__text p {
  letter-spacing: -0.01em;
}

.sub-service-item:nth-child(3) .sub-service-item__card .sub-service-item__content .sub-service-item__text p:nth-child(1) {
  margin-bottom: 33px;
}

.sub-service-item:nth-child(3) .sub-service-item__image {
  margin-top: 5.5%;
}

.sub-service-item:nth-child(4) .sub-service-item__card {
  padding: 80px 5.65% 130px 307px;
}

.sub-service-item:nth-child(5) .sub-service-item__card {
  padding: 70px 278px 70px 5.65%;
}

.sub-service-item:nth-child(5) .sub-service-item__card .sub-service-item__text p {
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}

.sub-service-item:nth-child(5) .sub-service-item__card .sub-service-item__text p .blue {
  color: #0185DA;
}

.sub-service-item:nth-child(5) .sub-service-item__card .sub-service-item__text p:nth-child(3) {
  margin-bottom: 60px;
}

.sub-service-item__btn {
  margin-top: 30px;
}

.sub-service-item__btn .btn--gradient {
  max-width: 240px;
  font-size: 0.875rem;
  padding: 7px 20px;
}

.sub-service-item__image {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 520px;
  z-index: 1;
}

.sub-service-item__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 520/360;
  display: block;
  border-radius: 10px;
}

/* Flow Section */

.sub-flow__inner {
  max-width: 1240px;
  width: 87%;
  margin-inline: auto;
  border-radius: 10px;
  padding: 67px 0;
  background: #ffffff;
}

.sub-flow__header {
  text-align: center;
  margin-bottom: 53px;
}

.sub-flow__title {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "halt" on;
  font-feature-settings: "halt" on;
  margin-bottom: 20px;
}

.sub-flow__description {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
}

.sub-flow__timeline {
  position: relative;
  max-width: 960px;
  width: 89.3%;
  margin: 0 auto;
}

.sub-flow__timeline::before {
  content: "";
  position: absolute;
  left: 21.6%;
  top: 0;
  bottom: 0;
  width: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 131, 219, 0.5)), to(rgba(0, 215, 222, 0.5)));
  background: linear-gradient(180deg, rgba(0, 131, 219, 0.5) 0%, rgba(0, 215, 222, 0.5) 100%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.sub-flow__step {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 73px;
}

.sub-flow__step:nth-child(1) {
  margin-bottom: 50px;
}

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

.sub-flow__step::before {
  content: "";
  position: absolute;
  left: 21.6%;
  top: 10%;
  width: 6px;
  height: 6px;
  background: #000FA4;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
}

.sub-flow__step::after {
  content: "";
  position: absolute;
  left: calc(21.6% + 5px);
  top: 10%;
  width: min(77px, 5.3vw);
  height: 0px;
  border: 1px dashed #000FA4;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.sub-flow__step-number {
  position: relative;
  max-width: 160px;
  width: 17%;
  height: 50px;
  background: #0185da;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1;
  z-index: 2;
  margin-right: min(55px, 3.8vw);
}

.sub-flow__step-number::after {
  content: "";
  position: absolute;
  right: -17px;
  top: 40%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 17px solid #0185da;
  border-top: 0px solid transparent;
  border-bottom: 17px solid transparent;
}

.sub-flow__step-number--step2 {
  background: #00a2dd;
}

.sub-flow__step-number--step2::after {
  border-left-color: #00a2dd;
}

.sub-flow__step-number--step3 {
  background: #00BADD;
}

.sub-flow__step-number--step3::after {
  border-left-color: #00BADD;
}

.sub-flow__step-number--step4 {
  background: #01D2DE;
}

.sub-flow__step-number--step4::after {
  border-left-color: #01D2DE;
}

.sub-flow__step-number--step5 {
  background: #00E0ED;
}

.sub-flow__step-number--step5::after {
  border-left-color: #00E0ED;
}

.sub-flow__step:nth-child(1) .sub-flow__step-number {
  margin-top: -30px;
}

.sub-flow__step:nth-child(2) .sub-flow__step-number {
  margin-top: -10px;
}

.sub-flow__step-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: min(95px, 6.6vw);
  margin-top: -5px;
}

.sub-flow__step-title {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1;
  color: #0185da;
  margin-bottom: 10px;
}

.sub-flow__step-title--step2 {
  color: #00a2dd;
}

.sub-flow__step-title--step3 {
  color: #00BADD;
}

.sub-flow__step-title--step4 {
  color: #01D2DE;
}

.sub-flow__step-title--step5 {
  color: #00E0ED;
}

.sub-flow__step-description {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 2;
  color: #333;
}

/* Works Section */

.sub-works__inner {
  max-width: 1240px;
  width: 87%;
  margin-inline: auto;
  background: #ffffff;
  border-radius: 10px;
  padding: 120px 40px;
}

.sub-works__header {
  margin-bottom: 20px;
}

.sub-works__content {
  margin-bottom: 120px;
}

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

.sub-works__title {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.4;
  color: #0185DA;
  margin-bottom: 40px;
}

/* Contact Section */

.sub-contact__inner {
  max-width: 1240px;
  width: 87%;
  margin-inline: auto;
  background: #ffffff;
  border-radius: 10px;
  padding: 120px 40px;
  margin-bottom: 100px;
}

.sub-contact__form {
  max-width: 850px;
  margin: 0 auto;
}

.sub-contact__form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 20px;
}

.sub-contact__label {
  min-width: 180px;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  padding-top: 12px;
}

.sub-contact__input,
.sub-contact__select,
.sub-contact__textarea {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 9.5px 16px;
  border: 1px solid #000000;
  font-size: 18px;
  background: #fff;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.sub-contact__input:focus,
.sub-contact__select:focus,
.sub-contact__textarea:focus {
  outline: none;
  border-color: #007bff;
}

.sub-contact__textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.sub-contact__select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  word-wrap: break-word;
  white-space: normal;
  line-height: 1.4;
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sub-contact__select option {
  white-space: normal;
  word-wrap: break-word;
  padding: 8px 12px;
  line-height: 1.4;
}

.sub-contact__note {
  text-align: center;
  font-size: 16px;
  color: #000000;
  margin: 30px 0 20px;
}

.sub-contact__submit {
  text-align: center;
  margin-top: 30px;
}

.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;
  }

  .sub-service-item__image {
    margin-left: -250px;
    margin-right: 0;
    margin-top: 5%;
  }

  .sub-service-item--reverse .sub-service-item__image {
    margin-left: 0;
    margin-right: -250px;
    margin-top: 6%;
  }
}

@media screen and (max-width:1024px) {
  .works-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .sub-works__content.sub-works__content--logo .works-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

  .sp-br {
    display: block;
  }

  .btn {
    font-size: 4vw;
    padding: 3.4% 7%;
    min-width: 100px;
    border-radius: 60px;
    height: auto;
    max-width: 600px;
    width: 89.6%;
  }

  .btn--black:hover {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
  }

  .top__company {
    font-size: 3.74vw;
  }

  .top__title {
    font-size: 13.34vw;
  }

  .header.inner {
    width: 100%;
    padding: 0 5%;
  }

  .header__inner {
    width: 100%;
    padding-top: 15px;
  }

  .header__logo img {
    height: 8vw;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 100px;
    z-index: 999;
  }

  .header__nav.is-active {
    right: 0;
  }

  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 0px;
    width: 90%;
  }

  .header__nav-item {
    border-bottom: 0.12em solid #999999;
    padding: 10.6% 0;
  }

  .header__nav-item:first-child {
    border-top: 0.12em solid #999999;
  }

  .header__nav-link {
    font-size: 4.79vw;
    letter-spacing: 0.01em;
    line-height: 1;
    display: block;
    font-family: "Roboto", sans-serif;
    font-style: italic;
    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__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1001;
  }

  .footer {
    padding: 16% 0;
  }

  .footer__inner {
    width: 80%;
    -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;
  }

  .footer__logo {
    height: 13.3vw;
    margin-bottom: 20%;
  }

  .footer__right {
    width: 100%;
    margin-top: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer__nav {
    width: inherit;
  }

  .footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 0px;
    margin-bottom: 16.6%;
  }

  .footer__nav-item:not(:last-child)::after {
    content: none;
  }

  .footer__nav-item {
    border-bottom: 0.12em solid #999999;
    padding: 5.3% 0;
  }

  .footer__nav-item:first-child {
    border-top: 0.12em solid #999999;
  }

  .footer__nav-link {
    font-size: 4.79vw;
    letter-spacing: 0.01em;
    line-height: 1;
  }

  .footer__copyright {
    font-size: 2.65vw;
    line-height: 1.5;
  }

  .fade-in-up,
  .bounce-in,
  .load-animation {
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
  }

  .stagger-animation>* {
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
  }

  .stagger-animation>*:nth-child(1) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
  }

  .stagger-animation>*:nth-child(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }

  .stagger-animation>*:nth-child(3) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
  }

  .stagger-animation>*:nth-child(4) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .stagger-animation>*:nth-child(5) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
  }

  .stagger-animation>*:nth-child(6) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  .stagger-animation>*:nth-child(7) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
  }

  .stagger-animation>*:nth-child(8) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }

  .stagger-animation>*:nth-child(9) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
  }

  .stagger-animation>*:nth-child(10) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }

  .header--sub {
    height: 16vw;
  }

  .header--sub .header__inner {
    width: 100%;
    padding-top: 4vw;
  }

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

  .sub-header__hight {
    height: 16vw;
  }

  .sub-mv {
    padding: 20% 0;
    margin-bottom: 10%;
  }

  .sub-mv__title {
    font-size: 13.34vw;
    margin-bottom: 2.7%;
  }

  .sub-mv__subtitle {
    font-size: 3.74vw;
  }

  .section-title {
    font-size: 10.67vw;
  }

  .mv {
    border-radius: 0;
    height: 173.4vw;
  }

  .mv.inner {
    width: 100%;
  }

  .mv__logo {
    margin-bottom: 14%;
    margin-top: 33.3%;
  }

  .mv__logo img {
    height: 53.4vw;
  }

  .mv__title {
    line-height: 2;
    letter-spacing: 0.25em;
    font-size: 4.28vw;
  }

  .mv__scroll {
    bottom: 6.9%;
    font-size: 3.2vw;
  }

  .mv__scroll::before {
    bottom: -12vw;
    height: 10.7vw;
  }

  .quality {
    margin-top: 8%;
  }

  .quality__inner {
    width: 91%;
    padding: 49% 0 22%;
  }

  .quality__inner::before,
  .quality__inner::after,
  .quality__inner .quality__corner--bottom-left,
  .quality__inner .quality__corner--bottom-right {
    width: 8vw;
    height: 8vw;
  }

  .quality__inner::before {
    top: 2.6%;
  }

  .quality__inner::after {
    top: 2.6%;
  }

  .quality__inner .quality__corner--bottom-left {
    bottom: 2.6%;
  }

  .quality__inner .quality__corner--bottom-right {
    bottom: 2.6%;
  }

  .quality__bg-img {
    top: 16.3%;
    width: 89%;
  }

  .quality__title {
    font-size: 8.79vw;
    margin-bottom: 4%;
  }

  .quality__text {
    font-size: 3.75vw;
    line-height: 2.175;
    letter-spacing: 0.005em;
  }

  .service {
    margin-top: -77%;
    padding: 90% 0 13%;
  }

  .service__header {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }

  .service__title-wrap {
    text-align: center;
  }

  .service__left {
    padding-right: 0;
    border-right: none;
  }

  .service__company {
    margin-bottom: 10px;
  }

  .service__title {
    margin-bottom: 0%;
  }

  .service__list {
    padding-left: 0;
    gap: 7.3vw;
  }

  .service__btn {
    width: 100%;
  }

  .service__btn--pc {
    display: none;
  }

  .service__btn--sp {
    display: block;
    text-align: center;
    margin-top: 12%;
  }

  .service-item {
    position: relative;
    padding: 6.5% 2.5%;
    gap: 15px;
  }

  .service-item__icon {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px 0px;
    width: 13.3vw;
    height: 13.3vw;
  }

  .service-item__icon i {
    font-size: 6.24vw;
  }

  .service-item__text {
    text-align: center;
    font-size: 4.8vw;
    letter-spacing: 0.05em;
    -webkit-font-feature-settings: "halt" on;
    font-feature-settings: "halt" on;
  }

  .service-item__text.text--sp {
    display: block;
  }

  .service-item__text.text--pc {
    display: none;
  }

  .works {
    margin-top: 16%;
    padding: 10% 0 8%;
  }

  .works__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .works__title-wrap {
    text-align: center;
  }

  .works__title {
    margin-bottom: 5%;
  }

  .works__btn--pc {
    display: none;
  }

  .works__btn--sp {
    display: block;
  }

  .works__slider1 {
    margin-bottom: 13%;
  }

  .contact {
    padding: 16% 0;
  }

  .contact__header {
    -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;
    margin: 10% auto 13%;
  }

  .contact__left {
    width: 93%;
    text-align: center;
    padding-right: 0;
    border-right: none;
    padding-bottom: 6.2%;
    border-bottom: 1px solid #eeeeee;
  }

  .contact__title-wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .contact__title--jp {
    font-size: 4.8vw;
  }

  .contact__content {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
  }

  .contact__text {
    text-align: center;
    font-size: 3.74vw;
    line-height: 2.1;
    margin-top: 6%;
    margin-bottom: 7.5%;
  }

  .contact__btn {
    width: 100%;
    text-align: center;
  }

  .message {
    padding: 10% 4.6%;
    border-radius: 10px;
    margin-bottom: 11%;
  }

  .message__inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7vw;
    padding: 0;
  }

  .message__content {
    margin-right: 0;
  }

  .message__title {
    margin-bottom: 6%;
    margin-right: auto;
  }

  .message__text {
    font-size: 4vw;
    line-height: 1.9;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 11%;
  }

  .message__image {
    width: 100%;
    text-align: center;
  }

  .message__image img {
    max-width: 590px;
    width: 98.4%;
  }

  .company {
    width: 100%;
    padding: 12% 0;
    border-radius: 0;
  }

  .company__title {
    margin-bottom: 8%;
  }

  .company__content {
    width: 90%;
    padding: 0;
  }

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

  .company__label {
    width: 100%;
    padding: 4% 6%;
    font-size: 4vw;
    border-width: 2px 2px 1px 2px;
  }

  .company__value {
    border-width: 1px 2px;
    padding: 3% 2% 3% 6%;
    font-size: 4vw;
  }

  .company__business-list li {
    font-size: 4vw;
    padding-left: 5%;
    margin-bottom: 0%;
    line-height: 2;
  }
}

@media screen and (max-width:768px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sub-works__content.sub-works__content--logo .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sub-service {
    padding: 0;
  }

  .sub-service__inner {
    width: 100%;
  }

  .sub-service-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15%;
    min-height: auto;
  }

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

  .sub-service-item__card {
    width: 100%;
    padding: 13.1% 4.8% 45.4%;
    border-radius: 0px;
    max-width: none;
    margin-bottom: 10%;
  }

  .sub-service-item--reverse .sub-service-item__card {
    padding: 13.1% 4.8% 45.4%;
  }

  .sub-service-item__number {
    font-size: 10.68vw;
    margin-bottom: 4%;
  }

  .sub-service-item__title {
    font-size: 5.866667vw;
    margin-bottom: 6%;
  }

  .sub-service-item__list {
    margin-bottom: 6%;
  }

  .sub-service-item--reverse .sub-service-item__description {
    font-size: 4vw;
  }

  .sub-service-item__list-item {
    margin-bottom: 0;
    font-size: 4vw;
  }

  .sub-service-item__list-item i {
    margin-right: 3%;
    margin-top: 1%;
    font-size: 3.5vw;
  }

  .sub-service-item:nth-child(3) .sub-service-item__card {
    padding: 13.1% 4.8% 45.4%;
  }

  .sub-service-item:nth-child(3) .sub-service-item__card .sub-service-item__content .sub-service-item__text p {
    font-size: 4vw;
  }

  .sub-service-item:nth-child(3) .sub-service-item__card .sub-service-item__content .sub-service-item__text p:nth-child(1) {
    margin-bottom: 5%;
  }

  .sub-service-item:nth-child(3) .sub-service-item__image {
    margin-top: -46%;
  }

  .sub-service-item:nth-child(4) .sub-service-item__card {
    padding: 13.1% 4.8% 45.4%;
  }

  .sub-service-item:nth-child(5) .sub-service-item__card {
    padding: 13.1% 4.8% 45.4%;
  }

  .sub-service-item:nth-child(5) .sub-service-item__card .sub-service-item__text p {
    margin-bottom: 5%;
    font-size: 4vw;
  }

  .sub-service-item:nth-child(5) .sub-service-item__card .sub-service-item__text p:nth-child(3) {
    margin-bottom: 10%;
  }

  .sub-service-item__btn {
    margin-top: 8%;
  }

  .sub-service-item__btn .btn--gradient {
    max-width: 600px;
    font-size: 3.8vw;
    padding: 1.8vw 5.3vw;
  }

  .sub-service-item__image {
    margin-top: -46%;
    width: 89.4%;
    max-width: none;
    margin-inline: auto;
    border-radius: 10px;
  }

  .sub-service-item__image img {
    border-radius: 10px;
  }

  .sub-flow__inner {
    width: 100%;
    border-radius: 0;
    padding: 11% 0;
  }

  .sub-flow__header {
    margin-bottom: 8.5%;
  }

  .sub-flow__title {
    font-size: 4.2666667vw;
    margin-bottom: 15px;
  }

  .sub-flow__description {
    font-size: 0.875rem;
  }

  .sub-flow__timeline::before {
    left: 0px;
    width: 2.7vw;
    -webkit-transform: none;
    transform: none;
  }

  .sub-flow__step::before {
    content: none;
  }

  .sub-flow__step::after {
    content: none;
  }

  .sub-flow__step {
    -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;
    margin-bottom: 9%;
    padding-left: 12%;
  }

  .sub-flow__step:nth-child(1) {
    margin-bottom: 9%;
  }

  .sub-flow__step-number {
    position: unset;
    width: 69%;
    height: 10.4vw;
    font-size: 5.3333333vw;
    margin-right: 0;
    margin-bottom: 5%;
  }

  .sub-flow__step-number::after {
    display: none;
  }

  .sub-flow__step:nth-child(1) .sub-flow__step-number {
    margin-top: 0;
  }

  .sub-flow__step:nth-child(2) .sub-flow__step-number {
    margin-top: 0;
  }

  .sub-flow__step-content {
    width: 100%;
    margin-top: 0px;
    margin-left: 0;
    position: relative;
  }

  .sub-flow__step-content::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -12%;
    width: 1.6vw;
    height: 1.6vw;
    background: #000FA4;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 3;
  }

  .sub-flow__step-content::after {
    content: "";
    position: absolute;
    top: 10%;
    left: -12%;
    width: 5.34vw;
    height: 0px;
    border: 1px dashed #000FA4;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
  }

  .sub-flow__step-title {
    font-size: 5.8666667vw;
    margin-bottom: 10px;
  }

  .sub-flow__step-description {
    font-size: 4vw;
  }

  .sub-works__inner {
    width: 100%;
    padding: 11% 5.4%;
    border-radius: 0;
  }

  .sub-works__header {
    margin-bottom: 20px;
  }

  .sub-works__content {
    margin-bottom: 18%;
  }

  .sub-works__title {
    font-size: 5.866667vw;
    margin-bottom: 6%;
  }

  .sub-contact__inner {
    width: 95%;
    padding: 40px 20px;
  }

  .sub-contact__form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  .sub-contact__label {
    min-width: auto;
    font-size: 14px;
    padding-top: 0;
  }

  .sub-contact__input,
  .sub-contact__select,
  .sub-contact__textarea {
    font-size: 14px;
    padding: 10px 12px;
    width: 100%;
  }

  .sub-contact__select {
    min-height: 60px;
    line-height: 1.3;
  }

  .sub-contact__note {
    font-size: 12px;
    margin: 25px 0 15px;
  }
}

@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 */

/* 250912追記 */
.sub-flow__title {
  font-size: 1.25rem;
}

@media screen and (max-width: 768px) {
  .sub-flow__title {
    font-size: 5.066667vw;
  }
}

.works-card__text {
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.4;
  font-family: "Roboto", sans-serif;
  font-style: italic;
}

@media screen and (max-width: 768px) {
  .works-card__text {
    font-size: 10.15vw;
  }
}

/* 250917追記 */
body {
  background-position: top left;
}

@media screen and (max-width: 768px) {
  body {
    background-image: url("../images/bg-sp.jpg");
  }
}

/* トップに戻るボタン */
.totop-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.totop-btn.is-show {
  opacity: 1;
  visibility: visible;
}

.totop-btn:hover {
  opacity: 0.6;
}

.totop-btn__arrow {
  width: 20px;
  height: 24px;
  display: block;
}

@media screen and (max-width: 768px) {
  .totop-btn {
    width: auto;
    height: 13.3vw;
    aspect-ratio: 1;
  }

  .totop-btn__arrow {
    width: auto;
    height: 40.1%;
  }
}