@charset "UTF-8";
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
Technosphere Theme Variables
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
:root {
  --ts-sky-blue: #5BBFDE;
  --ts-sky-blue-dark: #3AA8CC;
  --ts-sky-blue-light: #7DD1EC;
  --ts-lime-green: #8DC63F;
  --ts-lime-green-dark: #5BA246;
  --ts-lime-green-light: #A8D86A;
  --ts-orange: #F7941D;
  --ts-orange-dark: #E07D0A;
  --ts-orange-light: #FFAA44;
  --ts-primary: #5BBFDE;
  --ts-primary-dark: #3AA8CC;
  --ts-primary-light: #7DD1EC;
  --ts-secondary: #8DC63F;
  --ts-secondary-dark: #5BA246;
  --ts-secondary-light: #A8D86A;
  --ts-accent: #F7941D;
  --ts-accent-dark: #E07D0A;
  --ts-accent-light: #FFAA44;
  --ts-text: #333333;
  --ts-text-light: #666666;
  --ts-text-muted: #999999;
  --ts-bg-white: #FFFFFF;
  --ts-bg-light: #F8FAFB;
  --ts-bg-gray: #F0F4F7;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
全体設定
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "M PLUS 1", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

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

ul {
  padding-inline-start: 20px;
}

main {
  scroll-behavior: smooth;
  padding: 50px 0 0;
}

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

.txt-cent {
  text-align: center;
}

.m-auto {
  margin: auto;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
全体設定　responsive
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (min-width: 600px) {
  body {
    font-size: 15px;
  }
} /*  end media 600px */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
共通
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.container {
  width: 90%;
  margin: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.s-container {
  width: 90%;
  margin: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.mtb-l {
  margin: 60px 0;
}

.ptb-l {
  padding: 60px 0;
}

.ptb-l {
  padding: 60px 0;
}

.pt-l {
  padding-top: 60px;
}

.pb-l {
  padding-bottom: 60px;
}

/* Floating contact button */
.floating-contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.floating-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 0 20px;
  height: 48px;
  border-radius: 24px;
  background: #5BBFDE;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(91, 191, 222, 0.45);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.floating-contact-link:hover {
  background: #3AA8CC;
  box-shadow: 0 6px 20px rgba(91, 191, 222, 0.55);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

/* ボタン */
.btn-box {
  margin: 40px 0 0;
}

.btn {
  display: inline-block;
  width: 100%;
  max-width: 250px;
  height: 60px;
  border-radius: 50px;
  background: #5BBFDE;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #5BBFDE;
  transition: all 0.3s ease;
}
.btn span {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #fff;
  transition: all 0.3s ease;
}
.btn:hover span {
  color: #5BBFDE;
  transition: all 0.3s ease;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
共通　responsive
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (min-width: 600px) {
  .container {
    max-width: 1000px;
  }
  .s-container {
    max-width: 700px;
  }
  .mtb-l {
    margin: 120px 0;
  }
  .ptb-l {
    padding: 120px 0;
  }
  .pt-l {
    padding-top: 120px;
  }
  .pb-l {
    padding-bottom: 120px;
  }
  /* ボタン */
  .btn-box {
    margin: 60px 0 0;
  }
} /*  end media 600px */
@media screen and (min-width: 800px) {
  main {
    padding: 70px 0 0;
  }
} /*  end media 800px */
@media screen and (max-width: 599px) {
  .floating-contact-btn {
    bottom: 15px;
    right: 15px;
  }
  .floating-contact-link {
    padding: 0 14px;
    height: 44px;
    font-size: 13px;
    border-radius: 22px;
  }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
header
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* SP */
.header {
  width: 100%;
  background: #fff;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  padding: 0 3%;
}
.header a img {
  width: 160px;
}

.g-nav {
  position: fixed;
  z-index: 900;
  top: 50px;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: #5BBFDE;
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
.g-nav.panelactive {
  right: 0;
}

.mainblur {
  filter: blur(8px);
}

/*ナビゲーションの縦スクロール*/
.g-nav.panelactive .g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 70%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
}

/*ナビゲーション*/
.g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}

.g-nav li {
  list-style: none;
  text-align: center;
}

.g-nav li a {
  color: #fff;
  padding: 15px;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  position: relative;
  white-space: nowrap;
}
.g-nav li a .fa-regular {
  padding: 0 0 0 4px;
}

/* SP版でも採用情報を目立たせる */
.g-nav li a[href*=en-gage] {
  background: #FF6B6B;
  margin: 10px 20px;
  border-radius: 25px;
  animation: spPulse 2s ease-in-out infinite;
}
.g-nav li a[href*=en-gage]:hover {
  background: #FF4757;
}

@keyframes spPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
  }
}
/* SNSアイコン横並び */
/* SP用SNSアイコン（スライドナビ内） */
.sns-icons {
  margin-top: 20px;
}
.sns-icons .sns-icons-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.sns-icons .sns-icons-wrapper a {
  padding: 10px;
  font-size: 24px;
}
.sns-icons .sns-icons-wrapper a:hover {
  opacity: 0.8;
}

/* PC用 SNSアイコン（header直接子 - ul外に独立） */
.header-sns {
  display: none; /* SP時は非表示 */
}

/* SP時: header-actions（採用ボタン）は非表示 */
.header-actions {
  display: none;
}

/* SP時: ナビ内の採用情報リンクをハイライト表示 */
.nav-recruit a {
  background: linear-gradient(45deg, #FF6B6B, #FFE66D) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 25px !important;
  padding: 8px 20px !important;
  display: inline-block !important;
  margin-top: 4px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  position: relative;
}

.nav-recruit a::before {
  content: "NEW";
  position: absolute;
  top: -8px;
  right: -8px;
  background: #FF4757;
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 8px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

/*========= ハンバーガーボタン ===============*/
.hamburger-btn {
  position: fixed;
  z-index: 9999;
  top: 0px;
  right: 0px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.hamburger-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #333;
  width: 45%;
}

.hamburger-btn span:nth-of-type(1) {
  top: 15px;
}

.hamburger-btn span:nth-of-type(2) {
  top: 23px;
}

.hamburger-btn span:nth-of-type(3) {
  top: 31px;
}

.hamburger-btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.hamburger-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
header　responsive
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (min-width: 800px) {
  /* PC */
  .hamburger-btn {
    display: none;
  }
  /* ===== PCヘッダー: grid 3列レイアウト =====
     [ロゴ(固定幅)] [ナビ(残り全幅)] [採用ボタン+SNS(固定幅)]
     これにより採用ボタンが消えたり余白ができる問題を根本解決 */
  /* ヘッダー: flexboxでシンプルに解決
     [ロゴ] [ナビリンク群(auto)] [.header-actionsへの追車(1fr相当)] [採用+SNS]
     .hamburger-btnを面穏として使う */
  .header {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 20px;
    box-sizing: border-box;
    gap: 0;
    overflow: visible;
    justify-content: space-between;
  }
  .header > a:first-child { flex-shrink: 0; }
  .header > a:first-child {
    grid-area: logo;
  }
  .header a img {
    width: 180px;
    display: block;
  }
  .g-nav {
    position: static;
    height: 70px;
    background: none;
    overflow: visible;
    margin-left: auto;  /* ロゴとの間の余白を自動で吸収 → ナビが右端に寄る */
    margin-right: 0;    /* 採用情報との隙間をゼロに */
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: max-content;
  }
  /* PCでは .g-nav-list を透過ラッパーとして扱う */
  .g-nav .g-nav-list {
    display: contents; /* このdivをレイアウトから除外し、子(ul)を直接g-navの子として扱う */
  }
  .g-nav ul {
    position: static;
    transform: none;
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    align-items: stretch;
    height: 70px;
    margin: 0;
    padding: 0;
  }
  .g-nav li {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  .g-nav li a {
    color: #333;
    font-size: 13px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    height: 70px;
    transition: color 0.3s ease-in-out;
    white-space: nowrap;
  }
  .g-nav li a:hover {
    color: #5BBFDE;
  }
  /* 採用情報ボタン（header直接子・右端固定） */
  /* 採用ボタン＋SNSラッパー: margin-left:autoで右端固定 */
  .header-actions {
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
  }
  /* PC時: ナビ内の採用情報liは非表示（header-actionsのボタンを使う） */
  .nav-recruit {
    display: none;
  }
  /* 採用情報ボタン＋SNSを grid の actions 列に収める */
  .header-recruit {
    grid-area: unset;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    flex-shrink: 0;
    text-decoration: none;
    background: linear-gradient(45deg, #FF6B6B, #FFE66D);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    border-radius: 25px;
    padding: 8px 16px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    position: static;
  }
  .header-recruit:hover {
    background: linear-gradient(45deg, #FFE66D, #FF6B6B);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    color: #fff;
  }
  .header-recruit__new {
    display: inline-block;
    background: #FF4757;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 8px;
    letter-spacing: 0.05em;
    line-height: 1.4;
  }
  /* ul内の採用情報liはPCでは非表示（.nav-recruitと併用） */
  .g-nav li:has(a[href*="recruit"]) {
    display: none;
  }
  /* 採用情報リンクを目立たせるスタイル（en-gage URL） */
  .g-nav li a[href*=en-gage],
  .g-nav li a[href*="recruit"] {
    position: relative;
    background: linear-gradient(45deg, #FF6B6B, #FFE66D);
    color: #fff !important;
    font-weight: 700;
    border-radius: 25px;
    padding: 8px 16px !important;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    height: auto;
    align-self: center;
  }
  .g-nav li a[href*=en-gage]::before,
  .g-nav li a[href*="recruit"]::before {
    content: "🔥 NEW";
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FF4757;
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
    animation: bounce 1s ease-in-out infinite;
  }
  .g-nav li a[href*=en-gage]:hover,
  .g-nav li a[href*="recruit"]:hover {
    background: linear-gradient(45deg, #FFE66D, #FF6B6B);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  }
  .g-nav li a[href*=en-gage] .fa-regular,
  .g-nav li a[href*="recruit"] .fa-regular {
    animation: iconBounce 1.5s ease-in-out infinite;
  }
  /* アニメーション定義 */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.02);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  @keyframes iconBounce {
    0%, 100% {
      transform: translateX(0);
    }
    25% {
      transform: translateX(3px);
    }
    75% {
      transform: translateX(-3px);
    }
  }
  /* PC用 SNSアイコン */
  .header-sns {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 10px;
  }
  .header-sns a {
    font-size: 18px;
    color: #555;
    transition: color 0.2s, transform 0.2s;
    line-height: 1;
  }
  .header-sns a:hover {
    color: #5BBFDE;
    transform: scale(1.1);
  }
  /* PCではSP用SNSアイコン（ul内の.sns-icons）を非表示 */
  .g-nav ul .sns-icons {
    display: none;
  }
} /*  end media 800px */
@media screen and (min-width: 900px) {
  .g-nav li a {
    font-size: 14px;
    padding: 0 11px;
  }
} /*  end media 900px */
@media screen and (min-width: 1100px) {
  .g-nav li a {
    font-size: 15px;
    padding: 0 14px;
  }
} /*  end media 1100px */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
footer
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
footer {
  background: #0b3d91;
  color: white;
  padding: 40px 0;
}

.footer-flex {
  text-align: center;
}
.footer-flex a:hover {
  opacity: 0.8;
  transition: 0.3s;
}
.footer-flex a img {
  width: 200px;
}

.txt-box {
  margin: 10px 0 0;
}

.txt-box a {
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.txt-box a:hover {
  color: #005d9b;
  transition: all 0.3s ease-in-out;
}

small {
  display: block;
  font-size: 10px;
  margin: 20px 0 0;
}

.footer-copy {
  display: block;
  text-align: center;
  margin: 20px auto 0;
  overflow-wrap: break-word;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
footer　responsive
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (min-width: 600px) {
  footer {
    padding: 60px 50px;
  }
  .footer-flex {
    display: flex;
    justify-content: space-between;
  }
  .txt-box {
    margin: 0;
  }
  .txt-box a {
    font-size: 16px;
  }
  small {
    margin: 30px 0 0;
  }
} /*  end media 600px */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
index共通
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* セクションタイトル */
.sectit-box {
  margin: 0 auto 40px;
  text-align: center;
}
.sectit-box img {
  display: inline-block;
  text-align: center;
}

.sectit-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 20px 0 10px;
}

.sectit-ja {
  display: block;
  font-size: 13px;
  font-weight: 400;
}

.icon-news {
  width: 35px;
}

.icon-service {
  width: 47px;
}

.icon-partner {
  width: 58px;
}

.icon-message {
  width: 55px;
}

.icon-company {
  width: 45px;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
index共通 responsive
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (min-width: 600px) {
  /* セクションタイトル */
  .sectit-box {
    margin: 0 auto 60px;
  }
  .sectit-en {
    font-size: 60px;
    margin: 30px 0 20px;
  }
  .sectit-ja {
    font-size: 15px;
  }
  .icon-news {
    width: 50px;
  }
  .icon-service {
    width: 65px;
  }
  .icon-partner {
    width: 75px;
  }
  .icon-message {
    width: 80px;
  }
  .icon-company {
    width: 60px;
  }
} /*  end media 600px */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
MV
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.mv-wrap {
  background: url(../img/hero-handdrawn-2026.jpg) no-repeat center center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mv {
  max-width: 500px;
  text-align: center;
}
.mv img {
  display: inline-block;
  width: 45%;
  max-width: 210px;
  margin: 0 0 10px;
}
.mv .mv-txtbox span {
  display: block;
}
.mv .entit-box {
  display: block;
}
.mv .mvtit-en {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(20px, 9vw, 50px);
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: 0.05em;
}
.mv .mvtit-ja {
  font-size: clamp(13px, 4vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 1em 0 0;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
MV responsive
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
/* スマートフォン用のスタイル */
@media screen and (max-width: 767px) {
  .mv-wrap {
    background-image: url(../img/hero-handdrawn-2026-sp.jpg);
    height: 100vh;
    min-height: 500px;
  }
  .mv {
    padding: 0 20px;
  }
  .mv .mvtit-en {
    font-size: clamp(24px, 10vw, 36px);
    line-height: 1.3em;
  }
  .mv .mvtit-ja {
    font-size: clamp(14px, 4vw, 16px);
    margin: 1.5em 0 0;
  }
} /*  end media 767px */
@media screen and (min-width: 500px) and (max-width: 767px) {
  .mv-wrap {
    height: 650px;
  }
  .mv img {
    margin: 0 0 20px;
  }
} /*  end media 500px */
@media screen and (min-width: 800px) {
  .mv {
    max-width: 1000px;
    margin: auto;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mv img {
    display: inline-block;
    width: 23%;
    max-width: 260px;
    margin: 0 40px 0 0;
  }
  .mv .mvtit-en {
    font-size: clamp(20px, 7vw, 76px);
    line-height: 1.2em;
    letter-spacing: 0.03em;
  }
  .mv .mvtit-ja {
    font-size: clamp(13px, 2vw, 20px);
    margin: 10px 0 0;
  }
} /*  end media 800px */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
news
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.news-list {
  border-top: 1px solid #5BBFDE;
}

.news-item {
  padding: 20px 10px;
  border-bottom: 1px solid #5BBFDE;
}

.news-date {
  display: inline-block;
  color: #666;
  font-size: 13px;
  margin: 0 0 10px;
}

.news-txt {
  font-weight: 500;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
news responsive
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (min-width: 600px) {
  .news-item {
    padding: 40px 0 40px 10px;
    display: flex;
  }
  .news-date {
    margin: 0 10% 0 0;
  }
} /*  end media 600px */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
service
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.service-item {
  margin: 0 0 50px;
}
.service-item:last-of-type {
  margin: 0;
}

.intro-txtbox {
  margin: 10px 0 0;
}
.intro-txtbox .intro-num {
  color: #5BBFDE;
  font-size: 13px;
}
.intro-txtbox .intro-tit {
  font-size: 20px;
  font-weight: 600;
  margin: 5px 0 20px;
}
.intro-txtbox .intro-tit:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/deco_bluecircle.svg);
  background-size: contain;
  position: relative;
  top: 4px;
  margin: 0 7px 0 0;
  fill: #fff;
}

.service-result {
  margin: 20px 0 0;
}
.service-result .result-tit {
  font-size: 18px;
  font-weight: 600;
}
.service-result .result-tit:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 4px;
  border-radius: 4px;
  background-color: #5BBFDE;
  position: relative;
  top: -4px;
  margin: 0 6px 0 0;
}
.service-result ul {
  margin: 5px 0 20px;
}
.service-result ul li {
  color: #5BBFDE;
}
.service-result ul li span {
  color: #333;
}
.service-result .result-pictures img {
  display: block;
  border-radius: 25px;
  margin: 20px 0 0;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
service responsive
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (min-width: 700px) {
  .service-item {
    margin: 0 0 80px;
  }
  .service-intro {
    margin: 0 0 50px;
    display: flex;
    align-items: center;
  }
  .f-reverse {
    flex-direction: row-reverse;
  }
  .intro-imgbox {
    padding: 10px;
    max-width: 50%;
  }
  .intro-txtbox {
    margin: 0;
    padding: 0 4%;
    max-width: 50%;
  }
  .intro-txtbox .intro-tit {
    font-size: 26px;
    margin: 13px 0 26px;
  }
  .intro-txtbox .intro-tit:before {
    width: 26px;
    height: 26px;
  }
  .service-result {
    margin: 0;
  }
  .service-result .result-tit {
    font-size: 24px;
  }
  .service-result .result-tit:before {
    width: 20px;
    top: -6px;
  }
  .service-result ul {
    margin: 13px 0 30px;
  }
  .service-result .result-pictures {
    display: flex;
  }
  .service-result .result-pictures img {
    width: 30%;
    margin: 14px;
  }
} /*  end media 600px */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
partner
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.container-link {
  margin: 40px 0 0;
  text-align: center;
}

.partner-logo {
  display: inline-block;
  border: 3px solid #5BBFDE;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 30px 40px;
  transition: all 0.3s ease;
}
.partner-logo img {
  max-width: 250px;
  height: auto;
  display: block;
}
.partner-logo:hover {
  opacity: 0.6;
  transition: all 0.3s ease;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
partner responsive
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
/*  end media 600px */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
message
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.message-box {
  border-radius: 40px;
  border: 4px solid #5BBFDE;
  padding: 40px 7%;
}

.message-txtbox p:first-of-type {
  font-size: 5vw;
  font-weight: 600;
  margin: 0 0 20px 0;
  text-align: center;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
message responsive
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (min-width: 400px) {
  .message-txtbox p:first-of-type {
    font-size: 18px;
  }
} /*  end media 400px */
@media screen and (min-width: 600px) {
  .message-box {
    border-radius: 50px;
    border: 4px solid #5BBFDE;
    padding: 70px;
  }
  .message-txtbox {
    max-width: 700px;
    margin: auto;
  }
  .message-txtbox p:first-of-type {
    margin: 0 0 30px 0;
    font-size: 24px;
  }
} /*  end media 600px */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
company
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.company-list {
  border-top: 1px solid #5BBFDE;
}

.company-item {
  padding: 20px 0;
  border-bottom: 1px solid #5BBFDE;
}
.company-item dt {
  font-weight: 700;
  margin: 0 0 5px 0;
  min-width: 100px;
}
.company-item dt:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url(../img/common/deco_bluecircle.svg);
  background-size: contain;
  position: relative;
  top: 2px;
  margin: 0 5px 0 0;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
company responsive
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (min-width: 440px) {
  .company-item {
    display: flex;
  }
  .company-item dt {
    margin: 0 15% 0 0;
  }
} /*  end media 500px */
@media screen and (min-width: 600px) {
  .company-item {
    padding: 40px 0;
  }
  .company-item dt {
    margin: 0 20% 0 0;
  }
} /*  end media 600px */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
下層共通
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.lower-mv {
  width: 100%;
  height: 200px;
  line-height: 1.2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lower-mv h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  display: inline-block;
  position: relative;
  top: -30px;
}
.lower-mv h1:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  display: inline-block;
  width: 50px;
  height: 5px;
  border-radius: 5px;
  transform: translate(-50%);
  background-color: #5BBFDE;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
下層共通 　responsive
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (min-width: 600px) {
  .lower-mv {
    height: 260px;
    line-height: 1;
  }
  .lower-mv h1 {
    font-size: 48px;
  }
} /*  end media 600px */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
contact
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.contact-wrap {
  margin: 20px 0 60px;
}

.contact-introtxt {
  margin: 0 0 30px;
}

.form-item {
  margin: 0 0 30px;
}
.form-item label {
  display: block;
  font-weight: 700;
  margin: 10px 0;
}
.form-item label:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url(../img/common/deco_bluecircle.svg);
  background-size: contain;
  position: relative;
  top: 2px;
  margin: 0 5px 0 0;
}
.form-item input {
  display: block;
  border: none;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: #EEF9FF;
  padding: 10px;
}
.form-item input:focus {
  outline: solid 2px #5BBFDE;
}
.form-item textarea {
  width: 100%;
  border: none;
  height: 200px;
  border-radius: 10px;
  background: #EEF9FF;
  padding: 10px;
}
.form-item textarea:focus {
  outline: solid 2px #5BBFDE;
}

.form-agreement-box {
  text-align: center;
  margin: 40px 0 0;
}

.form-agreement-bg {
  display: inline-block;
  border-radius: 10px;
  background: #EEF9FF;
  padding: 20px 3%;
}
.form-agreement-bg input {
  cursor: pointer;
  vertical-align: middle;
}

.txt-link {
  color: #5BBFDE;
  transition: all 0.3s ease;
}
.txt-link:hover {
  color: #3AA8CC;
  transition: all 0.3s ease;
}

.error {
  color: #e72855;
  margin: 7px 0 0;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
contact 　responsive
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (min-width: 600px) {
  .contact-wrap {
    margin: 20px 0 120px;
  }
  .contact-introtxt {
    text-align: center;
    margin: 0 0 50px;
  }
  .form-agreement-bg {
    padding: 20px 30px;
  }
  .form-agreement-box {
    text-align: center;
  }
} /*  end media 600px */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
privacypolicy 
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.privacy-wrap {
  margin: 20px 0 60px;
}

.about-pra {
  margin: 0 0 50px;
}

.privacy-tit {
  font-size: 18px;
  font-weight: 700;
}
.privacy-tit:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(../img/common/deco_bluecircle.svg);
  background-size: contain;
  position: relative;
  top: 2px;
  margin: 0 5px 0 0;
}

.privacy-tit-txt {
  margin: 20px 0;
}

.praivacy-item {
  margin: 0 0 20px;
}
.praivacy-item dt {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
}

.praivacy-numlist dt {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
.praivacy-numlist dd {
  padding: 0 0 0 1.5em;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
privacypolicy 　responsive
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (min-width: 600px) {
  .privacy-wrap {
    margin: 50px 0 100px;
  }
  .about-pra {
    margin: 0 0 80px;
  }
  .privacy-tit {
    font-size: 20px;
  }
  .privacy-tit:before {
    content: "";
    width: 20px;
    height: 20px;
  }
  .privacy-tit-txt {
    margin: 30px 0;
  }
  .praivacy-item {
    margin: 0 0 30px;
  }
  .praivacy-item dt {
    font-size: 18px;
    margin: 0 0 20px;
  }
  .praivacy-numlist dt {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
  }
  .praivacy-numlist dt {
    font-size: 15px;
  }
} /*  end media 600px */
/*==================================================
ふわっと現れるアニメーション
===================================*/
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 遅延 */
.delay01 {
  animation-delay: 0.2s;
}

.delay02 {
  animation-delay: 0.4s;
}

.delay03 {
  animation-delay: 0.6s;
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.firstLoadTrigger {
  opacity: 0;
}

.okomarigoto-main {
  padding-top: 80px;
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.okomarigoto-main .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.okomarigoto-main .okomarigoto-hero {
  text-align: center;
  padding: 60px 0;
}
.okomarigoto-main .okomarigoto-hero .main-title {
  margin-bottom: 40px;
}
.okomarigoto-main .okomarigoto-hero .main-title .title-main {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .okomarigoto-main .okomarigoto-hero .main-title .title-main {
    font-size: 2rem;
  }
}
.okomarigoto-main .okomarigoto-hero .main-title .title-sub {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  color: #00a0e9;
}
@media (max-width: 768px) {
  .okomarigoto-main .okomarigoto-hero .main-title .title-sub {
    font-size: 1.5rem;
  }
}
.okomarigoto-main .okomarigoto-hero .intro-text {
  margin-bottom: 40px;
}
.okomarigoto-main .okomarigoto-hero .intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}
@media (max-width: 768px) {
  .okomarigoto-main .okomarigoto-hero .intro-text p {
    font-size: 1rem;
  }
  .okomarigoto-main .okomarigoto-hero .intro-text p br {
    display: none;
  }
}
.okomarigoto-main .okomarigoto-hero .contact-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #00a0e9;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 160, 233, 0.3);
}
.okomarigoto-main .okomarigoto-hero .contact-btn:hover {
  background: #0068b7;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 160, 233, 0.4);
}
.okomarigoto-main .step-section {
  padding: 60px 0 100px;
}
.okomarigoto-main .step-section .step-header {
  text-align: center;
  margin-bottom: 50px;
}
.okomarigoto-main .step-section .step-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #00a0e9;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.okomarigoto-main .step-section .step-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #00a0e9;
}
.okomarigoto-main .step-section .step-header p {
  font-size: 1.2rem;
  color: #666;
  margin-top: 25px;
}
.okomarigoto-main .step-section .industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
@media (max-width: 768px) {
  .okomarigoto-main .step-section .industry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .okomarigoto-main .step-section .industry-grid {
    grid-template-columns: 1fr;
  }
}
.okomarigoto-main .step-section .industry-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}
.okomarigoto-main .step-section .industry-card:hover:not(.disabled) {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.okomarigoto-main .step-section .industry-card:hover:not(.disabled) .card-icon {
  background: #00a0e9;
  color: white;
}
.okomarigoto-main .step-section .industry-card.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.okomarigoto-main .step-section .industry-card.disabled:hover {
  transform: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.okomarigoto-main .step-section .industry-card .card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.okomarigoto-main .step-section .industry-card .card-icon i {
  font-size: 2rem;
  color: #00a0e9;
}
.okomarigoto-main .step-section .industry-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.okomarigoto-main .step-section .industry-card .coming-soon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff6b6b;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}
.okomarigoto-main .page-top-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: #00a0e9;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.okomarigoto-main .page-top-btn span {
  font-size: 0.8rem;
  font-weight: 500;
}
.okomarigoto-main .page-top-btn:hover {
  background: #0068b7;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .okomarigoto-main .page-top-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .okomarigoto-main .page-top-btn span {
    font-size: 0.7rem;
  }
}

.okomarigoto-page .okomarigoto-hero {
  background: linear-gradient(135deg, #1e2e4a 0%, #0a47a0 100%);
  color: white;
  padding: 80px 0 60px;
  margin-top: 0;
}
.okomarigoto-page .okomarigoto-hero .breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
}
.okomarigoto-page .okomarigoto-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.okomarigoto-page .okomarigoto-hero .breadcrumb a:hover {
  color: white;
}
.okomarigoto-page .okomarigoto-hero .breadcrumb span {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.5);
}
.okomarigoto-page .okomarigoto-hero .breadcrumb span:last-child {
  color: white;
}
.okomarigoto-page .okomarigoto-hero .hero-title {
  margin-bottom: 20px;
}
.okomarigoto-page .okomarigoto-hero .hero-title .industry-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 16px;
  margin-bottom: 10px;
}
.okomarigoto-page .okomarigoto-hero .hero-title .main-title {
  display: block;
  font-size: 36px;
  font-weight: bold;
  margin-top: 10px;
}
.okomarigoto-page .okomarigoto-hero .hero-description {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
}
.okomarigoto-page .problem-list-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.okomarigoto-page .problem-list-section .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
  color: #333;
  font-weight: bold;
}
.okomarigoto-page .problem-list-section .problem-cards {
  max-width: 1000px;
  margin: 0 auto;
}
.okomarigoto-page .problem-list-section .problem-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}
.okomarigoto-page .problem-list-section .problem-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.okomarigoto-page .problem-list-section .problem-card .problem-header {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  border-bottom: 2px solid #e9ecef;
}
.okomarigoto-page .problem-list-section .problem-card .problem-header .problem-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #0a47a0;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 20px;
  margin-right: 20px;
}
.okomarigoto-page .problem-list-section .problem-card .problem-header .problem-title {
  flex: 1;
  font-size: 20px;
  color: #333;
  margin: 0;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content {
  padding: 30px;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .current-situation {
  margin-bottom: 30px;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .current-situation h4 {
  font-size: 18px;
  color: #d32f2f;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .current-situation h4:before {
  content: "⚠";
  margin-right: 8px;
  font-size: 20px;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .current-situation ul {
  list-style: none;
  padding: 0;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .current-situation ul li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
  color: #666;
  line-height: 1.6;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .current-situation ul li:before {
  content: "・";
  position: absolute;
  left: 0;
  color: #999;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .solution {
  background: #f0f8ff;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #0a47a0;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .solution h4 {
  font-size: 18px;
  color: #0a47a0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .solution h4:before {
  content: "💡";
  margin-right: 8px;
  font-size: 20px;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .solution .solution-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  padding: 10px;
  background: white;
  border-radius: 5px;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .solution .solution-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .solution .solution-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #ccc;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .solution .solution-details h5 {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .solution .solution-details ol {
  padding-left: 20px;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .solution .solution-details ol li {
  margin-bottom: 10px;
  color: #666;
  line-height: 1.6;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .solution .expected-results {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #ccc;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .solution .expected-results h5 {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .solution .expected-results .result-list {
  list-style: none;
  padding: 0;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .solution .expected-results .result-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: white;
  border-radius: 5px;
}
.okomarigoto-page .problem-list-section .problem-card .problem-content .solution .expected-results .result-list li .result-icon {
  color: #4caf50;
  font-weight: bold;
  margin-right: 10px;
  font-size: 18px;
}
.okomarigoto-page .problem-list-section .cta-section {
  text-align: center;
  margin-top: 80px;
  padding: 60px 30px;
  background: linear-gradient(135deg, #1e2e4a 0%, #0a47a0 100%);
  border-radius: 10px;
  color: white;
}
.okomarigoto-page .problem-list-section .cta-section h3 {
  font-size: 28px;
  margin-bottom: 20px;
}
.okomarigoto-page .problem-list-section .cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}
.okomarigoto-page .problem-list-section .cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.okomarigoto-page .problem-list-section .cta-section .cta-buttons .btn-primary,
.okomarigoto-page .problem-list-section .cta-section .cta-buttons .btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}
.okomarigoto-page .problem-list-section .cta-section .cta-buttons .btn-primary {
  background: white;
  color: #0a47a0;
}
.okomarigoto-page .problem-list-section .cta-section .cta-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}
.okomarigoto-page .problem-list-section .cta-section .cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.okomarigoto-page .problem-list-section .cta-section .cta-buttons .btn-secondary:hover {
  background: white;
  color: #0a47a0;
}
@media (max-width: 768px) {
  .okomarigoto-page .okomarigoto-hero {
    padding: 60px 0 40px;
  }
  .okomarigoto-page .okomarigoto-hero .hero-title .main-title {
    font-size: 28px;
  }
  .okomarigoto-page .okomarigoto-hero .hero-description {
    font-size: 16px;
  }
  .okomarigoto-page .problem-list-section {
    padding: 60px 0;
  }
  .okomarigoto-page .problem-list-section .section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .okomarigoto-page .problem-list-section .problem-card .problem-header {
    padding: 20px;
  }
  .okomarigoto-page .problem-list-section .problem-card .problem-header .problem-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
  .okomarigoto-page .problem-list-section .problem-card .problem-header .problem-title {
    font-size: 18px;
  }
  .okomarigoto-page .problem-list-section .problem-card .problem-content {
    padding: 20px;
  }
  .okomarigoto-page .problem-list-section .cta-section {
    padding: 40px 20px;
  }
  .okomarigoto-page .problem-list-section .cta-section h3 {
    font-size: 24px;
  }
  .okomarigoto-page .problem-list-section .cta-section p {
    font-size: 16px;
  }
  .okomarigoto-page .problem-list-section .cta-section .cta-buttons .btn-primary,
  .okomarigoto-page .problem-list-section .cta-section .cta-buttons .btn-secondary {
    padding: 12px 30px;
    width: 100%;
    max-width: 280px;
  }
}

.manufacturing-main {
  padding-top: 80px;
  min-height: 100vh;
  background: #f8f9fa;
}
.manufacturing-main .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.manufacturing-main .breadcrumb {
  padding: 20px 0;
  font-size: 0.9rem;
  color: #666;
}
.manufacturing-main .breadcrumb a {
  color: #00a0e9;
  text-decoration: none;
}
.manufacturing-main .breadcrumb a:hover {
  text-decoration: underline;
}
.manufacturing-main .breadcrumb span {
  margin: 0 10px;
}
.manufacturing-main .manufacturing-hero {
  text-align: center;
  padding: 40px 0 60px;
}
.manufacturing-main .manufacturing-hero .main-title {
  margin-bottom: 30px;
}
.manufacturing-main .manufacturing-hero .main-title .industry-label {
  display: inline-block;
  background: #00a0e9;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.manufacturing-main .manufacturing-hero .main-title .title-main {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}
@media (max-width: 768px) {
  .manufacturing-main .manufacturing-hero .main-title .title-main {
    font-size: 2rem;
  }
}
.manufacturing-main .manufacturing-hero .intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}
@media (max-width: 768px) {
  .manufacturing-main .manufacturing-hero .intro-text p {
    font-size: 1rem;
  }
  .manufacturing-main .manufacturing-hero .intro-text p br {
    display: none;
  }
}
.manufacturing-main .problems-section {
  padding: 60px 0;
}
.manufacturing-main .problems-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.manufacturing-main .problems-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  position: relative;
  display: inline-block;
}
.manufacturing-main .problems-section .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #00a0e9;
}
.manufacturing-main .problems-section .problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
@media (max-width: 768px) {
  .manufacturing-main .problems-section .problems-grid {
    grid-template-columns: 1fr;
  }
}
.manufacturing-main .problems-section .problem-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.manufacturing-main .problems-section .problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.manufacturing-main .problems-section .problem-card:hover .solution-preview {
  max-height: 200px;
  opacity: 1;
  margin-top: 20px;
}
.manufacturing-main .problems-section .problem-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00a0e9, #0068b7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.manufacturing-main .problems-section .problem-card .card-icon i {
  font-size: 1.5rem;
  color: white;
}
.manufacturing-main .problems-section .problem-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}
.manufacturing-main .problems-section .problem-card ul {
  list-style: none;
  padding: 0;
}
.manufacturing-main .problems-section .problem-card ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #666;
}
.manufacturing-main .problems-section .problem-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00a0e9;
  font-weight: bold;
}
.manufacturing-main .problems-section .problem-card .solution-preview {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
  margin-top: 0;
}
.manufacturing-main .problems-section .problem-card .solution-preview h4 {
  font-size: 1rem;
  color: #00a0e9;
  margin-bottom: 8px;
}
.manufacturing-main .problems-section .problem-card .solution-preview p {
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}
.manufacturing-main .solutions-section {
  padding: 60px 0;
  background: white;
}
.manufacturing-main .solutions-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.manufacturing-main .solutions-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.manufacturing-main .solutions-section .section-header p {
  font-size: 1.1rem;
  color: #666;
}
.manufacturing-main .solutions-section .solution-detail {
  margin-bottom: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
}
.manufacturing-main .solutions-section .solution-detail h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
}
.manufacturing-main .solutions-section .solution-detail h3 i {
  color: #00a0e9;
  margin-right: 10px;
}
.manufacturing-main .solutions-section .solution-detail .solution-content .solution-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00a0e9;
  margin-bottom: 15px;
  margin-top: 25px;
}
.manufacturing-main .solutions-section .solution-detail .solution-content .solution-text h4:first-child {
  margin-top: 0;
}
.manufacturing-main .solutions-section .solution-detail .solution-content .solution-text ul {
  list-style: none;
  padding: 0;
}
.manufacturing-main .solutions-section .solution-detail .solution-content .solution-text ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #666;
  line-height: 1.6;
}
.manufacturing-main .solutions-section .solution-detail .solution-content .solution-text ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #00a0e9;
  font-size: 0.8rem;
}
.manufacturing-main .case-studies {
  padding: 60px 0;
}
.manufacturing-main .case-studies .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.manufacturing-main .case-studies .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}
.manufacturing-main .case-studies .case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}
@media (max-width: 768px) {
  .manufacturing-main .case-studies .case-grid {
    grid-template-columns: 1fr;
  }
}
.manufacturing-main .case-studies .case-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.manufacturing-main .case-studies .case-card .case-header {
  background: linear-gradient(135deg, #00a0e9, #0068b7);
  color: white;
  padding: 20px;
}
.manufacturing-main .case-studies .case-card .case-header .case-industry {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.manufacturing-main .case-studies .case-card .case-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}
.manufacturing-main .case-studies .case-card .case-content {
  padding: 25px;
}
.manufacturing-main .case-studies .case-card .case-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #00a0e9;
  margin-bottom: 10px;
  margin-top: 20px;
}
.manufacturing-main .case-studies .case-card .case-content h4:first-child {
  margin-top: 0;
}
.manufacturing-main .case-studies .case-card .case-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}
.manufacturing-main .case-studies .case-card .case-content ul {
  list-style: none;
  padding: 0;
}
.manufacturing-main .case-studies .case-card .case-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}
.manufacturing-main .case-studies .case-card .case-content ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #00a0e9;
  font-weight: bold;
}
.manufacturing-main .cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #00a0e9, #0068b7);
  color: white;
  text-align: center;
}
.manufacturing-main .cta-section .cta-content {
  max-width: 800px;
  margin: 0 auto;
}
.manufacturing-main .cta-section .cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .manufacturing-main .cta-section .cta-content h2 {
    font-size: 1.5rem;
  }
}
.manufacturing-main .cta-section .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  opacity: 0.95;
}
@media (max-width: 768px) {
  .manufacturing-main .cta-section .cta-content p {
    font-size: 1rem;
  }
}
.manufacturing-main .cta-section .cta-content .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0 20px;
}
@media (max-width: 768px) {
  .manufacturing-main .cta-section .cta-content .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.manufacturing-main .cta-section .cta-content .cta-buttons .btn-primary,
.manufacturing-main .cta-section .cta-content .cta-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .manufacturing-main .cta-section .cta-content .cta-buttons .btn-primary,
  .manufacturing-main .cta-section .cta-content .cta-buttons .btn-secondary {
    width: 250px;
    justify-content: center;
  }
}
.manufacturing-main .cta-section .cta-content .cta-buttons .btn-primary {
  background: white;
  color: #00a0e9;
}
.manufacturing-main .cta-section .cta-content .cta-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}
.manufacturing-main .cta-section .cta-content .cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.manufacturing-main .cta-section .cta-content .cta-buttons .btn-secondary:hover {
  background: white;
  color: #00a0e9;
}
.manufacturing-main .cta-section .cta-content .cta-note {
  font-size: 0.9rem;
  opacity: 0.8;
}
.manufacturing-main .back-navigation {
  padding: 40px 0;
  text-align: center;
}
.manufacturing-main .back-navigation .back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: white;
  color: #00a0e9;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-weight: 500;
}
.manufacturing-main .back-navigation .back-btn:hover {
  background: #00a0e9;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 160, 233, 0.3);
}
.manufacturing-main .page-top-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: #00a0e9;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.manufacturing-main .page-top-btn span {
  font-size: 0.8rem;
  font-weight: 500;
}
.manufacturing-main .page-top-btn:hover {
  background: #0068b7;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .manufacturing-main .page-top-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .manufacturing-main .page-top-btn span {
    font-size: 0.7rem;
  }
}

