@charset "UTF-8";
.fade-in {
  opacity: 0;
}
.fade-in.is-visible {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-in {
  opacity: 0;
  transform: translateX(-30px);
}
.slide-in.is-visible {
  animation: slideIn 0.6s ease forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  /*background: $bk-base;*/
  background: rgba(240, 239, 236, 0.05);
  backdrop-filter: blur(4px);
  /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
  z-index: 100;
  transition: all 0.3s ease;
}
@media screen and (max-width: 480px) {
  .site-header {
    height: 60px;
  }
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 15.145631068px + 1.2944983819vw, 40px);
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-size: clamp(20px, 18.0582524272px + 0.5177993528vw, 28px);
  font-weight: bold;
}
.site-logo .custom-logo-link {
  display: block;
}
.site-logo .custom-logo-link img {
  max-width: 280px;
  height: auto;
  width: auto;
  max-height: 60px;
}
@media screen and (max-width: 480px) {
  .site-logo .custom-logo-link img {
    max-width: 200px;
    max-height: 40px;
  }
}
.site-logo a {
  color: #121213;
  transition: opacity 0.3s ease;
}
.site-logo a:hover {
  opacity: 0.7;
}

.main-navigation {
  display: flex;
  align-items: center;
}
.main-navigation ul > li {
  position: relative;
}
.main-navigation ul > li.menu-item-has-children > a {
  position: relative;
}
.main-navigation ul > li.menu-item-has-children > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: fit-content;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 999;
  border-radius: 4px;
  width: fit-content;
}
.main-navigation ul > li.menu-item-has-children > .sub-menu li {
  list-style: none;
  border-bottom: 1px solid #eee;
}
.main-navigation ul > li.menu-item-has-children > .sub-menu li:last-child {
  border-bottom: none;
}
.main-navigation ul > li.menu-item-has-children > .sub-menu li a {
  display: block;
  padding: clamp(12px, 11.0291262136px + 0.2588996764vw, 16px) clamp(20px, 19.0291262136px + 0.2588996764vw, 24px);
  color: #121213;
  font-size: clamp(14px, 13.7572815534px + 0.0647249191vw, 15px);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.main-navigation ul > li.menu-item-has-children > .sub-menu li a:hover {
  background: inherit;
  color: #487893;
  /*padding-left: fn.clamp-px(24, 28);*/
  border-radius: 4px;
}
.main-navigation ul > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .main-navigation ul > li.menu-item-has-children > a::after {
    display: none;
  }
  .main-navigation ul > li.menu-item-has-children > .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.05);
    margin-left: clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
    margin-top: 0;
  }
}

.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(24px, 20.1165048544px + 1.0355987055vw, 40px);
}
@media screen and (max-width: 768px) {
  .nav-menu {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.7);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 20px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(4px);
  }
}
@media screen and (min-width: 769px) {
  .nav-menu {
    display: flex;
  }
}
.nav-menu li a {
  color: #121213;
  font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  display: block;
  margin: 6px 0;
  width: fit-content;
}
.nav-menu li a:hover {
  opacity: 1;
}
.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #487893;
  transition: width 0.3s ease;
}
.nav-menu li a:hover::after {
  width: 100%;
}
.nav-menu li#menu-item-189 {
  cursor: default;
}
.nav-menu li#menu-item-189 a::after {
  background: unset;
}

.menu-toggle {
  display: block;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
  z-index: 101;
}
@media screen and (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #121213;
  transition: all 0.3s ease;
}
.menu-toggle span:nth-child(1) {
  top: 6px;
}
.menu-toggle span:nth-child(2) {
  top: 14px;
}
.menu-toggle span:nth-child(3) {
  top: 22px;
}
.menu-toggle[aria-expanded=true] span:nth-child(1) {
  transform: rotate(45deg);
  top: 14px;
}
.menu-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded=true] span:nth-child(3) {
  transform: rotate(-45deg);
  top: 14px;
}

.main-navigation.is-open .nav-menu {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}
body.menu-open .site-header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-main {
  padding-top: 80px;
  min-height: calc(100vh - 80px);
}
@media screen and (max-width: 480px) {
  .site-main {
    padding-top: 60px;
    min-height: calc(100vh - 60px);
  }
}

