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

/* ====================================
  News List Section
==================================== */
.news-list {
  padding: clamp(80px, 70.2912621359px + 2.5889967638vw, 120px) 0 clamp(120px, 110.2912621359px + 2.5889967638vw, 160px);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .news-list {
    padding: clamp(60px, 55.145631068px + 1.2944983819vw, 80px) 0 clamp(80px, 75.145631068px + 1.2944983819vw, 100px);
  }
}
@media screen and (max-width: 480px) {
  .news-list {
    padding: 40px 0 80px;
  }
}
.news-list .container {
  max-width: 900px;
  width: min(100% - clamp(40px, 30.2912621359px + 2.5889967638vw, 80px), 900px);
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-list .container {
    width: min(100% - clamp(30px, 27.572815534px + 0.6472491909vw, 40px), 900px);
  }
}
@media screen and (max-width: 480px) {
  .news-list .container {
    width: min(100% - 20px, 900px);
  }
}

.news-items {
  display: flex;
  flex-direction: column;
}

.news-item {
  border-bottom: 1px solid #E5E5E5;
}
.news-item:last-child {
  border-bottom: none;
}

.news-item-link {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: clamp(20px, 17.0873786408px + 0.7766990291vw, 32px);
  padding: clamp(28px, 26.0582524272px + 0.5177993528vw, 36px) 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news-item-link {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 clamp(12px, 11.0291262136px + 0.2588996764vw, 16px);
    padding: clamp(20px, 18.0582524272px + 0.5177993528vw, 28px) 0;
  }
}
@media screen and (max-width: 480px) {
  .news-item-link {
    grid-template-columns: 1fr;
    gap: 0 12px;
    padding: 20px 0;
  }
}
.news-item-link:hover {
  opacity: 0.7;
}

.news-date {
  font-family: "Outfit", sans-serif;
  font-size: clamp(14px, 13.7572815534px + 0.0647249191vw, 15px);
  font-weight: 400;
  color: #666;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .news-date {
    grid-column: 1;
    grid-row: 1;
  }
}
@media screen and (max-width: 480px) {
  .news-date {
    font-size: 13px;
    grid-column: 1;
  }
}

.news-categories {
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .news-categories {
    grid-column: 1/-1;
    grid-row: 2;
    margin-top: 4px;
  }
}
@media screen and (max-width: 480px) {
  .news-categories {
    grid-column: 1;
    grid-row: 2;
  }
}

.news-category {
  display: inline-block;
  padding: clamp(3px, 2.7572815534px + 0.0647249191vw, 4px) clamp(10px, 9.5145631068px + 0.1294498382vw, 12px);
  background-color: #004a99;
  color: #fff;
  font-size: clamp(11px, 10.7572815534px + 0.0647249191vw, 12px);
  font-weight: 500;
  border-radius: 2px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .news-category {
    font-size: 11px;
    padding: 3px 8px;
  }
}

.news-title {
  font-size: clamp(16px, 15.5145631068px + 0.1294498382vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  color: #121213;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .news-title {
    grid-column: 2;
    grid-row: 1;
    font-size: clamp(15px, 14.7572815534px + 0.0647249191vw, 16px);
  }
}
@media screen and (max-width: 480px) {
  .news-title {
    font-size: 15px;
    grid-column: 1;
    grid-row: 3;
    margin-top: 8px;
  }
}

/* ====================================
  Pagination
==================================== */
.pagination {
  margin-top: clamp(60px, 55.145631068px + 1.2944983819vw, 80px);
}
@media screen and (max-width: 480px) {
  .pagination {
    margin-top: 40px;
  }
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(4px, 3.0291262136px + 0.2588996764vw, 8px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination li a,
.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(40px, 39.0291262136px + 0.2588996764vw, 44px);
  height: clamp(40px, 39.0291262136px + 0.2588996764vw, 44px);
  padding: 0 clamp(8px, 7.0291262136px + 0.2588996764vw, 12px);
  font-family: "Outfit", sans-serif;
  font-size: clamp(14px, 13.7572815534px + 0.0647249191vw, 15px);
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 480px) {
  .pagination li a,
  .pagination li span {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
    padding: 0 8px;
  }
}
.pagination li a {
  color: #121213;
  background: transparent;
  border: 1px solid #E5E5E5;
}
.pagination li a:hover {
  background: #121213;
  color: #fff;
  border-color: #121213;
}
.pagination li span.current {
  background: #121213;
  color: #fff;
  border: 1px solid #121213;
  pointer-events: none;
}
.pagination li.prev a, .pagination li.next a {
  padding: 0;
}
.pagination li.prev a svg, .pagination li.next a svg {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 480px) {
  .pagination li.prev a svg, .pagination li.next a svg {
    width: 18px;
    height: 18px;
  }
}
.pagination li span.dots {
  border: none;
  background: transparent;
  color: #999;
  min-width: auto;
  padding: 0 4px;
}

/* ====================================
  No Posts
==================================== */
.no-posts {
  text-align: center;
  padding: clamp(80px, 70.2912621359px + 2.5889967638vw, 120px) 0;
}
@media screen and (max-width: 480px) {
  .no-posts {
    padding: 60px 0;
  }
}
.no-posts p {
  font-size: clamp(16px, 15.5145631068px + 0.1294498382vw, 18px);
  color: #666;
}
@media screen and (max-width: 480px) {
  .no-posts p {
    font-size: 15px;
  }
}

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