.okomarigoto-interactive .okomarigoto-hero {
  background: white;
  border-bottom: 1px solid #e0e0e0;
  padding: 40px 0 30px;
  margin-top: 0;
  text-align: center;
}
.okomarigoto-interactive .okomarigoto-hero .page-title {
  font-size: 2rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 10px;
}
.okomarigoto-interactive .okomarigoto-hero .sub-title {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
}
.okomarigoto-interactive .okomarigoto-hero .back-link .back-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #f8f9fa;
  color: #00a0e9;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.okomarigoto-interactive .okomarigoto-hero .back-link .back-btn:hover {
  background: #00a0e9;
  color: white;
}
.okomarigoto-interactive .problem-display-section {
  padding: 40px 0;
}
.okomarigoto-interactive .problem-display-section .current-problem {
  background: #f8f9fa;
  padding: 20px 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  text-align: center;
}
.okomarigoto-interactive .problem-display-section .current-problem .problem-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}
.okomarigoto-interactive .problem-display-section .solution-container {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 40px;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-header {
  margin-bottom: 30px;
  text-align: center;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-header .solution-title {
  font-size: 1.1rem;
  color: #00a0e9;
  font-weight: 600;
  line-height: 1.6;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 30px;
  text-align: center;
  border: 2px dashed #e0e0e0;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-before,
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-after {
  flex: 1;
  min-width: 200px;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-before h5,
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-after h5 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-before .icon-group .icon-container,
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-after .icon-group .icon-container {
  position: relative;
  margin-bottom: 15px;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-before .icon-group .icon-container .problem-icon,
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-before .icon-group .icon-container .solution-icon,
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-after .icon-group .icon-container .problem-icon,
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-after .icon-group .icon-container .solution-icon {
  font-size: 3.5rem;
  color: #00a0e9;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-before .icon-group .icon-container .alert-icon,
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-before .icon-group .icon-container .connected-icon,
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-after .icon-group .icon-container .alert-icon,
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-after .icon-group .icon-container .connected-icon {
  position: absolute;
  top: -10px;
  right: 50%;
  transform: translateX(150%);
  font-size: 1.5rem;
  background: white;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-before .icon-group .icon-container .alert-icon,
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-after .icon-group .icon-container .alert-icon {
  color: #ff6b6b;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-before .icon-group .icon-container .connected-icon,
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-after .icon-group .icon-container .connected-icon {
  color: #4caf50;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-before .icon-group p,
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-after .icon-group p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .visual-before .problem-icon {
  opacity: 0.7;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .arrow-container {
  color: #00a0e9;
  font-size: 2rem;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .okomarigoto-interactive .problem-display-section .solution-container .solution-visual .problem-visualization .arrow-container {
    transform: rotate(90deg);
    margin: 20px 0;
  }
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .visual-placeholder {
  color: #666;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .visual-placeholder i {
  font-size: 3rem;
  margin: 0 15px;
  color: #00a0e9;
  opacity: 0.5;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-visual .visual-placeholder p {
  margin-top: 20px;
  font-size: 0.9rem;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-details .intro {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-details .detail-points {
  margin-bottom: 30px;
  padding: 20px 0;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-details .detail-points p {
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
  color: #666;
  line-height: 1.8;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-details .detail-points p:before {
  content: "・";
  position: absolute;
  left: 0;
  color: #00a0e9;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-details .effects {
  background: #F0F7FF;
  border-radius: 8px;
  padding: 25px;
  border-left: 4px solid #00a0e9;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-details .effects h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-details .effects ul {
  list-style: none;
  padding: 0;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-details .effects ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  color: #666;
}
.okomarigoto-interactive .problem-display-section .solution-container .solution-details .effects ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}
.okomarigoto-interactive .problem-display-section .other-problems {
  margin-bottom: 40px;
}
.okomarigoto-interactive .problem-display-section .other-problems h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}
.okomarigoto-interactive .problem-display-section .other-problems .problem-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}
.okomarigoto-interactive .problem-display-section .other-problems .problem-buttons .problem-btn {
  padding: 15px 20px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  font-family: inherit;
}
.okomarigoto-interactive .problem-display-section .other-problems .problem-buttons .problem-btn:hover {
  border-color: #00a0e9;
  color: #00a0e9;
  background: #F0F7FF;
}
.okomarigoto-interactive .problem-display-section .other-problems .problem-buttons .problem-btn.active {
  background: #00a0e9;
  color: white;
  border-color: #00a0e9;
}
.okomarigoto-interactive .inline-contact-section {
  background: #f8f9fa;
  padding: 60px 0;
}
.okomarigoto-interactive .inline-contact-section .contact-header {
  text-align: center;
  margin-bottom: 40px;
}
.okomarigoto-interactive .inline-contact-section .contact-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}
.okomarigoto-interactive .inline-contact-section .contact-header p {
  color: #666;
  font-size: 1rem;
}
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-row {
    grid-template-columns: 1fr;
  }
}
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-group label {
  display: block;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-group label .required {
  color: #ff6b6b;
  margin-left: 3px;
}
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-group input[type=text],
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-group input[type=email],
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-group input[type=tel],
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
}
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-group input[type=text]:focus,
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-group input[type=email]:focus,
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-group input[type=tel]:focus,
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-group textarea:focus {
  outline: none;
  border-color: #00a0e9;
  box-shadow: 0 0 0 3px rgba(0, 160, 233, 0.1);
}
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-group.agreement label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-group.agreement label input[type=checkbox] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-submit {
  text-align: center;
  margin-top: 30px;
}
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-submit .submit-btn {
  padding: 15px 50px;
  background: #00a0e9;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}
.okomarigoto-interactive .inline-contact-section .contact-form-wrapper .form-submit .submit-btn:hover {
  background: #0068b7;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 160, 233, 0.3);
}
@media (max-width: 768px) {
  .okomarigoto-interactive .okomarigoto-hero {
    padding: 30px 0 20px;
  }
  .okomarigoto-interactive .okomarigoto-hero .page-title {
    font-size: 1.5rem;
  }
  .okomarigoto-interactive .okomarigoto-hero .sub-title {
    font-size: 1rem;
  }
  .okomarigoto-interactive .problem-display-section {
    padding: 30px 0;
  }
  .okomarigoto-interactive .problem-display-section .solution-container {
    padding: 20px;
  }
  .okomarigoto-interactive .problem-display-section .solution-container .solution-visual {
    padding: 40px 20px;
  }
  .okomarigoto-interactive .inline-contact-section {
    padding: 40px 0;
  }
  .okomarigoto-interactive .inline-contact-section .contact-form-wrapper {
    padding: 30px 20px;
  }
}

.okomarigoto-interactive-start .okomarigoto-main {
  padding: 40px 0;
  min-height: calc(100vh - 200px);
}
.okomarigoto-interactive-start .okomarigoto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.okomarigoto-interactive-start .progress-container {
  margin-bottom: 40px;
  position: relative;
}
.okomarigoto-interactive-start .progress-container .progress-bar {
  position: absolute;
  top: 20px;
  left: 0;
  height: 4px;
  background: #3B82F6;
  transition: width 0.5s ease;
  z-index: 1;
}
.okomarigoto-interactive-start .progress-container .progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.okomarigoto-interactive-start .progress-container .progress-steps .step {
  text-align: center;
  flex: 1;
  position: relative;
}
.okomarigoto-interactive-start .progress-container .progress-steps .step::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E5E7EB;
  z-index: -1;
}
.okomarigoto-interactive-start .progress-container .progress-steps .step.active::before {
  background: #3B82F6;
}
.okomarigoto-interactive-start .progress-container .progress-steps .step.completed::before {
  background: #10B981;
}
.okomarigoto-interactive-start .progress-container .progress-steps .step .step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: white;
  color: #6B7280;
  font-weight: bold;
  margin-bottom: 8px;
  border: 2px solid #E5E7EB;
}
.okomarigoto-interactive-start .progress-container .progress-steps .step.active .step-number {
  color: #3B82F6;
  border-color: #3B82F6;
}
.okomarigoto-interactive-start .progress-container .progress-steps .step.completed .step-number {
  color: #10B981;
  border-color: #10B981;
}
.okomarigoto-interactive-start .progress-container .progress-steps .step .step-label {
  display: block;
  font-size: 14px;
  color: #6B7280;
}
.okomarigoto-interactive-start .progress-container .progress-steps .step.active .step-label {
  color: #3B82F6;
  font-weight: bold;
}
.okomarigoto-interactive-start .progress-container .progress-steps .step.completed .step-label {
  color: #10B981;
}
.okomarigoto-interactive-start section {
  display: none;
  animation: fadeIn 0.5s ease;
}
.okomarigoto-interactive-start section.active {
  display: block;
}
.okomarigoto-interactive-start section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #1F2937;
}
.okomarigoto-interactive-start .industry-section .industry-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.okomarigoto-interactive-start .industry-section .industry-cards .industry-card {
  background: white;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.okomarigoto-interactive-start .industry-section .industry-cards .industry-card:hover {
  border-color: #3B82F6;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.1);
}
.okomarigoto-interactive-start .industry-section .industry-cards .industry-card i {
  font-size: 48px;
  color: #3B82F6;
  margin-bottom: 15px;
}
.okomarigoto-interactive-start .industry-section .industry-cards .industry-card h3 {
  font-size: 18px;
  color: #1F2937;
  margin-bottom: 8px;
}
.okomarigoto-interactive-start .industry-section .industry-cards .industry-card p {
  font-size: 14px;
  color: #6B7280;
}
.okomarigoto-interactive-start .problem-section .section-header {
  margin-bottom: 30px;
  text-align: center;
}
.okomarigoto-interactive-start .problem-section .section-header .back-btn {
  position: absolute;
  left: 20px;
  top: 0;
  background: none;
  border: none;
  color: #6B7280;
  cursor: pointer;
  font-size: 14px;
  padding: 8px 12px;
  transition: color 0.3s;
}
.okomarigoto-interactive-start .problem-section .section-header .back-btn:hover {
  color: #3B82F6;
}
.okomarigoto-interactive-start .problem-section .section-header .back-btn i {
  margin-right: 5px;
}
.okomarigoto-interactive-start .problem-section .problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.okomarigoto-interactive-start .problem-section .problem-cards .problem-card {
  background: white;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.okomarigoto-interactive-start .problem-section .problem-cards .problem-card:hover {
  border-color: #3B82F6;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(59, 130, 246, 0.1);
}
.okomarigoto-interactive-start .problem-section .problem-cards .problem-card h3 {
  font-size: 16px;
  color: #1F2937;
  margin-bottom: 15px;
  line-height: 1.5;
}
.okomarigoto-interactive-start .problem-section .problem-cards .problem-card .solution-preview p {
  font-size: 14px;
  color: #3B82F6;
  font-weight: 500;
}
.okomarigoto-interactive-start .solution-section .section-header {
  position: relative;
  margin-bottom: 30px;
}
.okomarigoto-interactive-start .solution-section .section-header .back-btn {
  position: absolute;
  left: 20px;
  top: 0;
  background: none;
  border: none;
  color: #6B7280;
  cursor: pointer;
  font-size: 14px;
  padding: 8px 12px;
  transition: color 0.3s;
}
.okomarigoto-interactive-start .solution-section .section-header .back-btn:hover {
  color: #3B82F6;
}
.okomarigoto-interactive-start .solution-section .current-problem {
  background: #F3F4F6;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.okomarigoto-interactive-start .solution-section .current-problem .problem-label {
  font-size: 18px;
  color: #1F2937;
  font-weight: 500;
}
.okomarigoto-interactive-start .solution-section .solution-container {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-header {
  text-align: center;
  margin-bottom: 30px;
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-header h3 {
  font-size: 20px;
  color: #1F2937;
  margin-bottom: 15px;
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-header .solution-title h4 {
  font-size: 24px;
  color: #3B82F6;
  margin-bottom: 8px;
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-header .solution-title .subtitle {
  font-size: 16px;
  color: #6B7280;
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-visual {
  background: #F9FAFB;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin-bottom: 30px;
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-visual .visual-placeholder i {
  font-size: 48px;
  color: #93C5FD;
  margin: 0 10px;
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-visual .visual-placeholder p {
  margin-top: 20px;
  color: #6B7280;
  font-size: 14px;
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-details .intro {
  font-size: 16px;
  color: #4B5563;
  margin-bottom: 25px;
  line-height: 1.6;
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-details .detail-points {
  margin-bottom: 30px;
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-details .detail-points .detail-item {
  padding: 12px 0;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: flex-start;
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-details .detail-points .detail-item:last-child {
  border-bottom: none;
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-details .detail-points .detail-item i {
  color: #10B981;
  margin-right: 10px;
  margin-top: 3px;
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-details .effects {
  background: #EFF6FF;
  border-radius: 10px;
  padding: 20px;
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-details .effects h4 {
  font-size: 18px;
  color: #1F2937;
  margin-bottom: 15px;
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-details .effects ul {
  list-style: none;
  padding: 0;
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-details .effects ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}
.okomarigoto-interactive-start .solution-section .solution-container .solution-details .effects ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3B82F6;
  font-weight: bold;
}
.okomarigoto-interactive-start .solution-section .solution-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.okomarigoto-interactive-start .solution-section .solution-navigation .nav-btn {
  background: white;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  padding: 12px 24px;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}
.okomarigoto-interactive-start .solution-section .solution-navigation .nav-btn:hover {
  border-color: #3B82F6;
  color: #3B82F6;
  background: #EFF6FF;
}
.okomarigoto-interactive-start .solution-section .solution-navigation .nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.okomarigoto-interactive-start .solution-section .cta-container {
  text-align: center;
  margin-top: 40px;
}
.okomarigoto-interactive-start .solution-section .cta-container .cta-btn {
  background: #3B82F6;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}
.okomarigoto-interactive-start .solution-section .cta-container .cta-btn:hover {
  background: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}
.okomarigoto-interactive-start .contact-section .section-header {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
.okomarigoto-interactive-start .contact-section .section-header .back-btn {
  position: absolute;
  left: 20px;
  top: 0;
  background: none;
  border: none;
  color: #6B7280;
  cursor: pointer;
  font-size: 14px;
  padding: 8px 12px;
}
.okomarigoto-interactive-start .contact-section .section-header .back-btn:hover {
  color: #3B82F6;
}
.okomarigoto-interactive-start .contact-section .contact-summary {
  background: #F9FAFB;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}
.okomarigoto-interactive-start .contact-section .contact-summary h3 {
  font-size: 18px;
  color: #1F2937;
  margin-bottom: 20px;
}
.okomarigoto-interactive-start .contact-section .contact-summary .summary-content p {
  margin-bottom: 10px;
  color: #4B5563;
}
.okomarigoto-interactive-start .contact-section .contact-summary .summary-content p strong {
  color: #1F2937;
  margin-right: 10px;
}
.okomarigoto-interactive-start .contact-section .contact-summary .summary-content p span {
  color: #3B82F6;
}
.okomarigoto-interactive-start .contact-section .contact-form-container {
  text-align: center;
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.okomarigoto-interactive-start .contact-section .contact-form-container p {
  font-size: 16px;
  color: #4B5563;
  margin-bottom: 30px;
}
.okomarigoto-interactive-start .contact-section .contact-form-container .contact-btn {
  display: inline-block;
  background: #10B981;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s;
}
.okomarigoto-interactive-start .contact-section .contact-form-container .contact-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .okomarigoto-interactive-start .progress-steps .step-label {
    font-size: 12px;
  }
  .okomarigoto-interactive-start .industry-cards {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
  }
  .okomarigoto-interactive-start .problem-cards {
    grid-template-columns: 1fr !important;
  }
  .okomarigoto-interactive-start .solution-navigation {
    flex-direction: column;
    gap: 10px;
  }
  .okomarigoto-interactive-start .solution-navigation .nav-btn {
    width: 100%;
  }
}
.recruit-page .recruit-main-visual {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/recruit/main-visual.jpg") center center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit-page .recruit-main-visual .visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.recruit-page .recruit-main-visual .visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 0 20px;
}
.recruit-page .recruit-main-visual .visual-content .main-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}
@media (max-width: 768px) {
  .recruit-page .recruit-main-visual .visual-content .main-title {
    font-size: 2.5rem;
  }
}
.recruit-page .recruit-main-visual .visual-content .main-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.2s both;
}
@media (max-width: 768px) {
  .recruit-page .recruit-main-visual .visual-content .main-subtitle {
    font-size: 1rem;
  }
}
.recruit-page .recruit-main-visual .visual-content .scroll-down {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: opacity 0.3s;
}
.recruit-page .recruit-main-visual .visual-content .scroll-down:hover {
  opacity: 0.7;
}
.recruit-page section {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .recruit-page section {
    padding: 60px 0;
  }
}
.recruit-page .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.recruit-page .section-header .section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #333;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .recruit-page .section-header .section-title {
    font-size: 2rem;
  }
}
.recruit-page .section-header .section-subtitle {
  font-size: 1rem;
  color: #888;
  letter-spacing: 0.1em;
}
.recruit-page .recruit-about {
  background: #f9f9f9;
}
.recruit-page .recruit-about .about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .recruit-page .recruit-about .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.recruit-page .recruit-about .about-content .about-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.recruit-page .recruit-about .about-content .about-text h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #667eea;
}
.recruit-page .recruit-about .about-content .about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}
.recruit-page .recruit-about .about-content .about-stats {
  display: grid;
  gap: 30px;
}
.recruit-page .recruit-about .about-content .about-stats .stat-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}
.recruit-page .recruit-about .about-content .about-stats .stat-item:hover {
  transform: translateY(-5px);
}
.recruit-page .recruit-about .about-content .about-stats .stat-item .stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 10px;
}
.recruit-page .recruit-about .about-content .about-stats .stat-item .stat-number small {
  font-size: 1rem;
  font-weight: 400;
}
.recruit-page .recruit-about .about-content .about-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: #888;
  letter-spacing: 0.05em;
}
.recruit-page .recruit-careers .positions-grid {
  display: grid;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.recruit-page .recruit-careers .position-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.recruit-page .recruit-careers .position-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.recruit-page .recruit-careers .position-card .position-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
}
.recruit-page .recruit-careers .position-card .position-header .position-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.recruit-page .recruit-careers .position-card .position-header .position-type {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}
.recruit-page .recruit-careers .position-card .position-content {
  padding: 40px;
}
.recruit-page .recruit-careers .position-card .position-content .position-item {
  margin-bottom: 35px;
}
.recruit-page .recruit-careers .position-card .position-content .position-item:last-child {
  margin-bottom: 0;
}
.recruit-page .recruit-careers .position-card .position-content .position-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.recruit-page .recruit-careers .position-card .position-content .position-item h4:before {
  content: "";
  width: 4px;
  height: 20px;
  background: #667eea;
  margin-right: 10px;
}
.recruit-page .recruit-careers .position-card .position-content .position-item ul {
  list-style: none;
  padding: 0;
}
.recruit-page .recruit-careers .position-card .position-content .position-item ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}
.recruit-page .recruit-careers .position-card .position-content .position-item ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}
.recruit-page .recruit-values {
  background: #f9f9f9;
}
.recruit-page .recruit-values .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.recruit-page .recruit-values .value-card {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 20px;
  transition: all 0.3s;
}
.recruit-page .recruit-values .value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.recruit-page .recruit-values .value-card .value-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit-page .recruit-values .value-card .value-icon i {
  font-size: 45px;
  color: white;
}
.recruit-page .recruit-values .value-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.recruit-page .recruit-values .value-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}
.recruit-page .recruit-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.recruit-page .recruit-benefits .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}
.recruit-page .recruit-benefits .benefit-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.recruit-page .recruit-benefits .benefit-item .benefit-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit-page .recruit-benefits .benefit-item .benefit-icon i {
  font-size: 28px;
  color: white;
}
.recruit-page .recruit-benefits .benefit-item .benefit-content {
  flex: 1;
}
.recruit-page .recruit-benefits .benefit-item .benefit-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.recruit-page .recruit-benefits .benefit-item .benefit-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}
.recruit-page .recruit-culture {
  background: #f9f9f9;
}
.recruit-page .recruit-culture .culture-list {
  max-width: 900px;
  margin: 0 auto;
}
.recruit-page .recruit-culture .culture-item {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  align-items: center;
}
.recruit-page .recruit-culture .culture-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.recruit-page .recruit-culture .culture-item .culture-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
}
.recruit-page .recruit-culture .culture-item .culture-content {
  flex: 1;
}
.recruit-page .recruit-culture .culture-item .culture-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.recruit-page .recruit-culture .culture-item .culture-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
}
@media (max-width: 768px) {
  .recruit-page .recruit-culture .culture-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
.recruit-page .recruit-apply {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}
.recruit-page .recruit-apply .section-header .section-title {
  color: white;
}
.recruit-page .recruit-apply .section-header .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.recruit-page .recruit-apply .apply-content {
  max-width: 800px;
  margin: 0 auto;
}
.recruit-page .recruit-apply .apply-content .apply-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 50px;
  opacity: 0.95;
}
.recruit-page .recruit-apply .apply-content .apply-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .recruit-page .recruit-apply .apply-content .apply-buttons {
    flex-direction: column;
    padding: 0 20px;
  }
}
.recruit-page .recruit-apply .apply-content .apply-buttons .btn-primary,
.recruit-page .recruit-apply .apply-content .apply-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 50px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}
.recruit-page .recruit-apply .apply-content .apply-buttons .btn-primary i,
.recruit-page .recruit-apply .apply-content .apply-buttons .btn-secondary i {
  font-size: 1.2rem;
}
.recruit-page .recruit-apply .apply-content .apply-buttons .btn-primary {
  background: white;
  color: #667eea;
}
.recruit-page .recruit-apply .apply-content .apply-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.recruit-page .recruit-apply .apply-content .apply-buttons .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.recruit-page .recruit-apply .apply-content .apply-buttons .btn-secondary:hover {
  background: white;
  color: #667eea;
}
.recruit-page .recruit-apply .apply-content .apply-note p {
  font-size: 0.95rem;
  opacity: 0.8;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-20px);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ===================================
   沿革セクション - History Timeline
   スクロール連動ストーリーテリング
   =================================== */
.icon-history {
  width: 45px;
}

.history-wrapper {
  background: linear-gradient(rgba(10, 20, 40, 0.92), rgba(15, 30, 50, 0.95));
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  position: relative;
}

.history-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-progress {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}
.timeline-progress .timeline-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #5BBFDE, #4db8ff);
  transform-origin: top;
  transform: scaleY(0);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  display: flex;
  padding: 16px 0;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.timeline-item.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-marker {
  position: absolute;
  left: 30px;
  top: 40px;
  transform: translateX(-50%);
  z-index: 10;
}
.timeline-marker .marker-dot {
  width: 20px;
  height: 20px;
  background: #5BBFDE;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 20px rgba(91, 191, 222, 0.5);
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.timeline-marker .marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(91, 191, 222, 0.3);
  opacity: 0;
}
.timeline-marker.is-active .marker-dot {
  transform: scale(1);
}
.timeline-marker.is-active .marker-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
.timeline-content {
  margin-left: 60px;
  max-width: calc(100% - 80px);
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease, transform 0.3s ease;
}
.timeline-content:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.timeline-date {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #5BBFDE;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.timeline-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
  line-height: 1.4;
}

.timeline-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.timeline-visual {
  margin-top: 10px;
}

/* 沿革の各項目に付けるイメージ画像（refs #692）。
   Lottie を使っていた2件も含め、7件で見た目を揃えるため画像に統一した。 */
.timeline-img {
  display: block;
  width: 100%;
  max-width: 420px;
  /* width/height 属性(1200x800)は CLS 対策で残しているが、
     属性由来の height が効くと縦800pxのまま描画されるため auto で打ち消す */
  height: auto;
  aspect-ratio: 3 / 2;
  /* 7件並ぶと縦に伸びすぎるため高さを抑える（refs #693）。
     object-fit: cover なので上限に当たった分は左右がトリミングされる */
  max-height: 92px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(10, 30, 60, 0.18);
  background: #eef4fb;
}

.lottie-container {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.lottie-fallback {
  display: none;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  opacity: 0.8;
}

.no-js .timeline-item {
  opacity: 1 !important;
  transform: none !important;
}
.no-js .timeline-progress-bar {
  transform: scaleY(1) !important;
}
.no-js .marker-dot {
  transform: scale(1) !important;
}
.no-js .lottie-container {
  display: none;
}
.no-js .lottie-fallback {
  display: block;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
history responsive - タブレット以上
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (min-width: 600px) {
  .icon-history {
    width: 60px;
  }
  .timeline-title {
    font-size: 20px;
  }
  .timeline-desc {
    font-size: 15px;
  }
  .lottie-container {
    width: 120px;
    height: 120px;
  }
  .lottie-fallback {
    width: 100px;
    height: 100px;
  }
} /* end media 600px */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
history responsive - PC（中央配置・左右交互）
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (min-width: 768px) {
  .history-timeline {
    padding: 60px 0;
  }
  .timeline-progress {
    left: 50%;
    transform: translateX(-50%);
  }
  .timeline-marker {
    left: 50%;
  }
  .timeline-item {
    justify-content: flex-start;
    transform: translateX(-50px);
  }
  .timeline-item.is-visible {
    transform: translateX(0);
  }
  .timeline-item .timeline-content {
    margin-left: calc(50% + 54px);
    margin-right: 20px;
    max-width: 380px;
  }
  .timeline-item:nth-child(even) {
    justify-content: flex-end;
    transform: translateX(50px);
  }
  .timeline-item:nth-child(even).is-visible {
    transform: translateX(0);
  }
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 20px;
    margin-right: calc(50% + 54px);
    text-align: right;
  }
  .timeline-item:nth-child(even) .timeline-visual {
    display: flex;
    justify-content: flex-end;
  }
  /* 左右交互に並ぶので、隣り合う項目を縦に重ねて全体の高さを詰める（refs #693）。
     重ねすぎると「1つ飛ばし＝同じ側」の項目どうしが衝突するため、
     項目の高さの半分を超えない範囲に留めている。 */
  .timeline-item + .timeline-item {
    margin-top: -185px;
  }
  .timeline-img {
    max-height: 130px;
  }
  .timeline-title {
    font-size: 22px;
  }
  .lottie-container {
    width: 140px;
    height: 140px;
  }
} /* end media 768px */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
history responsive - 大画面
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (min-width: 1024px) {
  .timeline-item .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    max-width: 420px;
  }
  .timeline-title {
    font-size: 24px;
  }
} /* end media 1024px */
.embedded-page {
  padding-top: 70px;
}

.embedded-page-new {
  padding-top: 70px;
}

.emb-hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.emb-hero .hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.emb-hero .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.emb-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.80) 0%, rgba(44, 82, 130, 0.72) 50%, rgba(0, 102, 204, 0.68) 100%);
}
.emb-hero .hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.emb-hero .hero-particles .particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: particleFloat 20s ease-in-out infinite;
}
.emb-hero .hero-particles .particle.p1 {
  width: 400px;
  height: 400px;
  background: #00a676;
  top: -100px;
  right: -100px;
}
.emb-hero .hero-particles .particle.p2 {
  width: 300px;
  height: 300px;
  background: #ff6b6b;
  bottom: -50px;
  left: 10%;
  animation-delay: -7s;
}
.emb-hero .hero-particles .particle.p3 {
  width: 200px;
  height: 200px;
  background: #fff;
  top: 40%;
  left: 30%;
  animation-delay: -14s;
}
.emb-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 900px;
}
.emb-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}
.emb-hero .hero-badge i {
  color: #00a676;
}
.emb-hero .hero-title {
  margin-bottom: 25px;
}
.emb-hero .hero-title .title-main {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.emb-hero .hero-title .title-sub {
  display: block;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 500;
  opacity: 0.9;
}
.emb-hero .hero-desc {
  font-size: 1.15rem;
  line-height: 1.9;
  opacity: 0.9;
  margin-bottom: 50px;
}
.emb-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.emb-hero .hero-stats .stat-item {
  text-align: center;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}
.emb-hero .hero-stats .stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}
.emb-hero .hero-stats .stat-item .stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #00a676;
  line-height: 1;
}
.emb-hero .hero-stats .stat-item .stat-unit {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00a676;
}
.emb-hero .hero-stats .stat-item .stat-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 8px;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}
.embedded-page-new .section-title {
  text-align: center;
  margin-bottom: 60px;
}
.embedded-page-new .section-title .title-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #0066cc;
  margin-bottom: 10px;
}
.embedded-page-new .section-title .title-ja {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #1a365d;
}

.emb-strengths {
  padding: 100px 20px;
  background: #f8fafc;
}
.emb-strengths .container {
  max-width: 1200px;
  margin: 0 auto;
}
.emb-strengths .strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.emb-strengths .strength-card {
  background: #fff;
  padding: 50px 35px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #0066cc;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.emb-strengths .strength-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.emb-strengths .strength-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.emb-strengths .strength-card:nth-child(1) {
  border-top-color: #0066cc;
}
.emb-strengths .strength-card:nth-child(2) {
  border-top-color: #00a676;
}
.emb-strengths .strength-card:nth-child(3) {
  border-top-color: #ff6b6b;
}
.emb-strengths .strength-card .strength-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #99ccff 0%, rgb(127.5, 191.25, 255) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.emb-strengths .strength-card .strength-icon i {
  font-size: 2rem;
  color: #0066cc;
}
.emb-strengths .strength-card:nth-child(2) .strength-icon {
  background: linear-gradient(135deg, rgb(115, 255, 214.5180722892) 0%, rgb(89.5, 255, 207.1445783133) 100%);
}
.emb-strengths .strength-card:nth-child(2) .strength-icon i {
  color: #00a676;
}
.emb-strengths .strength-card:nth-child(3) .strength-icon {
  background: linear-gradient(135deg, rgb(255, 234.5, 234.5) 0%, #ffd1d1 100%);
}
.emb-strengths .strength-card:nth-child(3) .strength-icon i {
  color: #ff6b6b;
}
.emb-strengths .strength-card:hover .strength-icon {
  transform: scale(1.1) rotate(5deg);
}
.emb-strengths .strength-card .strength-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
}
.emb-strengths .strength-card .strength-desc {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 25px;
}
.emb-strengths .strength-card .strength-points {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.emb-strengths .strength-card .strength-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: #2d3748;
  border-bottom: 1px solid #edf2f7;
}
.emb-strengths .strength-card .strength-points li:last-child {
  border-bottom: none;
}
.emb-strengths .strength-card .strength-points li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #00a676;
  font-size: 0.8rem;
}