.footer {
  background-color: #F1F0EE;
  color: #121213;
}
.footer .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 60px clamp(20px, 15.145631068px + 1.2944983819vw, 40px) 30px;
  margin: auto;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .footer .inner {
    flex-direction: column;
    gap: 40px;
  }
}
.footer .footer-box {
  flex: 1;
  min-width: 260px;
}
.footer .footer-box.footer-left .footer-logo {
  margin-bottom: 20px;
}
.footer .footer-box.footer-left .footer-logo a {
  display: block;
  width: fit-content;
}
.footer .footer-box.footer-left .footer-logo img {
  max-width: 150px;
  height: auto;
}
.footer .footer-box.footer-left .office_ads_area {
  display: flex;
  gap: 0 6%;
}
@media screen and (max-width: 768px) {
  .footer .footer-box.footer-left .office_ads_area {
    flex-direction: column;
    gap: 20px 0;
  }
}
.footer .footer-box.footer-left .office_ads_area .office_ads {
  max-width: 250px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .footer .footer-box.footer-left .office_ads_area .office_ads {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0 3%;
    align-items: center;
  }
  .footer .footer-box.footer-left .office_ads_area .office_ads img {
    width: min(246px, 36%);
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .footer .footer-box.footer-left .office_ads_area .office_ads img {
    width: min(246px, 29%);
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-box.footer-left .office_ads_area .office_ads p {
    width: 100%;
  }
}
.footer .footer-box.footer-left .office_ads_area .office_ads p span {
  font-size: clamp(7.8px, 6.6349514563px + 0.3106796117vw, 12.6px);
}
.footer .footer-box.footer-left address {
  font-style: normal;
  font-size: clamp(11px, 10.2718446602px + 0.1941747573vw, 14px);
  margin-top: 6px;
}
.footer .footer-box.footer-left address .map_btn {
  color: #fff;
  border: 1px solid #8B8D8E;
  border-radius: 50px;
  background: #8B8D8E;
  text-decoration: none;
  padding: 2px 8px 2px 11px;
  margin-top: 5px;
  display: inline-block;
  transition: all 0.3s ease;
}
.footer .footer-box.footer-left address .map_btn:hover {
  background: #fff;
  color: #8B8D8E;
  border-color: #8B8D8E;
  opacity: 1;
  background-color: transparent;
}
.footer .footer-box.footer-right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .footer-box.footer-right .footer-right:last-of-type {
  align-items: flex-end;
}
.footer .footer-box.footer-right .footer-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .footer .footer-box.footer-right .footer-title:last-of-type {
    display: none;
  }
}
.footer .footer-box.footer-right .btn_policy {
  text-align: right;
}
.footer .footer-box.footer-right .footer-widget-badges {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(10px, 7.572815534px + 0.6472491909vw, 20px);
  flex-wrap: wrap;
  margin-bottom: clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
}
@media screen and (max-width: 768px) {
  .footer .footer-box.footer-right .footer-widget-badges {
    gap: clamp(10px, 8.786407767px + 0.3236245955vw, 15px);
    margin-bottom: clamp(15px, 13.786407767px + 0.3236245955vw, 20px);
  }
}
@media screen and (max-width: 480px) {
  .footer .footer-box.footer-right .footer-widget-badges {
    gap: clamp(8px, 7.0291262136px + 0.2588996764vw, 12px);
  }
}
.footer .footer-box.footer-right .footer-widget-badge {
  flex: 0 0 auto;
}
.footer .footer-box.footer-right .footer-widget-badge img {
  height: auto;
  display: block;
}
.footer .footer-box.footer-right .footer-widget-badge img[alt*=LINE] {
  max-width: clamp(35px, 32.572815534px + 0.6472491909vw, 45px);
}
@media screen and (max-width: 768px) {
  .footer .footer-box.footer-right .footer-widget-badge img[alt*=LINE] {
    max-width: clamp(28px, 26.3009708738px + 0.4530744337vw, 35px);
  }
}
.footer .footer-box.footer-right .footer-widget-badge img[alt*=ホワイト企業] {
  max-width: clamp(45px, 42.572815534px + 0.6472491909vw, 55px);
}
@media screen and (max-width: 768px) {
  .footer .footer-box.footer-right .footer-widget-badge img[alt*=ホワイト企業] {
    max-width: clamp(38px, 36.3009708738px + 0.4530744337vw, 45px);
  }
}
.footer .footer-box.footer-right .footer-widget-badge img[alt*=セキュリティ] {
  max-width: clamp(50px, 47.572815534px + 0.6472491909vw, 60px);
}
@media screen and (max-width: 768px) {
  .footer .footer-box.footer-right .footer-widget-badge img[alt*=セキュリティ] {
    max-width: clamp(42px, 40.0582524272px + 0.5177993528vw, 50px);
  }
}
.footer .footer-box.footer-right .footer-widget-badge img[alt*=パートナーシップ] {
  max-width: clamp(70px, 66.359223301px + 0.9708737864vw, 85px);
}
@media screen and (max-width: 768px) {
  .footer .footer-box.footer-right .footer-widget-badge img[alt*=パートナーシップ] {
    max-width: clamp(60px, 57.572815534px + 0.6472491909vw, 70px);
  }
}
.footer .footer-box.footer-right .footer-widget {
  width: 50%;
}
.footer .footer-box.footer-right .footer-widget:last-of-type {
  width: 100%;
  margin-top: 10%;
}
.footer .footer-box.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px 0;
  flex-direction: column;
}
@media screen and (max-width: 480px) {
  .footer .footer-box.footer-right ul {
    margin-bottom: 15px;
  }
}
.footer .footer-box.footer-right ul.sub-menu {
  gap: 0;
  margin-bottom: 0;
}
.footer .footer-box.footer-right ul.sub-menu li {
  min-width: 120px;
}
.footer .footer-box.footer-right ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
  width: 31%;
}
.footer .footer-box.footer-right ul li::before {
  position: absolute;
  content: "-";
  left: 0;
  font-size: clamp(12px, 11.5145631068px + 0.1294498382vw, 14px);
}
.footer .footer-box.footer-right ul li#menu-item-313 {
  margin-bottom: 0;
}
.footer .footer-box.footer-right ul li#menu-item-313 > a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  cursor: default;
}
.footer .footer-box.footer-right ul li a {
  color: #121213;
  text-decoration: none;
}
.footer .footer-box.footer-right ul li a:hover {
  text-decoration: underline;
  opacity: 1;
}
.footer .footer-box.footer-right .btn_policy a {
  display: inline-flex;
  align-items: center;
  color: #8B8D8E; /* 通常時の色 */
  transition: 0.3s ease;
  border: 1px solid #8B8D8E;
  padding: 12px 24px;
  border-radius: 50px;
  background: transparent;
}
.footer .footer-box.footer-right .btn_policy a:hover {
  opacity: 1;
  background: #8B8D8E;
  color: #F1F0EE;
}
.footer .footer-box.footer-right .btn_policy a svg {
  width: clamp(80px, 60.5825242718px + 5.1779935275vw, 160px);
  height: auto;
}
.footer .footer-box.footer-right a {
  color: #121213;
  text-decoration: none;
}
.footer .footer-box.footer-right a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 480px) {
  .footer .footer-box.footer-right {
    flex-direction: column;
  }
}
.footer .footer-bottom {
  width: 100%;
  text-align: center;
  padding: 12.5px 0;
  font-size: 12px;
  color: #fff;
  background: #8B8D8E;
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .footer-box {
    width: 100%;
  }
  .footer .footer-bottom {
    padding-top: 20px;
  }
}

.footer-contact {
  padding: clamp(80px, 70.2912621359px + 2.5889967638vw, 120px) 0;
  background-color: #E1E8EB;
}
@media screen and (max-width: 768px) {
  .footer-contact {
    padding: clamp(60px, 55.145631068px + 1.2944983819vw, 80px) 0;
  }
}
.footer-contact .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-contact-title {
  margin: 0 auto clamp(50px, 45.145631068px + 1.2944983819vw, 70px);
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .footer-contact-title {
    /*font-size: fn.clamp-px(28, 32);*/
    margin-bottom: clamp(35px, 31.359223301px + 0.9708737864vw, 50px);
  }
}
.footer-contact-title svg {
  width: min(250px, 87%);
}

.footer-txt {
  color: #707070;
  margin: 0 0 clamp(50px, 45.145631068px + 1.2944983819vw, 70px);
}
@media screen and (max-width: 768px) {
  .footer-txt {
    margin-bottom: clamp(35px, 31.359223301px + 0.9708737864vw, 50px);
    letter-spacing: 0.1em;
  }
}

.footer-contact-buttons {
  display: flex;
  gap: clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer-contact-buttons {
    flex-direction: column;
    gap: clamp(16px, 15.0291262136px + 0.2588996764vw, 20px);
    max-width: 300px;
  }
}

.footer-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 11.0291262136px + 0.2588996764vw, 16px);
  padding: clamp(20px, 19.0291262136px + 0.2588996764vw, 24px) clamp(40px, 37.572815534px + 0.6472491909vw, 50px);
  text-decoration: none;
  font-size: clamp(16px, 15.5145631068px + 0.1294498382vw, 18px);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  flex: 1;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .footer-contact-btn {
    padding: clamp(18px, 17.5145631068px + 0.1294498382vw, 20px) clamp(30px, 27.572815534px + 0.6472491909vw, 40px);
    font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  }
}
.footer-contact-btn--primary {
  background-color: #6B7B7B;
  color: #fff;
}
.footer-contact-btn--primary:hover {
  background-color: rgb(83.2739130435, 95.7260869565, 95.7260869565);
  transform: translateY(-2px);
}
.footer-contact-btn--secondary {
  background-color: #6B7B7B;
  color: #fff;
}
.footer-contact-btn--secondary:hover {
  background-color: rgb(83.2739130435, 95.7260869565, 95.7260869565);
  transform: translateY(-2px);
}
.footer-contact-btn .btn-arrow {
  transition: transform 0.3s ease;
}
.footer-contact-btn:hover .btn-arrow {
  transform: translateX(4px);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  animation: fadeIn 0.25s ease;
  font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  line-height: 1.7;
  letter-spacing: 0.18em;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif, "メイリオ", Meiryo, sans-serif;
  color: #121213;
  background: #F0EFEC;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.5s;
}

