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

.site-main {
  padding-top: 0;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F0EFEC;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #121213;
  opacity: 0.3;
  animation: dotPulse 1.4s ease-in-out infinite;
}
.dot:nth-child(1) {
  animation-delay: 0s;
  background: #E07AA8;
}
.dot:nth-child(2) {
  animation-delay: 0.2s;
  background: #EAAF3E;
}
.dot:nth-child(3) {
  animation-delay: 0.4s;
  background: #54A0D7;
}

@keyframes dotPulse {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  40% {
    opacity: 1;
    transform: scale(1.2);
  }
}
.section-fv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0EFEC;
  /*margin-top: fn.clamp-px(100, 200);*/
}
@media screen and (max-width: 480px) {
  .section-fv {
    height: 85vh;
  }
}
.section-fv .video-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(240, 239, 236);
  transform-origin: bottom;
  transition: transform 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 1s ease-in-out;
  z-index: 3;
}
.section-fv .video-mask.slide-up {
  transform: translateY(-100%);
}
.section-fv .fv-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.section-fv .fv-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /*&::after{
    content: "";
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    height: 100%;
    display: block;
    z-index: 999;
    top: 0;
    left: 0;
    position: absolute;
  }*/
}
.section-fv .fv-video video {
  width: 100%;
  height: 135%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .section-fv .fv-video video {
    object-position: 57%;
  }
}
.section-fv .fv-text {
  position: absolute;
  bottom: clamp(-210px, -159.0291262136px + -13.5922330097vw, -420px);
  /*top: fn.clamp-px(300, 600);*/
  right: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px);
  z-index: 2;
  text-align: left;
  color: #333;
  /*filter: drop-shadow(0px 0px 1.5px #fff);*/
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}
@media screen and (max-width: 768px) {
  .section-fv .fv-text {
    bottom: clamp(-55px, -48.932038835px + -1.6181229773vw, -80px);
    right: clamp(20px, 15.145631068px + 1.2944983819vw, 40px);
  }
}
.section-fv .fv-text.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.section-fv .fv-text .fv-heading {
  font-size: clamp(45px, 34.0776699029px + 2.9126213592vw, 90px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: clamp(16px, 14.0582524272px + 0.5177993528vw, 24px);
}
@media screen and (max-width: 768px) {
  .section-fv .fv-text .fv-heading {
    font-size: clamp(38.5px, 26px + 3.3333333333vw, 90px);
  }
}
.section-fv .fv-text .fv-subtext {
  font-size: clamp(18px, 15.572815534px + 0.6472491909vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .section-fv .fv-text .fv-subtext {
    font-size: clamp(15px, 11.8446601942px + 0.8414239482vw, 28px);
  }
}

.section-mission {
  position: relative;
  padding: clamp(80px, 70.2912621359px + 2.5889967638vw, 120px) 0;
  overflow: hidden;
  background: linear-gradient(43deg, #D9E3E6 0%, #F2F3F4 100%);
}
.section-mission::before {
  content: "";
  position: absolute;
  bottom: -40vw;
  left: -37.5vw;
  width: 88.5416666667vw;
  height: 88.5416666667vw;
  background: url("http://theodor.co.jp/mixcase_test/wp-content/uploads/media/gear-scaled.webp") no-repeat center/contain;
  z-index: 0;
  animation: rotateGear 60s linear infinite;
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  .section-mission::before {
    width: 100vw;
    height: 100vh;
  }
}
.section-mission .container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px) 0;
  position: relative;
  z-index: 1;
  padding-top: clamp(40px, -8.5436893204px + 12.9449838188vw, 240px);
}
@media screen and (max-width: 768px) {
  .section-mission .container {
    padding-top: clamp(80px, 41.1650485437px + 10.355987055vw, 240px);
    padding-bottom: 0;
  }
}
.section-mission .section-title {
  font-size: clamp(40px, 25.4368932039px + 3.8834951456vw, 100px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.1;
  position: relative;
  margin-bottom: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
  text-align: right;
  /*width: fn.calc-vw(666);*/
  width: fit-content;
  padding-left: clamp(40px, 34.1747572816px + 1.5533980583vw, 64px);
  will-change: transform, opacity;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}
.section-mission .section-title .first-char {
  color: #d1d1d1;
  transition: color 0.5s ease;
}
@media screen and (max-width: 768px) {
  .section-mission .section-title {
    text-align: left;
  }
}
.section-mission .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  margin: 20px auto 0;
  transform: scaleX(var(--underline-scale, 0));
  transform-origin: left center;
  will-change: transform;
  transition: none;
}
@media screen and (max-width: 768px) {
  .section-mission .section-title::after {
    margin: 20px 0 0;
  }
}
.section-mission .mission-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 35.145631068px + 1.2944983819vw, 60px);
}
@media screen and (max-width: 768px) {
  .section-mission .mission-content {
    flex-direction: column;
  }
}
.section-mission .mission-image {
  width: 70.8333333333vw;
  aspect-ratio: 1359/577;
  margin: 0 0 clamp(40px, 35.145631068px + 1.2944983819vw, 60px) auto;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .section-mission .mission-image {
    width: 85vw;
  }
}
.section-mission .mission-image img {
  width: 100%;
  height: 125%;
  object-fit: cover;
  object-position: center center;
  display: block;
  will-change: transform;
  position: absolute;
  top: 0;
  left: 0;
}
.section-mission .mission-text {
  max-width: clamp(340px, 36.6019417476px + 80.9061488673vw, 1590px);
  width: 100%;
  margin-inline: auto;
  position: relative;
  text-align: right;
  margin: 0 auto clamp(60px, 50.2912621359px + 2.5889967638vw, 100px);
}
.section-mission .mission-text .inner {
  width: fit-content;
  display: inline-block;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .section-mission .mission-text .inner {
    width: 100%;
  }
}
.section-mission .mission-text .inner .lead {
  font-weight: 700;
  font-size: clamp(24px, 22.0582524272px + 0.5177993528vw, 32px);
  margin-bottom: clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
  color: #121213;
  letter-spacing: 0.02em;
  position: relative;
}
.section-mission .mission-text .inner p {
  font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  color: #666;
  letter-spacing: 0.02em;
  text-align: left;
}