.emb-techstack {
  padding: 100px 20px;
  background: #fff;
}
.emb-techstack .container {
  max-width: 1200px;
  margin: 0 auto;
}
.emb-techstack .techstack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.emb-techstack .tech-category {
  background: #f8fafc;
  border-radius: 16px;
  padding: 30px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.emb-techstack .tech-category.is-visible {
  opacity: 1;
  transform: scale(1);
}
.emb-techstack .tech-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.emb-techstack .tech-category .tech-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0066cc 0%, #00a676 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.emb-techstack .tech-category .tech-icon i {
  font-size: 1.3rem;
  color: #fff;
}
.emb-techstack .tech-category h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 20px;
}
.emb-techstack .tech-category .tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.emb-techstack .tech-category .tech-badge {
  padding: 8px 16px;
  background: #fff;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a365d;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.emb-techstack .tech-category .tech-badge:hover {
  background: #0066cc;
  color: #fff;
  transform: translateY(-2px);
}

.emb-process {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
}
.emb-process .container {
  max-width: 900px;
  margin: 0 auto;
}
.emb-process .section-title .title-en {
  color: rgba(255, 255, 255, 0.7);
}
.emb-process .section-title .title-ja {
  color: #fff;
}
.emb-process .process-timeline {
  position: relative;
  padding-left: 30px;
}
.emb-process .process-timeline::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.2);
}
.emb-process .process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.emb-process .process-step.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.emb-process .process-step:last-child {
  margin-bottom: 0;
}
.emb-process .process-step .step-number {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00a676 0%, rgb(0, 115, 81.7469879518) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 166, 118, 0.4);
  z-index: 2;
}
.emb-process .process-step .step-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
.emb-process .process-step .step-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.emb-process .process-step .step-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.emb-cases {
  padding: 100px 20px;
  background: #f8fafc;
}
.emb-cases .container {
  max-width: 1200px;
  margin: 0 auto;
}
.emb-cases .case-category {
  margin-bottom: 70px;
}
.emb-cases .case-category:last-child {
  margin-bottom: 0;
}
.emb-cases .category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.emb-cases .category-header.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.emb-cases .category-header .category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0066cc 0%, #00a676 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emb-cases .category-header .category-icon i {
  font-size: 1.5rem;
  color: #fff;
}
.emb-cases .category-header .category-info .category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 5px;
}
.emb-cases .category-header .category-info .category-desc {
  font-size: 0.95rem;
  color: #718096;
}
.emb-cases .cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.case-card-new {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.case-card-new.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.case-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.case-card-new:hover .card-image img {
  transform: scale(1.08);
}
.case-card-new:hover .card-overlay {
  opacity: 0.6;
}
.case-card-new .card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.case-card-new .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.case-card-new .card-image .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 54, 93, 0.8) 100%);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.case-card-new .card-image .card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a365d;
}
.case-card-new .card-content {
  padding: 25px;
}
.case-card-new .card-content .card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 12px;
  line-height: 1.4;
}
.case-card-new .card-content .card-desc {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;
}
.case-card-new .card-content .card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.case-card-new .card-content .card-tech span {
  padding: 5px 12px;
  background: #edf2f7;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4a5568;
  transition: all 0.3s ease;
}
.case-card-new .card-content .card-tech span:hover {
  background: #0066cc;
  color: #fff;
}