a:hover {
  opacity: 0.3;
}

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

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.margin-auto {
  margin: auto;
}

.relative {
  position: relative;
  z-index: 0;
}

.br_pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

.br_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br_sp {
    display: block;
  }
}

.br_sp480 {
  display: none;
}
@media screen and (max-width: 480px) {
  .br_sp480 {
    display: block;
  }
}

.br_1360 {
  display: none;
}
@media screen and (max-width: 1036px) {
  .br_1360 {
    display: block;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px) clamp(10px, 7.572815534px + 0.6472491909vw, 20px);
}

.page-content h1,
.single-post h1 {
  font-size: clamp(28px, 25.0873786408px + 0.7766990291vw, 40px);
  margin-bottom: clamp(20px, 15.145631068px + 1.2944983819vw, 40px);
  font-weight: bold;
  line-height: 1.4;
}
.page-content .content h2,
.single-post .content h2 {
  font-size: clamp(24px, 22.0582524272px + 0.5177993528vw, 32px);
  margin: clamp(30px, 25.145631068px + 1.2944983819vw, 50px) 0 clamp(16px, 14.0582524272px + 0.5177993528vw, 24px);
  font-weight: bold;
}
.page-content .content h3,
.single-post .content h3 {
  font-size: clamp(20px, 18.5436893204px + 0.3883495146vw, 26px);
  margin: clamp(24px, 20.1165048544px + 1.0355987055vw, 40px) 0 clamp(12px, 10.0582524272px + 0.5177993528vw, 20px);
  font-weight: bold;
}
.page-content .content p,
.single-post .content p {
  margin-bottom: clamp(16px, 14.0582524272px + 0.5177993528vw, 24px);
}
.page-content .content ul, .page-content .content ol,
.single-post .content ul,
.single-post .content ol {
  margin-bottom: clamp(16px, 14.0582524272px + 0.5177993528vw, 24px);
  padding-left: clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
}
.page-content .content li,
.single-post .content li {
  margin-bottom: clamp(8px, 7.0291262136px + 0.2588996764vw, 12px);
}

.archive-list {
  list-style: none;
  padding: 0;
}
.archive-list li {
  padding: clamp(12px, 11.0291262136px + 0.2588996764vw, 16px) 0;
  border-bottom: 1px solid rgba(139, 141, 142, 0.2);
}
.archive-list li:first-child {
  padding-top: 0;
}
.archive-list li a {
  display: block;
  font-size: clamp(16px, 15.5145631068px + 0.1294498382vw, 18px);
}
.archive-list li a:hover {
  color: #004a99;
  opacity: 1;
}

.btn-wrapper {
  text-align: center;
  margin-bottom: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
}

.btn-glow-hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 12px 80px 12px 60px;
  background: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #121213;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  border: none;
  cursor: pointer;
}
.btn-glow-hover:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
  opacity: 1;
}
.btn-glow-hover .btn-text {
  z-index: 2;
  position: relative;
  letter-spacing: 0.05em;
  font-weight: 600;
  display: inline-flex;
  gap: 0.05em;
}
.btn-glow-hover .btn-text span {
  display: inline-block;
}
.btn-glow-hover .btn-glow-area {
  position: absolute;
  right: 20px;
  width: 25px;
  height: 25px;
  pointer-events: none;
  margin-left: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, #b1cbd9 0%, #8CB5CB 100%);
  overflow: hidden;
}
.btn-glow-hover .btn-glow-follower {
  position: absolute;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, #e4b38b, #C5C0B6);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.2s ease-out;
  filter: blur(4px);
  opacity: 1;
  left: 0;
  top: 0;
  z-index: 1;
}

.page-header {
  background: #F0EFEC;
  padding: clamp(120px, 110.2912621359px + 2.5889967638vw, 160px) 0 0;
}
@media screen and (max-width: 480px) {
  .page-header {
    padding: clamp(100px, 95.145631068px + 1.2944983819vw, 120px) 0 0;
  }
}
.page-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 15.145631068px + 1.2944983819vw, 40px);
}
.page-header .page-title {
  opacity: 0;
  font-size: clamp(40px, 34.1747572816px + 1.5533980583vw, 64px);
  font-weight: 400;
  color: #121213;
  text-align: center;
  letter-spacing: 0.06em;
  margin: 0 0 clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
}
@media screen and (max-width: 768px) {
  .page-header .page-title {
    margin-bottom: clamp(40px, 35.145631068px + 1.2944983819vw, 60px);
  }
}

.page-hero {
  position: relative;
  width: 100%;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  /*margin-bottom: fn.clamp-px(80, 120);*/
  overflow: hidden;
}
.page-hero .page-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.h2 {
  position: absolute;
  bottom: clamp(120px, 100.5825242718px + 5.1779935275vw, 200px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  max-width: 1400px;
  width: min(100% - clamp(40px, 30.2912621359px + 2.5889967638vw, 80px), 1400px);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .h2 {
    padding: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px) clamp(6px, 2.6019417476px + 0.9061488673vw, 20px);
  }
}
@media screen and (max-width: 768px) {
  .h2 {
    width: fit-content;
    position: absolute;
    left: clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
    bottom: clamp(140px, 125.4368932039px + 3.8834951456vw, 200px);
    transform: none;
  }
}
@media screen and (max-width: 480px) {
  .h2 {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  #business01 .h2 {
    bottom: clamp(220px, 152.0388349515px + 18.1229773463vw, 500px);
  }
}
@media screen and (max-width: 480px) {
  #business01 .h2 {
    bottom: clamp(160px, 4.6601941748px + 41.4239482201vw, 800px);
  }
}

@media screen and (max-width: 768px) {
  #business02 .h2 {
    bottom: clamp(110px, 61.4563106796px + 12.9449838188vw, 310px);
  }
}

.page-hero-title {
  width: fit-content;
  font-size: clamp(20px, 15.145631068px + 1.2944983819vw, 40px);
  font-weight: 500;
  letter-spacing: 0.05em;
  background: rgba(131, 137, 130, 0.7);
  color: #fff;
  padding: clamp(12px, 11.0291262136px + 0.2588996764vw, 16px) clamp(24px, 22.0582524272px + 0.5177993528vw, 32px);
  margin: 0;
  z-index: 2;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .page-hero-title {
    font-size: clamp(18px, 17.5145631068px + 0.1294498382vw, 20px);
    padding: clamp(8px, 7.0291262136px + 0.2588996764vw, 12px) clamp(16px, 14.0582524272px + 0.5177993528vw, 24px);
  }
}
.page-hero-title span {
  margin-right: clamp(12px, 11.0291262136px + 0.2588996764vw, 16px);
  opacity: 0.8;
}