@keyframes rotateGear {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.btn-wrapper {
  max-width: clamp(340px, 36.6019417476px + 80.9061488673vw, 1590px);
  width: 100%;
  margin-inline: auto;
  position: relative;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .btn-wrapper {
    text-align: center;
  }
}

.section-service {
  background: #8DC2D3;
  background: linear-gradient(160deg, #F5B98C, #8DC2D3 15%, #84AABB 80%, #768698 100%);
  background-size: 200% 100%;
  background-position: 25% 50%;
  animation: gradientShift 30s ease infinite;
  z-index: 0;
  position: relative;
  padding: clamp(120px, 100.5825242718px + 5.1779935275vw, 200px) 0;
  overflow: hidden;
  min-height: 100vh;
}
.section-service .service-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.section-service .service-bg-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-service .service-bg-svg .blob-shape {
  will-change: d;
  transform-origin: center;
}
.section-service .container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px) 0;
  position: relative;
  z-index: 1;
  position: relative;
  z-index: 2;
}
.section-service .section-title {
  font-size: clamp(40px, 25.4368932039px + 3.8834951456vw, 100px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.1;
  position: relative;
  margin-bottom: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
  text-align: right;
  /*width: fn.calc-vw(666);*/
  width: fit-content;
  padding-left: clamp(40px, 34.1747572816px + 1.5533980583vw, 64px);
  will-change: transform, opacity;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #fff;
}
.section-service .section-title .first-char {
  color: #d1d1d1;
  transition: color 0.5s ease;
}
@media screen and (max-width: 768px) {
  .section-service .section-title {
    text-align: left;
  }
}
.section-service .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  margin: 20px auto 0;
  transform: scaleX(var(--underline-scale, 0));
  transform-origin: left center;
  will-change: transform;
  transition: none;
}
@media screen and (max-width: 768px) {
  .section-service .section-title::after {
    margin: 20px 0 0;
  }
}
.section-service .section-title::after {
  background: #fff;
}
.section-service .service-text {
  max-width: clamp(340px, 36.6019417476px + 80.9061488673vw, 1590px);
  width: 100%;
  margin-inline: auto;
  position: relative;
  margin: 0 auto clamp(60px, 50.2912621359px + 2.5889967638vw, 100px);
  color: #fff;
}
.section-service .service-text .inner {
  width: min(100%, 640px);
  margin: 0 0 0 auto;
}
.section-service .service-text .inner .lead {
  font-size: clamp(24px, 22.0582524272px + 0.5177993528vw, 32px);
  font-weight: 700;
  margin-bottom: clamp(16px, 14.0582524272px + 0.5177993528vw, 24px);
  letter-spacing: 0.02em;
}
.section-service .service-text .inner .desc {
  font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  line-height: 1.8;
  letter-spacing: 0.05em;
  opacity: 0.9;
  text-align: justify;
}
.section-service .service-circles {
  max-width: clamp(340px, 36.6019417476px + 80.9061488673vw, 1590px);
  width: 100%;
  margin-inline: auto;
  position: relative;
  margin-top: clamp(60px, 50.2912621359px + 2.5889967638vw, 100px);
}
@media screen and (max-width: 768px) {
  .section-service .service-circles {
    width: 92%;
    max-width: 100%;
  }
}
.section-service .service-circles .circle-item {
  width: min(44%, 700px);
  height: auto;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  position: relative;
  margin: 0;
  top: 0;
  left: 50%;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media screen and (max-width: 768px) {
  .section-service .service-circles .circle-item {
    width: min(49%, 700px);
    border-width: 1px;
  }
}
.section-service .service-circles .circle-item.circle-1 {
  transform: translate(-50%, -40px);
}
.section-service .service-circles .circle-item.circle-2 {
  transform: translateX(-40px);
}
.section-service .service-circles .circle-item.circle-2.in-view {
  transform: translate(0, 0);
}
.section-service .service-circles .circle-item.circle-3 {
  transform: translateX(40px);
}
.section-service .service-circles .circle-item.circle-3.in-view {
  transform: translate(0, 0);
}
.section-service .service-circles .circle-item.in-view {
  opacity: 1;
  transform: translate(-50%, 0);
}
.section-service .service-circles .circle-item .btn-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  bottom: 16%;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .section-service .service-circles .circle-item .btn-wrapper.btn03:first-of-type {
    bottom: 22%;
  }
}
.section-service .service-circles .circle-item .btn-wrapper a {
  color: #487893;
  padding: 2% 11% 2% 8.6%;
  font-size: clamp(8px, 6.5436893204px + 0.3883495146vw, 14px);
}
@media screen and (max-width: 768px) {
  .section-service .service-circles .circle-item .btn-wrapper a {
    font-size: clamp(7px, 5.786407767px + 0.3236245955vw, 12px);
  }
}
.section-service .service-circles .circle-item .btn-wrapper a .btn-glow-area {
  width: 10%;
  right: 9%;
  height: auto;
  aspect-ratio: 1/1;
}
.section-service .service-circles .circle-item .btn-wrapper a .btn-glow-area .btn-glow-follower {
  width: 10px;
  height: 10px;
  filter: blur(2px);
}
.section-service .service-circles .block {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: -13%;
  gap: 0 11%;
}
@media screen and (max-width: 768px) {
  .section-service .service-circles .block {
    margin-top: -10%;
    gap: 0 2.5%;
  }
}
.section-service .service-circles .block .circle-item:first-of-type {
  left: 0;
}
.section-service .service-circles .block .circle-item:last-of-type {
  left: unset;
  right: 0;
}
.section-service .service-circles .block .circle-item .parts01, .section-service .service-circles .block .circle-item .parts02 {
  position: absolute;
  width: min(9.6%, 70px);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  top: 6%;
}
@media screen and (max-width: 768px) {
  .section-service .service-circles .block .circle-item .parts01, .section-service .service-circles .block .circle-item .parts02 {
    top: 1.5%;
  }
}
.section-service .service-circles .block .circle-item .parts01 {
  right: 9%;
  transform: translate(30px, -30px) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .section-service .service-circles .block .circle-item .parts01 {
    right: 15.5%;
  }
}
.section-service .service-circles .block .circle-item .parts01.clip-in {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
}
.section-service .service-circles .block .circle-item .parts02 {
  left: 9%;
  transform: scale(-1, 1) translate(30px, -30px) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .section-service .service-circles .block .circle-item .parts02 {
    left: 15.5%;
  }
}
.section-service .service-circles .block .circle-item .parts02.clip-in {
  opacity: 1;
  transform: scale(-1, 1) translate(0, 0) rotate(0deg);
}
.section-service .service-circles .know-how {
  width: 100%;
  max-width: 750px;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  /* 初期：右→左のリビール開始（ゼロ幅クリップ） */
  /* 画面内で全開（右→左へ“しゅるん”と見えてくる） */
}
.section-service .service-circles .know-how .txt {
  color: #fff;
  text-align: center;
  font-size: clamp(10px, 5.145631068px + 1.2944983819vw, 30px);
  margin-top: -5%;
}
@media screen and (max-width: 768px) {
  .section-service .service-circles .know-how .txt {
    margin-top: -9%;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 768px) {
  .section-service .service-circles .know-how .txt {
    margin-top: -5%;
  }
}
@media screen and (max-width: 768px) {
  .section-service .service-circles .know-how .txt .del_sp {
    display: none;
  }
}
.section-service .service-circles .know-how #orange-arrow {
  display: block;
  width: 31.25vw;
  height: auto;
  /* 右側を100%クリップして非表示に */
  clip-path: inset(0 0 0 100%);
  -webkit-clip-path: inset(0 0 0 100%);
  transition: clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1), -webkit-clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path;
  position: absolute;
  bottom: -3.125vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1036px) {
  .section-service .service-circles .know-how #orange-arrow {
    width: 29.1666666667vw;
    bottom: -3.4375vw;
  }
}
.section-service .service-circles .know-how.is-inview #orange-arrow {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