.emb-partner {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
}
.emb-partner .container {
  max-width: 900px;
  margin: 0 auto;
}
.emb-partner .partner-content {
  text-align: center;
}
.emb-partner .partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #00a676 0%, rgb(0, 115, 81.7469879518) 100%);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 166, 118, 0.3);
}
.emb-partner .partner-badge i {
  font-size: 1.1rem;
}
.emb-partner .partner-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #1a365d;
  margin-bottom: 25px;
}
.emb-partner .partner-desc {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 2;
  margin-bottom: 40px;
}
.emb-partner .partner-desc strong {
  color: #0066cc;
  font-weight: 700;
}
.emb-partner .partner-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.emb-partner .partner-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.emb-partner .partner-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.emb-partner .partner-feature i {
  font-size: 1.3rem;
  color: #0066cc;
}
.emb-partner .partner-feature span {
  font-weight: 600;
  color: #1a365d;
}

.emb-cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, rgb(0, 76.5, 153) 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.emb-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: ctaGlow 15s ease-in-out infinite;
}
.emb-cta .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.emb-cta .cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.emb-cta .cta-text {
  font-size: 1rem;
  line-height: 2;
  opacity: 0.9;
  margin-bottom: 40px;
}
.emb-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.emb-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.emb-cta .cta-button.primary {
  background: #00a676;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 166, 118, 0.4);
}
.emb-cta .cta-button.primary:hover {
  background: rgb(0, 140.5, 99.8734939759);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 166, 118, 0.5);
}
.emb-cta .cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.emb-cta .cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