.page-hero-text {
  position: absolute;
  left: 50%;
  bottom: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
  transform: translateX(-50%);
  max-width: 1400px;
  width: min(100% - clamp(40px, 30.2912621359px + 2.5889967638vw, 80px), 1400px);
  margin-inline: auto;
  color: #121213;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .page-hero-text {
    padding: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px) clamp(6px, 2.6019417476px + 0.9061488673vw, 20px);
  }
}
@media screen and (max-width: 768px) {
  .page-hero-text {
    position: absolute;
    left: clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
    bottom: clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
    transform: none;
  }
}
@media screen and (max-width: 480px) {
  .page-hero-text {
    padding: 0;
  }
}
.page-hero-text .page-hero-lead {
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin: 0 0 clamp(6px, 5.0291262136px + 0.2588996764vw, 10px);
  font-size: clamp(18px, 16.3009708738px + 0.4530744337vw, 25px);
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .page-hero-text .page-hero-lead {
    font-weight: 700;
    margin: 0 0 clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
    font-size: clamp(17px, 16.7572815534px + 0.0647249191vw, 18px);
    letter-spacing: 0.15em;
    filter: drop-shadow(0px 0px 1px #fff);
  }
}
.page-hero-text .page-hero-desc {
  font-size: clamp(15px, 14.2718446602px + 0.1941747573vw, 18px);
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.02em;
  filter: drop-shadow(0px 0px 1px #fff);
}
@media screen and (max-width: 480px) {
  .page-hero-text .page-hero-desc {
    font-size: clamp(13px, 12.5145631068px + 0.1294498382vw, 15px);
  }
}

#business01 .page-hero-text {
  bottom: clamp(20px, 5.4368932039px + 3.8834951456vw, 80px);
}
@media screen and (max-width: 768px) {
  #business01 .page-hero-text {
    bottom: clamp(-20px, -20px + 0vw, -20px);
    bottom: clamp(80px, -21.9417475728px + 27.1844660194vw, 500px);
  }
}
@media screen and (max-width: 480px) {
  #business01 .page-hero-text {
    bottom: clamp(40px, -144.4660194175px + 49.1909385113vw, 800px);
  }
}

.page-hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.page-hero-logo {
  font-size: clamp(32px, 28.1165048544px + 1.0355987055vw, 48px);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .page-hero-logo {
    font-size: clamp(24px, 22.0582524272px + 0.5177993528vw, 32px);
  }
}

.section-header {
  opacity: 0;
  text-align: center;
  margin-bottom: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
}
@media screen and (max-width: 768px) {
  .section-header {
    margin-bottom: clamp(40px, 35.145631068px + 1.2944983819vw, 60px);
  }
}

.section-title {
  font-size: clamp(28px, 25.0873786408px + 0.7766990291vw, 40px);
  font-weight: 500;
  color: #121213;
  letter-spacing: 0.05em;
  margin: 0 0 clamp(8px, 7.0291262136px + 0.2588996764vw, 12px);
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: clamp(24px, 23.0291262136px + 0.2588996764vw, 28px);
  }
}

.section-subtitle {
  font-size: clamp(12px, 11.5145631068px + 0.1294498382vw, 14px);
  color: #999;
  letter-spacing: 0.1em;
  margin: 0;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?yh4p2y");
  src: url("../fonts/icomoon.eot?yh4p2y#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?yh4p2y") format("truetype"), url("../fonts/icomoon.woff?yh4p2y") format("woff"), url("../fonts/icomoon.svg?yh4p2y#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-icon_check:before {
  content: "\e900";
  color: #324b55;
}

.icon-icon_q .path1:before {
  content: "\e901";
  color: rgb(185, 185, 185);
}

.icon-icon_q .path2:before {
  content: "\e902";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.page-hero {
  aspect-ratio: 1920/840;
}
@media screen and (max-width: 768px) {
  .page-hero {
    aspect-ratio: 480/270;
  }
}
.page-hero img,
.page-hero .page-hero-image {
  width: 100%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}

@media screen and (max-width: 768px) {
  main[id^=business] .page-hero {
    aspect-ratio: 480/408;
  }
}

/* JavaScript無効時のフォールバック */
.no-js .page-title,
.no-js .section-header {
  opacity: 1;
  transform: translateY(0);
}

.business02-intro {
  padding: clamp(80px, 70.2912621359px + 2.5889967638vw, 120px) 0;
  background: #F0F4F6;
  position: relative;
  overflow: hidden;
}
.business02-intro::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 15%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url("");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .business02-intro::before {
    background-size: contain;
    width: 150%;
    left: 0;
    top: 70%;
  }
}
@media screen and (max-width: 768px) {
  .business02-intro {
    padding: clamp(60px, 55.145631068px + 1.2944983819vw, 80px) 0;
  }
}
.business02-intro .container {
  max-width: 1400px;
  width: min(100% - clamp(40px, 30.2912621359px + 2.5889967638vw, 80px), 1400px);
  margin-inline: auto;
  position: relative;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .business02-intro .container {
    padding: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px) clamp(6px, 2.6019417476px + 0.9061488673vw, 20px);
  }
}

