@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New&display=swap");
:root {
  --base-vw: 1920; /* 基準となるビューポート幅 */
}

/* ---------------------------------------------
   CSS Reset（normalize.cssベース簡易版）
--------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --base-vw: 1920; /* 基準となるビューポート幅 */
}

html {
  font-size: 100%;
  box-sizing: border-box;
  height: 100%;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #343a40;
  background: #ffffff;
  min-height: 100vh;
}

a {
  color: #007bff;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

@keyframes float-blur {
  0% {
    transform: translate(-380px, -300px) scale(1);
    filter: blur(70px);
  }
  25% {
    transform: translate(-380px, -300px) scale(1.1);
    filter: blur(150px);
  }
  50% {
    transform: translate(-380px, -300px) scale(0.95);
    filter: blur(90px);
  }
  75% {
    transform: translate(-380px, -300px) scale(1.05);
    filter: blur(115px);
  }
  100% {
    transform: translate(-380px, -300px) scale(1);
    filter: blur(70px);
  }
}
@keyframes float-blur-2 {
  0% {
    transform: translate(0%, 0%) scale(1);
    filter: blur(45px);
  }
  33% {
    transform: translate(0%, 0%) scale(1.15);
    filter: blur(100px);
  }
  66% {
    transform: translate(0%, 0%) scale(0.9);
    filter: blur(50px);
  }
  100% {
    transform: translate(0%, 0%) scale(1);
    filter: blur(45px);
  }
}
@keyframes float-blur-3 {
  0% {
    transform: translate(180px, 180px) scale(1);
    filter: blur(90px);
  }
  40% {
    transform: translate(180px, 180px) scale(1.2);
    filter: blur(180px);
  }
  70% {
    transform: translate(180px, 180px) scale(0.85);
    filter: blur(125px);
  }
  100% {
    transform: translate(180px, 180px) scale(1);
    filter: blur(90px);
  }
}
@keyframes float-blur-3-sp {
  0% {
    transform: translate(20px, 20px) scale(1);
    filter: blur(90px);
  }
  40% {
    transform: translate(20px, 20px) scale(1.2);
    filter: blur(180px);
  }
  70% {
    transform: translate(20px, 20px) scale(0.85);
    filter: blur(125px);
  }
  100% {
    transform: translate(20px, 20px) scale(1);
    filter: blur(90px);
  }
}
@keyframes float-blur4 {
  0% {
    transform: translate(-180px, -100px) scale(1);
    filter: blur(70px);
  }
  25% {
    transform: translate(-180px, -100px) scale(1.1);
    filter: blur(150px);
  }
  50% {
    transform: translate(-180px, -100px) scale(0.95);
    filter: blur(90px);
  }
  75% {
    transform: translate(-180px, -100px) scale(1.05);
    filter: blur(115px);
  }
  100% {
    transform: translate(-180px, -100px) scale(1);
    filter: blur(70px);
  }
}
@keyframes float-blur4-sp {
  0% {
    transform: translate(-20px, -20px) scale(1);
    filter: blur(70px);
  }
  25% {
    transform: translate(-20px, -20px) scale(1.1);
    filter: blur(150px);
  }
  50% {
    transform: translate(-20px, -20px) scale(0.95);
    filter: blur(90px);
  }
  75% {
    transform: translate(-20px, -20px) scale(1.05);
    filter: blur(115px);
  }
  100% {
    transform: translate(-20px, -20px) scale(1);
    filter: blur(70px);
  }
}
@keyframes float-blur-smooth {
  0%, 100% {
    transform: scale(1);
    filter: blur(100px);
  }
  20% {
    transform: scale(1.08);
    filter: blur(110px);
  }
  40% {
    transform: scale(0.96);
    filter: blur(95px);
  }
  60% {
    transform: scale(1.12);
    filter: blur(115px);
  }
  80% {
    transform: scale(0.92);
    filter: blur(90px);
  }
}
@keyframes float-blur-breathing {
  0%, 100% {
    transform: scale(1);
    filter: blur(80px);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.25);
    filter: blur(100px);
    opacity: 0.8;
  }
}
/*  ロゴ */
.logo {
  width: calc(450 / var(--base-vw) * 100vw);
  position: absolute;
  top: 40px;
  left: 35px;
  z-index: 99999999;
}
@media (min-width: 1920px) {
  .logo {
    width: 373px;
  }
}
@media (max-width: 767px) {
  .logo {
    width: 130px;
    top: 30px;
    left: 30px;
  }
}
.logo img {
  width: 100%;
  height: 100%;
}
.logo--sub {
  width: calc(350 / var(--base-vw) * 100vw);
  top: 13px;
  left: 15px;
}
@media (min-width: 1920px) {
  .logo--sub {
    width: 290px;
  }
}
@media (max-width: 767px) {
  .logo--sub {
    width: 100px;
    top: 15px;
    left: 20px;
  }
}
.logo--sub .logo__image {
  opacity: 0.9;
  filter: brightness(0.9);
}

.mail {
  width: 100%;
  max-width: 200px;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 9999999;
}
@media (max-width: 767px) {
  .mail {
    width: 85px;
    top: 10px;
    right: 70px;
  }
}
.mail img {
  width: 100%;
  height: 100%;
}

.menu {
  display: none;
}
@media (max-width: 767px) {
  .menu {
    width: 60px;
    height: 60px;
    top: 0px;
    right: 0px;
    display: block;
    position: fixed;
    z-index: 9999999;
    background: #ffffff;
    border-radius: 0 0 0 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
}
.menu__inner {
  width: 40%;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.menu__inner-line {
  width: 100%;
  height: 2px;
  background: #000000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease-in-out;
  border-radius: 1px;
}
.menu__inner-line1 {
  transform: translate(0, -5px);
}
.menu__inner-line2 {
  transform: translate(0, 0);
}
.menu__inner-line3 {
  transform: translate(0, 5px);
}

.menu-on .menu__inner-line1 {
  transform: rotate(45deg);
}
.menu-on .menu__inner-line2 {
  opacity: 0;
}
.menu-on .menu__inner-line3 {
  transform: rotate(-45deg);
}

.close {
  display: none;
}
@media (max-width: 767px) {
  .close {
    width: 60px;
    height: 60px;
    top: 0px;
    right: 0px;
    display: block;
    position: fixed;
    z-index: 9999999999;
    background: #ffffff;
    border-radius: 0 0 0 10px;
    opacity: 0;
    pointer-events: none;
  }
}

.close-on {
  pointer-events: auto !important;
}
@media (max-width: 767px) {
  .close-on {
    pointer-events: auto !important;
  }
}

.second-object {
  position: absolute;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: hard-light;
}
@media (max-width: 767px) {
  .second-object {
    width: 330px;
    height: 360px;
    top: -130px;
  }
}
.second-object svg {
  width: 100%;
  height: 100%;
}

.second-object2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 260px;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: hard-light;
}
@media (max-width: 767px) {
  .second-object2 {
    width: 195px;
    height: 195px;
    top: 0px;
    right: 0px;
  }
}
.second-object2 svg {
  width: 100%;
  height: 100%;
}

.nav {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 100;
  margin: auto;
}
@media (max-width: 767px) {
  .nav {
    display: none;
  }
}
.nav--sub {
  top: 30px;
}
.nav--sub .nav__item {
  font-size: calc(12 / var(--base-vw) * 100vw);
  padding: 3px 8px;
}
@media (min-width: 1920px) {
  .nav--sub .nav__item {
    font-size: 14px;
  }
}
.nav__list {
  display: flex;
  justify-content: center;
  gap: calc(20 / var(--base-vw) * 100vw);
}
.nav__item {
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
  position: relative;
  padding: 5px 10px;
}
@media (max-width: 1001px) {
  .nav__item {
    font-size: 15px;
  }
}
.nav__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #007bff;
  z-index: 1;
  transition: width 0.3s ease-in-out;
}
.nav__item:hover::before {
  width: 100%;
}
.nav__item:hover a {
  color: #ffffff;
}
.nav__item a {
  text-decoration: none;
  color: #000000;
  position: relative;
  z-index: 10;
  transition: color 0.3s ease-in-out;
}

.fix-nav {
  width: 50%;
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 9999999;
  margin: auto;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0 0 20px 20px;
  transform: translateY(-110%);
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .fix-nav {
    display: none;
  }
}
.fix-nav--sub {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.8);
}
.fix-nav--sub .fix-nav__item {
  font-size: calc(12 / var(--base-vw) * 100vw);
  padding: 3px 8px;
}
@media (min-width: 1920px) {
  .fix-nav--sub .fix-nav__item {
    font-size: 11px;
  }
}
.fix-nav__list {
  display: flex;
  justify-content: center;
  gap: calc(20 / var(--base-vw) * 100vw);
}
.fix-nav__item {
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
  position: relative;
  padding: 5px 10px;
}
.fix-nav__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #007bff;
  z-index: 1;
  transition: width 0.3s ease-in-out;
}
.fix-nav__item:hover::before {
  width: 100%;
}
.fix-nav__item:hover a {
  color: #ffffff;
}
.fix-nav__item a {
  text-decoration: none;
  color: #000000;
  position: relative;
  z-index: 10;
  transition: color 0.3s ease-in-out;
}

.fix-nav-on {
  transform: translateY(0);
}

.board {
  position: fixed;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 9999998;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(100%);
  transition: transform 0.25s ease-in-out;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}
.board__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.board__inner ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 80%;
  margin: auto;
}
@media (max-width: 767px) {
  .board__inner ul {
    gap: 5px;
  }
}
.board__inner ul li {
  border-bottom: 1px solid rgba(203, 203, 203, 0.3);
  padding: 10px 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.board__inner ul li::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
  transition: left 0.5s ease-in-out;
}
.board__inner ul li:hover {
  border-bottom-color: #007bff;
  transform: translateX(5px);
}
.board__inner ul li:hover::before {
  left: 100%;
}
.board__inner ul li:hover p {
  color: #007bff;
}
.board__inner ul li:hover p span {
  color: #007bff;
}
.board__inner ul li p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
  position: relative;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  margin: 0;
}
.board__inner ul li p span {
  font-size: 9px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: block;
  color: #007bff;
  transition: all 0.3s ease-in-out;
  margin-top: 2px;
}

.board-on {
  transform: translateX(0);
}

.fix-logo {
  width: 170px;
  position: fixed;
  left: 35px;
  top: 15px;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  transform: translateY(-120%);
}
@media (max-width: 767px) {
  .fix-logo {
    width: 130px;
    top: 6px;
    left: 14px;
  }
}
.fix-logo img {
  width: 100%;
  height: 100%;
}

.fix-logo-on {
  transform: translateY(0);
}

.atag {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999999999;
  opacity: 0;
}