@keyframes ctaGlow {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-5%, -5%);
  }
}
.embedded-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.embedded-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.embedded-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 40, 80, 0.85) 0%, rgba(0, 80, 120, 0.7) 100%);
  z-index: 2;
}
.embedded-hero .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.embedded-hero .hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.embedded-hero .hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  line-height: 2;
  opacity: 0.95;
}

.embedded-intro {
  padding: 80px 20px;
  background: #f8fafc;
  text-align: center;
}
.embedded-intro .section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a365d;
}
.embedded-intro .intro-text {
  font-size: 1rem;
  line-height: 2;
  color: #4a5568;
}

.embedded-cases {
  padding: 60px 20px 80px;
}
.embedded-cases .container {
  max-width: 1200px;
  margin: 0 auto;
}

.case-category {
  margin-bottom: 60px;
}
.case-category:last-child {
  margin-bottom: 0;
}
.case-category .category-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #3182ce;
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-category .category-title i {
  color: #3182ce;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.case-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.case-card .case-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.case-card .case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.case-card:hover .case-image img {
  transform: scale(1.05);
}
.case-card .case-content {
  padding: 20px;
}
.case-card .case-date {
  display: inline-block;
  font-size: 0.8rem;
  color: #3182ce;
  font-weight: 600;
  margin-bottom: 8px;
}
.case-card .case-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 12px;
  line-height: 1.4;
}
.case-card .case-desc {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 15px;
}
.case-card .case-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.case-card .case-tech li {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: #e2e8f0;
  color: #2d3748;
  border-radius: 20px;
  font-weight: 500;
}