.intro-main .intro-content {
  position: relative;
  z-index: 0;
  margin-bottom: clamp(300px, 275.7281553398px + 6.4724919094vw, 400px);
}
@media screen and (max-width: 768px) {
  .intro-main .intro-content {
    margin-bottom: clamp(100px, 100px + 0vw, 100px);
  }
}
.intro-main .intro-content .content-main {
  display: flex;
  align-items: center;
  gap: clamp(20px, -18.8349514563px + 10.355987055vw, 180px);
  justify-content: end;
}
@media screen and (max-width: 768px) {
  .intro-main .intro-content .content-main {
    flex-direction: column;
    gap: clamp(30px, 27.572815534px + 0.6472491909vw, 40px);
  }
}
.intro-main .intro-content .intro-img-pc {
  flex: 0 0 auto;
  width: clamp(150px, 65.0485436893px + 22.6537216828vw, 500px);
}
@media screen and (max-width: 768px) {
  .intro-main .intro-content .intro-img-pc {
    display: none;
  }
}
.intro-main .intro-content .intro-text {
  width: min(480px, 53%);
}
@media screen and (max-width: 768px) {
  .intro-main .intro-content .intro-text {
    order: 1;
    width: min(480px, 100%);
    margin-bottom: 50px;
  }
}
.intro-main .intro-content .intro-text .text-title {
  font-size: clamp(24px, 22.0582524272px + 0.5177993528vw, 32px);
  font-weight: 500;
  color: #121213;
  line-height: 1.6;
  margin: 0 0 clamp(30px, 27.572815534px + 0.6472491909vw, 40px);
  text-align: right;
}
@media screen and (max-width: 768px) {
  .intro-main .intro-content .intro-text .text-title {
    font-size: clamp(20px, 18.5436893204px + 0.3883495146vw, 26px);
  }
}
.intro-main .intro-content .intro-text .text-title .title-highlight {
  background: rgba(255, 255, 255, 0.8);
  padding: 0 clamp(4px, 3.0291262136px + 0.2588996764vw, 8px);
  display: inline-block;
  font-size: 120%;
}
.intro-main .intro-content .intro-text .text-desc {
  font-size: clamp(16px, 15.5145631068px + 0.1294498382vw, 18px);
  color: #666;
  line-height: 2;
  margin: 0;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .intro-main .intro-content .intro-text .text-desc {
    font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
    line-height: 1.9;
  }
}
@media screen and (max-width: 768px) {
  .intro-main .intro-content .intro-absolute-images {
    display: none;
  }
}
.intro-main .intro-content .intro-absolute-images .intro-img-phone {
  position: absolute;
  bottom: clamp(-150px, -116.0194174757px + -9.0614886731vw, -290px);
  left: -20px;
  width: clamp(180px, 112.0388349515px + 18.1229773463vw, 460px);
  z-index: -1;
  height: auto;
}
.intro-main .intro-content .intro-absolute-images .intro-img-phone img {
  width: 100%;
  height: auto;
}
.intro-main .intro-content .intro-absolute-images .intro-img-app {
  position: absolute;
  right: clamp(60px, 69.7087378641px + -2.5889967638vw, 20px);
  width: clamp(200px, 139.3203883495px + 16.1812297735vw, 450px);
  z-index: 1;
  bottom: max(-430px, -130%);
}
.intro-main .intro-content .intro-img-sp-all {
  display: none;
}
@media screen and (max-width: 768px) {
  .intro-main .intro-content .intro-img-sp-all {
    display: block;
    margin-top: clamp(30px, 27.572815534px + 0.6472491909vw, 40px);
    text-align: center;
  }
  .intro-main .intro-content .intro-img-sp-all img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
  }
}

.business02-flow {
  padding: clamp(80px, 70.2912621359px + 2.5889967638vw, 120px) 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .business02-flow {
    padding: clamp(60px, 55.145631068px + 1.2944983819vw, 80px) 0;
  }
}
.business02-flow .container {
  max-width: 1400px;
  width: min(100% - clamp(40px, 30.2912621359px + 2.5889967638vw, 80px), 1400px);
  margin-inline: auto;
  position: relative;
  max-width: 1600px;
  width: min(100% - clamp(40px, 30.2912621359px + 2.5889967638vw, 80px), 1600px);
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .business02-flow .container {
    padding: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px) clamp(6px, 2.6019417476px + 0.9061488673vw, 20px);
  }
}

.flow-header {
  text-align: center;
  margin-bottom: clamp(40px, 35.145631068px + 1.2944983819vw, 60px);
}
.flow-header .flow-title {
  font-size: clamp(28px, 26.0582524272px + 0.5177993528vw, 36px);
  font-weight: 600;
  color: #121213;
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .flow-header .flow-title {
    font-size: clamp(22px, 20.5436893204px + 0.3883495146vw, 28px);
    line-height: 1.5;
  }
}

.flow-heading {
  text-align: center;
  margin-bottom: clamp(50px, 45.145631068px + 1.2944983819vw, 70px);
}
.flow-heading .flow-heading-text {
  font-family: "Outfit", sans-serif;
  font-size: clamp(36px, 33.0873786408px + 0.7766990291vw, 48px);
  font-weight: 400;
  color: #4A7FA7;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .flow-heading .flow-heading-text {
    font-size: clamp(32px, 30.0582524272px + 0.5177993528vw, 40px);
  }
}
.flow-heading .flow-heading-sub {
  display: inline-block;
  padding: clamp(8px, 7.0291262136px + 0.2588996764vw, 12px) clamp(24px, 22.0582524272px + 0.5177993528vw, 32px);
  border: 2px solid #4A7FA7;
  border-radius: 30px;
  color: #4A7FA7;
  font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .flow-heading .flow-heading-sub {
    font-size: clamp(13px, 12.5145631068px + 0.1294498382vw, 15px);
    padding: clamp(6px, 5.0291262136px + 0.2588996764vw, 10px) clamp(20px, 18.0582524272px + 0.5177993528vw, 28px);
  }
}

.flow-steps-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: clamp(50px, 45.145631068px + 1.2944983819vw, 70px);
  margin: 0 clamp(-40px, -30.2912621359px + -2.5889967638vw, -80px);
  padding: clamp(36px, 35.0291262136px + 0.2588996764vw, 40px) 0 clamp(22px, 21.0291262136px + 0.2588996764vw, 26px) clamp(18px, 17.5145631068px + 0.1294498382vw, 20px);
}
@media screen and (max-width: 768px) {
  .flow-steps-wrapper {
    margin: 0 clamp(-20px, -17.572815534px + -0.6472491909vw, -30px);
    padding: clamp(33px, 32.2718446602px + 0.1941747573vw, 36px) 0 clamp(18px, 17.0291262136px + 0.2588996764vw, 22px) clamp(15px, 14.2718446602px + 0.1941747573vw, 18px);
  }
}
.flow-steps-wrapper::-webkit-scrollbar {
  height: 6px;
}
.flow-steps-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.flow-steps-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.business02-flow .scrolldown4 {
  display: none;
}
@media (max-width: 1300px) {
  .business02-flow .scrolldown4 {
    display: block;
    position: relative;
    width: fit-content;
    left: 0;
    bottom: -20px;
    color: #999;
    letter-spacing: 0.02em;
    animation: arrowmove 2s ease-in-out 0s infinite;
  }
  .business02-flow .scrolldown4 span {
    font-size: 9px;
  }
  .business02-flow .scrolldown4 span::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 1px;
    background: #999;
    top: 3px;
  }
  .business02-flow .scrolldown4 span::after {
    position: absolute;
    content: "";
    width: 12px;
    height: 1px;
    background: #999;
    right: -100%;
    transform: rotate(35deg);
    top: 3px;
    transform-origin: right;
  }
}