@keyframes gradientShift {
  0% {
    background-position: 25% 50%;
  }
  50% {
    background-position: 65% 50%;
  }
  100% {
    background-position: 25% 50%;
  }
}
.section-works {
  position: relative;
  padding: clamp(80px, 70.2912621359px + 2.5889967638vw, 120px) 0 clamp(40px, 35.145631068px + 1.2944983819vw, 60px);
  background: #F0EFEC;
  overflow: hidden;
}
.section-works .container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px) 0;
  position: relative;
  z-index: 1;
}
.section-works .section-title {
  font-size: clamp(40px, 25.4368932039px + 3.8834951456vw, 100px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.1;
  position: relative;
  margin-bottom: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
  text-align: right;
  /*width: fn.calc-vw(666);*/
  width: fit-content;
  padding-left: clamp(40px, 34.1747572816px + 1.5533980583vw, 64px);
  will-change: transform, opacity;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}
.section-works .section-title .first-char {
  color: #d1d1d1;
  transition: color 0.5s ease;
}
@media screen and (max-width: 768px) {
  .section-works .section-title {
    text-align: left;
  }
}
.section-works .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  margin: 20px auto 0;
  transform: scaleX(var(--underline-scale, 0));
  transform-origin: left center;
  will-change: transform;
  transition: none;
}
@media screen and (max-width: 768px) {
  .section-works .section-title::after {
    margin: 20px 0 0;
  }
}
.section-works .works-text {
  max-width: clamp(340px, 36.6019417476px + 80.9061488673vw, 1590px);
  width: 100%;
  margin-inline: auto;
  position: relative;
  text-align: right;
  margin: 0 auto clamp(60px, 50.2912621359px + 2.5889967638vw, 100px);
}
@media screen and (max-width: 768px) {
  .section-works .works-text {
    text-align: left;
  }
}
.section-works .works-text .inner {
  width: fit-content;
  display: inline-block;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .section-works .works-text .inner {
    width: 100%;
  }
}
.section-works .works-text .inner .lead {
  font-size: clamp(24px, 22.0582524272px + 0.5177993528vw, 32px);
  font-weight: 700;
  margin-bottom: clamp(12px, 11.0291262136px + 0.2588996764vw, 16px);
  color: #121213;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.section-works .works-text .inner p {
  font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  line-height: 1.8;
  color: #666;
  letter-spacing: 0.02em;
  text-align: left;
}
.section-works .works-sliders {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 12.7184466019px + 1.9417475728vw, 50px);
}
.section-works .works-slider .glide__track {
  overflow: hidden;
}
.section-works .works-slider .glide__slides {
  align-items: center;
  padding: 0;
  margin: 0;
}
.section-works .works-slider .glide__slide {
  height: clamp(40px, 25.4368932039px + 3.8834951456vw, 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(10px, 8.786407767px + 0.3236245955vw, 15px);
}
.section-works .works-slider .glide__slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: grayscale(0.3) opacity(0.8);
  transition: all 0.3s ease;
}
.section-works .works-slider .glide__slide img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}
.section-achievements {
  position: relative;
  padding: clamp(80px, 70.2912621359px + 2.5889967638vw, 120px) 0;
  padding-bottom: 0;
  background: #fff;
  overflow: hidden;
}
.section-achievements .container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px) 0;
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}
.section-achievements .section-title {
  font-size: clamp(40px, 25.4368932039px + 3.8834951456vw, 100px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.1;
  position: relative;
  margin-bottom: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
  text-align: right;
  /*width: fn.calc-vw(666);*/
  width: fit-content;
  padding-left: clamp(40px, 34.1747572816px + 1.5533980583vw, 64px);
  will-change: transform, opacity;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #E1E8EA;
  margin-bottom: clamp(80px, 72.7184466019px + 1.9417475728vw, 110px);
}
.section-achievements .section-title .first-char {
  color: #d1d1d1;
  transition: color 0.5s ease;
}
@media screen and (max-width: 768px) {
  .section-achievements .section-title {
    text-align: left;
  }
}
.section-achievements .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  margin: 20px auto 0;
  transform: scaleX(var(--underline-scale, 0));
  transform-origin: left center;
  will-change: transform;
  transition: none;
}
@media screen and (max-width: 768px) {
  .section-achievements .section-title::after {
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .section-achievements .section-title {
    letter-spacing: 0.02em;
    font-size: clamp(36px, 20.4660194175px + 4.142394822vw, 100px);
    padding-left: clamp(36px, 29.2038834951px + 1.8122977346vw, 64px);
  }
}
.section-achievements .section-title::after {
  background: #E1E8EA;
}
.section-achievements .achievements-bg {
  position: relative;
  width: 100%;
  height: clamp(300px, 227.1844660194px + 19.4174757282vw, 600px);
  z-index: 1;
}
.section-achievements .achievements-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-achievements .achievements-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /*gap: fn.clamp-px(60, 80);*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1590px, 100%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .section-achievements .achievements-list {
    grid-template-columns: repeat(2, 1fr);
    /*gap: fn.clamp-px(40, 60);*/
  }
}
.section-achievements .achievement-item {
  text-align: center;
  position: relative;
}
.section-achievements .achievement-item:nth-of-type(1), .section-achievements .achievement-item:nth-of-type(2) {
  padding-bottom: 1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .section-achievements .achievement-item:nth-of-type(1)::before, .section-achievements .achievement-item:nth-of-type(2)::before {
    content: "";
    position: absolute;
    border-bottom: 1px solid #fff;
    width: 80%;
    height: 100%;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .section-achievements .achievement-item:nth-of-type(1)::after, .section-achievements .achievement-item:nth-of-type(3)::after {
    content: "";
    position: absolute;
    border-right: 1px solid #fff;
    width: 100%;
    height: 80%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
.section-achievements .achievement-item .label {
  font-size: clamp(13px, 12.2718446602px + 0.1941747573vw, 16px);
  color: #121213;
  margin-bottom: clamp(10px, 6.6019417476px + 0.9061488673vw, 24px);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
.section-achievements .achievement-item .value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.section-achievements .achievement-item .value .countup {
  font-size: clamp(44px, 37.2038834951px + 1.8122977346vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.section-achievements .achievement-item .value .unit {
  font-size: clamp(16px, 15.0291262136px + 0.2588996764vw, 20px);
  font-weight: 500;
  color: #fff;
  opacity: 0.8;
}
.section-achievements .achievement-item .note {
  font-size: clamp(11.5px, 10.8932038835px + 0.1618122977vw, 14px);
  color: #fff;
  opacity: 0.9;
}

.section-member {
  position: relative;
  padding: clamp(80px, 70.2912621359px + 2.5889967638vw, 120px) 0;
  background: #E1E8EA;
  overflow: hidden;
}
.section-member .container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px) 0;
  position: relative;
  z-index: 1;
}
.section-member .section-title {
  font-size: clamp(40px, 25.4368932039px + 3.8834951456vw, 100px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.1;
  position: relative;
  margin-bottom: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
  text-align: right;
  /*width: fn.calc-vw(666);*/
  width: fit-content;
  padding-left: clamp(40px, 34.1747572816px + 1.5533980583vw, 64px);
  will-change: transform, opacity;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}
.section-member .section-title .first-char {
  color: #d1d1d1;
  transition: color 0.5s ease;
}
@media screen and (max-width: 768px) {
  .section-member .section-title {
    text-align: left;
  }
}
.section-member .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  margin: 20px auto 0;
  transform: scaleX(var(--underline-scale, 0));
  transform-origin: left center;
  will-change: transform;
  transition: none;
}
@media screen and (max-width: 768px) {
  .section-member .section-title::after {
    margin: 20px 0 0;
  }
}
.section-member .member-intro {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 35.145631068px + 1.2944983819vw, 60px);
  margin-bottom: clamp(80px, 70.2912621359px + 2.5889967638vw, 120px);
}
@media screen and (max-width: 768px) {
  .section-member .member-intro {
    gap: clamp(30px, 27.572815534px + 0.6472491909vw, 40px);
    margin-bottom: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
  }
}
.section-member .member-image {
  width: 65.1041666667vw;
  aspect-ratio: 2.08/1;
  max-width: 100%;
  margin: 0 0 clamp(40px, 35.145631068px + 1.2944983819vw, 60px) auto;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-member .member-image {
    width: 85vw;
  }
}
.section-member .member-image img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center top;
  display: block;
  will-change: transform;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.section-member .member-text {
  max-width: clamp(340px, 36.6019417476px + 80.9061488673vw, 1590px);
  width: 100%;
  margin-inline: auto;
  position: relative;
  width: 100%;
  text-align: left;
  margin: 0 auto clamp(60px, 50.2912621359px + 2.5889967638vw, 100px);
}
.section-member .member-text .inner {
  width: fit-content;
  display: inline-block;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .section-member .member-text .inner {
    width: 100%;
  }
}
.section-member .member-text .inner .lead {
  font-size: clamp(24px, 22.0582524272px + 0.5177993528vw, 32px);
  font-weight: 700;
  margin-bottom: clamp(16px, 14.0582524272px + 0.5177993528vw, 24px);
  color: #121213;
  letter-spacing: 0.02em;
}
.section-member .member-text .inner p {
  font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  line-height: 1.8;
  color: #666;
  letter-spacing: 0.02em;
  text-align: left;
}
.section-member .member-list {
  max-width: clamp(340px, 36.6019417476px + 80.9061488673vw, 1590px);
  width: 100%;
  margin-inline: auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.8349514563px + 2.9773462783vw, 60px);
}
@media screen and (max-width: 768px) {
  .section-member .member-list {
    display: flex;
    flex-direction: column;
    gap: clamp(30px, 27.572815534px + 0.6472491909vw, 40px);
  }
}
.section-member .member-item .member-info {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .section-member .member-item {
    display: flex;
    align-items: center;
    gap: clamp(10px, 5.145631068px + 1.2944983819vw, 30px);
    text-align: left;
  }
}
.section-member .member-photo {
  margin: 0 auto clamp(10px, 8.786407767px + 0.3236245955vw, 15px);
}
@media screen and (max-width: 768px) {
  .section-member .member-photo {
    width: clamp(120px, 52.0388349515px + 18.1229773463vw, 400px);
    margin: 0;
    flex-shrink: 0;
  }
}
.section-member .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  .section-member .member-info {
    flex: 1;
  }
}
.section-member .member-info .member-name {
  font-size: clamp(24px, 23.0291262136px + 0.2588996764vw, 28px);
  font-weight: 700;
  color: #121213;
  letter-spacing: 0.1em;
  display: none;
}
@media screen and (max-width: 768px) {
  .section-member .member-info .member-name {
    font-size: clamp(20px, 19.0291262136px + 0.2588996764vw, 24px);
    margin-bottom: clamp(4px, 3.0291262136px + 0.2588996764vw, 8px);
  }
}
.section-member .member-info .member-department {
  font-size: clamp(10px, 6.6019417476px + 0.9061488673vw, 24px);
  margin-bottom: clamp(3px, 2.2718446602px + 0.1941747573vw, 6px);
  letter-spacing: 0.01em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section-member .member-info .member-department {
    margin-bottom: clamp(2px, 1.5145631068px + 0.1294498382vw, 4px);
    font-size: clamp(16px, 14.0582524272px + 0.5177993528vw, 24px);
  }
}
.section-member .member-info .member-role {
  font-size: clamp(13px, 12.5145631068px + 0.1294498382vw, 15px);
  color: #666;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .section-member .member-info .member-role {
    font-size: clamp(14px, 13.7572815534px + 0.0647249191vw, 15px);
  }
}