.embedded-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  text-align: center;
  color: #fff;
}
.embedded-cta .cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.embedded-cta .cta-text {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 30px;
  opacity: 0.95;
}
.embedded-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: #fff;
  color: #1a365d;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.embedded-cta .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .emb-hero {
    min-height: auto;
    padding: 80px 20px;
  }
  .emb-hero .hero-stats {
    gap: 25px;
  }
  .emb-hero .hero-stats .stat-item {
    padding: 15px 20px;
  }
  .emb-strengths .strengths-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .emb-process .process-step {
    gap: 20px;
  }
  .emb-process .process-step .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .emb-hero {
    padding: 60px 20px;
  }
  .emb-hero .hero-title .title-main {
    font-size: 1.8rem;
  }
  .emb-hero .hero-desc {
    font-size: 1rem;
  }
  .emb-hero .hero-stats {
    gap: 15px;
  }
  .emb-hero .hero-stats .stat-item {
    padding: 12px 15px;
  }
  .emb-hero .hero-stats .stat-item .stat-number {
    font-size: 2rem;
  }
  .emb-hero .hero-stats .stat-item .stat-unit {
    font-size: 1rem;
  }
  .embedded-page-new .section-title {
    margin-bottom: 40px;
  }
  .emb-strengths,
  .emb-techstack,
  .emb-process,
  .emb-cases,
  .emb-partner,
  .emb-cta {
    padding: 60px 20px;
  }
  .emb-strengths .strength-card {
    padding: 35px 25px;
  }
  .emb-techstack .techstack-grid {
    grid-template-columns: 1fr;
  }
  .emb-process .process-timeline {
    padding-left: 0;
  }
  .emb-process .process-timeline::before {
    left: 30px;
  }
  .emb-process .process-step {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }
  .emb-process .process-step .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  .emb-process .process-step .step-content {
    padding: 20px;
    margin-left: 30px;
  }
  .emb-cases .cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .emb-partner .partner-title {
    font-size: 1.6rem;
  }
  .emb-partner .partner-desc {
    font-size: 0.95rem;
  }
  .emb-partner .partner-desc br {
    display: none;
  }
  .emb-partner .partner-features {
    gap: 15px;
  }
  .emb-partner .partner-feature {
    padding: 12px 20px;
  }
  .emb-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .embedded-hero {
    height: 50vh;
    min-height: 350px;
  }
  .embedded-intro {
    padding: 60px 20px;
  }
  .case-category .category-title {
    font-size: 1.2rem;
  }
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .embedded-cta {
    padding: 60px 20px;
  }
}
@media (max-width: 480px) {
  .emb-hero .hero-stats {
    flex-direction: column;
    align-items: center;
  }
  .emb-hero .hero-stats .stat-item {
    width: 100%;
    max-width: 200px;
  }
  .emb-strengths .strengths-grid {
    grid-template-columns: 1fr;
  }
  .case-card-new .card-content {
    padding: 20px;
  }
  .case-card-new .card-content .card-title {
    font-size: 1.05rem;
  }
}
.achievement-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.achievement-card-new {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100%;
  box-sizing: border-box;
}
.achievement-card-new:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.achievement-card-new:hover .card-image img {
  transform: scale(1.1);
}
.achievement-card-new:hover .card-overlay {
  opacity: 0.85;
}
.achievement-card-new:hover .card-content {
  transform: translateY(-5px);
}
.achievement-card-new:hover .card-title::after {
  width: 100%;
}
.achievement-card-new .card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  max-width: 100%;
}
.achievement-card-new .card-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateZ(0);
}
.achievement-card-new .card-image .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, var(--accent-color, #2196F3) 0%, transparent 100%);
  opacity: 0.6;
  transition: opacity 0.4s ease;
}
.achievement-card-new .card-content {
  padding: 24px;
  transition: transform 0.4s ease;
}
.achievement-card-new .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 12px;
  line-height: 1.4;
  position: relative;
  padding-bottom: 12px;
}
.achievement-card-new .card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color, #2196F3);
  transition: width 0.4s ease;
}
.achievement-card-new .card-desc {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.achievement-card-new .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.achievement-card-new .card-tags span {
  font-size: 0.75rem;
  padding: 4px 12px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  color: #2d3748;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.achievement-card-new:hover .card-tags span {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
}

@media (max-width: 768px) {
  .achievement-grid-new {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
  }
  .achievement-card-new {
    width: 100%;
    max-width: 100%;
  }
  .achievement-card-new .card-image {
    height: 180px;
    width: 100%;
  }
  .achievement-card-new .card-image img {
    width: 100%;
    max-width: 100%;
  }
  .achievement-card-new .card-content {
    padding: 20px;
  }
  .achievement-card-new .card-title {
    font-size: 1rem;
  }
  .achievement-card-new .card-desc {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .achievement-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}
.medical-reservation-page {
  padding-top: 70px;
}

.mr-hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  padding: 60px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #0066cc 100%);
}
.mr-hero .hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mr-hero .hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(0, 102, 204, 0.3) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(0, 166, 118, 0.2) 0%, transparent 50%);
}
.mr-hero .floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}
.mr-hero .floating-elements .float-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}
.mr-hero .floating-elements .float-circle.circle-1 {
  width: 400px;
  height: 400px;
  background: #00a676;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}
.mr-hero .floating-elements .float-circle.circle-2 {
  width: 300px;
  height: 300px;
  background: #ff6b6b;
  bottom: -50px;
  left: 10%;
  animation-delay: -7s;
}
.mr-hero .floating-elements .float-circle.circle-3 {
  width: 200px;
  height: 200px;
  background: #fff;
  top: 40%;
  left: 30%;
  animation-delay: -14s;
}
.mr-hero .hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 600px;
  padding-left: 5%;
  color: #fff;
}
.mr-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.mr-hero .hero-badge i {
  color: #00a676;
}
.mr-hero .hero-title {
  margin-bottom: 20px;
}
.mr-hero .hero-title .title-main {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}
.mr-hero .hero-title .title-sub {
  display: block;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  opacity: 0.9;
}
.mr-hero .hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 40px;
}
.mr-hero .hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.mr-hero .hero-stats .stat-item {
  text-align: center;
}
.mr-hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #00a676;
}
.mr-hero .hero-stats .stat-item .stat-label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
}
.mr-hero .hero-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mr-hero .phone-mockup {
  position: relative;
}
.mr-hero .phone-mockup .phone-frame {
  width: 280px;
  height: 560px;
  background: #111;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  animation: phoneFloat 6s ease-in-out infinite;
}
.mr-hero .phone-mockup .phone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}
.mr-hero .phone-mockup .phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mr-hero .phone-mockup .phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 166, 118, 0.4) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}
@keyframes phoneFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title .title-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #0066cc;
  margin-bottom: 10px;
}
.section-title .title-ja {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1a365d;
}