@keyframes arrowmove {
  0% {
    left: 0;
  }
  50% {
    left: 15px;
  }
  100% {
    left: 0;
  }
}
.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 11.786407767px + 0.3236245955vw, 18px);
  min-width: fit-content;
  padding-right: clamp(18px, 17.5145631068px + 0.1294498382vw, 20px);
}
@media (max-width: 1600px) {
  .flow-steps {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .flow-steps {
    padding-right: clamp(15px, 14.2718446602px + 0.1941747573vw, 18px);
  }
}

.flow-step {
  flex: 0 0 auto;
  background: #fff;
  padding: clamp(50px, 47.572815534px + 0.6472491909vw, 60px) 4px clamp(10px, 7.572815534px + 0.6472491909vw, 20px);
  text-align: center;
  min-width: clamp(180px, 175.145631068px + 1.2944983819vw, 200px);
  filter: drop-shadow(0px 4px 6px #ddd);
  position: relative;
  height: 100%;
  aspect-ratio: 47/53;
}
@media screen and (max-width: 768px) {
  .flow-step {
    padding: clamp(45px, 43.786407767px + 0.3236245955vw, 50px) 4px clamp(8px, 7.5145631068px + 0.1294498382vw, 10px);
    min-width: 170px;
  }
}
.flow-step .step-number {
  font-family: "Outfit", sans-serif;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #D8E3EA;
  border-radius: 50%;
  width: clamp(60px, 57.572815534px + 0.6472491909vw, 70px);
  height: clamp(60px, 57.572815534px + 0.6472491909vw, 70px);
  justify-content: center;
  margin: 0 auto clamp(20px, 18.786407767px + 0.3236245955vw, 25px);
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
}
@media screen and (max-width: 768px) {
  .flow-step .step-number {
    width: clamp(55px, 52.572815534px + 0.6472491909vw, 65px);
    height: clamp(55px, 52.572815534px + 0.6472491909vw, 65px);
    margin-bottom: clamp(15px, 13.786407767px + 0.3236245955vw, 20px);
  }
}
.flow-step .step-number .step-label {
  font-size: clamp(10px, 9.5145631068px + 0.1294498382vw, 12px);
  color: #4A7FA7;
  font-weight: 500;
  line-height: 1;
}
.flow-step .step-number .step-num {
  font-size: clamp(20px, 19.0291262136px + 0.2588996764vw, 24px);
  color: #4A7FA7;
  font-weight: 600;
  line-height: 1;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .flow-step .step-number .step-num {
    font-size: clamp(18px, 17.0291262136px + 0.2588996764vw, 22px);
  }
}
.flow-step .step-icon {
  margin-bottom: clamp(20px, 18.786407767px + 0.3236245955vw, 25px);
  height: clamp(60px, 57.572815534px + 0.6472491909vw, 70px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .flow-step .step-icon {
    height: clamp(50px, 47.572815534px + 0.6472491909vw, 60px);
    margin-bottom: clamp(15px, 13.786407767px + 0.3236245955vw, 20px);
  }
}
.flow-step .step-icon img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.flow-step .step-title {
  font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  font-weight: 500;
  color: #487894;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .flow-step .step-title {
    font-size: clamp(13px, 12.5145631068px + 0.1294498382vw, 15px);
  }
}

.flow-arrow {
  flex: 0 0 auto;
  width: clamp(40px, 37.572815534px + 0.6472491909vw, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .flow-arrow {
    width: clamp(20px, 15.145631068px + 1.2944983819vw, 40px);
  }
}
.flow-arrow img {
  width: 100%;
  height: auto;
}

.flow-description {
  max-width: 1000px;
  margin: clamp(50px, 45.145631068px + 1.2944983819vw, 70px) auto 0;
}
.flow-description p {
  font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  color: #666;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .flow-description p {
    font-size: clamp(13px, 12.5145631068px + 0.1294498382vw, 15px);
    line-height: 1.7;
  }
  .flow-description p br {
    display: none;
  }
}

.business02-inhouse {
  padding: clamp(80px, 70.2912621359px + 2.5889967638vw, 120px) 0;
  background: #EEF2F3;
}
@media screen and (max-width: 768px) {
  .business02-inhouse {
    padding: clamp(60px, 55.145631068px + 1.2944983819vw, 80px) 0;
  }
}
.business02-inhouse .container {
  max-width: 1400px;
  width: min(100% - clamp(40px, 30.2912621359px + 2.5889967638vw, 80px), 1400px);
  margin-inline: auto;
  position: relative;
  max-width: 1600px;
  width: min(100% - clamp(40px, 30.2912621359px + 2.5889967638vw, 80px), 1600px);
}
@media screen and (max-width: 768px) {
  .business02-inhouse .container {
    padding: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px) clamp(6px, 2.6019417476px + 0.9061488673vw, 20px);
  }
}

.inhouse-header {
  text-align: center;
  margin-bottom: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
}
.inhouse-header .inhouse-title {
  font-size: clamp(28px, 26.0582524272px + 0.5177993528vw, 36px);
  font-weight: 600;
  color: #121213;
  margin: 0 0 clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
}
@media screen and (max-width: 768px) {
  .inhouse-header .inhouse-title {
    font-size: clamp(22px, 20.5436893204px + 0.3883495146vw, 28px);
    letter-spacing: 0.05em;
  }
}
.inhouse-header .inhouse-subtitle {
  font-size: clamp(18px, 17.0291262136px + 0.2588996764vw, 22px);
  color: #121213;
  line-height: 1.8;
  margin: 0;
  text-decoration: underline;
  text-underline-offset: 6px;
}
@media screen and (max-width: 768px) {
  .inhouse-header .inhouse-subtitle {
    font-size: clamp(22px, 22px + 0vw, 22px);
  }
}
.inhouse-header .inhouse-subtitle .dotted {
  position: relative;
  display: inline;
}
.inhouse-header .inhouse-subtitle .dotted::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 43%;
  width: 20%;
  height: auto;
  background: #688391;
  border-radius: 50%;
  aspect-ratio: 1/1;
  transform: translateX(-50%);
}

.inhouse-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, 4.0776699029px + 2.9126213592vw, 60px);
  margin: 0 auto clamp(80px, 75.145631068px + 1.2944983819vw, 100px);
  max-width: 1400px;
  width: min(100% - clamp(40px, 30.2912621359px + 2.5889967638vw, 80px), 1400px);
}
@media screen and (max-width: 768px) {
  .inhouse-points {
    grid-template-columns: 1fr;
    gap: clamp(30px, 25.145631068px + 1.2944983819vw, 50px);
    margin-bottom: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
  }
}

.inhouse-point {
  background: #fff;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(30px, 27.572815534px + 0.6472491909vw, 40px);
  position: relative;
  z-index: 0;
}
.inhouse-point::before {
  content: "";
  position: absolute;
  width: 85%;
  height: 85%;
  background: linear-gradient(145deg, #FDFDFD, #EFF4F4);
  box-shadow: 0 4px 20px rgba(47, 80, 80, 0.18);
  border-radius: 50%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .inhouse-point {
    width: min(300px, 100%);
    margin: 0 auto;
    padding: clamp(40px, 37.572815534px + 0.6472491909vw, 50px);
  }
}
.inhouse-point h3 {
  font-size: clamp(14px, 12.5436893204px + 0.3883495146vw, 20px);
  font-weight: 400;
  color: #121213;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .inhouse-point h3 {
    font-size: clamp(18px, 17.5145631068px + 0.1294498382vw, 20px);
  }
}
.inhouse-point h3 .highlight {
  color: #487893;
  font-weight: 600;
  font-size: 125%;
}