.section-news {
  position: relative;
  padding: clamp(80px, 70.2912621359px + 2.5889967638vw, 120px) 0;
  background: #fff;
  overflow: hidden;
}
.section-news .container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px) 0;
  position: relative;
  z-index: 1;
}
.section-news .section-title {
  font-size: clamp(40px, 25.4368932039px + 3.8834951456vw, 100px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.1;
  position: relative;
  margin-bottom: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
  text-align: right;
  /*width: fn.calc-vw(666);*/
  width: fit-content;
  padding-left: clamp(40px, 34.1747572816px + 1.5533980583vw, 64px);
  will-change: transform, opacity;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #E1E8EA;
}
.section-news .section-title .first-char {
  color: #d1d1d1;
  transition: color 0.5s ease;
}
@media screen and (max-width: 768px) {
  .section-news .section-title {
    text-align: left;
  }
}
.section-news .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  margin: 20px auto 0;
  transform: scaleX(var(--underline-scale, 0));
  transform-origin: left center;
  will-change: transform;
  transition: none;
}
@media screen and (max-width: 768px) {
  .section-news .section-title::after {
    margin: 20px 0 0;
  }
}
.section-news .section-title::after {
  background: #E1E8EA;
}
.section-news .news-list {
  max-width: clamp(340px, 36.6019417476px + 80.9061488673vw, 1590px);
  width: 100%;
  margin-inline: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section-news .news-list .inner {
  width: 64.0625vw;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .section-news .news-list .inner {
    width: 95%;
  }
}
.section-news .news-item {
  border-bottom: 1px dotted #AAA;
}
.section-news .news-item:last-child {
  border-bottom: none;
}
.section-news .news-item a {
  display: flex;
  align-items: center;
  padding: clamp(20px, 18.0582524272px + 0.5177993528vw, 28px) 0;
  color: #121213;
  transition: opacity 0.3s ease;
}
.section-news .news-item a:hover {
  opacity: 0.7;
}
.section-news .news-meta {
  flex-shrink: 0;
  margin-right: clamp(40px, 35.145631068px + 1.2944983819vw, 60px);
}
.section-news .news-date {
  font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  color: #B9B9B9;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.section-news .news-title {
  flex: 1;
  font-size: clamp(15px, 14.2718446602px + 0.1941747573vw, 18px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0;
}
.section-news .news-arrow {
  flex-shrink: 0;
  margin-left: clamp(10px, 7.572815534px + 0.6472491909vw, 20px);
  width: clamp(36px, 15.6116504854px + 5.4368932039vw, 120px);
  height: 1px;
  position: relative;
  background-color: #999999;
  transform: translateX(clamp(-10px, -7.572815534px + -0.6472491909vw, -20px));
  transition: transform 0.3s ease;
}
.section-news .news-arrow::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: clamp(8px, 7.0291262136px + 0.2588996764vw, 12px);
  height: 100%;
  border-top: 1px solid #999999;
  transform: rotate(25deg);
  transform-origin: center;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .section-news .news-arrow {
    position: absolute;
    right: 0;
    bottom: 10%;
  }
}
.section-news .news-item a:hover .news-arrow {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .section-news .news-item a {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(20px, 19.0291262136px + 0.2588996764vw, 24px) 0;
  }
  .section-news .news-meta {
    margin-right: 0;
    margin-bottom: clamp(8px, 7.0291262136px + 0.2588996764vw, 12px);
  }
  .section-news .news-date {
    font-size: clamp(12px, 11.5145631068px + 0.1294498382vw, 14px);
  }
  .section-news .news-title {
    font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  }
}

.section-recruit {
  position: relative;
  padding: clamp(80px, 70.2912621359px + 2.5889967638vw, 120px) 0;
  overflow: hidden;
  background: #e0e4e6;
}
.section-recruit .container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px) 0;
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}
.section-recruit .section-title {
  font-size: clamp(40px, 25.4368932039px + 3.8834951456vw, 100px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.1;
  position: relative;
  margin-bottom: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
  text-align: right;
  /*width: fn.calc-vw(666);*/
  width: fit-content;
  padding-left: clamp(40px, 34.1747572816px + 1.5533980583vw, 64px);
  will-change: transform, opacity;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #fff;
}
.section-recruit .section-title .first-char {
  color: #d1d1d1;
  transition: color 0.5s ease;
}
@media screen and (max-width: 768px) {
  .section-recruit .section-title {
    text-align: left;
  }
}
.section-recruit .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  margin: 20px auto 0;
  transform: scaleX(var(--underline-scale, 0));
  transform-origin: left center;
  will-change: transform;
  transition: none;
}
@media screen and (max-width: 768px) {
  .section-recruit .section-title::after {
    margin: 20px 0 0;
  }
}
.section-recruit .section-title::after {
  background: #fff;
}
.section-recruit .recruit-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 35.145631068px + 1.2944983819vw, 60px);
}
@media screen and (max-width: 768px) {
  .section-recruit .recruit-content {
    flex-direction: column;
  }
}
.section-recruit .recruit-image {
  width: 82.0833333333vw;
  aspect-ratio: 1576/525;
  margin: 0 auto clamp(40px, 35.145631068px + 1.2944983819vw, 60px) 0;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-recruit .recruit-image {
    width: 100%;
  }
}
.section-recruit .recruit-image img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center center;
  display: block;
  will-change: transform;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.section-recruit .recruit-text {
  max-width: clamp(340px, 36.6019417476px + 80.9061488673vw, 1590px);
  width: 100%;
  margin-inline: auto;
  position: relative;
  text-align: right;
  margin: 0 auto clamp(60px, 50.2912621359px + 2.5889967638vw, 100px);
}
.section-recruit .recruit-text .inner {
  width: fit-content;
  display: inline-block;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .section-recruit .recruit-text .inner {
    width: 100%;
  }
}
.section-recruit .recruit-text .inner .lead {
  font-weight: 700;
  font-size: clamp(24px, 22.0582524272px + 0.5177993528vw, 32px);
  margin-bottom: clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
  color: #121213;
  letter-spacing: 0.02em;
}
.section-recruit .recruit-text .inner p {
  font-size: clamp(14px, 13.5145631068px + 0.1294498382vw, 16px);
  line-height: 1.8;
  color: #666;
  letter-spacing: 0.02em;
  text-align: left;
}

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