.mr-problem {
  padding: 100px 20px;
  background: #f8fafc;
}
.mr-problem .container {
  max-width: 1200px;
  margin: 0 auto;
}
.mr-problem .problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.mr-problem .problem-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #ff6b6b;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.mr-problem .problem-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.mr-problem .problem-card .problem-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, white 0%, #ffd1d1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mr-problem .problem-card .problem-icon i {
  font-size: 1.8rem;
  color: #ff6b6b;
}
.mr-problem .problem-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
}
.mr-problem .problem-card p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
}

.mr-solution {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0066cc 0%, #1a365d 100%);
  color: #fff;
  text-align: center;
}
.mr-solution .container {
  max-width: 800px;
  margin: 0 auto;
}
.mr-solution .section-title .title-en {
  color: rgba(255, 255, 255, 0.7);
}
.mr-solution .section-title .title-ja {
  color: #fff;
}
.mr-solution .solution-intro p {
  font-size: 1.1rem;
  line-height: 2;
}
.mr-solution .solution-intro p strong {
  color: #00a676;
  font-weight: 700;
}

.mr-features {
  padding: 100px 20px;
  background: #fff;
}
.mr-features .container {
  max-width: 1200px;
  margin: 0 auto;
}
.mr-features .feature-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.mr-features .feature-card {
  display: flex;
  background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.mr-features .feature-card.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.mr-features .feature-card:nth-child(even) {
  transform: translateX(50px);
}
.mr-features .feature-card:nth-child(even).is-visible {
  transform: translateX(0);
}
.mr-features .feature-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.mr-features .feature-card .feature-number {
  flex-shrink: 0;
  width: 120px;
  background: linear-gradient(135deg, #0066cc 0%, #1a365d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
}
.mr-features .feature-card .feature-content {
  flex: 1;
  padding: 40px;
}
.mr-features .feature-card .feature-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}
.mr-features .feature-card .feature-icon-wrapper .icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0066cc 0%, #00a676 100%);
  border-radius: 16px;
  transform: rotate(-10deg);
  opacity: 0.2;
}
.mr-features .feature-card .feature-icon-wrapper i {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  color: #0066cc;
  line-height: 60px;
}
.mr-features .feature-card .feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
}
.mr-features .feature-card .feature-desc {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 25px;
}
.mr-features .feature-card .feature-comparison {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.mr-features .feature-card .feature-comparison .comparison-item {
  text-align: center;
}
.mr-features .feature-card .feature-comparison .comparison-item .label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.mr-features .feature-card .feature-comparison .comparison-item .text {
  font-size: 0.9rem;
  font-weight: 600;
}
.mr-features .feature-card .feature-comparison .comparison-item.before .label {
  color: #718096;
}
.mr-features .feature-card .feature-comparison .comparison-item.before .text {
  color: #ff6b6b;
}
.mr-features .feature-card .feature-comparison .comparison-item.after .label {
  color: #00a676;
}
.mr-features .feature-card .feature-comparison .comparison-item.after .text {
  color: #00a676;
}
.mr-features .feature-card .feature-comparison .comparison-arrow i {
  color: #0066cc;
  font-size: 1.2rem;
}
.mr-features .feature-card .notification-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.mr-features .feature-card .notification-examples .notif-example {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a365d;
}
.mr-features .feature-card .notification-examples .notif-example i {
  color: #0066cc;
}

.mr-architecture {
  padding: 100px 20px;
  background: #f8fafc;
}
.mr-architecture .container {
  max-width: 1000px;
  margin: 0 auto;
}
.mr-architecture .architecture-diagram {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mr-architecture .arch-layer {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.mr-architecture .arch-layer.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.mr-architecture .arch-layer h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 20px;
}
.mr-architecture .arch-layer h4 i {
  color: #0066cc;
}
.mr-architecture .arch-layer .arch-items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.mr-architecture .arch-layer .arch-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: #f8fafc;
  border-radius: 10px;
  font-weight: 500;
  color: #1a365d;
  transition: all 0.3s ease;
}
.mr-architecture .arch-layer .arch-item:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
}
.mr-architecture .arch-layer .arch-item i {
  font-size: 1.3rem;
  color: #0066cc;
}
.mr-architecture .arch-layer.patient-layer {
  border-left: 4px solid #00a676;
}
.mr-architecture .arch-layer.server-layer {
  border-left: 4px solid #0066cc;
}
.mr-architecture .arch-layer.hospital-layer {
  border-left: 4px solid #ff6b6b;
}
.mr-architecture .arch-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
}
.mr-architecture .arch-connector .connector-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0066cc, transparent);
}
.mr-architecture .arch-connector .connector-label {
  font-size: 0.8rem;
  color: #718096;
  white-space: nowrap;
}