.inhouse-process {
  background: #fff;
  border-radius: 20px;
  padding: clamp(40px, 35.145631068px + 1.2944983819vw, 60px) clamp(30px, 25.145631068px + 1.2944983819vw, 50px) clamp(30px, 27.572815534px + 0.6472491909vw, 40px);
  margin-bottom: clamp(40px, 35.145631068px + 1.2944983819vw, 60px);
}
@media screen and (max-width: 768px) {
  .inhouse-process {
    padding: clamp(30px, 27.572815534px + 0.6472491909vw, 40px) clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
    border-radius: 16px;
  }
}
.inhouse-process .process-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .inhouse-process .process-header {
    gap: 0;
    flex-wrap: wrap;
  }
}
.inhouse-process .process-header img {
  width: min(460px, 50%);
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .inhouse-process .process-header img {
    width: min(320px, 70%);
  }
}
@media screen and (max-width: 480px) {
  .inhouse-process .process-header img {
    width: min(270px, 85%);
  }
}
.inhouse-process .process-header .process-step {
  font-weight: 500;
  font-size: clamp(16px, 15.0291262136px + 0.2588996764vw, 20px);
  padding: 0 clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
}
@media screen and (max-width: 768px) {
  .inhouse-process .process-header .process-step {
    padding: 0 clamp(10px, 7.572815534px + 0.6472491909vw, 20px);
  }
}
.inhouse-process .process-text {
  text-align: center;
  font-size: clamp(16px, 15.0291262136px + 0.2588996764vw, 20px);
  color: #121213;
  line-height: 1.6;
  margin-top: clamp(15px, 13.786407767px + 0.3236245955vw, 20px);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .inhouse-process .process-text {
    margin-top: 0;
  }
}
.inhouse-process .team-image {
  margin: clamp(30px, 27.572815534px + 0.6472491909vw, 40px) auto;
  width: min(1000px, 80%);
}
.inhouse-process .team-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .inhouse-process .team-image {
    width: min(1000px, 85%);
  }
}
.inhouse-process .team-description p {
  font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  color: #666;
  line-height: 1.8;
  margin: 0 auto;
  width: min(1000px, 90%);
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .inhouse-process .team-description p {
    font-size: clamp(13px, 12.5145631068px + 0.1294498382vw, 15px);
    line-height: 1.7;
    width: min(1000px, 95%);
  }
  .inhouse-process .team-description p br {
    display: none;
  }
}

.business02-comparison {
  padding: clamp(80px, 70.2912621359px + 2.5889967638vw, 120px) 0;
  background: #F6F6F6;
}
@media screen and (max-width: 768px) {
  .business02-comparison {
    padding: clamp(60px, 55.145631068px + 1.2944983819vw, 80px) 0;
  }
}
.business02-comparison .container {
  max-width: 1400px;
  width: min(100% - clamp(40px, 30.2912621359px + 2.5889967638vw, 80px), 1400px);
  margin-inline: auto;
  position: relative;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .business02-comparison .container {
    padding: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px) clamp(6px, 2.6019417476px + 0.9061488673vw, 20px);
  }
}

.comparison-header {
  text-align: center;
  margin-bottom: clamp(50px, 45.145631068px + 1.2944983819vw, 70px);
}
.comparison-header .comparison-title {
  font-size: clamp(28px, 26.0582524272px + 0.5177993528vw, 36px);
  font-weight: 600;
  color: #121213;
  line-height: 1.6;
  margin: 0 0 clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
}
@media screen and (max-width: 768px) {
  .comparison-header .comparison-title {
    font-size: clamp(22px, 20.5436893204px + 0.3883495146vw, 28px);
    line-height: 1.5;
  }
}
.comparison-header .comparison-subtitle {
  font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  color: #666;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 700px;
}
@media screen and (max-width: 768px) {
  .comparison-header .comparison-subtitle {
    font-size: clamp(13px, 12.5145631068px + 0.1294498382vw, 15px);
    line-height: 1.7;
    text-align: justify;
  }
  .comparison-header .comparison-subtitle br {
    display: none;
  }
}

.comparison-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 768px) {
  .comparison-table {
    margin: 0 clamp(-10px, -8.786407767px + -0.3236245955vw, -15px);
    padding-bottom: 10px;
  }
}
.comparison-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 600px;
}
@media screen and (max-width: 480px) {
  .comparison-table table {
    min-width: 550px;
  }
}
.comparison-table thead th {
  padding: clamp(16px, 15.0291262136px + 0.2588996764vw, 20px) clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  background: #E8F2F6;
}
@media screen and (max-width: 768px) {
  .comparison-table thead th {
    padding: clamp(12px, 11.0291262136px + 0.2588996764vw, 16px) clamp(10px, 7.572815534px + 0.6472491909vw, 20px);
    font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  }
}
.comparison-table thead th.empty-cell {
  background: #F6F6F6;
  position: sticky;
  left: 0;
  z-index: 3;
}
.comparison-table thead th.company-mixcase {
  background: #4A7FA7;
  color: white;
  font-size: clamp(18px, 17.5145631068px + 0.1294498382vw, 20px);
  border-bottom: 5px solid #f6f6f6;
  border-right: 5px solid #f6f6f6;
}
@media screen and (max-width: 768px) {
  .comparison-table thead th.company-mixcase {
    font-size: clamp(16px, 15.5145631068px + 0.1294498382vw, 18px);
  }
}
.comparison-table thead th.company-a, .comparison-table thead th.company-b {
  background: #D8E4E8;
  color: #121213;
  font-size: clamp(18px, 17.5145631068px + 0.1294498382vw, 20px);
  border-bottom: 5px solid #f6f6f6;
  border-right: 5px solid #f6f6f6;
}
@media screen and (max-width: 768px) {
  .comparison-table thead th.company-a, .comparison-table thead th.company-b {
    font-size: clamp(16px, 15.5145631068px + 0.1294498382vw, 18px);
  }
}
.comparison-table tbody tr td {
  padding: clamp(20px, 18.786407767px + 0.3236245955vw, 25px) clamp(16px, 15.0291262136px + 0.2588996764vw, 20px);
  text-align: center;
  vertical-align: middle;
  border-bottom: 5px solid #F6F6F6;
  border-right: 5px solid #F6F6F6;
  line-height: 1.5;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .comparison-table tbody tr td {
    padding: clamp(16px, 15.0291262136px + 0.2588996764vw, 20px) clamp(10px, 8.5436893204px + 0.3883495146vw, 16px);
    font-size: clamp(13px, 12.5145631068px + 0.1294498382vw, 15px);
  }
}
.comparison-table tbody tr td.row-header {
  background: #D8E4E8;
  font-weight: 600;
  color: #487893;
  text-align: center;
  font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  width: 120px;
  border-right: unset;
  position: sticky;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .comparison-table tbody tr td.row-header {
    font-size: clamp(13px, 12.7572815534px + 0.0647249191vw, 14px);
    width: 100px;
  }
}
.comparison-table tbody tr td.row-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  width: 5px;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.1), transparent);
  pointer-events: none;
}
.comparison-table tbody tr td.highlight-cell {
  background: #EBF4F9;
  font-weight: 500;
  position: relative;
  border-right: unset;
}
.comparison-table tbody tr td.highlight-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid #4A7FA7;
  pointer-events: none;
}
.comparison-table tbody tr td.highlight-cell.green {
  color: #4A7FA7;
  font-weight: 600;
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.business02-comparison .scrolldown4 {
  display: none;
}
@media (max-width: 620px) {
  .business02-comparison .scrolldown4 {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    color: #999;
    letter-spacing: 0.02em;
    animation: arrowmove 1.5s ease-in-out 0s infinite;
  }
  .business02-comparison .scrolldown4 span {
    font-size: 9px;
  }
  .business02-comparison .scrolldown4 span::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 1px;
    background: #999;
    top: 3px;
  }
  .business02-comparison .scrolldown4 span::after {
    position: absolute;
    content: "";
    width: 12px;
    height: 1px;
    background: #999;
    right: -100%;
    transform: rotate(35deg);
    top: 3px;
    transform-origin: right;
  }
}