.site-footer {
  background: #ffffff;
  color: #000000;
  position: relative;
  overflow: hidden;
  padding: 10px 0 40px;
  z-index: 10;
  margin-bottom: -5px;
}
.site-footer__object1 {
  position: absolute;
  top: -100px;
  left: 0;
  width: 583px;
  height: 582px;
}
@media (max-width: 767px) {
  .site-footer__object1 {
    width: 580px;
    height: 580px;
  }
  .site-footer__object1 svg {
    width: 100%;
  }
}
.site-footer__object2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 252px;
  height: 252px;
}
@media (max-width: 767px) {
  .site-footer__object2 {
    width: 250px;
    height: 250px;
    bottom: 200px;
  }
  .site-footer__object2 svg {
    width: 100%;
  }
}
.site-footer__object3 {
  position: absolute;
  top: -100px;
  right: 0;
  width: 486px;
  height: 487px;
}
@media (max-width: 767px) {
  .site-footer__object3 {
    display: none;
  }
}
.site-footer__object4 {
  position: absolute;
  bottom: 0;
  right: -50px;
  width: 338px;
  height: 337px;
}
@media (max-width: 767px) {
  .site-footer__object4 {
    width: 330px;
    height: 330px;
  }
  .site-footer__object4 svg {
    width: 100%;
  }
}
.site-footer__container {
  width: 90%;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 10;
}
.site-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 1001px) {
  .site-footer__content {
    flex-direction: column;
    gap: 40px;
  }
}
.site-footer__company {
  flex: 1;
  max-width: 350px;
}
@media (max-width: 1001px) {
  .site-footer__company {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .site-footer__company {
    margin: 0 auto;
  }
}
.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .site-footer__logo {
    gap: 0px;
    display: block;
    margin: auto;
  }
}
.site-footer__logo-icon {
  width: 226px;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 767px) {
  .site-footer__logo-icon {
    width: 80%;
    margin: auto;
  }
}
.site-footer__logo-text {
  font-size: calc(18 / var(--base-vw) * 100vw);
  font-family: "Jost", sans-serif;
  font-weight: 600;
  color: #000000;
  letter-spacing: 1px;
  margin: 0;
}
@media (max-width: 767px) {
  .site-footer__logo-text {
    font-size: 16px;
    text-align: center;
  }
}
.site-footer__office {
  margin-bottom: 25px;
}
.site-footer__office-name {
  display: inline-block;
  background: linear-gradient(129deg, #004cff 0.81%, #002e99 100%);
  color: #ffffff;
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .site-footer__office-name {
    font-size: 13px;
    padding: 6px 12px;
  }
}
@media (max-width: 767px) {
  .site-footer__address {
    margin-top: 20px;
  }
}
.site-footer__address p {
  font-size: calc(12 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 5px;
  font-weight: 400;
  letter-spacing: 0.3px;
  padding-left: 25px;
}
@media (max-width: 767px) {
  .site-footer__address p {
    font-size: 13px;
    text-align: center;
    padding-left: 0;
  }
}
.site-footer__navigation {
  flex: 1;
  display: flex;
  gap: 80px;
  justify-content: start;
  padding-top: 85px;
}
@media (max-width: 1001px) {
  .site-footer__navigation {
    justify-content: flex-start;
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .site-footer__navigation {
    gap: 40px;
    padding-top: 0;
    margin: auto;
  }
}
.site-footer__nav-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__nav-column li {
  margin-bottom: 15px;
}
.site-footer__nav-column li:last-child {
  margin-bottom: 0;
}
.site-footer__nav-column a {
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000000;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}
.site-footer__nav-column a:hover {
  color: #124a96;
}
@media (max-width: 767px) {
  .site-footer__nav-column a {
    font-size: 13px;
  }
}
.site-footer__contact {
  flex: 1;
  max-width: 154px;
  text-align: right;
  padding-top: 85px;
}
@media (max-width: 1001px) {
  .site-footer__contact {
    max-width: 100%;
    text-align: left;
    padding-top: 0;
    margin: auto;
  }
}
.site-footer__contact-title {
  font-size: calc(20 / var(--base-vw) * 100vw);
  font-family: "Jost", sans-serif;
  color: #000000;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  text-align: center;
  color: #124A96;
}
@media (max-width: 767px) {
  .site-footer__contact-title {
    font-size: 15px;
  }
}
.site-footer__contact-button {
  width: 154px;
  position: relative;
}
.site-footer__contact-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.site-footer__contact-button:hover .site-footer__contact-icon {
  transform: translateX(3px);
}
.site-footer__bottom {
  padding-top: 30px;
  text-align: center;
  position: relative;
  z-index: 10;
}
.site-footer__bottom p {
  font-size: calc(10 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000000;
  font-weight: 400;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .site-footer__bottom p {
    font-size: 8px;
  }
}

.site-sidebar {
  background: #F2F2F2;
  padding: 1rem;
}
.site-sidebar__container {
  max-width: 300px;
  margin: 0 auto;
}
.site-sidebar__widget {
  margin-bottom: 2rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.site-sidebar__widget:last-child {
  margin-bottom: 0;
}
.site-sidebar__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #343a40;
  border-bottom: 2px solid #007bff;
  padding-bottom: 0.5rem;
}
.site-sidebar__content {
  color: #afafaf;
  line-height: 1.6;
}
.site-sidebar__content ul {
  list-style: none;
  padding: 0;
}
.site-sidebar__content ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #F2F2F2;
}
.site-sidebar__content ul li:last-child {
  border-bottom: none;
}
.site-sidebar__content ul li a {
  color: #afafaf;
  text-decoration: none;
}
.site-sidebar__content ul li a:hover {
  color: #007bff;
}
@media (min-width: 768px) {
  .site-sidebar {
    padding: 1.5rem;
  }
  .site-sidebar__container {
    max-width: 100%;
  }
}

.sidebar__section {
  margin-bottom: 2rem;
}
.sidebar__section:last-child {
  margin-bottom: 0;
}
.sidebar__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #007bff;
}
.sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar__item {
  margin-bottom: 0.5rem;
}
.sidebar__link {
  color: #afafaf;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}
.sidebar__link:hover {
  color: #007bff;
}
.sidebar__text {
  color: #afafaf;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.sidebar__contact {
  background: #007bff;
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}
.sidebar__contact h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.sidebar__contact p {
  margin-bottom: 1rem;
  opacity: 0.9;
}
.sidebar__contact .btn {
  width: 100%;
  margin-top: 1rem;
}

.main {
  min-height: 100vh;
  padding-top: 0px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .main {
    padding-top: 0px;
    overflow: hidden;
  }
}

.site-main {
  min-height: 100vh;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .site-main {
    padding-top: 100px;
  }
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn:active {
  transform: translateY(0);
}
.btn--small {
  padding: 0.5rem 1rem;
  font-size: 14px;
}
.btn--large {
  padding: 1rem 2rem;
  font-size: 18px;
}
.btn--primary {
  background: #007bff;
  color: #ffffff;
}
.btn--primary:hover {
  background: #124A96;
}
.btn--secondary {
  background: #6c757d;
  color: #ffffff;
}
.btn--secondary:hover {
  background: #545b62;
}
.btn--success {
  background: #28a745;
  color: #ffffff;
}
.btn--success:hover {
  background: rgb(30.1449275362, 125.8550724638, 52);
}
.btn--danger {
  background: #dc3545;
  color: #ffffff;
}
.btn--danger:hover {
  background: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.btn--outline {
  background: transparent;
  border: 2px solid #007bff;
  color: #007bff;
}
.btn--outline:hover {
  background: #007bff;
  color: #ffffff;
}
.btn:disabled, .btn--disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn:disabled:hover, .btn--disabled:hover {
  transform: none;
  box-shadow: none;
}

.form__group {
  margin-bottom: 1.5rem;
}
.form__label {
  display: block;
  font-weight: 500;
  color: #343a40;
  margin-bottom: 0.5rem;
}
.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #afafaf;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}
.form__input.error, .form__textarea.error, .form__select.error {
  border-color: #dc3545;
}
.form__textarea {
  min-height: 120px;
  resize: vertical;
}
.form__select {
  cursor: pointer;
}
.form__checkbox, .form__radio {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.form__checkbox input, .form__radio input {
  margin-right: 0.5rem;
}
.form__checkbox label, .form__radio label {
  margin: 0;
  cursor: pointer;
}
.form__error {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
.form__success {
  color: #28a745;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
.form__help {
  color: #afafaf;
  font-size: 14px;
  margin-top: 0.25rem;
}
.form__submit {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.form__submit:hover {
  background: #124A96;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}
.form-row .form__group {
  flex: 1;
  padding: 0 0.5rem;
}
@media (min-width: 768px) {
  .form-row {
    margin: 0 -1rem;
  }
  .form-row .form__group {
    padding: 0 1rem;
  }
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.card__header {
  padding: 1rem;
  border-bottom: 1px solid #F2F2F2;
  background: #F2F2F2;
}
.card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.5rem;
}
.card__subtitle {
  font-size: 14px;
  color: #afafaf;
  margin: 0.25rem 0 0 0;
}
.card__body {
  padding: 1rem;
}
.card__content {
  padding: 1.5rem;
}
.card__description {
  color: #afafaf;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.card__footer {
  padding: 1rem 1.5rem;
  background: #F2F2F2;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.card__meta {
  font-size: 0.9rem;
  color: #afafaf;
}
.card__image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.card--featured {
  border: 2px solid #007bff;
}
.card--featured .card__header {
  background: #007bff;
  color: #ffffff;
}
.card--featured .card__header .card__title,
.card--featured .card__header .card__subtitle {
  color: #ffffff;
}
.card--hover {
  cursor: pointer;
}
.card--hover:hover .card__title {
  color: #007bff;
}
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/**
 * ローディングアニメーション
 */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 10000000000000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading.loading--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading__progress {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.loading__progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #007bff;
  animation: loading-progress 2s ease-in-out forwards;
  will-change: left;
}

@keyframes loading-progress {
  0% {
    left: -100%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
body.loading-active {
  overflow: hidden;
}
body.loading-active .logo,
body.loading-active .mail,
body.loading-active .close,
body.loading-active .menu,
body.loading-active .board,
body.loading-active .main,
body.loading-active .nav,
body.loading-active .hero__news {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.loading-active .philosophy__bg {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
}

@media (max-width: 767px) {
  .loading__progress {
    width: 100%;
  }
}
.comments-area {
  margin-top: calc(40 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .comments-area {
    margin-top: 30px;
  }
}

.comments-title {
  font-size: calc(24 / var(--base-vw) * 100vw);
  font-weight: 700;
  margin-bottom: calc(30 / var(--base-vw) * 100vw);
  color: #000000;
}
@media (max-width: 767px) {
  .comments-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 calc(40 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .comment-list {
    margin-bottom: 30px;
  }
}
.comment-list ol {
  list-style: none;
  padding-left: calc(40 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .comment-list ol {
    padding-left: 30px;
  }
}

.comment {
  margin-bottom: calc(30 / var(--base-vw) * 100vw);
  padding: calc(25 / var(--base-vw) * 100vw);
  background: #F2F2F2;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .comment {
    margin-bottom: 25px;
    padding: 20px;
  }
}
.comment .children {
  margin-top: calc(20 / var(--base-vw) * 100vw);
  margin-left: calc(40 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .comment .children {
    margin-top: 15px;
    margin-left: 30px;
  }
}

.comment-body {
  position: relative;
}

.comment-author {
  display: flex;
  align-items: center;
  margin-bottom: calc(15 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .comment-author {
    margin-bottom: 12px;
  }
}
.comment-author .avatar {
  width: calc(50 / var(--base-vw) * 100vw);
  height: calc(50 / var(--base-vw) * 100vw);
  border-radius: 50%;
  margin-right: calc(15 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .comment-author .avatar {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
}
.comment-author .fn {
  font-weight: 600;
  color: #000000;
  font-style: normal;
}
.comment-author .comment-meta {
  margin-left: auto;
  font-size: calc(12 / var(--base-vw) * 100vw);
  color: #afafaf;
}
@media (max-width: 767px) {
  .comment-author .comment-meta {
    font-size: 11px;
  }
}
.comment-author .comment-meta a {
  color: #afafaf;
  text-decoration: none;
}
.comment-author .comment-meta a:hover {
  color: #007bff;
}

.comment-content {
  margin-bottom: calc(15 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .comment-content {
    margin-bottom: 12px;
  }
}
.comment-content p {
  margin-bottom: calc(10 / var(--base-vw) * 100vw);
  line-height: 1.6;
  color: #343a40;
}
@media (max-width: 767px) {
  .comment-content p {
    margin-bottom: 8px;
  }
}
.comment-content p:last-child {
  margin-bottom: 0;
}

.comment-respond {
  margin-top: calc(40 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .comment-respond {
    margin-top: 30px;
  }
}

.comment-reply-title {
  font-size: calc(20 / var(--base-vw) * 100vw);
  font-weight: 700;
  margin-bottom: calc(20 / var(--base-vw) * 100vw);
  color: #000000;
}
@media (max-width: 767px) {
  .comment-reply-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.comment-reply-title small {
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-weight: 400;
  color: #afafaf;
}
@media (max-width: 767px) {
  .comment-reply-title small {
    font-size: 13px;
  }
}
.comment-reply-title small a {
  color: #007bff;
  text-decoration: none;
}
.comment-reply-title small a:hover {
  color: #124A96;
}

.comment-notes {
  font-size: calc(14 / var(--base-vw) * 100vw);
  color: #afafaf;
  margin-bottom: calc(20 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .comment-notes {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
.comment-notes .required {
  color: #e74c3c;
}

.comment-form-author, .comment-form-email, .comment-form-url, .comment-form-comment {
  margin-bottom: calc(20 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .comment-form-author, .comment-form-email, .comment-form-url, .comment-form-comment {
    margin-bottom: 15px;
  }
}
.comment-form-author label, .comment-form-email label, .comment-form-url label, .comment-form-comment label {
  display: block;
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-weight: 600;
  margin-bottom: calc(8 / var(--base-vw) * 100vw);
  color: #000000;
}
@media (max-width: 767px) {
  .comment-form-author label, .comment-form-email label, .comment-form-url label, .comment-form-comment label {
    font-size: 13px;
    margin-bottom: 6px;
  }
}
.comment-form-author label .required, .comment-form-email label .required, .comment-form-url label .required, .comment-form-comment label .required {
  color: #e74c3c;
}
.comment-form-author input,
.comment-form-author textarea, .comment-form-email input,
.comment-form-email textarea, .comment-form-url input,
.comment-form-url textarea, .comment-form-comment input,
.comment-form-comment textarea {
  width: 100%;
  padding: calc(12 / var(--base-vw) * 100vw) calc(15 / var(--base-vw) * 100vw);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: calc(14 / var(--base-vw) * 100vw);
  transition: border-color 0.3s ease;
}
@media (max-width: 767px) {
  .comment-form-author input,
  .comment-form-author textarea, .comment-form-email input,
  .comment-form-email textarea, .comment-form-url input,
  .comment-form-url textarea, .comment-form-comment input,
  .comment-form-comment textarea {
    padding: 10px 12px;
    font-size: 13px;
  }
}
.comment-form-author input:focus,
.comment-form-author textarea:focus, .comment-form-email input:focus,
.comment-form-email textarea:focus, .comment-form-url input:focus,
.comment-form-url textarea:focus, .comment-form-comment input:focus,
.comment-form-comment textarea:focus {
  outline: none;
  border-color: #007bff;
}
.comment-form-author textarea, .comment-form-email textarea, .comment-form-url textarea, .comment-form-comment textarea {
  resize: vertical;
  min-height: calc(120 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .comment-form-author textarea, .comment-form-email textarea, .comment-form-url textarea, .comment-form-comment textarea {
    min-height: 100px;
  }
}
@media (min-width: 768px) {
  .comment-form-author, .comment-form-email, .comment-form-url {
    display: inline-block;
    width: calc(33.333% - 10px);
    margin-right: 15px;
  }
  .comment-form-author:last-child, .comment-form-email:last-child, .comment-form-url:last-child {
    margin-right: 0;
  }
}
.comment-form-submit {
  text-align: center;
  margin-top: calc(30 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .comment-form-submit {
    margin-top: 25px;
  }
}
.comment-form-submit input[type=submit] {
  background: #007bff;
  color: #ffffff;
  padding: calc(12 / var(--base-vw) * 100vw) calc(30 / var(--base-vw) * 100vw);
  border: none;
  border-radius: 8px;
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .comment-form-submit input[type=submit] {
    padding: 10px 25px;
    font-size: 13px;
  }
}
.comment-form-submit input[type=submit]:hover {
  background: #124A96;
  transform: translateY(-2px);
}

.comment-navigation {
  display: flex;
  justify-content: space-between;
  margin: calc(30 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .comment-navigation {
    margin: 25px 0;
    flex-direction: column;
    gap: 15px;
  }
}
.comment-navigation .nav-previous a,
.comment-navigation .nav-next a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.comment-navigation .nav-previous a:hover,
.comment-navigation .nav-next a:hover {
  color: #124A96;
}

.no-comments {
  text-align: center;
  color: #afafaf;
  font-style: italic;
  margin: calc(30 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .no-comments {
    margin: 25px 0;
  }
}

.reply {
  margin-top: calc(10 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .reply {
    margin-top: 8px;
  }
}
.reply a {
  background: #007bff;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: calc(12 / var(--base-vw) * 100vw);
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .reply a {
    font-size: 11px;
    padding: 5px 10px;
  }
}
.reply a:hover {
  background: #124A96;
}

.comment-awaiting-moderation {
  background: #fff3cd;
  color: #856404;
  padding: calc(10 / var(--base-vw) * 100vw) calc(15 / var(--base-vw) * 100vw);
  border-radius: 6px;
  font-size: calc(12 / var(--base-vw) * 100vw);
  margin-top: calc(10 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .comment-awaiting-moderation {
    padding: 8px 12px;
    font-size: 11px;
    margin-top: 8px;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 30px;
  background: #ffffff;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero {
    padding: 20px;
    height: auto;
  }
}
.hero .container {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
@media (max-width: 767px) {
  .hero .container {
    height: 80vh;
  }
}
.hero__content {
  width: 100%;
  height: 96.5vh;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  clip-path: inset(0 0 0 0);
}
@media (max-width: 767px) {
  .hero__content {
    height: 80vh;
  }
}
.hero__title {
  font-size: calc(55 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: absolute;
  left: 100px;
  bottom: 150px;
  line-height: 1.5;
  z-index: 100;
  color: #ffffff;
  letter-spacing: 2.25px;
}
@media (max-width: 1001px) {
  .hero__title {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 30px;
    left: 20px;
    bottom: 100px;
  }
}
.hero__title span {
  display: inline-block;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.hero__object1 {
  width: 606px;
  height: 606px;
  flex-shrink: 0;
  fill: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #124a96 100%);
  mix-blend-mode: color-burn;
  position: absolute;
  left: -10px;
  bottom: -15vw;
  z-index: 10;
  transform: translateY(0);
  will-change: transform;
}
@media (max-width: 767px) {
  .hero__object1 {
    width: 364px;
    height: 364px;
  }
  .hero__object1 svg {
    width: 100%;
  }
}
.hero__object2 {
  width: 402px;
  height: 402px;
  flex-shrink: 0;
  fill: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #124a96 100%);
  mix-blend-mode: color-burn;
  position: absolute;
  right: -10px;
  top: 0;
  z-index: 10;
  transform: translateY(0);
  will-change: transform;
}
@media (max-width: 767px) {
  .hero__object2 {
    width: 180px;
    height: 218px;
    right: 0;
    top: -120px;
  }
  .hero__object2 svg {
    width: 100%;
  }
}
.hero__object3 {
  width: 606px;
  height: 606px;
  flex-shrink: 0;
  fill: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #124a96 100%);
  mix-blend-mode: color-burn;
  position: absolute;
  right: -10px;
  bottom: -25vw;
  z-index: 10;
  transform: translateY(0);
  will-change: transform;
}
@media (max-width: 767px) {
  .hero__object3 {
    width: 364px;
    height: 364px;
    right: 0;
  }
  .hero__object3 svg {
    width: 100%;
  }
}
.hero__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  z-index: 1;
  transform: translateY(-3vw);
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1.1);
}
.hero__news {
  width: 100%;
  max-width: 750px;
  height: 115px;
  position: absolute;
  bottom: 48px;
  right: 28px;
  border-radius: 5px;
  background: rgba(26, 21, 21, 0.3);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 100;
}
@media (max-width: 767px) {
  .hero__news {
    height: 95px;
  }
}
.hero__news-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}
@media (max-width: 767px) {
  .hero__news {
    position: relative;
    top: -50px;
    width: 88%;
    left: 10%;
  }
}
.hero__news::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  width: 5px;
  height: 5px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 10;
  margin: auto;
  transition: all 0.3s ease;
}
.hero__news::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
}
.hero__news:hover::before {
  transform: scale(2.5);
}
.hero__news:hover::after {
  opacity: 0.2;
}
.hero__news-title {
  width: 20%;
  max-width: 110px;
  height: 100%;
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "Jost", sans-serif;
  font-weight: normal;
  padding-top: 44px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  border-radius: 5px 0px 0px 5px;
  background: linear-gradient(129deg, rgba(0, 76, 255, 0.6) 0.81%, rgba(0, 46, 153, 0.6) 100%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
@media (max-width: 1001px) {
  .hero__news-title {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .hero__news-title {
    font-size: 13px;
    width: 73px;
    height: 32px;
    padding-top: 7px;
  }
}
.hero__news-item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  padding-left: 18%;
  padding-top: 22px;
}
@media (max-width: 767px) {
  .hero__news-item {
    padding: 10px;
    padding-left: 20px;
  }
}
.hero__news-date {
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #ffffff;
}
@media (max-width: 1001px) {
  .hero__news-date {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .hero__news-date {
    font-size: 12px;
    padding-left: 70px;
  }
}
.hero__news-date span {
  font-size: calc(12 / var(--base-vw) * 100vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 100px;
  padding: 2px 10px;
  margin-left: 10px;
}
@media (max-width: 1001px) {
  .hero__news-date span {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .hero__news-date span {
    font-size: 10px;
  }
}
.hero__news-text {
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-top: 10px;
  padding-right: 40px;
}
@media (max-width: 1001px) {
  .hero__news-text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .hero__news-text {
    font-size: 12px;
    padding-right: 40px;
  }
}

.about {
  position: relative;
  width: 100%;
  height: 115vh;
  padding: 30px;
  background: #ffffff;
  overflow: hidden;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .about {
    height: auto;
    padding: 5px 20px 20px 20px;
    top: -100px;
    padding-top: 80px;
  }
}
.about .container {
  width: 80%;
  margin: auto;
  opacity: 0;
  background: #ffffff;
  transition: width 0.8s ease-out, opacity 0.8s ease-out;
}
.about__content {
  width: 100%;
  height: 102.5vh;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #F2F2F2;
}
@media (max-width: 767px) {
  .about__content {
    height: 737px;
  }
}
.about__title {
  padding-top: calc(350 / var(--base-vw) * 100vw);
  position: relative;
  z-index: 100;
}
@media (max-width: 767px) {
  .about__title {
    padding-top: 160px;
  }
}
.about__title-text {
  font-size: calc(55 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2.25px;
  color: #ffffff;
  text-align: center;
  transition: font-size 0.1s ease;
}
.about__title-text-en {
  font-size: calc(40 / var(--base-vw) * 100vw);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 2.25px;
  font-family: "Jost", sans-serif;
  display: block;
  color: #007bff;
  transition: font-size 0.1s ease;
}
@media (max-width: 767px) {
  .about__title-text-en {
    font-size: 30px;
  }
}
.about__title-text-ja {
  font-size: calc(15 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2.25px;
  display: block;
  color: #000000;
  transition: font-size 0.1s ease;
}
@media (max-width: 767px) {
  .about__title-text-ja {
    font-size: 12px;
  }
}
.about__content-text {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 100;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .about__content-text {
    width: 95%;
    margin: auto;
    height: auto;
  }
}
.about__content-text h3 {
  font-size: calc(40 / var(--base-vw) * 100vw);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 72px */
  letter-spacing: 2px;
  text-align: center;
  color: #000000;
  min-height: 2em;
  position: relative;
}
@media (max-width: 767px) {
  .about__content-text h3 {
    font-size: 21px;
    min-height: 2em !important;
  }
}
.about__content-text h4 {
  font-size: calc(18 / var(--base-vw) * 100vw);
  letter-spacing: 0.05em;
  color: #000000;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 36px */
  letter-spacing: 0.9px;
  padding-top: 30px;
  min-height: 2em;
  position: relative;
}
@media (max-width: 767px) {
  .about__content-text h4 {
    font-size: 14px;
    min-height: 2em !important;
  }
}
.about__object1 {
  width: 606px;
  height: 606px;
  flex-shrink: 0;
  fill: linear-gradient(180deg, rgba(255, 255, 255, 0) -61.63%, #124a96 100%);
  mix-blend-mode: color-burn;
  position: absolute;
  left: -10px;
  bottom: 0;
  z-index: 10;
  transform: translateX(0) translateY(0) rotate(0deg);
  will-change: transform, opacity;
}
@media (max-width: 767px) {
  .about__object1 {
    width: 328px;
    height: 275px;
    bottom: 310px;
    left: -290px;
  }
}
.about__object2 {
  width: 402px;
  height: 402px;
  flex-shrink: 0;
  fill: linear-gradient(180deg, rgba(255, 255, 255, 0) -58.85%, #124a96 100%);
  mix-blend-mode: color-burn;
  position: absolute;
  right: -10px;
  top: 0;
  z-index: 10;
  transform: translateX(0) translateY(0) rotate(0deg);
  will-change: transform, opacity;
}
@media (max-width: 767px) {
  .about__object2 {
    width: 222px;
    height: 222px;
  }
}
.about__object3 {
  width: 311px;
  height: 311px;
  flex-shrink: 0;
  fill: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #124a96 100%);
  mix-blend-mode: color-burn;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  position: absolute;
  right: -10px;
  bottom: 0;
  z-index: 10;
  transform: translateX(0) translateY(0) rotate(0deg);
  will-change: transform, opacity;
}
@media (max-width: 767px) {
  .about__object3 {
    width: 192px;
    height: 192px;
    bottom: 100px;
  }
}
.about__blur1 {
  width: calc(221 / var(--base-vw) * 100vw);
  height: calc(221 / var(--base-vw) * 100vw);
  fill: #ef6f00;
  filter: blur(70px);
  flex-shrink: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 15;
  transform: translate(-380px, -300px);
  animation: float-blur 3s ease-in-out infinite;
  mix-blend-mode: plus-lighter;
}
.about__blur2 {
  width: calc(641 / var(--base-vw) * 100vw);
  height: calc(641 / var(--base-vw) * 100vw);
  border-radius: 556px;
  background: #48f;
  filter: blur(45px);
  flex-shrink: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
  opacity: 0.5;
  animation: float-blur-2 4s ease-in-out infinite;
}
.about__blur3 {
  width: calc(298 / var(--base-vw) * 100vw);
  height: calc(298 / var(--base-vw) * 100vw);
  flex-shrink: 0;
  border-radius: 298px;
  background: #00910a;
  filter: blur(137px);
  flex-shrink: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translate(180px, 180px);
  margin: auto;
  z-index: 15;
  mix-blend-mode: plus-lighter;
  animation: float-blur-3 5s ease-in-out infinite;
}
.about .text-split-line {
  position: relative;
  display: block;
  text-align: center;
  min-height: 1.5em;
}
.about .text-split-line .text-split-line__mask,
.about .text-split-line .text-split-line__base {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.about .text-split-line .text-split-line__mask {
  z-index: 3;
  color: #007bff;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 100%);
  mask-image: linear-gradient(to right, black 0%, black 100%);
  -webkit-mask-size: var(--mask-size, 0%) 100%;
  mask-size: var(--mask-size, 0%) 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
  will-change: mask-size, -webkit-mask-size;
}
.about .text-split-line .text-split-line__base {
  color: #afafaf;
  mix-blend-mode: difference;
  z-index: 2;
}
.about__content-text h3.text-split-line,
.about__content-text h4.text-split-line {
  position: relative;
  min-height: 2em;
}
@media (max-width: 767px) {
  .about__content-text h3.text-split-line,
  .about__content-text h4.text-split-line {
    min-height: 3.5em;
  }
}
.about__content-text h3.text-split-line .text-split-line__mask,
.about__content-text h4.text-split-line .text-split-line__mask {
  color: #000000 !important;
  z-index: 3;
  height: auto;
  min-height: inherit;
}
.about__content-text h3.text-split-line .text-split-line__base,
.about__content-text h4.text-split-line .text-split-line__base {
  color: #afafaf !important;
  z-index: 2;
  height: auto;
  min-height: inherit;
}

.philosophy {
  position: relative;
  width: 100%;
  top: 0;
}
@media (max-width: 767px) {
  .philosophy {
    padding: 0;
    top: -100px;
  }
}
.philosophy__header {
  width: 100%;
  position: sticky;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 30px 0;
  transition: padding 0.1s ease, min-height 0.1s ease;
  min-height: 120px;
}
@media (max-width: 767px) {
  .philosophy__header {
    min-height: auto;
  }
}
.philosophy__header-title {
  position: relative;
  z-index: 100;
}
.philosophy__header-title-text {
  font-size: calc(55 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: center;
  transition: font-size 0.1s ease;
}
@media (max-width: 767px) {
  .philosophy__header-title-text {
    font-size: 30px;
  }
}
.philosophy__header-title-text-en {
  font-size: calc(40 / var(--base-vw) * 100vw);
  font-weight: 500;
  line-height: 1.5;
  font-family: "Jost", sans-serif;
  display: block;
  color: #007bff;
  transition: font-size 0.1s ease;
}
@media (max-width: 767px) {
  .philosophy__header-title-text-en {
    font-size: 30px;
  }
}
.philosophy__header-title-text-ja {
  font-size: calc(15 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2.25px;
  display: block;
  color: #000000;
  text-align: center;
  transition: font-size 0.1s ease;
}
@media (max-width: 767px) {
  .philosophy__header-title-text-ja {
    font-size: 12px;
  }
}
.philosophy__content {
  position: relative;
  width: 100%;
  padding: 50px 0;
  z-index: 10;
  clip-path: inset(0 0 0 0);
}
@media (max-width: 767px) {
  .philosophy__content {
    padding: 50px 0 0 0;
  }
}
.philosophy__content-title {
  font-size: calc(32 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.5px;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}
.philosophy__content-mission {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 100;
  padding-top: 150px;
}
@media (max-width: 767px) {
  .philosophy__content-mission {
    padding-top: 50px;
  }
}
.philosophy__content-mission-h3 {
  font-size: calc(35 / var(--base-vw) * 100vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 25px;
  will-change: transform, opacity;
}
@media (max-width: 767px) {
  .philosophy__content-mission-h3 {
    font-size: 20px;
  }
}
.philosophy__content-mission-h4 {
  width: 45%;
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #000000;
  margin: auto;
  will-change: transform, opacity;
}
@media (max-width: 767px) {
  .philosophy__content-mission-h4 {
    width: 75%;
    font-size: 16px;
  }
}
.philosophy__content-mission-title {
  font-size: calc(32 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.5px;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}
.philosophy__content-mission-title-icon {
  width: 8px;
  height: 8px;
  background: #007bff;
  margin: auto;
}
.philosophy__content-mission-title-text {
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.philosophy__content-mission-title-text-en {
  font-size: calc(40 / var(--base-vw) * 100vw);
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 2.25px;
  font-family: "Jost", sans-serif;
  color: #007bff;
}
@media (max-width: 767px) {
  .philosophy__content-mission-title-text-en {
    font-size: 30px;
  }
}
.philosophy__content-vision {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 100;
  padding-top: 40px;
}
.philosophy__content-vision-h3 {
  font-size: calc(35 / var(--base-vw) * 100vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 25px;
}
.philosophy__content-vision-h4 {
  width: 45%;
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #000000;
  margin: auto;
}
.philosophy__content-vision-title {
  font-size: calc(32 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.5px;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}
.philosophy__content-vision-title-icon {
  width: 8px;
  height: 8px;
  background: #007bff;
  margin: auto;
}
.philosophy__content-vision-title-text {
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.philosophy__content-vision-title-text-en {
  font-size: calc(40 / var(--base-vw) * 100vw);
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 2.25px;
  font-family: "Jost", sans-serif;
  color: #007bff;
}
.philosophy__content-line {
  width: 1px;
  height: 70px;
  background: #000000;
  margin: auto;
  position: relative;
  z-index: 10;
}
.philosophy__content-value-list {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 100;
  justify-content: center;
}
@media (max-width: 767px) {
  .philosophy__content-value-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 0px 0 20px 0;
    width: 80%;
  }
}
.philosophy__content-value-list-item {
  max-width: 100%;
  border-radius: 12px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 0 65px 0;
}
.philosophy__content-value-list-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 94%;
  height: 94%;
  border-radius: 5px;
  z-index: 1;
  border: 1px solid #ffffff;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .philosophy__content-value-list-item::before {
    width: 96%;
    height: 94%;
  }
}
.philosophy__content-value-list-item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  height: 90%;
  border-radius: 5px;
  z-index: 1;
  border: 1px solid #ffffff;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .philosophy__content-value-list-item::after {
    width: 93%;
    height: 90%;
  }
}
.philosophy__content-value-list-item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  contain: layout style paint;
  background: linear-gradient(95deg, rgba(0, 65, 219, 0.8) 0%, rgba(0, 31, 102, 0.8) 100%);
}
.philosophy__content-value-list-item:nth-child(even) .philosophy__content-value-list-item-bg {
  background: linear-gradient(275deg, rgba(0, 65, 219, 0.8) 0%, rgba(0, 31, 102, 0.8) 100%);
}
.philosophy__content-value-list-item-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.15;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
  filter: contrast(1.2) brightness(0.9);
}
.philosophy__content-value-list-item-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter2)'/%3E%3C/svg%3E");
  background-size: 100px 100px;
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
  filter: contrast(1.1) brightness(0.95);
}
.philosophy__content-value-list-item-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .philosophy__content-value-list-item-icon {
    margin-bottom: 10px;
  }
}
.philosophy__content-value-list-item-icon::before {
  content: "";
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.philosophy__content-value-list-item-text {
  color: #ffffff;
  font-size: calc(20 / var(--base-vw) * 100vw);
  font-style: bold;
  font-weight: 500;
  line-height: 150%; /* 27px */
  margin-bottom: 15px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
}
@media (max-width: 767px) {
  .philosophy__content-value-list-item-text {
    font-size: 18px;
    margin-bottom: 0px;
  }
}
.philosophy__content-value-list-item-description {
  color: #ffffff;
  font-size: calc(15 / var(--base-vw) * 100vw);
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 22.1px */
  letter-spacing: 1px;
  will-change: transform, opacity;
}
@media (max-width: 767px) {
  .philosophy__content-value-list-item-description {
    font-size: 14px;
  }
}
.philosophy__content-value-list-item-divider {
  width: 40px;
  height: 2px;
  background: #ffffff;
  margin: 15px auto 25px auto;
  opacity: 0.6;
  border: none;
  border-top: 1px dashed #ffffff;
  background: transparent;
}
@media (max-width: 767px) {
  .philosophy__content-value-list-item-divider {
    width: 70%;
    margin: 10px auto;
  }
}
.philosophy__bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  margin: auto;
  overflow: hidden;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}
@media (max-width: 767px) {
  .philosophy__bg {
    width: 100%;
    height: 100vh;
  }
}
.philosophy__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  display: block;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 767px) {
  .philosophy__bg video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
  }
}
.philosophy__dot {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: url("/dist/images/index/dot.svg");
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}
@media (max-width: 767px) {
  .philosophy__dot {
    background: url("/dist/images/index/dot.svg");
    background-size: 2px 2px;
  }
}

.service {
  position: relative;
  width: 100%;
  padding: 3rem 0;
  background: #ffffff;
  top: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
@media (max-width: 767px) {
  .service {
    padding: 0 0;
  }
}
.service__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  padding: 0 10%;
  opacity: 0.2;
}
@media (max-width: 767px) {
  .service__bg {
    padding: 0;
    opacity: 0.5;
  }
}
.service__bg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.service__content {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 4rem 0;
  z-index: 10;
  clip-path: inset(0 0 0 0);
}
.service__content-aube1 {
  width: calc(641 / var(--base-vw) * 100vw);
  height: calc(641 / var(--base-vw) * 100vw);
  border-radius: 556px;
  background: #48f;
  filter: blur(45px);
  flex-shrink: 0;
  position: absolute;
  top: 300px;
  right: 10%;
  margin: auto;
  z-index: -1;
  opacity: 0.3;
  animation: float-blur-2 4s ease-in-out infinite;
}
@media (max-width: 767px) {
  .service__content-aube1 {
    width: 150px;
    height: 150px;
    top: 350px;
    margin: auto;
    animation: float-blur4-sp 5s ease-in-out infinite;
  }
}
.service__content-aube2 {
  width: calc(350 / var(--base-vw) * 100vw);
  height: calc(350 / var(--base-vw) * 100vw);
  border-radius: 556px;
  background: #660091;
  filter: blur(45px);
  flex-shrink: 0;
  position: absolute;
  top: 1100px;
  left: 10%;
  margin: auto;
  z-index: -1;
  opacity: 0.2;
  animation: float-blur-2 4s ease-in-out infinite;
}
@media (max-width: 767px) {
  .service__content-aube2 {
    width: 350px;
    height: 350px;
    top: 350px;
    margin: auto;
    animation: float-blur4-sp 5s ease-in-out infinite;
  }
}
.service__content-aube3 {
  width: calc(298 / var(--base-vw) * 100vw);
  height: calc(298 / var(--base-vw) * 100vw);
  flex-shrink: 0;
  border-radius: 298px;
  background: #00910a;
  filter: blur(137px);
  flex-shrink: 0;
  position: absolute;
  top: 1400px;
  right: 20%;
  transform: translate(180px, 180px);
  margin: auto;
  z-index: -1;
  mix-blend-mode: plus-lighter;
  animation: float-blur-3 5s ease-in-out infinite;
}
@media (max-width: 767px) {
  .service__content-aube3 {
    width: 250px;
    height: 250px;
    top: 350px;
    margin: auto;
    animation: float-blur4-sp 5s ease-in-out infinite;
  }
}
.service__content-title {
  position: relative;
  z-index: 100;
}
.service__content-title-text {
  font-size: calc(55 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2.25px;
  color: #ffffff;
  text-align: center;
  transition: font-size 0.1s ease;
  padding-bottom: 80px;
  position: relative;
}
@media (max-width: 767px) {
  .service__content-title-text {
    padding-bottom: 30px;
  }
}
.service__content-title-text::before {
  width: 90%;
  max-width: 1920px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px dotted #afafaf;
  z-index: 100;
  margin: auto;
}
.service__content-title-text-en {
  font-size: calc(40 / var(--base-vw) * 100vw);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 2.25px;
  font-family: "Jost", sans-serif;
  display: block;
  color: #007bff;
  transition: font-size 0.1s ease;
}
@media (max-width: 767px) {
  .service__content-title-text-en {
    font-size: 30px;
  }
}
.service__content-title-text-ja {
  font-size: calc(15 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2.25px;
  display: block;
  color: #000000;
  text-align: center;
  transition: font-size 0.1s ease;
}
@media (max-width: 767px) {
  .service__content-title-text-ja {
    font-size: 12px;
  }
}
.service__content-list {
  width: 90%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .service__content-list {
    width: 90%;
    padding: 0 0;
    margin-top: 30px;
  }
}
.service__content-list-item {
  max-width: 1210px;
  display: flex;
  align-items: stretch;
  background: #f5f5f5;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 2.5rem;
  position: relative;
  max-height: 350px;
}
.service__content-list-item-object1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: linear-gradient(180deg, rgba(255, 255, 255, 0) -58.85%, rgba(150, 18, 18, 0.2) 100%);
  mix-blend-mode: difference;
}
.service__content-list-item-object2 {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 303px;
  fill: linear-gradient(180deg, rgba(255, 255, 255, 0) -58.85%, rgba(150, 102, 18, 0.2) 100%);
  mix-blend-mode: difference;
}
@media (max-width: 767px) {
  .service__content-list-item-object2 {
    width: 154px;
    height: 154px;
    top: 0;
    right: 0;
    left: auto;
  }
}
.service__content-list-item-meta {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  max-width: 150px;
  border-radius: 16px;
  margin: 0;
}
.service__content-list-item-main {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding-left: 1.5rem;
}
@media (max-width: 767px) {
  .service__content-list-item-main {
    width: 100%;
    padding-left: 0;
  }
}
.service__content-list-item-text-area {
  flex: 1.2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 2.5rem 3rem 3.5rem;
  position: relative;
  z-index: 2;
  background: transparent;
}
.service__content-list-item-image-area {
  flex: 1;
  min-width: 260px;
  max-width: 420px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #eaf1fa;
  border-radius: 0 20px 20px 0;
}
.service__content-list-item-image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center right;
  object-position: center right;
  border-radius: 0 20px 20px 0;
  box-shadow: 0 2px 12px rgba(18, 74, 150, 0.1);
}
.service__content-list-item-image-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(18, 74, 150, 0.08) 0%, transparent 100%);
  z-index: 1;
}
@media (max-width: 1001px) {
  .service__content-list-item {
    flex-direction: column;
    min-height: auto;
    max-height: 613px;
  }
  .service__content-list-item-text-area {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  }
}
@media (max-width: 1001px) and (max-width: 767px) {
  .service__content-list-item-text-area {
    padding: 2.5rem 1.2rem 1.2rem 1.2rem;
  }
}
@media (max-width: 1001px) {
  .service__content-list-item-text-area-meta {
    min-width: 0;
    max-width: 100%;
    padding: 1rem 0 0.5rem 0;
    margin-bottom: 0.5rem;
  }
  .service__content-list-item-text-area-meta .service-number {
    font-size: 2.2rem;
  }
  .service__content-list-item-text-area-meta .service-category {
    font-size: 0.8rem;
  }
  .service__content-list-item-text-area-main {
    padding-left: 0;
  }
  .service__content-list-item-text-area-main .service-title {
    font-size: 1.2rem;
  }
  .service__content-list-item-text-area-main .service-description {
    font-size: 0.98rem;
  }
  .service__content-list-item-image-area {
    min-width: 0;
    max-width: 100%;
    height: 180px;
    border-radius: 0 0 20px 20px;
  }
}
@media (max-width: 1001px) and (max-width: 767px) {
  .service__content-list-item-image-area {
    height: 245px;
    overflow: hidden;
  }
}
@media (max-width: 1001px) {
  .service__content-list-item-image-area img {
    border-radius: 0 0 20px 20px;
  }
}
.service-number {
  font-size: calc(60 / var(--base-vw) * 100vw);
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #007bff;
  line-height: 0.5;
  margin-bottom: 0.2em;
  text-align: center;
}
@media (max-width: 1001px) {
  .service-number {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .service-number {
    font-size: 45px;
  }
}
.service-number2 {
  color: #0087ef;
}
.service-number3 {
  color: #126a96;
}
.service-number4 {
  color: #14bdac;
}
.service-number5 {
  color: #0f9f6a;
}
.service-category {
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #007bff;
  opacity: 0.7;
  margin-top: 0.1em;
  text-align: center;
}
@media (max-width: 1001px) {
  .service-category {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .service-category {
    font-size: 14px;
  }
}
.service-category2 {
  color: #0087ef;
}
.service-category3 {
  color: #126a96;
}
.service-category4 {
  color: #14bdac;
}
.service-category5 {
  color: #0f9f6a;
}
.service-title {
  font-size: calc(30 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #007bff;
  margin-bottom: 0.7em;
  font-weight: bold;
  line-height: 140%; /* 42px */
  letter-spacing: 1.5px;
}
@media (max-width: 1001px) {
  .service-title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .service-title {
    font-size: 25px;
    text-align: center;
  }
}
.service-title2 {
  color: #0087ef;
}
.service-title3 {
  color: #126a96;
}
.service-title4 {
  color: #14bdac;
}
.service-title5 {
  color: #0f9f6a;
}
.service-description {
  font-size: calc(18 / var(--base-vw) * 100vw);
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000000;
  line-height: 2.1;
  letter-spacing: 0.04em;
  opacity: 0.95;
  margin-bottom: 0;
  padding-right: 20px;
}
@media (max-width: 1001px) {
  .service-description {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .service-description {
    font-size: 15px;
    line-height: 200%; /* 32px */
    letter-spacing: 2.4px;
    padding-right: 0;
    text-align: left;
    padding-bottom: 20px;
  }
}

.message {
  position: relative;
  width: 100%;
  clip-path: inset(0 0 0 0);
}
.message__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  padding: 0 10%;
  mix-blend-mode: exclusion;
  opacity: 0.05;
}
@media (max-width: 767px) {
  .message__bg {
    padding: 0;
    opacity: 0.1;
  }
}
.message__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.message__aube1 {
  width: calc(221 / var(--base-vw) * 100vw);
  height: calc(221 / var(--base-vw) * 100vw);
  fill: #ef6f00;
  filter: blur(70px);
  flex-shrink: 0;
  position: absolute;
  top: 250px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  transform: translate(-180px, -100px);
  animation: float-blur4 3s ease-in-out infinite;
  mix-blend-mode: plus-lighter;
}
@media (max-width: 767px) {
  .message__aube1 {
    width: 150px;
    height: 150px;
    top: 350px;
    margin: auto;
    animation: float-blur4-sp 5s ease-in-out infinite;
  }
}
.message__aube2 {
  width: calc(641 / var(--base-vw) * 100vw);
  height: calc(641 / var(--base-vw) * 100vw);
  border-radius: 556px;
  background: #48f;
  filter: blur(45px);
  flex-shrink: 0;
  position: absolute;
  top: 300px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  opacity: 0.5;
  animation: float-blur-2 4s ease-in-out infinite;
}
@media (max-width: 767px) {
  .message__aube2 {
    width: 350px;
    height: 350px;
    top: 350px;
    margin: auto;
    animation: float-blur4-sp 5s ease-in-out infinite;
  }
}
.message__aube3 {
  width: calc(298 / var(--base-vw) * 100vw);
  height: calc(298 / var(--base-vw) * 100vw);
  flex-shrink: 0;
  border-radius: 298px;
  background: #00910a;
  filter: blur(137px);
  flex-shrink: 0;
  position: absolute;
  top: 250px;
  left: 0;
  right: 0;
  transform: translate(180px, 180px);
  margin: auto;
  z-index: 1;
  mix-blend-mode: plus-lighter;
  animation: float-blur-3 5s ease-in-out infinite;
}
@media (max-width: 767px) {
  .message__aube3 {
    width: 250px;
    height: 250px;
    top: 350px;
    margin: auto;
    animation: float-blur4-sp 5s ease-in-out infinite;
  }
}
.message__container {
  position: relative;
  width: 100%;
  clip-path: inset(0 0 0 0);
  background: #ffffff;
}
.message__container-object1 {
  position: absolute;
  top: 10px;
  left: 0;
  width: 608px;
  height: 607px;
  flex-shrink: 0;
  fill: linear-gradient(180deg, rgba(255, 255, 255, 0) -61.63%, rgba(18, 74, 150, 0.3) 100%);
  mix-blend-mode: hard-light;
  z-index: 10;
  opacity: 0;
  transform: translate(-120px, 80px);
}
@media (max-width: 767px) {
  .message__container-object1 {
    width: 227px;
    height: 226px;
    top: -180px;
    transform: translate(-80px, 60px);
  }
}
@media (max-width: 767px) {
  .message__container-object1 svg {
    width: 100%;
  }
}
.message__container-object2 {
  position: absolute;
  top: 10px;
  left: 0;
  width: 954px;
  height: 953px;
  flex-shrink: 0;
  fill: linear-gradient(180deg, rgba(255, 255, 255, 0) -61.63%, rgba(18, 74, 150, 0.3) 100%);
  mix-blend-mode: hard-light;
  z-index: 10;
  opacity: 0;
  transform: translate(-100px, 100px);
}
@media (max-width: 767px) {
  .message__container-object2 {
    width: 350px;
    height: 350px;
    top: -280px;
    transform: translate(-60px, 80px);
  }
}
@media (max-width: 767px) {
  .message__container-object2 svg {
    width: 100%;
  }
}
.message__container-object3 {
  width: 521px;
  height: 560px;
  flex-shrink: 0;
  position: absolute;
  top: 10px;
  right: 0;
  fill: linear-gradient(180deg, rgba(255, 255, 255, 0) -58.85%, rgba(18, 74, 150, 0.2) 100%);
  mix-blend-mode: hard-light;
  z-index: 10;
  opacity: 0;
  transform: translate(120px, 80px);
}
@media (max-width: 767px) {
  .message__container-object3 {
    width: 260px;
    height: 260px;
    top: -180px;
    transform: translate(80px, 60px);
  }
}
@media (max-width: 767px) {
  .message__container-object3 svg {
    width: 100%;
  }
}
.message__content {
  position: relative;
  width: 100%;
  z-index: 50;
  padding-bottom: 450px;
}
@media (max-width: 767px) {
  .message__content {
    padding-bottom: 150px;
  }
}
.message__content-title {
  font-size: calc(32 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.5px;
  color: #000000;
  padding-top: 150px;
}
@media (max-width: 1001px) {
  .message__content-title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .message__content-title {
    padding-top: 100px;
  }
}
.message__content-title-text {
  font-size: calc(32 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.5px;
  color: #000000;
  text-align: center;
}
@media (max-width: 1001px) {
  .message__content-title-text {
    font-size: 32px;
  }
}
.message__content-title-text-en {
  font-size: calc(40 / var(--base-vw) * 100vw);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 2.25px;
  font-family: "Jost", sans-serif;
  color: #007bff;
}
@media (max-width: 1001px) {
  .message__content-title-text-en {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .message__content-title-text-en {
    font-size: 30px;
  }
}
.message__content-title-text-ja {
  font-size: calc(15 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2.25px;
  display: block;
}
@media (max-width: 1001px) {
  .message__content-title-text-ja {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .message__content-title-text-ja {
    font-size: 12px;
  }
}
.message__content-title-sub {
  font-size: calc(35 / var(--base-vw) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.5px;
  color: #000000;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}
@media (max-width: 1001px) {
  .message__content-title-sub {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .message__content-title-sub {
    font-size: 23px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
.message__content-title-sub-text {
  width: 50%;
  margin: auto;
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-weight: 200;
  line-height: 2;
  letter-spacing: 1.5px;
  color: #000000;
  text-align: center;
}
@media (max-width: 1001px) {
  .message__content-title-sub-text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .message__content-title-sub-text {
    font-size: 14px;
    width: 100%;
    letter-spacing: 0.5px;
  }
}
.message__content-title-sub-text strong {
  font-weight: bold;
}

.company {
  position: relative;
  width: 100%;
  clip-path: inset(0 0 0 0);
  padding: calc(150 / var(--base-vw) * 100vw) 0 calc(20 / var(--base-vw) * 100vw) 0;
  background: #F2F2F2;
  margin-top: -3px;
}
@media (max-width: 767px) {
  .company {
    padding: 100px 0 50px 0;
    overflow: hidden;
  }
}
.company__object1 {
  position: absolute;
  top: -150px;
  left: 0;
  width: 739px;
  height: 738px;
  mix-blend-mode: hard-light;
}
@media (max-width: 767px) {
  .company__object1 {
    width: 517px;
    height: 226px;
    top: -260px;
  }
}
@media (max-width: 767px) {
  .company__object1 svg {
    width: 100%;
  }
}
.company__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: #ffffff;
  z-index: -1;
}
.company__container {
  width: 90%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 calc(30 / var(--base-vw) * 100vw);
}
.company__content {
  display: flex;
  gap: calc(60 / var(--base-vw) * 100vw);
  margin-bottom: calc(120 / var(--base-vw) * 100vw);
}
@media (max-width: 1001px) {
  .company__content {
    flex-direction: column;
    gap: calc(40 / var(--base-vw) * 100vw);
  }
}
.company__info {
  flex: 1;
}
@media (max-width: 1001px) {
  .company__info {
    padding: 0;
    padding-bottom: 50px;
  }
}
.company__title {
  font-size: calc(40 / var(--base-vw) * 100vw);
  font-family: "Jost", sans-serif;
  color: #007bff;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 1.5px;
}
@media (max-width: 1001px) {
  .company__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .company__title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
.company__title span {
  font-size: calc(40 / var(--base-vw) * 100vw);
  font-family: "Jost", sans-serif;
  color: #007bff;
  font-weight: 500;
  margin-bottom: 80px;
  letter-spacing: 1.5px;
}
@media (max-width: 1001px) {
  .company__title span {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .company__title span {
    font-size: 30px;
    margin-bottom: 0;
  }
}
.company__title::after {
  content: "会社概要";
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000000;
  font-weight: 500;
  margin-bottom: calc(40 / var(--base-vw) * 100vw);
  letter-spacing: 0.5px;
  padding-left: 20px;
}
@media (max-width: 1001px) {
  .company__title::after {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .company__title::after {
    font-size: 12px;
    margin-bottom: 20px;
    display: block;
    padding-left: 0;
  }
}
.company__subtitle {
  font-size: calc(24 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000000;
  font-weight: 500;
  margin-bottom: calc(40 / var(--base-vw) * 100vw);
  letter-spacing: 0.5px;
}
@media (max-width: 1001px) {
  .company__subtitle {
    font-size: 24px;
  }
}
.company__details {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.company__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 140px;
}
@media (max-width: 767px) {
  .company__detail-item {
    flex-direction: column;
    gap: calc(10 / var(--base-vw) * 100vw);
  }
}
.company__detail-label {
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000000;
  font-weight: 600;
  min-width: calc(130 / var(--base-vw) * 100vw);
  flex-shrink: 0;
}
@media (max-width: 1001px) {
  .company__detail-label {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .company__detail-label {
    min-width: auto;
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.company__detail-value {
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000000;
  line-height: 1.6;
  flex: 1;
}
@media (max-width: 1001px) {
  .company__detail-value {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .company__detail-value {
    font-size: 15px;
  }
}
.company__detail-value div {
  margin-bottom: calc(5 / var(--base-vw) * 100vw);
}
.company__detail-value div:last-child {
  margin-bottom: 0;
}
.company__images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: calc(20 / var(--base-vw) * 100vw);
  max-width: calc(400 / var(--base-vw) * 100vw);
}
@media (max-width: 1001px) {
  .company__images {
    max-width: 100%;
  }
}
.company__image-item {
  width: 100%;
  height: calc(242 / var(--base-vw) * 100vw);
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .company__image-item {
    height: 350px;
  }
}
.company__image-item:nth-child(1) {
  height: calc(380 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .company__image-item:nth-child(1) {
    height: 345px;
  }
}
.company__image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.company__map {
  width: 110%;
  position: relative;
  z-index: 10;
  transform: translate(-5%, 0);
}
@media (max-width: 767px) {
  .company__map {
    width: 100%;
    transform: translate(0, 0);
  }
}
.company__map-container {
  width: 100%;
  height: calc(400 / var(--base-vw) * 100vw);
  overflow: hidden;
  margin-bottom: calc(30 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .company__map-container {
    height: 325px;
  }
}
.company__map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.company__map-button {
  width: 200px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 50px;
  margin: auto;
  background: linear-gradient(129deg, #004cff 0.81%, #002e99 100%);
  padding: 0;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .company__map-button {
    bottom: 35px;
  }
}
.company__map-button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8%;
  width: 5px;
  height: 5px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 10;
  margin: auto;
  transition: all 0.3s ease;
}
.company__map-button::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
}
.company__map-button:hover::before {
  transform: scale(2.5);
}
.company__map-button:hover::after {
  opacity: 0.2;
}
.company__map-link {
  width: 100%;
  display: inline-block;
  color: #ffffff;
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-family: "Jost", sans-serif;
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  height: 100%;
  padding: 15px 0;
  text-align: center;
  z-index: 10;
  cursor: pointer;
}
@media (max-width: 767px) {
  .company__map-link {
    font-size: 15px;
  }
}

.recruit {
  position: relative;
  width: 100%;
  padding: 0;
  padding: 25px 15px;
  background: #ffffff;
  padding-bottom: 100px;
}
.recruit__container {
  width: 100%;
  position: relative;
}
.recruit__content {
  width: 100%;
  position: relative;
}
.recruit__hero {
  width: 100%;
  background: #0065ef;
  display: flex;
  align-items: self-start;
  padding: 100px 8% 80px;
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}
@media (max-width: 767px) {
  .recruit__hero {
    display: block;
    padding: 40px 5% 80px;
  }
}
.recruit__hero__object1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 446px;
  height: 445px;
}
@media (max-width: 767px) {
  .recruit__hero__object1 {
    width: 196px;
    height: 196px;
  }
  .recruit__hero__object1 svg {
    width: 100%;
    height: 100%;
  }
}
.recruit__hero__object2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 277px;
  height: 276px;
}
@media (max-width: 767px) {
  .recruit__hero__object2 {
    width: 125px;
    height: 125px;
  }
  .recruit__hero__object2 svg {
    width: 100%;
    height: 100%;
  }
}
.recruit__hero__object3 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 477px;
  height: 476px;
}
@media (max-width: 767px) {
  .recruit__hero__object3 {
    display: none;
  }
}
.recruit__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.recruit__hero-left {
  flex: 1;
  position: relative;
  z-index: 10;
  padding-right: 60px;
}
@media (max-width: 1001px) {
  .recruit__hero-left {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.recruit__hero-right {
  flex: 1.5;
  position: relative;
  z-index: 10;
}
@media (max-width: 1001px) {
  .recruit__hero-right {
    flex: 1;
  }
}
.recruit__hero-title {
  font-size: calc(40 / var(--base-vw) * 100vw);
  font-family: "Jost", sans-serif;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 2px;
}
@media (max-width: 1001px) {
  .recruit__hero-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .recruit__hero-title {
    font-size: 30px;
  }
}
.recruit__hero-subtitle {
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
}
@media (max-width: 1001px) {
  .recruit__hero-subtitle {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .recruit__hero-subtitle {
    font-size: 12px;
  }
}
.recruit__hero-heading {
  font-size: calc(30 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
@media (max-width: 1001px) {
  .recruit__hero-heading {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .recruit__hero-heading {
    font-size: 21px;
  }
}
.recruit__hero-description p {
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
@media (max-width: 1001px) {
  .recruit__hero-description p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .recruit__hero-description p {
    font-size: 14px;
  }
}
.recruit__title-section {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 5;
}
.recruit__title {
  font-size: calc(30 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 2px;
  position: absolute;
  top: -29px;
  left: 0;
  margin: auto;
  z-index: 10;
}
@media (max-width: 1001px) {
  .recruit__title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .recruit__title {
    font-size: 22px;
    position: absolute;
    top: 40px;
    left: 5%;
  }
}
.recruit__title span {
  font-size: calc(30 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #ffffff;
  font-weight: 500;
  position: relative;
  margin-left: 35px;
}
@media (max-width: 1001px) {
  .recruit__title span {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .recruit__title span {
    font-size: 14px;
    margin-left: 10px;
  }
}
.recruit__positions {
  width: 100%;
  padding: 80px 5% 150px;
  background: url("../images/index/hero_bg.webp") center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .recruit__positions {
    padding: 120px 5% 150px;
  }
}
.recruit__positions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 1;
}
@media (max-width: 1001px) {
  .recruit__positions {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 600px;
  }
}
.recruit__position-card {
  flex: 1;
  max-width: 400px;
  overflow: hidden;
  position: relative;
  z-index: 10;
  border-radius: 10px;
  background: rgba(13, 13, 23, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 1001px) {
  .recruit__position-card {
    max-width: 100%;
    width: 100%;
  }
}
.recruit__position-card::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -90px;
  width: 100px;
  height: 100px;
  background: rgb(255, 255, 255);
  transform: rotate(45deg);
}
.recruit__position-header {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.recruit__position-header h3 {
  font-size: calc(20 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.8px;
  position: relative;
  top: 28px;
}
@media (max-width: 1001px) {
  .recruit__position-header h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .recruit__position-header h3 {
    font-size: 20px;
  }
}
.recruit__position-content {
  padding: 45px 20px 30px 20px;
}
.recruit__position-description {
  font-size: calc(15 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 1.3px;
  background: linear-gradient(97deg, #005cd1 0%, #001f46 100%);
  padding: 25px;
  border-radius: 6px;
  text-align: center;
}
@media (max-width: 1001px) {
  .recruit__position-description {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .recruit__position-description {
    font-size: 15px;
    padding: 25px 0 25px 0;
  }
}
.recruit__position-requirements {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recruit__position-requirements li {
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
  padding: 4px 0 15px 0;
  position: relative;
  font-weight: 400;
  letter-spacing: 1.2px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  text-align: center;
}
@media (max-width: 1001px) {
  .recruit__position-requirements li {
    font-size: 14px;
  }
}
.recruit__position-requirements li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .recruit__position-requirements li {
    font-size: 14px;
    padding: 2px 0 15px 0;
  }
}
.recruit__cta {
  width: 100%;
  padding: 60px 0;
  text-align: center;
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .recruit__cta {
    bottom: -85px;
  }
}
.recruit__cta-button {
  display: inline-block;
  background: linear-gradient(129deg, #004cff 0.81%, #002e99 100%);
  color: #ffffff;
  font-size: calc(18 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  padding: 20px 60px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
  letter-spacing: 1px;
}
@media (max-width: 1001px) {
  .recruit__cta-button {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .recruit__cta-button {
    font-size: 16px;
    padding: 18px 50px;
  }
}
.recruit__cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8%;
  width: 5px;
  height: 5px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 10;
  margin: auto;
  transition: all 0.3s ease;
}
.recruit__cta-button::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
}
.recruit__cta-button:hover::before {
  transform: scale(2.5);
}
.recruit__cta-button:hover::after {
  opacity: 0.2;
}

.news {
  position: relative;
  width: 100%;
  padding: calc(100 / var(--base-vw) * 100vw) 0;
  background: #ffffff;
}
.news__container {
  margin: 0 auto;
  overflow: hidden;
}
.news__content {
  width: 100%;
}
.news__header {
  width: 80%;
  text-align: left;
  margin: auto;
  margin-bottom: calc(60 / var(--base-vw) * 100vw);
}
.news__title span {
  font-size: calc(48 / var(--base-vw) * 100vw);
  font-family: "Jost", sans-serif;
  color: #007bff;
  font-weight: 600;
  margin-bottom: calc(10 / var(--base-vw) * 100vw);
  letter-spacing: 1px;
}
@media (max-width: 1001px) {
  .news__title span {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .news__title span {
    font-size: 30px;
  }
}
.news__title::after {
  content: "お知らせ";
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000000;
  font-weight: 500;
  margin-bottom: calc(40 / var(--base-vw) * 100vw);
  letter-spacing: 0.5px;
  padding-left: 20px;
}
@media (max-width: 1001px) {
  .news__title::after {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .news__title::after {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.news__subtitle {
  font-size: calc(18 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000000;
  font-weight: 500;
  letter-spacing: 0.5px;
}
@media (max-width: 1001px) {
  .news__subtitle {
    font-size: 18px;
  }
}
.news__swiper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 0 60px;
}
@media (max-width: 767px) {
  .news__swiper {
    padding: 0 15px 0 30px;
  }
}
.news__cards {
  margin-bottom: calc(60 / var(--base-vw) * 100vw);
  padding: calc(10 / var(--base-vw) * 100vw) 0;
  position: relative;
  height: 425px;
}
.news__card {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  transition: transform 0.4s ease;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news__card-image {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  overflow: hidden;
  position: relative;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.news__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s ease;
}
.news__card:hover .news__card-image img {
  transform: scale(1);
}
.swiper-slide-active .news__card-image {
  width: 100%;
  height: 300px;
}
@media (max-width: 767px) {
  .swiper-slide-active .news__card-image {
    height: 200px;
  }
}
.swiper-slide-active .news__card-image img {
  transform: scale(1);
}
.swiper-slide-active .news__card {
  transform: scale(1);
}
@media (max-width: 767px) {
  .swiper-slide-active .news__card {
    transform: scale(1);
  }
}
.news__placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.news__placeholder-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news__placeholder-image::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: 30%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 50% 0 0 0;
}
.news__placeholder-logo {
  color: #ffffff;
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-family: "Jost", sans-serif;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.5px;
  z-index: 1;
  position: relative;
}
@media (max-width: 1001px) {
  .news__placeholder-logo {
    font-size: 14px;
  }
}
.news__card-content {
  padding: calc(20 / var(--base-vw) * 100vw);
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .news__card-content {
    padding: 16px;
  }
}
.news__card-meta {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start !important;
  margin-bottom: calc(15 / var(--base-vw) * 100vw);
  gap: 8px;
  font-size: 12px;
  color: #6c757d;
}
@media (max-width: 767px) {
  .news__card-meta {
    margin-bottom: 15px;
    justify-content: flex-start;
    margin-top: 15px;
  }
}
.news__card-date {
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-family: "Jost", sans-serif;
  color: #afafaf;
  font-weight: 500;
  position: relative;
  top: 3px;
}
@media (max-width: 1001px) {
  .news__card-date {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .news__card-date {
    font-size: 14px;
  }
}
.news__card-category {
  font-size: calc(12 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #afafaf;
  background: #ffffff;
  padding: calc(4 / var(--base-vw) * 100vw) calc(12 / var(--base-vw) * 100vw);
  border-radius: calc(20 / var(--base-vw) * 100vw);
  font-weight: 600;
  border: 1px solid #ababab;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
  color: #ababab;
  font-size: 10px;
}
@media (max-width: 1001px) {
  .news__card-category {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .news__card-category {
    font-size: 10px;
    margin-left: 15px;
    padding: 2px 20px;
    border-radius: 150px;
  }
}
.news__card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #212529;
  margin: 0 0 16px 0;
  flex: 1;
}
@media (max-width: 767px) {
  .news__card-title {
    font-size: 14px;
  }
}
.news__card-description {
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000000;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1001px) {
  .news__card-description {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .news__card-description {
    font-size: 14px;
  }
}
.news__card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.news__card-link:hover {
  text-decoration: none;
}
.news__footer {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .news__footer {
    width: 88%;
    flex-direction: initial;
    gap: calc(30 / var(--base-vw) * 100vw);
    margin-top: 0;
    margin-bottom: 50px;
  }
}
.news__button {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .news__button {
    align-items: self-start;
  }
}
.news__button-link {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(129deg, #004cff 0.81%, #002e99 100%);
  color: #ffffff;
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-family: "Jost", sans-serif;
  font-weight: 600;
  padding: calc(15 / var(--base-vw) * 100vw) calc(80 / var(--base-vw) * 100vw);
  border-radius: calc(5 / var(--base-vw) * 100vw);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 0.5px;
  position: relative;
}
@media (max-width: 1001px) {
  .news__button-link {
    font-size: 16px;
  }
}
.news__button-link::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
}
.news__button-link:hover::after {
  transform: scale(2.5);
}
.news__button-link:hover::before {
  opacity: 0.2;
}
@media (max-width: 767px) {
  .news__button-link {
    font-size: 14px;
    padding: 10px 40px;
  }
}
.news__button-link::after {
  content: "";
  width: 5px;
  height: 5px;
  background: #ffffff;
  border-radius: 50%;
  margin-left: calc(10 / var(--base-vw) * 100vw);
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  transition: all 0.3s ease;
}

.swiper-wrapper {
  width: 100%;
  height: auto !important;
  padding-left: 5%;
}

.swiper-slide {
  width: 100%;
  height: auto;
  text-align: left;
  line-height: normal;
}

.swiper-pagination {
  width: 160px !important;
  position: absolute !important;
  margin-top: 30px;
  text-align: center;
  right: 5%;
  left: auto !important;
  bottom: 0 !important;
}
@media (max-width: 767px) {
  .swiper-pagination {
    display: none;
  }
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  margin: 0 4px !important;
  background: #dee2e6;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #007bff;
  transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: white;
  color: #6c757d;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.philosophy__bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  margin: auto;
  overflow: hidden;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
}
@media (max-width: 767px) {
  .philosophy__bg {
    width: 100%;
    height: 100vh;
  }
}
.philosophy__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/index/dot.svg") center center;
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  z-index: 1;
}
.philosophy__bg-overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
  z-index: 1;
}
.philosophy__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  display: block;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 767px) {
  .philosophy__bg video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
  }
}

.page-archive__content {
  padding: calc(120 / var(--base-vw) * 100vw) 0 0 0;
  min-height: 100vh;
}
@media (max-width: 767px) {
  .page-archive__content {
    padding: 110px 0 100px 0;
  }
}
.page-archive__layout {
  display: flex;
  gap: calc(60 / var(--base-vw) * 100vw);
  padding: 0 calc(20 / var(--base-vw) * 100vw);
  width: 90%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .page-archive__layout {
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }
}
.page-archive__sidebar {
  flex: 0 0 calc(300 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .page-archive__sidebar {
    flex: none;
    order: 2;
  }
}
.page-archive__sidebar-header {
  margin-bottom: calc(40 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .page-archive__sidebar-header {
    margin-bottom: 30px;
  }
}
.page-archive__sidebar-title {
  font-size: calc(70 / var(--base-vw) * 100vw);
  font-weight: 500;
  color: #007bff;
  font-family: "Jost", sans-serif;
}
@media (max-width: 767px) {
  .page-archive__sidebar-title {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.page-archive__sidebar-subtitle {
  font-size: calc(15 / var(--base-vw) * 100vw);
  color: #343a40;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .page-archive__sidebar-subtitle {
    font-size: 13px;
  }
}
.page-archive__sidebar-section {
  margin-bottom: calc(30 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .page-archive__sidebar-section {
    margin-bottom: 25px;
  }
}
.page-archive__sidebar-section:last-child {
  margin-bottom: 0;
}
.page-archive__sidebar-section-title {
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-weight: 600;
  color: #000000;
  margin-bottom: calc(15 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .page-archive__sidebar-section-title {
    font-size: 15px;
    margin-bottom: 12px;
  }
}
.page-archive__sidebar-categories {
  display: flex;
  gap: calc(8 / var(--base-vw) * 100vw);
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .page-archive__sidebar-categories {
    gap: 6px;
    flex-wrap: wrap;
    padding-left: 15px;
  }
}
.page-archive__sidebar-category-btn {
  display: inline-block;
  padding: 5px 22px;
  border-radius: 20px;
  text-decoration: none;
  font-size: calc(12 / var(--base-vw) * 100vw);
  font-weight: 300;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #007bff;
  background: #ffffff;
  color: #007bff;
  font-family: "Jost", sans-serif;
}
@media (max-width: 767px) {
  .page-archive__sidebar-category-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}
.page-archive__sidebar-category-btn:hover {
  background: #007bff;
  color: #ffffff;
  border-color: #007bff;
}
.page-archive__sidebar-category-btn--active {
  background: #007bff;
  color: #ffffff;
  border-color: #007bff;
  font-weight: 500;
}
.page-archive__sidebar-category-btn--active:hover {
  background: #007bff;
  color: #ffffff;
  border-color: #007bff;
}
.page-archive__sidebar-archive {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: calc(5 / var(--base-vw) * 100vw);
  padding-left: 15px;
}
@media (max-width: 767px) {
  .page-archive__sidebar-archive {
    gap: 4px;
  }
}
.page-archive__sidebar-archive li a {
  color: #343a40;
  text-decoration: none;
  font-size: calc(20 / var(--base-vw) * 100vw);
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .page-archive__sidebar-archive li a {
    font-size: 20px;
    text-decoration: underline;
  }
}
.page-archive__sidebar-archive li a:hover {
  color: #007bff;
}
.page-archive__sidebar-archive li a.current {
  color: #007bff;
  font-weight: 600;
}
.page-archive__main {
  flex: 1;
  background: #F2F2F2;
  border-radius: 12px 0 0 12px;
  padding: calc(30 / var(--base-vw) * 100vw);
  margin-top: 140px;
}
@media (max-width: 767px) {
  .page-archive__main {
    order: 1;
    padding: 40px;
    margin-top: 15px;
  }
}
.page-archive__header-nav {
  position: absolute;
  top: 200px;
  right: 5%;
  display: flex;
  align-items: center;
  gap: calc(10 / var(--base-vw) * 100vw);
  margin-bottom: calc(30 / var(--base-vw) * 100vw);
  font-size: calc(14 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .page-archive__header-nav {
    gap: 8px;
    margin-bottom: 20px;
    font-size: 12px;
    top: 120px;
  }
}
.page-archive__header-link {
  color: #000000;
  text-decoration: none;
}
.page-archive__header-separator {
  color: #afafaf;
  width: 90px;
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .page-archive__header-separator {
    width: 35px;
  }
}
.page-archive__header-separator::before {
  content: "";
  display: block;
  width: 90%;
  height: 1px;
  background: #E0E0E0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .page-archive__header-separator::before {
    width: 35px;
  }
}
.page-archive__header-current {
  color: #343a40;
}
.page-archive__posts {
  margin-bottom: calc(40 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .page-archive__posts {
    margin-bottom: 30px;
  }
}
.page-archive__post {
  display: flex;
  gap: calc(25 / var(--base-vw) * 100vw);
  padding: calc(20 / var(--base-vw) * 100vw) 0;
  border-bottom: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .page-archive__post {
    flex-direction: column;
    gap: 0px;
    padding: 25px 0;
  }
}
.page-archive__post:last-child {
  border-bottom: none;
}
.page-archive__post-image {
  flex-shrink: 0;
  aspect-ratio: 16/9;
  max-width: 300px;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .page-archive__post-image {
    width: 100%;
    height: auto;
  }
}
.page-archive__post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.page-archive__post-image:hover img {
  transform: scale(1.02);
}
.page-archive__post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: calc(5 / var(--base-vw) * 100vw);
  padding-right: 30px;
}
@media (max-width: 767px) {
  .page-archive__post-content {
    padding-top: 0;
    padding-right: 0;
  }
}
.page-archive__post-meta {
  display: flex;
  align-items: center;
  gap: calc(12 / var(--base-vw) * 100vw);
  margin-bottom: calc(12 / var(--base-vw) * 100vw);
  margin-top: 10px;
  position: relative;
}
@media (max-width: 767px) {
  .page-archive__post-meta {
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
}
.page-archive__post-date {
  color: #343a40;
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-weight: 400;
  font-family: "Jost", sans-serif;
}
@media (max-width: 767px) {
  .page-archive__post-date {
    font-size: 13px;
  }
}
.page-archive__post-category {
  color: #ABABAB;
  padding: 2px 20px;
  border-radius: 12px;
  font-size: calc(10 / var(--base-vw) * 100vw);
  font-weight: 500;
  border: 1px solid #ABABAB;
  display: inline-block;
  margin-left: calc(8 / var(--base-vw) * 100vw);
  font-family: "Jost", sans-serif;
}
@media (max-width: 767px) {
  .page-archive__post-category {
    font-size: 9px;
    padding: 1px 16px;
    margin-left: 6px;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.page-archive__post-title {
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-weight: 400;
  line-height: 2;
  color: #000000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .page-archive__post-title {
    font-size: 13px;
    margin-top: 0;
  }
}
.page-archive__post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .page-archive__post-title a {
    text-decoration: underline;
  }
}
.page-archive__post-title a:hover {
  color: #007bff;
}
.page-archive__pagination {
  display: flex;
  justify-content: center;
  margin-top: calc(50 / var(--base-vw) * 100vw);
  padding: calc(20 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .page-archive__pagination {
    margin-top: 40px;
    padding: 15px 0;
  }
}
.page-archive__no-posts {
  text-align: center;
  padding: calc(60 / var(--base-vw) * 100vw) 0;
  color: #343a40;
}
@media (max-width: 767px) {
  .page-archive__no-posts {
    padding: 40px 0;
  }
}
.page-archive__no-posts p {
  margin-bottom: calc(20 / var(--base-vw) * 100vw);
  font-size: calc(16 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .page-archive__no-posts p {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
.page-archive__no-posts ul {
  text-align: left;
  max-width: calc(600 / var(--base-vw) * 100vw);
  margin: calc(20 / var(--base-vw) * 100vw) auto;
  padding: calc(20 / var(--base-vw) * 100vw);
  background: #F2F2F2;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .page-archive__no-posts ul {
    max-width: 100%;
    margin: 15px auto;
    padding: 15px;
  }
}
.page-archive__no-posts ul li {
  margin-bottom: calc(8 / var(--base-vw) * 100vw);
  font-size: calc(14 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .page-archive__no-posts ul li {
    margin-bottom: 6px;
    font-size: 13px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(15 / var(--base-vw) * 100vw);
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .pagination {
    gap: 12px;
  }
}
.pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(30 / var(--base-vw) * 100vw);
  height: calc(30 / var(--base-vw) * 100vw);
  color: #000000;
  text-decoration: none;
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-weight: 400;
  transition: all 0.3s ease;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .pagination__arrow {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
}
.pagination__arrow:hover {
  background: #F2F2F2;
}
.pagination__arrow--disabled {
  color: #afafaf;
  cursor: not-allowed;
  opacity: 0.5;
}
.pagination__arrow--disabled:hover {
  background: transparent;
}
.pagination__numbers {
  display: flex;
  align-items: center;
  gap: calc(8 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .pagination__numbers {
    gap: 6px;
  }
}
.pagination__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(30 / var(--base-vw) * 100vw);
  height: calc(30 / var(--base-vw) * 100vw);
  color: #000000;
  text-decoration: none;
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-weight: 400;
  font-family: "Jost", sans-serif;
  transition: all 0.3s ease;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .pagination__number {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }
}
.pagination__number:hover {
  background: #F2F2F2;
}
.pagination__number--active {
  background: #F2F2F2;
  color: #000000;
  font-weight: 500;
}
.pagination__ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(20 / var(--base-vw) * 100vw);
  height: calc(30 / var(--base-vw) * 100vw);
  color: #afafaf;
  font-size: calc(14 / var(--base-vw) * 100vw);
  font-weight: 400;
}
@media (max-width: 767px) {
  .pagination__ellipsis {
    width: 15px;
    height: 25px;
    font-size: 13px;
  }
}

.page-single__header {
  padding: 180px 0 40px;
}
@media (max-width: 767px) {
  .page-single__header {
    padding: 110px 0 20px;
    width: 90%;
    margin: 0 auto;
  }
}
.page-single__header .container {
  width: 90%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 767px) {
  .page-single__header .container {
    width: 95%;
  }
}
@media (max-width: 430px) {
  .page-single__header .container {
    width: 98%;
  }
}
.page-single__header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .page-single__header-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.page-single__header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.page-single__title {
  font-size: calc(40 / var(--base-vw) * 100vw);
  font-weight: 400;
  color: #007bff;
  margin: 0;
  line-height: 1.2;
  font-family: "Jost", sans-serif;
}
@media (max-width: 767px) {
  .page-single__title {
    font-size: 30px;
  }
}
.page-single__tag {
  border: 1px solid #007bff;
  border-radius: 20px;
  padding: 4px 25px;
  font-size: calc(12 / var(--base-vw) * 100vw);
  color: #007bff;
  font-weight: 500;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .page-single__tag {
    padding: 3px 20px;
    font-size: 11px;
  }
}
@media (max-width: 430px) {
  .page-single__tag {
    padding: 2px 15px;
    font-size: 10px;
    margin-left: 8px;
  }
}
.page-single__header-right {
  text-align: right;
}
@media (max-width: 767px) {
  .page-single__header-right {
    position: absolute;
    right: 0;
    top: 0;
  }
}
.page-single__date {
  font-size: 16px;
  color: #afafaf;
  font-weight: 400;
  font-family: "Jost", sans-serif;
}
@media (max-width: 430px) {
  .page-single__date {
    font-size: 13px;
  }
}
.page-single__description {
  font-size: calc(22 / var(--base-vw) * 100vw);
  color: #343a40;
  line-height: 1.6;
  margin: 0 0 10px 0;
}
@media (max-width: 767px) {
  .page-single__description {
    font-size: 20px;
  }
}
.page-single__content {
  width: 90%;
  max-width: 1540px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page-single__content {
    width: 90%;
    margin: auto;
  }
}
.page-single__content .container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid #F2F2F2;
  padding-top: 60px;
}
@media (max-width: 767px) {
  .page-single__content .container {
    width: 95%;
    padding-top: 40px;
  }
}
.page-single__post {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .page-single__post {
    padding-bottom: 60px;
  }
}
.page-single__post-title {
  font-size: calc(32 / var(--base-vw) * 100vw);
  font-weight: 700;
  color: #343a40;
  line-height: 1.4;
  margin: 0 0 40px 0;
  padding: 20px;
  background: #F2F2F2;
  border-radius: 8px;
  position: relative;
}
@media (max-width: 767px) {
  .page-single__post-title {
    font-size: 24px;
    padding: 15px;
    margin-bottom: 30px;
  }
  .page-single__post-title::before {
    left: 15px;
    width: 6px;
    height: 6px;
  }
}
.page-single__post-title::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #124A96;
  border-radius: 50%;
}
.page-single__post-body {
  font-size: calc(18 / var(--base-vw) * 100vw);
  color: #343a40;
  line-height: 1.8;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .page-single__post-body {
    font-size: 16px;
  }
}
.page-single__post-body p {
  margin: 0 0 20px 0;
}
.page-single__post-body p:last-child {
  margin-bottom: 0;
}
.page-single__post-body h1,
.page-single__post-body h2,
.page-single__post-body h3,
.page-single__post-body h4,
.page-single__post-body h5,
.page-single__post-body h6 {
  font-weight: 700;
  margin: 30px 0 15px 0;
  line-height: 1.4;
}
.page-single__post-body h1 {
  font-size: calc(28 / var(--base-vw) * 100vw);
  color: #343a40;
}
@media (max-width: 767px) {
  .page-single__post-body h1 {
    font-size: 22px;
  }
}
.page-single__post-body h2 {
  font-size: calc(24 / var(--base-vw) * 100vw);
  color: #343a40;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .page-single__post-body h2 {
    font-size: 20px;
    padding-left: 18px;
  }
  .page-single__post-body h2::before {
    width: 7px;
    height: 7px;
  }
}
.page-single__post-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #124A96;
  border-radius: 50%;
}
.page-single__post-body h3 {
  font-size: calc(18 / var(--base-vw) * 100vw);
  color: #ffffff;
  background: #124A96;
  padding: 15px 20px;
  margin: 30px -20px 15px -20px;
  border-radius: 0;
}
@media (max-width: 767px) {
  .page-single__post-body h3 {
    font-size: 18px;
    padding: 12px 18px;
    margin: 25px -18px 12px -18px;
  }
}
.page-single__post-body h4 {
  font-size: calc(18 / var(--base-vw) * 100vw);
  color: #007bff;
  background: #d0d0d0;
  padding: 15px 20px;
  margin: 30px -20px 15px -20px;
  border-radius: 0;
}
@media (max-width: 767px) {
  .page-single__post-body h4 {
    font-size: 16px;
  }
}
.page-single__post-body h5 {
  font-size: calc(18 / var(--base-vw) * 100vw);
  color: #343a40;
}
@media (max-width: 767px) {
  .page-single__post-body h5 {
    font-size: 16px;
  }
}
.page-single__post-body h6 {
  font-size: calc(18 / var(--base-vw) * 100vw);
  color: #343a40;
}
@media (max-width: 767px) {
  .page-single__post-body h6 {
    font-size: 13px;
  }
}
.page-single__post-body ul,
.page-single__post-body ol {
  margin: 20px 0;
  padding-left: 20px;
}
@media (max-width: 430px) {
  .page-single__post-body ul,
  .page-single__post-body ol {
    padding-left: 15px;
  }
}
.page-single__post-body ul li,
.page-single__post-body ol li {
  margin-bottom: 10px;
  position: relative;
  font-size: calc(18 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .page-single__post-body ul li,
  .page-single__post-body ol li {
    font-size: 16px;
  }
  .page-single__post-body ul li::before,
  .page-single__post-body ol li::before {
    left: -12px;
    width: 5px;
    height: 5px;
    top: 6px;
  }
}
.page-single__post-body ul li::before,
.page-single__post-body ol li::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 14px;
  width: 4px;
  height: 4px;
  background: #007bff;
  border-radius: 50%;
}
.page-single__post-body blockquote {
  border-left: 4px solid #124A96;
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: #afafaf;
  background: #F2F2F2;
  padding: 20px;
  border-radius: 8px;
}
@media (max-width: 430px) {
  .page-single__post-body blockquote {
    padding: 15px;
  }
}
.page-single__post-body img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-single__post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.page-single__post-body table th,
.page-single__post-body table td {
  padding: 12px;
  border: 1px solid #F2F2F2;
  text-align: left;
}
@media (max-width: 430px) {
  .page-single__post-body table th,
  .page-single__post-body table td {
    padding: 8px;
    font-size: 13px;
  }
}
.page-single__post-body table th {
  background: #F2F2F2;
  font-weight: 700;
}
.page-single__post-body pre {
  background: #F2F2F2;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 20px 0;
}
@media (max-width: 430px) {
  .page-single__post-body pre {
    padding: 15px;
  }
}
.page-single__post-body pre code {
  font-family: monospace;
  font-size: calc(14 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .page-single__post-body pre code {
    font-size: 13px;
  }
}
@media (max-width: 430px) {
  .page-single__post-body pre code {
    font-size: 12px;
  }
}
.page-single__post-body code {
  background: #F2F2F2;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: calc(14 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .page-single__post-body code {
    font-size: 13px;
  }
}
@media (max-width: 430px) {
  .page-single__post-body code {
    font-size: 12px;
  }
}
.page-single__post-body strong,
.page-single__post-body b {
  font-weight: 700;
  color: #343a40;
}
.page-single__post-body em,
.page-single__post-body i {
  font-style: italic;
}
.page-single__post-body a {
  color: #124A96;
  text-decoration: underline;
  transition: color 0.3s ease;
  position: relative;
  cursor: pointer;
  padding-right: 8px;
}
.page-single__post-body a:hover {
  color: #0d3a7a;
}
.page-single__post-body a[href$=".pdf"]::after, .page-single__post-body a[href$=".doc"]::after, .page-single__post-body a[href$=".docx"]::after, .page-single__post-body a[href$=".xls"]::after, .page-single__post-body a[href$=".xlsx"]::after, .page-single__post-body a[href$=".ppt"]::after, .page-single__post-body a[href$=".pptx"]::after, .page-single__post-body a[href*=download]::after, .page-single__post-body a[href*=file]::after {
  content: "";
  margin-left: 8px;
  width: calc(16 / var(--base-vw) * 100vw);
  height: calc(20 / var(--base-vw) * 100vw);
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='20' viewBox='0 0 16 20' fill='none'%3E%3Cpath d='M11.443 9.993V11.008C11.4427 11.1233 11.3968 11.2338 11.3153 11.3153C11.2338 11.3968 11.1233 11.4427 11.008 11.443H4.916C4.80071 11.4427 4.69022 11.3968 4.6087 11.3153C4.52718 11.2338 4.48126 11.1233 4.481 11.008V9.993C4.48126 9.87771 4.52718 9.76722 4.6087 9.6857C4.69022 9.60418 4.80071 9.55826 4.916 9.558H11.008C11.1233 9.55826 11.2338 9.60418 11.3153 9.6857C11.3968 9.76722 11.4427 9.87771 11.443 9.993ZM11.008 12.6H4.916C4.80071 12.6003 4.69022 12.6462 4.6087 12.7277C4.52718 12.8092 4.48126 12.9197 4.481 13.035V14.05C4.48126 14.1653 4.52718 14.2758 4.6087 14.3573C4.69022 14.4388 4.80071 14.4847 4.916 14.485H11.008C11.1233 14.4847 11.2338 14.4388 11.3153 14.3573C11.3968 14.2758 11.4427 14.1653 11.443 14.05V13.038C11.4433 12.9807 11.4322 12.9238 11.4105 12.8708C11.3888 12.8177 11.3568 12.7694 11.3164 12.7288C11.276 12.6881 11.2279 12.6558 11.175 12.6337C11.1221 12.6116 11.0653 12.6001 11.008 12.6ZM14.924 5.779V17.825C14.9237 18.2864 14.7403 18.7288 14.4141 19.0551C14.0878 19.3813 13.6454 19.5647 13.184 19.565H2.74C2.2786 19.5647 1.83618 19.3813 1.50993 19.0551C1.18367 18.7288 1.00026 18.2864 1 17.825V2.74C1.00026 2.2786 1.18367 1.83618 1.50993 1.50993C1.83618 1.18367 2.2786 1.00026 2.74 1L10.14 1C10.6015 1.00057 11.0439 1.18437 11.37 1.511L14.412 4.553C14.5742 4.71414 14.703 4.90577 14.7908 5.11686C14.8787 5.32796 14.924 5.55435 14.924 5.783V5.779ZM10.283 2.879V5.641H13.042L10.283 2.882V2.879ZM13.183 17.822V7.382H9.412C9.29768 7.38226 9.18443 7.35994 9.07875 7.31631C8.97308 7.27268 8.87707 7.20861 8.79623 7.12777C8.71539 7.04693 8.65132 6.95092 8.60769 6.84525C8.56406 6.73957 8.54174 6.62632 8.542 6.512V2.74H2.74V17.825L13.183 17.822Z' fill='%230065EF' stroke='white' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .page-single__post-body a[href$=".pdf"]::after, .page-single__post-body a[href$=".doc"]::after, .page-single__post-body a[href$=".docx"]::after, .page-single__post-body a[href$=".xls"]::after, .page-single__post-body a[href$=".xlsx"]::after, .page-single__post-body a[href$=".ppt"]::after, .page-single__post-body a[href$=".pptx"]::after, .page-single__post-body a[href*=download]::after, .page-single__post-body a[href*=file]::after {
    width: 16px;
    height: 20px;
  }
}
@media (max-width: 430px) {
  .page-single__post-body a[href$=".pdf"]::after, .page-single__post-body a[href$=".doc"]::after, .page-single__post-body a[href$=".docx"]::after, .page-single__post-body a[href$=".xls"]::after, .page-single__post-body a[href$=".xlsx"]::after, .page-single__post-body a[href$=".ppt"]::after, .page-single__post-body a[href$=".pptx"]::after, .page-single__post-body a[href*=download]::after, .page-single__post-body a[href*=file]::after {
    width: 14px;
    height: 18px;
  }
}
.page-single__post-body a[href^=http]::after, .page-single__post-body a[href^=https]::after, .page-single__post-body a[target=_blank]::after, .page-single__post-body a[rel=external]::after {
  content: "";
  margin-left: 8px;
  width: calc(19 / var(--base-vw) * 100vw);
  height: calc(19 / var(--base-vw) * 100vw);
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19' fill='none'%3E%3Cg clip-path='url(%23clip0_243_201)'%3E%3Cpath d='M19 0H6V13H19V0Z' fill='white'/%3E%3Cpath d='M18.5 0.5H6.5V12.5H18.5V0.5Z' stroke='%230065EF'/%3E%3Cpath d='M15 4H2V17H15V4Z' fill='white'/%3E%3Cpath d='M13 6H0V19H13V6Z' fill='white'/%3E%3Cpath d='M12.5 6.5H0.5V18.5H12.5V6.5Z' stroke='%230065EF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_243_201'%3E%3Crect width='19' height='19' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .page-single__post-body a[href^=http]::after, .page-single__post-body a[href^=https]::after, .page-single__post-body a[target=_blank]::after, .page-single__post-body a[rel=external]::after {
    width: 19px;
    height: 19px;
  }
}
@media (max-width: 430px) {
  .page-single__post-body a[href^=http]::after, .page-single__post-body a[href^=https]::after, .page-single__post-body a[target=_blank]::after, .page-single__post-body a[rel=external]::after {
    width: 17px;
    height: 17px;
  }
}
.page-single__post-body hr {
  border: none;
  border-top: 1px solid #F2F2F2;
  margin: 30px 0;
}
.page-single__post-body dl {
  margin: 20px 0;
}
.page-single__post-body dl dt {
  font-weight: 700;
  margin-bottom: 5px;
}
.page-single__post-body dl dd {
  margin-left: 20px;
  margin-bottom: 15px;
}
.page-single__post-body cite {
  font-style: italic;
  color: #afafaf;
  font-size: calc(14 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .page-single__post-body cite {
    font-size: 11px;
  }
}
@media (max-width: 430px) {
  .page-single__post-body cite {
    font-size: 10px;
  }
}
.page-single__post-body del,
.page-single__post-body s {
  text-decoration: line-through;
  color: #afafaf;
}
.page-single__post-body ins,
.page-single__post-body u {
  text-decoration: underline;
}
.page-single__post-body mark {
  background: #ffc107;
  padding: 2px 4px;
  border-radius: 2px;
}
.page-single__post-body small {
  font-size: calc(12 / var(--base-vw) * 100vw);
  color: #afafaf;
}
@media (max-width: 767px) {
  .page-single__post-body small {
    font-size: 11px;
  }
}
@media (max-width: 430px) {
  .page-single__post-body small {
    font-size: 10px;
  }
}
.page-single__post-body big {
  font-size: calc(18 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .page-single__post-body big {
    font-size: 16px;
  }
}
@media (max-width: 430px) {
  .page-single__post-body big {
    font-size: 15px;
  }
}
.page-single__post-body sup,
.page-single__post-body sub {
  font-size: calc(12 / var(--base-vw) * 100vw);
  line-height: 0;
}
@media (max-width: 767px) {
  .page-single__post-body sup,
  .page-single__post-body sub {
    font-size: 11px;
  }
}
@media (max-width: 430px) {
  .page-single__post-body sup,
  .page-single__post-body sub {
    font-size: 10px;
  }
}
.page-single__post-body abbr {
  border-bottom: 1px dotted #afafaf;
  cursor: help;
}
.page-single__post-body var {
  font-style: italic;
  color: #124A96;
}
.page-single__post-body samp {
  font-family: monospace;
  background: #F2F2F2;
  padding: 2px 4px;
  border-radius: 2px;
}
.page-single__post-body kbd {
  background: #F2F2F2;
  border: 1px solid #afafaf;
  border-radius: 3px;
  padding: 2px 6px;
  font-family: monospace;
  font-size: calc(12 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .page-single__post-body kbd {
    font-size: 11px;
  }
}
@media (max-width: 430px) {
  .page-single__post-body kbd {
    font-size: 10px;
  }
}
.page-single__list {
  margin-bottom: 50px;
}
.page-single__list-title {
  font-size: 20px;
  font-weight: 700;
  color: #343a40;
  margin: 0 0 20px 0;
}
.page-single__list-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-single__list-items li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #343a40;
  line-height: 1.6;
}
.page-single__list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #afafaf;
  border-radius: 50%;
}
.page-single__list-items li:last-child {
  margin-bottom: 0;
}
.page-single__links {
  margin-bottom: 50px;
}
.page-single__links-title {
  font-size: 20px;
  font-weight: 700;
  color: #343a40;
  margin: 0 0 20px 0;
}
.page-single__links-content p {
  margin: 0 0 15px 0;
  font-size: 16px;
  color: #343a40;
  line-height: 1.6;
}
.page-single__links-content p:last-child {
  margin-bottom: 0;
}
.page-single__link {
  color: #124A96;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.page-single__link:hover {
  color: #0d3a7a;
}
.page-single__link-icon {
  margin-left: 8px;
  font-size: 14px;
}
.page-single__link.file-link::after {
  content: "";
  margin-left: 8px;
  width: calc(16 / var(--base-vw) * 100vw);
  height: calc(20 / var(--base-vw) * 100vw);
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='20' viewBox='0 0 16 20' fill='none'%3E%3Cpath d='M11.443 9.993V11.008C11.4427 11.1233 11.3968 11.2338 11.3153 11.3153C11.2338 11.3968 11.1233 11.4427 11.008 11.443H4.916C4.80071 11.4427 4.69022 11.3968 4.6087 11.3153C4.52718 11.2338 4.48126 11.1233 4.481 11.008V9.993C4.48126 9.87771 4.52718 9.76722 4.6087 9.6857C4.69022 9.60418 4.80071 9.55826 4.916 9.558H11.008C11.1233 9.55826 11.2338 9.60418 11.3153 9.6857C11.3968 9.76722 11.4427 9.87771 11.443 9.993ZM11.008 12.6H4.916C4.80071 12.6003 4.69022 12.6462 4.6087 12.7277C4.52718 12.8092 4.48126 12.9197 4.481 13.035V14.05C4.48126 14.1653 4.52718 14.2758 4.6087 14.3573C4.69022 14.4388 4.80071 14.4847 4.916 14.485H11.008C11.1233 14.4847 11.2338 14.4388 11.3153 14.3573C11.3968 14.2758 11.4427 14.1653 11.443 14.05V13.038C11.4433 12.9807 11.4322 12.9238 11.4105 12.8708C11.3888 12.8177 11.3568 12.7694 11.3164 12.7288C11.276 12.6881 11.2279 12.6558 11.175 12.6337C11.1221 12.6116 11.0653 12.6001 11.008 12.6ZM14.924 5.779V17.825C14.9237 18.2864 14.7403 18.7288 14.4141 19.0551C14.0878 19.3813 13.6454 19.5647 13.184 19.565H2.74C2.2786 19.5647 1.83618 19.3813 1.50993 19.0551C1.18367 18.7288 1.00026 18.2864 1 17.825V2.74C1.00026 2.2786 1.18367 1.83618 1.50993 1.50993C1.83618 1.18367 2.2786 1.00026 2.74 1L10.14 1C10.6015 1.00057 11.0439 1.18437 11.37 1.511L14.412 4.553C14.5742 4.71414 14.703 4.90577 14.7908 5.11686C14.8787 5.32796 14.924 5.55435 14.924 5.783V5.779ZM10.283 2.879V5.641H13.042L10.283 2.882V2.879ZM13.183 17.822V7.382H9.412C9.29768 7.38226 9.18443 7.35994 9.07875 7.31631C8.97308 7.27268 8.87707 7.20861 8.79623 7.12777C8.71539 7.04693 8.65132 6.95092 8.60769 6.84525C8.56406 6.73957 8.54174 6.62632 8.542 6.512V2.74H2.74V17.825L13.183 17.822Z' fill='%230065EF' stroke='white' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
.page-single__link.external-link::after {
  content: "";
  margin-left: 8px;
  width: calc(19 / var(--base-vw) * 100vw);
  height: calc(19 / var(--base-vw) * 100vw);
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19' fill='none'%3E%3Cg clip-path='url(%23clip0_243_201)'%3E%3Cpath d='M19 0H6V13H19V0Z' fill='white'/%3E%3Cpath d='M18.5 0.5H6.5V12.5H18.5V0.5Z' stroke='%230065EF'/%3E%3Cpath d='M15 4H2V17H15V4Z' fill='white'/%3E%3Cpath d='M13 6H0V19H13V6Z' fill='white'/%3E%3Cpath d='M12.5 6.5H0.5V18.5H12.5V6.5Z' stroke='%230065EF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_243_201'%3E%3Crect width='19' height='19' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
.page-single__button {
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 430px) {
  .page-single__button {
    margin-top: 30px;
  }
}
.page-single__button-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #007bff 0%, #124A96 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(18, 74, 150, 0.3);
}
@media (max-width: 430px) {
  .page-single__button-link {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.page-single__button-link:hover {
  background: linear-gradient(90deg, rgb(0, 110.7, 229.5) 0%, rgb(15.2678571429, 62.7678571429, 127.2321428571) 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18, 74, 150, 0.4);
}
.page-single__button-icon {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 430px) {
  .page-single__button-icon {
    width: 4px;
    height: 4px;
  }
}

.wp-block-buttons {
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .wp-block-buttons {
    margin-top: 40px;
  }
}
@media (max-width: 430px) {
  .wp-block-buttons {
    margin-top: 30px;
  }
}
.wp-block-buttons .wp-block-button .wp-block-button__link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: linear-gradient(129deg, #004cff 0.81%, #002e99 100%);
  color: #ffffff !important;
  padding: 18px 50px 18px 40px !important;
  border-radius: 5px !important;
  text-decoration: none !important;
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-weight: 400 !important;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
  border: none !important;
  cursor: pointer !important;
  min-width: 200px !important;
  justify-content: center !important;
}
@media (max-width: 767px) {
  .wp-block-buttons .wp-block-button .wp-block-button__link {
    font-size: 16px !important;
  }
}
.wp-block-buttons .wp-block-button .wp-block-button__link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8%;
  width: 5px;
  height: 5px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 10;
  margin: auto;
  transition: all 0.3s ease;
}
.wp-block-buttons .wp-block-button .wp-block-button__link::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .wp-block-buttons .wp-block-button .wp-block-button__link::after {
    width: 7px !important;
    height: 7px !important;
  }
}
.wp-block-buttons .wp-block-button .wp-block-button__link:hover::before {
  transform: scale(2.5);
}
.wp-block-buttons .wp-block-button .wp-block-button__link:hover::after {
  opacity: 0.2;
}

[pc-only] {
  display: block;
}

[sp-only] {
  display: none;
}

html, body {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

@media (max-width: 767px) {
  [pc-only] {
    display: none;
  }
  [sp-only] {
    display: block;
  }
}
/*# sourceMappingURL=main.css.map */