.mr-techstack {
  padding: 100px 20px;
  background: #fff;
}
.mr-techstack .container {
  max-width: 1000px;
  margin: 0 auto;
}
.mr-techstack .tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.mr-techstack .tech-category {
  background: #f8fafc;
  border-radius: 16px;
  padding: 30px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.mr-techstack .tech-category.is-visible {
  opacity: 1;
  transform: scale(1);
}
.mr-techstack .tech-category h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 20px;
}
.mr-techstack .tech-category h4 i {
  color: #0066cc;
}
.mr-techstack .tech-category .tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mr-techstack .tech-category .tech-badge {
  padding: 8px 16px;
  background: #fff;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a365d;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mr-cases {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
}
.mr-cases .container {
  max-width: 900px;
  margin: 0 auto;
}
.mr-cases .cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.mr-cases .case-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.mr-cases .case-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.mr-cases .case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.mr-cases .case-card .case-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #0066cc 0%, #00a676 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mr-cases .case-card .case-icon i {
  font-size: 2rem;
  color: #fff;
}
.mr-cases .case-card .case-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 10px;
}
.mr-cases .case-card .case-location {
  font-size: 0.9rem;
  color: #718096;
  margin-bottom: 15px;
}
.mr-cases .case-card .case-location i {
  color: #ff6b6b;
  margin-right: 5px;
}
.mr-cases .case-card .case-desc {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;
}
.mr-cases .case-card .case-status .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
}
.mr-cases .case-card .case-status .status-badge.running {
  background: linear-gradient(135deg, rgb(115, 255, 214.5180722892) 0%, rgb(89.5, 255, 207.1445783133) 100%);
  color: rgb(0, 115, 81.7469879518);
}
.mr-cases .case-card .case-status .status-badge.running i {
  color: #00a676;
}

.mr-benefits {
  padding: 100px 20px;
  background: #fff;
}
.mr-benefits .container {
  max-width: 1000px;
  margin: 0 auto;
}
.mr-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}
.mr-benefits .benefit-item {
  padding: 40px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.mr-benefits .benefit-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.mr-benefits .benefit-item.patient {
  background: linear-gradient(135deg, rgb(178.5, 216.75, 255) 0%, #99ccff 100%);
}
.mr-benefits .benefit-item.patient h4 i {
  color: #0066cc;
}
.mr-benefits .benefit-item.hospital {
  background: linear-gradient(135deg, rgb(140.5, 255, 221.8915662651) 0%, rgb(115, 255, 214.5180722892) 100%);
}
.mr-benefits .benefit-item.hospital h4 i {
  color: #00a676;
}
.mr-benefits .benefit-item h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 25px;
}
.mr-benefits .benefit-item h4 i {
  font-size: 1.4rem;
}
.mr-benefits .benefit-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mr-benefits .benefit-item ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 1rem;
  color: #2d3748;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.mr-benefits .benefit-item ul li:last-child {
  border-bottom: none;
}
.mr-benefits .benefit-item ul li i {
  color: #00a676;
  font-size: 0.9rem;
}

.mr-cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  text-align: center;
  color: #fff;
}
.mr-cta .container {
  max-width: 800px;
  margin: 0 auto;
}
.mr-cta .cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.mr-cta .cta-text {
  font-size: 1rem;
  line-height: 2;
  opacity: 0.9;
  margin-bottom: 40px;
}
.mr-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.mr-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mr-cta .cta-button.primary {
  background: #00a676;
  color: #fff;
}
.mr-cta .cta-button.primary:hover {
  background: rgb(0, 140.5, 99.8734939759);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 166, 118, 0.4);
}
.mr-cta .cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.mr-cta .cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .mr-hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .mr-hero .hero-content {
    padding-left: 0;
    max-width: 100%;
    margin-bottom: 40px;
  }
  .mr-hero .hero-stats {
    justify-content: center;
  }
  .mr-hero .phone-mockup .phone-frame {
    width: 220px;
    height: 440px;
  }
  .mr-features .feature-card {
    flex-direction: column;
  }
  .mr-features .feature-card .feature-number {
    width: 100%;
    height: 80px;
  }
}
@media (max-width: 768px) {
  .mr-hero {
    min-height: auto;
  }
  .mr-hero .hero-title .title-main {
    font-size: 1.8rem;
  }
  .mr-hero .hero-stats {
    gap: 20px;
  }
  .mr-hero .hero-stats .stat-item .stat-number {
    font-size: 2rem;
  }
  .section-title {
    margin-bottom: 40px;
  }
  .mr-problem,
  .mr-features,
  .mr-architecture,
  .mr-techstack,
  .mr-cases,
  .mr-benefits,
  .mr-cta {
    padding: 60px 20px;
  }
  .mr-features .feature-card .feature-content {
    padding: 25px;
  }
  .mr-features .feature-card .feature-comparison {
    flex-direction: column;
    gap: 10px;
  }
  .mr-features .feature-card .feature-comparison .comparison-arrow i {
    transform: rotate(90deg);
  }
  .mr-architecture .arch-layer .arch-items {
    flex-direction: column;
  }
  .mr-architecture .arch-layer .arch-items .arch-item {
    width: 100%;
    justify-content: center;
  }
  .mr-cases .cases-grid {
    grid-template-columns: 1fr;
  }
  .mr-benefits .benefits-grid {
    grid-template-columns: 1fr;
  }
  .mr-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
共通パンくず（fixed header 直下に配置する）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.site-breadcrumb {
  margin-top: 50px; /* fixed header の高さ分 (SP) */
  background: #f8f9fb;
  border-bottom: 1px solid #e9ecef;
  padding: 10px 0;
  font-size: 13px;
  color: #6b7280;
}
.site-breadcrumb .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.site-breadcrumb .breadcrumb-list li + li::before {
  content: "/";
  color: #d1d5db;
  margin-right: 6px;
}
.site-breadcrumb a {
  color: #3AA8CC;
  text-decoration: none;
}
.site-breadcrumb a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 800px) {
  .site-breadcrumb {
    margin-top: 70px; /* fixed header の高さ分 (PC) */
  }
}