.business02-risk {
  padding: clamp(80px, 70.2912621359px + 2.5889967638vw, 120px) 0;
  background: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .business02-risk {
    padding: clamp(60px, 55.145631068px + 1.2944983819vw, 80px) 0;
  }
}
.business02-risk .container {
  max-width: 1400px;
  width: min(100% - clamp(40px, 30.2912621359px + 2.5889967638vw, 80px), 1400px);
  margin-inline: auto;
  position: relative;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .business02-risk .container {
    padding: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px) clamp(6px, 2.6019417476px + 0.9061488673vw, 20px);
  }
}

.risk-header {
  text-align: center;
  margin-bottom: clamp(40px, 35.145631068px + 1.2944983819vw, 60px);
}
.risk-header .risk-title {
  font-size: clamp(24px, 22.0582524272px + 0.5177993528vw, 32px);
  font-weight: 500;
  color: #121213;
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .risk-header .risk-title {
    font-size: clamp(20px, 19.0291262136px + 0.2588996764vw, 24px);
    line-height: 1.7;
  }
}
@media screen and (max-width: 768px) {
  .risk-header .risk-title {
    letter-spacing: 0.05em;
  }
}
.risk-header .risk-title .underline {
  position: relative;
  display: inline-block;
}
.risk-header .risk-title .underline::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #121213;
}
.risk-header .risk-title .underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #121213;
}

.risk-bubble-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
  margin-bottom: clamp(50px, 45.145631068px + 1.2944983819vw, 70px);
}
@media screen and (max-width: 480px) {
  .risk-bubble-container {
    flex-direction: column;
    gap: clamp(15px, 13.786407767px + 0.3236245955vw, 20px);
  }
}

.risk-bubble {
  background: #FFFFFF;
  border: 2px solid #324A56;
  border-radius: 10px;
  padding: clamp(15px, 13.786407767px + 0.3236245955vw, 20px) clamp(30px, 27.572815534px + 0.6472491909vw, 40px);
  font-size: clamp(16px, 15.5145631068px + 0.1294498382vw, 18px);
  color: #324A56;
  position: relative;
}
@media screen and (max-width: 768px) {
  .risk-bubble {
    font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
    padding: clamp(12px, 11.0291262136px + 0.2588996764vw, 16px) clamp(24px, 22.0582524272px + 0.5177993528vw, 32px);
  }
}
.risk-bubble::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #fff;
  right: -9px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  /* transform-origin: bottom; */
  border-top: 2px solid #324A56;
  border-right: 2px solid #324A56;
}

.risk-arrow {
  font-size: clamp(16px, 15.5145631068px + 0.1294498382vw, 18px);
  color: #121213;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .risk-arrow {
    font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  }
}

.risk-checklist {
  background: rgba(216, 226, 234, 0.67);
  border-radius: 12px;
  padding: clamp(40px, 37.572815534px + 0.6472491909vw, 50px) clamp(40px, 35.145631068px + 1.2944983819vw, 60px);
  margin: auto;
  margin-bottom: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
  max-width: 640px;
}
@media screen and (max-width: 768px) {
  .risk-checklist {
    padding: clamp(30px, 27.572815534px + 0.6472491909vw, 40px) clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
    margin-bottom: clamp(40px, 35.145631068px + 1.2944983819vw, 60px);
  }
}
.risk-checklist .inner {
  width: fit-content;
  margin: auto;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 11.0291262136px + 0.2588996764vw, 16px);
  margin-bottom: clamp(30px, 28.786407767px + 0.3236245955vw, 35px);
}
.checklist-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .checklist-item {
    margin-bottom: clamp(25px, 23.786407767px + 0.3236245955vw, 30px);
  }
}
.checklist-item i.icon-icon_check {
  font-size: clamp(12px, 8.8446601942px + 0.8414239482vw, 25px);
  padding-top: clamp(6px, 5.0291262136px + 0.2588996764vw, 10px);
}
@media screen and (max-width: 768px) {
  .checklist-item i.icon-icon_check {
    font-size: clamp(19px, 18.2718446602px + 0.1941747573vw, 22px);
  }
}
.checklist-item span {
  font-size: clamp(19px, 18.2718446602px + 0.1941747573vw, 22px);
  color: #324A56;
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .checklist-item span {
    font-size: clamp(16px, 15.2718446602px + 0.1941747573vw, 19px);
    line-height: 1.8;
  }
}

.risk-description {
  text-align: center;
  margin-bottom: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
}
@media screen and (max-width: 768px) {
  .risk-description {
    margin-bottom: clamp(40px, 35.145631068px + 1.2944983819vw, 60px);
  }
}
.risk-description .desc-main {
  font-size: clamp(18px, 17.0291262136px + 0.2588996764vw, 22px);
  color: #121213;
  line-height: 1.8;
  margin: 0 0 clamp(30px, 27.572815534px + 0.6472491909vw, 40px);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .risk-description .desc-main {
    font-size: clamp(16px, 15.5145631068px + 0.1294498382vw, 18px);
    margin: 0 0 clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
  }
}
.risk-description .desc-sub {
  font-size: clamp(24px, 23.0291262136px + 0.2588996764vw, 28px);
  color: #121213;
  margin: 0 0 clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
}
@media screen and (max-width: 768px) {
  .risk-description .desc-sub {
    font-size: clamp(20px, 19.0291262136px + 0.2588996764vw, 24px);
    margin: 0 0 clamp(16px, 15.0291262136px + 0.2588996764vw, 20px);
  }
}
.risk-description .desc-sub strong {
  font-weight: 700;
  position: relative;
  color: #314D54;
}
.risk-description .desc-sub strong::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 86%;
  height: 2px;
  background: #314D54;
}
.risk-description .desc-note {
  font-size: clamp(16px, 15.5145631068px + 0.1294498382vw, 18px);
  color: #121213;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .risk-description .desc-note {
    font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  }
}

.aoutro-hero {
  margin-bottom: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .aoutro-hero {
    margin-bottom: clamp(40px, 35.145631068px + 1.2944983819vw, 60px);
  }
}
.aoutro-hero img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/*# sourceMappingURL=style-business02.css.map */
