@font-face {
  font-family: "DIN 2014 Narrow";
  src: url("../assets/fonts/DIN-2014_Narrow-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  color: #00202F;
  background-color: #F8F8F8;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.07em;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.header {
  position: relative;
  top: 0;
  width: 100%;
  background-color: #F8F8F8;
  z-index: 1000;
  padding: 32px 0;
}
@media (max-width: 768px) {
  .header {
    padding: 20px 0;
  }
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1600px) {
  .container {
    max-width: 1440px;
    padding: 0 80px;
  }
}
@media (max-width: 1280px) {
  .container {
    max-width: 1120px;
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 357px;
    padding: 0 8.4px;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.navbar__logo {
  flex-shrink: 0;
}
.navbar__logo a {
  display: block;
  line-height: 0;
}
.navbar__logo img {
  height: 32px;
  width: auto;
}
@media (max-width: 768px) {
  .navbar__logo img {
    height: 24px;
  }
}

.navbar__menu {
  background: #F8F8F8;
  border-radius: 60px;
  box-shadow: 8px 8px 20px rgba(220, 220, 220, 0.8), -8px -8px 20px rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .navbar__menu {
    display: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }
  .navbar__menu.is-active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #F8F8F8;
    padding: 100px 28px;
    z-index: 999;
  }
}

.navbar__list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  padding-inline: 40px;
}
@media (min-width: 769px) {
  .navbar__list:hover .navbar__item {
    opacity: 0.3;
    transition: opacity 0.3s ease;
  }
  .navbar__list:hover .navbar__item:hover {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .navbar__list {
    flex-direction: column;
    gap: 32px;
  }
}

.navbar__item {
  position: relative;
}

.navbar__link {
  display: inline-block;
  padding: 20px 0;
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #00202F;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  white-space: nowrap;
  border: none;
  position: relative;
}
.navbar__link:hover {
  color: #000000;
  background: rgba(255, 255, 255, 0.3);
}
.navbar__link:active {
  background: rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .navbar__link {
    padding: 18px 48px;
    font-size: 18px;
    width: 100%;
    text-align: center;
    background: #F8F8F8;
    border-radius: 40px;
    box-shadow: 6px 6px 12px rgba(220, 220, 220, 0.8), -6px -6px 12px rgba(255, 255, 255, 0.9);
  }
  .navbar__link:hover {
    background: #F8F8F8;
    transform: translateY(-1px);
    box-shadow: 8px 8px 16px rgba(220, 220, 220, 0.9), -8px -8px 16px rgb(255, 255, 255);
  }
}
.navbar__link--contact {
  font-weight: 600;
}
@media (max-width: 768px) {
  .navbar__link--contact {
    background: linear-gradient(145deg, #FBFCFC, #E8E8E8);
    box-shadow: 6px 6px 14px rgba(220, 220, 220, 0.9), -6px -6px 14px rgb(255, 255, 255);
  }
  .navbar__link--contact:hover {
    background: linear-gradient(145deg, #FFFFFF, #E6E6E6);
  }
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 60px;
  height: 60px;
  background: #F8F8F8;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  box-shadow: 8px 8px 20px rgba(220, 220, 220, 0.8), -8px -8px 20px rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .navbar__hamburger {
    display: flex;
  }
}
.navbar__hamburger:hover {
  transform: translateY(-1px);
  box-shadow: 10px 10px 24px rgba(220, 220, 220, 0.9), -10px -10px 24px rgb(255, 255, 255);
}
.navbar__hamburger:active {
  box-shadow: inset 6px 6px 12px rgba(220, 220, 220, 0.8), inset -6px -6px 12px rgba(255, 255, 255, 0.9);
}
.navbar__hamburger-line {
  width: 24px;
  height: 1.6px;
  background-color: #00202F;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.navbar__hamburger.is-active {
  box-shadow: inset 6px 6px 12px rgba(220, 220, 220, 0.8), inset -6px -6px 12px rgba(255, 255, 255, 0.9);
}
.navbar__hamburger.is-active .navbar__hamburger-line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.navbar__hamburger.is-active .navbar__hamburger-line:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
  padding: 80px 0 120px;
  position: relative;
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 0 100px;
  }
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
@media (max-width: 1024px) {
  .hero__content {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
}

.hero__image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .hero__image {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
.hero__image img {
  width: 100%;
  height: auto;
  max-width: 600px;
}
@media (max-width: 768px) {
  .hero__image img {
    max-width: 100%;
  }
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .hero__text {
    gap: 20px;
  }
}

.hero__title {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.67;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 32px;
    line-height: 1.75;
    text-align: center;
  }
}

.hero__title-line {
  display: block;
}

.hero__subtitle {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 15px;
    text-align: center;
  }
}

.hero__scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .hero__scroll {
    bottom: 40px;
  }
}

.scroll_circle_container {
  width: 90px;
  height: 90px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: float 3s ease-in-out infinite;
}
@media (max-width: 768px) {
  .scroll_circle_container {
    width: 80px;
    height: 80px;
  }
}
.scroll_circle_container:hover .scroll_text_circle {
  animation: rotate 8s linear infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.scroll_text_circle {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 10s linear infinite;
}
.scroll_text_circle text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.15em;
  fill: #00202F;
  text-transform: uppercase;
}

.scroll_icon_img {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #00202F;
  z-index: 1;
}
@media (max-width: 768px) {
  .scroll_icon_img {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 768px) {
  .scroll_text_circle text {
    letter-spacing: 0.12em;
  }
}
.about {
  padding: 120px 0;
  background-color: #F8F8F8;
}
@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
@media (max-width: 1024px) {
  .about__content {
    gap: 80px;
  }
}
@media (max-width: 768px) {
  .about__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.about__left {
  width: 100%;
}

.about__image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.about__image-wrapper img {
  height: auto;
  width: 320px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .about__image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    order: 1;
    justify-content: center;
  }
  .about__image-wrapper img {
    max-width: 75%;
    opacity: 0.8;
  }
}

.about__title-overlay {
  position: absolute;
  left: 12.8%;
  top: 52%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: left;
}
@media (max-width: 1200px) {
  .about__title-overlay {
    left: 15%;
  }
}
@media (max-width: 1024px) {
  .about__title-overlay {
    left: 10%;
  }
}
@media (max-width: 768px) {
  .about__title-overlay {
    position: unset;
    left: 24px;
    bottom: 48px;
    top: auto;
    transform: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

.about__subtitle-small {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #00202F;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 12px;
  position: relative;
  left: 12px;
  top: 16px;
}
@media (max-width: 768px) {
  .about__subtitle-small {
    left: 0;
    font-size: 14px;
    margin-bottom: 0;
  }
}

.about__title-main {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 100px;
  font-weight: 800;
  width: max-content;
  color: #00202F;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}
@media (max-width: 1200px) {
  .about__title-main {
    font-size: 64px;
  }
}
@media (max-width: 1024px) {
  .about__title-main {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .about__title-main {
    font-size: 68px;
    line-height: 1;
    font-weight: 900;
  }
}

.about__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .about__right {
    order: 2;
    gap: 32px;
  }
}

.about__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__description p {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .about__description p {
    font-size: 15px;
  }
}

.about__button {
  display: flex;
  align-items: center;
}

.btn-neumorphic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16.45px 60.3px;
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #00202F;
  background: #F8F8F8;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 8px 8px 20px rgba(220, 220, 220, 0.8), -8px -8px 20px rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
}
.btn-neumorphic span {
  position: relative;
  z-index: 2;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-neumorphic::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #00202F;
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.btn-neumorphic:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 10px 10px 24px rgba(220, 220, 220, 0.9), -10px -10px 24px rgb(255, 255, 255);
}
.btn-neumorphic:hover:not(:disabled)::before {
  width: 500px;
  height: 500px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn-neumorphic:hover:not(:disabled) span {
  color: #ffffff;
}
.btn-neumorphic:active:not(:disabled) {
  transform: translateY(0px);
  box-shadow: inset 6px 6px 12px rgba(220, 220, 220, 0.7), inset -6px -6px 12px rgba(255, 255, 255, 0.7);
}
.btn-neumorphic:disabled {
  background: #808080;
  cursor: not-allowed;
  opacity: 1;
  box-shadow: none;
}
.btn-neumorphic:disabled::before {
  background: #808080;
}
.btn-neumorphic:disabled svg {
  opacity: 1;
}
@media (max-width: 768px) {
  .btn-neumorphic {
    width: 56%;
    padding: 18px 48px;
    font-size: 16px;
  }
  .btn-neumorphic::before {
    left: 20px;
  }
}

.services {
  padding: 240px 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #ffffff 100%);
  position: relative;
}
@media (max-width: 768px) {
  .services {
    padding: 80px 0;
  }
}

.services__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .services__content {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .services__content {
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
  }
}

.services__left {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 768px) {
  .services__left {
    gap: 40px;
  }
}

.services__image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.services__image-wrapper img {
  width: 460px;
  height: auto;
  position: relative;
  z-index: 1;
  left: -80px;
}
@media (max-width: 768px) {
  .services__image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .services__image-wrapper img {
    max-width: 75%;
    opacity: 0.8;
    left: 0;
  }
}

.services__title-overlay {
  position: absolute;
  left: -4px;
  top: 55%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: left;
}
@media (max-width: 1200px) {
  .services__title-overlay {
    left: 25%;
  }
}
@media (max-width: 1024px) {
  .services__title-overlay {
    left: 20%;
  }
}
@media (max-width: 768px) {
  .services__title-overlay {
    position: unset;
    left: 24px;
    bottom: 48px;
    transform: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

.services__subtitle-small {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #00202F;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 12px;
  position: relative;
  left: 4px;
  top: 14px;
}
@media (max-width: 768px) {
  .services__subtitle-small {
    left: 0;
    font-size: 14px;
    margin-bottom: 0;
  }
}

.services__title-main {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 100px;
  font-weight: 800;
  color: #00202F;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}
@media (max-width: 1200px) {
  .services__title-main {
    font-size: 64px;
  }
}
@media (max-width: 1024px) {
  .services__title-main {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .services__title-main {
    font-size: 68px;
    line-height: 1;
    font-weight: 700;
  }
}

.services__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .services__description {
    gap: 0;
  }
}
.services__description p {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .services__description p {
    font-size: 15px;
    line-height: 2;
  }
}

.services__button {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .services__button {
    justify-content: flex-start;
  }
}

.services__right {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services__right img {
  width: 502px;
  height: auto;
}
@media (max-width: 768px) {
  .services__right img {
    max-width: 100%;
  }
}

.cards {
  padding: 80px 0;
  background: #F8F8F8;
}
@media (max-width: 768px) {
  .cards {
    padding: 80px 0;
  }
}

.cards__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-inline: 80px;
}
@media (max-width: 1024px) {
  .cards__content {
    gap: 48px;
    padding-inline: 20px;
  }
}
@media (max-width: 768px) {
  .cards__content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-inline: 0;
  }
}

.card {
  background: #F8F8F8;
  border-radius: 40px;
  box-shadow: 20px 20px 40px rgba(230, 230, 230, 0.8), -20px -20px 40px rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  position: relative;
  min-height: 288px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card:hover {
  transform: translateY(-4px);
  background: #00202F;
  box-shadow: 32px 32px 60px rgba(230, 230, 230, 0.9), -32px -32px 60px rgb(255, 255, 255);
}
.card:hover .card__title,
.card:hover .card__subtitle {
  color: #F8F8F8;
}
.card:hover .btn-circle {
  background: #F8F8F8;
}
.card:hover .btn-circle svg path {
  stroke: #00202F;
}
@media (max-width: 1024px) {
  .card {
    padding: 60px;
    min-height: 320px;
  }
}
@media (max-width: 768px) {
  .card {
    padding: 28px;
    min-height: 200px;
  }
}

.card__content {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .card__content {
    gap: 0;
  }
}

.card__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 60px;
  font-weight: 800;
  color: #00202F;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
  margin-bottom: 12px;
}
@media (max-width: 1200px) {
  .card__title {
    font-size: 56px;
  }
}
@media (max-width: 1024px) {
  .card__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .card__title {
    font-size: 40px;
  }
}

.card__subtitle {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #00202F;
  letter-spacing: 0.07em;
  margin: 0;
}
@media (max-width: 1024px) {
  .card__subtitle {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .card__subtitle {
    font-size: 16px;
  }
}

.card__button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .card__button {
    margin-top: 20px;
  }
}

.btn-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #00202F;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: none;
}
.btn-circle svg {
  width: 32px;
  height: 32px;
  stroke-width: 1;
}
.btn-circle svg path {
  transition: stroke 0.3s ease;
}
.btn-circle:hover {
  transform: scale(1.05);
}
.btn-circle:active {
  transform: scale(0.98);
}
@media (max-width: 768px) {
  .btn-circle {
    width: 40px;
    height: 40px;
  }
  .btn-circle svg {
    width: 24px;
    height: 24px;
  }
}

.about-hero {
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
  padding: 80px 0 120px;
  position: relative;
}
@media (max-width: 768px) {
  .about-hero {
    min-height: auto;
    padding: 60px 0 0;
    padding-top: 40px;
  }
}

.services-hero {
  padding-bottom: 0;
}

.about-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .about-hero__content {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .about-hero__content {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 40px;
  }
}

.about-hero__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .about-hero__text {
    order: 2;
    text-align: center;
  }
}

.about-hero__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 100px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 1024px) {
  .about-hero__title {
    font-size: 76px;
  }
}
@media (max-width: 768px) {
  .about-hero__title {
    font-size: 74px;
  }
}

.about-hero__subtitle {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .about-hero__subtitle {
    font-size: 16px;
  }
}

.about-hero__image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  left: -20%;
}
@media (max-width: 768px) {
  .about-hero__image {
    order: 1;
    left: 0;
    justify-content: flex-start;
  }
}
.about-hero__image img {
  width: 363px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .about-hero__image img {
    max-width: 200px;
  }
}

.services-hero__image {
  left: -10%;
}
@media (max-width: 768px) {
  .services-hero__image {
    left: 0;
  }
}
.services-hero__image img {
  width: 100%;
  max-width: 560px;
}
@media (max-width: 768px) {
  .services-hero__image img {
    max-width: 300px;
  }
}

.about-hero__navigation-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  gap: 40px;
}
@media (max-width: 768px) {
  .about-hero__navigation-wrapper {
    flex-direction: column;
    gap: 60px;
    margin-bottom: 40px;
  }
}

.about-hero__scroll {
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .about-hero__scroll {
    display: flex;
    justify-content: center;
  }
}

.about-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
@media (max-width: 1024px) {
  .about-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .about-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 100%;
    margin: 0 auto;
  }
}

.about-nav__button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 38px;
  background: #F8F8F8;
  border-radius: 52px;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 8px 8px 16px rgba(0, 32, 47, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.8), inset 0 0 0 rgba(0, 32, 47, 0);
  white-space: nowrap;
  min-width: 188px;
  position: relative;
  overflow: hidden;
}
.about-nav__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(0, 32, 47) 0%, rgba(0, 32, 47, 0.9) 100%);
  transform: translate(-50%, -50%);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: 0;
}
.about-nav__button:hover {
  box-shadow: 4px 4px 8px rgba(0, 32, 47, 0.15), -4px -4px 8px rgba(255, 255, 255, 0.9), inset 2px 2px 4px rgba(0, 32, 47, 0.1);
}
.about-nav__button:hover::before {
  opacity: 1;
  width: 300px;
  height: 300px;
}
.about-nav__button:hover .about-nav__button-text {
  color: #FFFFFF;
  z-index: 1;
}
.about-nav__button:hover .about-nav__button-icon {
  z-index: 1;
}
.about-nav__button:hover .about-nav__button-icon path {
  stroke: #FFFFFF;
}
@media (max-width: 768px) {
  .about-nav__button {
    padding: 16px 24px;
    width: auto;
    justify-content: center;
    font-size: 16px;
    min-width: 148px;
  }
  .about-nav__button:nth-child(3) {
    grid-column: 1;
  }
}

.about-nav__button-text {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #00202F;
  position: relative;
  z-index: 1;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
  .about-nav__button-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .about-nav__button-text {
    font-size: 14px;
  }
}

.about-nav__button-icon {
  width: 16px;
  height: 18px;
  position: absolute;
  z-index: 1;
  right: 12px;
}
.about-nav__button-icon path {
  stroke: #00202F;
  transition: stroke 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-section {
  padding: 120px 0;
  background: #F8F8F8;
  padding-bottom: 160px;
}
@media (max-width: 768px) {
  .mission-section {
    padding: 80px 0;
  }
}

.mission-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .mission-section__content {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .mission-section__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.mission-section__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .mission-section__left {
    order: 1;
  }
}

.mission-section__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 1024px) {
  .mission-section__title {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .mission-section__title {
    font-size: 60px;
    font-weight: 800;
  }
}

.mission-section__subtitle {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .mission-section__subtitle {
    font-size: 15px;
  }
}

.mission-section__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mission-section__description p {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .mission-section__description p {
    font-size: 15px;
  }
}

.mission-section__right {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .mission-section__right {
    order: 2;
  }
}
.mission-section__right img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .mission-section__right img {
    border-radius: 16px;
  }
}

.company-section {
  padding: 120px 0;
  background: #FFFFFF;
  padding-top: 160px;
}
@media (max-width: 768px) {
  .company-section {
    padding: 80px 0;
  }
}

.company-section__content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .company-section__content {
    grid-template-columns: 250px 1fr;
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .company-section__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.company-section__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.company-section__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 1024px) {
  .company-section__title {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .company-section__title {
    font-size: 60px;
    font-weight: 800;
  }
}

.company-section__subtitle {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .company-section__subtitle {
    font-size: 15px;
  }
}

.company-section__table {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.company-section__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 32, 47, 0.1);
}
.company-section__row:last-child {
  border-bottom: 1px solid rgba(0, 32, 47, 0.1);
}
@media (max-width: 1024px) {
  .company-section__row {
    grid-template-columns: 180px 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .company-section__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }
}

.company-section__label {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #00202F;
}
@media (max-width: 768px) {
  .company-section__label {
    font-size: 15px;
  }
}

.company-section__value {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: #00202F;
}
@media (max-width: 768px) {
  .company-section__value {
    font-size: 15px;
  }
}

.access-section {
  padding: 120px 0;
  background: #FFFFFF;
  padding-bottom: 240px;
}
@media (max-width: 768px) {
  .access-section {
    padding: 40px 0;
    padding-bottom: 80px;
  }
}

.access-section__content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .access-section__content {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .access-section__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.access-section__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .access-section__left {
    order: 1;
  }
}

.access-section__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 1024px) {
  .access-section__title {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .access-section__title {
    font-size: 60px;
    font-weight: 800;
  }
}

.access-section__subtitle {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .access-section__subtitle {
    font-size: 15px;
    margin: 0;
  }
}

.access-section__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 16px;
}

.access-section__address {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.access-section__address p {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .access-section__address p {
    font-size: 15px;
  }
}

.access-section__divider {
  width: 65%;
  max-width: 600px;
  height: 1px;
  background: rgb(0, 32, 47);
}
@media (max-width: 768px) {
  .access-section__divider {
    max-width: 100%;
    width: 100%;
  }
}

.access-section__transit {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.access-section__transit p {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .access-section__transit p {
    font-size: 15px;
  }
}

.access-section__right {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .access-section__right {
    order: 2;
  }
}
.access-section__right img {
  width: 100%;
  min-height: 400px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .access-section__right img {
    border-radius: 16px;
    min-height: 300px;
  }
}

.services-hero__navigation-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  gap: 40px;
}
@media (max-width: 768px) {
  .services-hero__navigation-wrapper {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
  }
}

.services-hero__scroll {
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .services-hero__scroll {
    display: flex;
    justify-content: center;
  }
}

.services-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
@media (max-width: 1024px) {
  .services-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .services-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 100%;
    margin: 0 auto;
  }
}

.services-nav__button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 38px;
  background: #F8F8F8;
  border-radius: 52px;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 8px 8px 16px rgba(0, 32, 47, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.8), inset 0 0 0 rgba(0, 32, 47, 0);
  white-space: nowrap;
  min-width: 188px;
  position: relative;
  overflow: hidden;
}
.services-nav__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(0, 32, 47) 0%, rgba(0, 32, 47, 0.9) 100%);
  transform: translate(-50%, -50%);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: 0;
}
.services-nav__button:hover {
  box-shadow: 4px 4px 8px rgba(0, 32, 47, 0.15), -4px -4px 8px rgba(255, 255, 255, 0.9), inset 2px 2px 4px rgba(0, 32, 47, 0.1);
}
.services-nav__button:hover::before {
  opacity: 1;
  width: 300px;
  height: 300px;
}
.services-nav__button:hover .services-nav__button-text {
  color: #FFFFFF;
  z-index: 1;
}
.services-nav__button:hover .services-nav__button-icon {
  z-index: 1;
}
.services-nav__button:hover .services-nav__button-icon path {
  stroke: #FFFFFF;
}
@media (max-width: 768px) {
  .services-nav__button {
    padding: 16px 24px;
    width: auto;
    justify-content: center;
    font-size: 16px;
  }
}

.services-nav__button-text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #00202F;
  position: relative;
  z-index: 1;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
  .services-nav__button-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .services-nav__button-text {
    font-size: 17px;
  }
}

.services-nav__button-icon {
  width: 16px;
  height: 18px;
  position: relative;
  z-index: 1;
}
.services-nav__button-icon path {
  stroke: #00202F;
  transition: stroke 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.debite-section {
  padding: 240px 0;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .debite-section {
    padding: 80px 0;
    padding-top: 120px;
  }
}

.debite-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .debite-section__content {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .debite-section__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.debite-section__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .debite-section__left {
    order: 1;
    gap: 32px;
  }
}

.debite-section__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.debite-section__subtitle {
  font-family: "Noto Sans JP", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .debite-section__subtitle {
    font-size: 16px;
  }
}

.debite-section__search-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .debite-section__search-icon {
    width: 18px;
    height: 18px;
  }
}

.debite-section__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  width: 284px;
  height: auto;
  margin: 0;
}
@media (max-width: 1024px) {
  .debite-section__title {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .debite-section__title {
    font-size: 48px;
  }
  .debite-section__title svg {
    width: 231px;
  }
}

.debite-section__tagline {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 1024px) {
  .debite-section__tagline {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .debite-section__tagline {
    font-size: 24px;
    padding-top: 20px;
  }
}

.debite-section__tagline-br {
  display: none;
}
@media (max-width: 768px) {
  .debite-section__tagline-br {
    display: block;
  }
}

.debite-section__description {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .debite-section__description {
    gap: 0;
  }
}
.debite-section__description p {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .debite-section__description p {
    font-size: 15px;
    line-height: 2;
  }
}

.debite-section__right {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (max-width: 768px) {
  .debite-section__right {
    order: 2;
  }
}
.debite-section__right img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 448px;
}

.points-section {
  padding: 120px 0;
  padding-bottom: 160px;
  background: #FFFFFF;
  padding-top: 0;
}
@media (max-width: 768px) {
  .points-section {
    padding: 80px 0;
  }
}

.points-section__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .points-section__header {
    margin-bottom: 40px;
  }
}

.points-section__label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
  padding-left: 40px;
  position: relative;
}
.points-section__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 1px;
  background: #00202F;
  transform-origin: left center;
  animation: lineGrowLoopCentered 1s infinite alternate;
}
@media (max-width: 768px) {
  .points-section__label {
    padding-left: 32px;
  }
  .points-section__label::before {
    width: 24px;
  }
}

.points-section__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}

.points-section__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .points-section__cards {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .points-section__cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.point-card {
  background: #FFFFFF;
  padding: 40px;
  padding-inline: 20px;
  padding-right: 30px;
  border: 2px solid #00202F;
  border-bottom-width: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  align-items: center;
  box-shadow: 8px 8px 0px #00202F;
}
@media (max-width: 768px) {
  .point-card {
    padding: 32px;
    gap: 12px;
    box-shadow: 8px 8px 0px #00202F;
  }
}

.point-card__badge {
  background: #00202F;
  color: #FFFFFF;
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0 16px;
  border-radius: 16px;
  display: inline-block;
}
@media (max-width: 768px) {
  .point-card__badge {
    font-size: 11px;
  }
}

.point-card__title {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 1024px) {
  .point-card__title {
    font-size: 22px;
  }
}

.point-card__subtitle {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .point-card__subtitle {
    font-size: 16px;
  }
}

.point-card__divider {
  width: 100%;
  height: 1px;
  background: #00202F;
  margin: 8px 0;
}

.point-card__description {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .point-card__description {
    font-size: 13px;
  }
}

.recruit-hero {
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
  padding: 80px 0 80px;
  position: relative;
}
@media (max-width: 768px) {
  .recruit-hero {
    min-height: auto;
    padding: 40px 0 40px;
  }
}

.recruit-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .recruit-hero__content {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .recruit-hero__content {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
}

.recruit-hero__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .recruit-hero__text {
    order: 2;
    text-align: center;
    position: relative;
    top: -114px;
  }
}

.recruit-hero__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 100px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 1024px) {
  .recruit-hero__title {
    font-size: 72px;
  }
}
@media (max-width: 768px) {
  .recruit-hero__title {
    font-size: 72px;
    font-weight: 900;
  }
}

.recruit-hero__subtitle {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .recruit-hero__subtitle {
    font-size: 16px;
  }
}

.recruit-hero__image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
  max-width: 560px;
}
@media (max-width: 768px) {
  .recruit-hero__image {
    order: 1;
  }
}
.recruit-hero__image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .recruit-hero__image img {
    border-radius: 16px;
    width: 340px;
    height: 200px;
  }
}

.recruit-hero__scroll {
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .recruit-hero__scroll {
    display: flex;
    justify-content: center;
  }
}

.recruit-hero__navigation-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .recruit-hero__navigation-wrapper {
    flex-direction: column;
    gap: 60px;
    margin-top: -40px;
    margin-bottom: 0;
  }
}

.recruit-nav {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 768px) {
  .recruit-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
  }
}

.recruit-nav__button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #F8F8F8;
  border: none;
  border-radius: 100px;
  box-shadow: 8px 8px 16px rgba(0, 32, 47, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.8), inset 0 0 0 rgba(0, 32, 47, 0);
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #00202F;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.recruit-nav__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #00202F;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.recruit-nav__button:hover {
  box-shadow: 4px 4px 8px rgba(0, 32, 47, 0.15), -4px -4px 8px rgba(255, 255, 255, 0.9), inset 2px 2px 4px rgba(0, 32, 47, 0.1);
}
.recruit-nav__button:hover::before {
  opacity: 1;
  width: 300px;
  height: 300px;
}
.recruit-nav__button:hover .recruit-nav__button-text {
  color: #FFFFFF;
  z-index: 1;
}
.recruit-nav__button:hover .recruit-nav__button-icon {
  z-index: 1;
}
.recruit-nav__button:hover .recruit-nav__button-icon path {
  stroke: #FFFFFF;
}
@media (max-width: 1024px) {
  .recruit-nav__button {
    padding: 12px 24px;
    font-size: 16px;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .recruit-nav__button {
    padding: 12px 16px;
    font-size: 15px;
    justify-content: center;
  }
}

.recruit-nav__button-text {
  position: relative;
  z-index: 1;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.recruit-nav__button-icon {
  width: 16px;
  height: 18px;
  position: relative;
  z-index: 1;
}
.recruit-nav__button-icon path {
  stroke: #00202F;
  transition: stroke 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .recruit-nav__button-icon {
    width: 14px;
    height: 16px;
  }
}

.message-section {
  padding: 0;
  background: #FFFFFF;
  padding-top: 160px;
}
@media (max-width: 768px) {
  .message-section {
    padding: 80px 0;
    padding-bottom: 0;
  }
}

.message-section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .message-section__header {
    margin-bottom: 40px;
    gap: 12px;
  }
}

@keyframes lineGrowLoop {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes lineGrowLoopCentered {
  0% {
    transform: translateY(-50%) scaleX(0);
  }
  100% {
    transform: translateY(-50%) scaleX(1);
  }
}
.message-section__line {
  max-width: 44px;
  width: 100%;
  height: 1px;
  background: #00202F;
  transform-origin: left;
  animation: lineGrowLoop 1s infinite alternate;
}
@media (max-width: 768px) {
  .message-section__line {
    max-width: 44px;
  }
}

.message-section__label {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .message-section__label {
    font-size: 13px;
  }
}

.message-section__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .message-section__content {
    gap: 28px;
  }
}

.message-section__main {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 1200px) {
  .message-section__main {
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .message-section__main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.message-section__text {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .message-section__text {
    gap: 24px;
  }
}

.message-section__title-wrapper {
  position: relative;
}

.message-section__title-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}
@media (max-width: 768px) {
  .message-section__title-image--pc {
    display: none;
  }
}
.message-section__title-image--mobile {
  display: none;
}
@media (max-width: 768px) {
  .message-section__title-image--mobile {
    display: block;
  }
}

.message-section__subtitle {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .message-section__subtitle {
    font-size: 24px;
  }
}

.message-section__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .message-section__description {
    gap: 0;
  }
}
.message-section__description p {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .message-section__description p {
    font-size: 13px;
    line-height: 2;
  }
  .message-section__description p br {
    display: none;
  }
}

.message-section__images {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 98px;
}
@media (max-width: 768px) {
  .message-section__images {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
  }
}

.message-section__image {
  overflow: hidden;
}
.message-section__image img {
  width: 100%;
  height: 100%;
  max-width: 240px;
  max-height: 320px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .message-section__image img {
    max-width: 174px;
    max-height: 224px;
    min-height: 190px;
  }
}
@media (max-width: 768px) {
  .message-section__image {
    border-radius: 16px;
  }
}

.message-section__image--left {
  width: 100%;
  height: 340px;
}
@media (max-width: 1200px) {
  .message-section__image--left {
    height: 300px;
  }
}

.message-section__image--right {
  width: 100%;
  height: 420px;
  margin-top: 80px;
}
@media (max-width: 1200px) {
  .message-section__image--right {
    height: 380px;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .message-section__image--right {
    height: 300px;
    display: flex;
    justify-content: end;
  }
}

.job-list-section {
  padding: 160px 0;
  background: #F8F8F8;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .job-list-section {
    padding: 60px 0;
  }
}

.job-list-section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .job-list-section__header {
    margin-bottom: 24px;
    gap: 12px;
  }
}

.job-list-section__line {
  max-width: 44px;
  width: 100%;
  height: 1px;
  background: #00202F;
  transform-origin: left;
  animation: lineGrowLoop 1s infinite alternate;
}
@media (max-width: 768px) {
  .job-list-section__line {
    max-width: 44px;
  }
}

.job-list-section__label {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .job-list-section__label {
    font-size: 16px;
  }
}

.job-list-section__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0 0 80px;
}
@media (max-width: 1024px) {
  .job-list-section__title {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .job-list-section__title {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 40px;
  }
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .job-list {
    gap: 20px;
  }
}

.job-card {
  background: #F8F8F8;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 32, 47, 0.08);
  overflow: hidden;
  display: flex;
  padding: 40px;
}
@media (max-width: 768px) {
  .job-card {
    border-radius: 12px;
    flex-direction: column;
    padding: 28px;
  }
}

.job-card__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  max-width: 348px;
  min-width: 348px;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .job-card__header {
    gap: 16px;
    max-width: 100%;
    min-width: 100%;
  }
}
.job-card__header:hover {
  background: rgba(0, 32, 47, 0.02);
}

.job-card__title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-card__title {
  font-family: "DIN Condensed", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .job-card__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .job-card__title {
    font-size: 32px;
  }
}

.job-card__bullet {
  font-size: 26px;
  margin-right: 6px;
}
@media (max-width: 1440px) {
  .job-card__bullet {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .job-card__bullet {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .job-card__bullet {
    font-size: 18px;
  }
}

.job-card__subtitle {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
  padding-left: 34px;
}
@media (max-width: 768px) {
  .job-card__subtitle {
    font-size: 13px;
    padding-left: 24px;
  }
}

.job-card__toggle {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: #00202F;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .job-card__toggle {
    font-size: 32px;
  }
}

.job-card__content {
  grid-template-columns: 1fr 1fr;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.job-card__content p {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .job-card__content p {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .job-card__content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .job-card__content p {
    margin-bottom: 12px;
  }
  .job-card__content p:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 769px) {
  .job-card__header {
    cursor: default;
  }
  .job-card__header:hover {
    background: transparent;
  }
  .job-card__toggle {
    display: none;
  }
  .job-card__content {
    max-height: none;
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .job-card__header[aria-expanded=true] + .job-card__content {
    max-height: 2000px;
    padding-top: 24px;
  }
}
.contact-hero {
  display: flex;
  align-items: center;
  padding: 80px 0 0;
  background: #FFFFFF;
  position: relative;
}
@media (max-width: 768px) {
  .contact-hero {
    min-height: auto;
    padding: 40px 0 0;
  }
}

.desktop_contact_form_section .container {
  max-width: none;
  width: 92%;
}

.contact-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media (max-width: 1024px) {
  .contact-hero__content {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .contact-hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-hero__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .contact-hero__text {
    order: 2;
    text-align: center;
    position: relative;
    top: -75px;
  }
}

.contact-hero__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 100px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 1024px) {
  .contact-hero__title {
    font-size: 72px;
  }
}
@media (max-width: 768px) {
  .contact-hero__title {
    font-size: 72px;
  }
}

.contact-hero__subtitle {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .contact-hero__subtitle {
    font-size: 16px;
  }
}

.contact-hero__image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
  max-width: 560px;
}
@media (max-width: 768px) {
  .contact-hero__image {
    order: 1;
    border-radius: 16px;
  }
}
.contact-hero__image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .contact-hero__image img {
    border-radius: 16px;
    width: 340px;
    height: 200px;
  }
}

.contact-content {
  padding: 80px 0;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .contact-content {
    padding: 60px 0;
  }
}

.contact-content__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 160px;
  padding-bottom: 160px;
}
@media (max-width: 768px) {
  .contact-content__text {
    padding-top: 8px;
    padding-bottom: 0;
  }
}
.contact-content__text p {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .contact-content__text p {
    display: none;
  }
}

.content__text_sp {
  display: none;
}
@media (max-width: 768px) {
  .content__text_sp {
    display: block;
  }
}
.content__text_sp p {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0;
}

.sp_contact_form_section {
  display: none;
}
@media (max-width: 768px) {
  .sp_contact_form_section {
    display: block;
  }
}

.contact-form-section {
  padding: 80px 0 120px;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .contact-form-section {
    padding: 0 0 80px;
  }
}

.contact-form {
  margin: 0 auto;
  background: #F8F8F8;
  padding: 60px;
  padding-inline: 84px;
  padding-top: 0;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .contact-form {
    padding: 40px;
    padding-inline: 8px;
  }
}

.form-group {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .form-group {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
}

.form-label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #00202F;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .form-label {
    font-size: 14px;
    padding-top: 0;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
  }
}

.form-required {
  display: inline-flex;
  align-items: center;
  background: #00202F;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  padding: 0 8px;
  border-radius: 40px;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .form-required {
    font-size: 10px;
  }
}

.form-hint {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 32, 47, 0.6);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .form-hint {
    font-size: 11px;
    flex-basis: 100%;
  }
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  color: #00202F;
  background: #FFFFFF;
  border: 1px solid rgba(0, 32, 47, 0.15);
  border-radius: 8px;
  padding: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
  transition: all 0.3s ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #00202F;
  box-shadow: 0 0 0 3px rgba(0, 32, 47, 0.1);
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: rgba(0, 32, 47, 0.4);
}
@media (max-width: 768px) {
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 13px;
    padding: 12px;
  }
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300202F' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
  padding-top: 22px;
  padding-bottom: 22px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 180px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .form-textarea {
    min-height: 160px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  grid-column: 2;
}
@media (max-width: 768px) {
  .form-row {
    gap: 16px;
    grid-column: 1;
  }
}

.form-input--half {
  width: 100%;
}

.form-input-wrapper {
  grid-column: 2;
}
@media (max-width: 768px) {
  .form-input-wrapper {
    grid-column: 1;
  }
}

.form-checkbox {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .form-checkbox {
    margin-bottom: 32px;
  }
}
.form-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #00202F;
}
@media (max-width: 768px) {
  .form-checkbox input[type=checkbox] {
    width: 18px;
    height: 18px;
  }
}
.form-checkbox label {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 13px;
  color: #00202F;
  cursor: pointer;
}
@media (max-width: 768px) {
  .form-checkbox label {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .form-checkbox {
    margin: 32px 0;
  }
}

.form-link {
  color: #0066CC;
  text-decoration: underline;
}
.form-link:hover {
  text-decoration: none;
}

.contact_form_submit {
  position: relative;
}
.contact_form_submit span {
  font-size: 14px;
}
@media (max-width: 768px) {
  .contact_form_submit {
    width: 73% !important;
  }
}

.form-submit {
  margin: 0 auto;
  min-width: 228px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.form-submit svg {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 16px;
  z-index: 2;
  transition: transform 0.3s ease;
}
.form-submit:hover svg {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .form-submit {
    min-width: auto;
    width: 100%;
    padding: 19.5px 32px;
  }
  .form-submit svg {
    width: 18px;
    height: 18px;
  }
}

.plan-section {
  padding: 120px 0;
  background: #F8F8F8;
  padding-top: 60px;
}
@media (max-width: 768px) {
  .plan-section {
    padding: 80px 0;
  }
}

.plan-section__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .plan-section__header {
    margin-bottom: 40px;
  }
}

.plan-section__label {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
  padding-left: 40px;
  position: relative;
}
.plan-section__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 1px;
  background: #00202F;
  transform-origin: left center;
  animation: lineGrowLoopCentered 1s infinite alternate;
}
@media (max-width: 768px) {
  .plan-section__label {
    font-size: 13px;
    padding-left: 32px;
  }
  .plan-section__label::before {
    width: 24px;
  }
}

.plan-section__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 1024px) {
  .plan-section__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .plan-section__title {
    font-size: 60px;
    font-weight: 900;
  }
}

.plan-pricing__container {
  background: #F8F8F8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 60px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .plan-pricing__container {
    padding-inline: 16px;
  }
}

.plan-pricing {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}
@media (max-width: 768px) {
  .plan-pricing {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 24px;
  }
}

.plan-pricing__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.plan-pricing__badge {
  background: #00202F;
  color: #FFFFFF;
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 2px 10px;
  border-radius: 0;
  display: flex;
  min-width: 240px;
  justify-content: center;
}
@media (max-width: 768px) {
  .plan-pricing__badge {
    font-size: 13px;
    width: 100%;
    padding: 6px 16px;
  }
}

.plan-pricing__amount {
  font-family: "DIN 2014 Narrow", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: #00202F;
  margin: 0;
}
@media (max-width: 1024px) {
  .plan-pricing__amount {
    font-size: 64px;
  }
}
@media (max-width: 768px) {
  .plan-pricing__amount {
    font-size: 56px;
  }
}

.plan-pricing__currency {
  font-size: 30px;
  font-weight: 900;
  margin-left: 4px;
  font-family: "Yu Gothic", "YuGothic", sans-serif;
}
@media (max-width: 768px) {
  .plan-pricing__currency {
    font-size: 24px;
  }
}

.plan-pricing__divider {
  width: 1px;
  height: 100%;
  background: #00202F;
}
@media (max-width: 768px) {
  .plan-pricing__divider {
    display: none;
  }
}

.plan-pricing__note {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.07em;
  color: #00202F;
  margin-top: 52px;
  text-align: center;
}
@media (max-width: 768px) {
  .plan-pricing__note {
    font-size: 13px;
    text-align: left;
  }
}

.plan-deposit {
  display: grid;
  grid-template-columns: 1fr auto 1.5fr;
  align-items: stretch;
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 40px;
}
@media (max-width: 768px) {
  .plan-deposit {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 24px;
  }
}

.plan-deposit__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.plan-deposit__badge {
  background: #00202F;
  color: #FFFFFF;
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 2px 18px;
  border-radius: 0;
  display: inline-block;
  text-align: center;
}
@media (max-width: 768px) {
  .plan-deposit__badge {
    font-size: 13px;
  }
}

.plan-deposit__amount {
  font-family: "DIN 2014 Narrow", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: #00202F;
  margin: 0;
}
@media (max-width: 1024px) {
  .plan-deposit__amount {
    font-size: 64px;
  }
}
@media (max-width: 768px) {
  .plan-deposit__amount {
    font-size: 56px;
  }
}

.plan-deposit__unit {
  font-size: 30px;
  font-weight: 900;
  margin-left: 4px;
  font-family: "Yu Gothic", "YuGothic", sans-serif;
}
@media (max-width: 768px) {
  .plan-deposit__unit {
    font-size: 24px;
  }
}

.plan-deposit__divider {
  width: 1px;
  height: 100%;
  background: #00202F;
  margin: 0 40px;
}
@media (max-width: 768px) {
  .plan-deposit__divider {
    display: none;
  }
}

.plan-deposit__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-deposit__title {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .plan-deposit__title {
    font-size: 16px;
  }
}

.plan-deposit__example {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .plan-deposit__example {
    font-size: 13px;
    font-weight: 600;
  }
}

.plan-deposit__description {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .plan-deposit__description {
    font-size: 11px;
  }
}

.service-detail-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%);
}
.service-detail-section--alt {
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .service-detail-section {
    padding: 80px 0;
  }
}

.service-detail-section__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0 0 32px;
}
@media (max-width: 1024px) {
  .service-detail-section__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .service-detail-section__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}

.service-detail-section__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
}
.service-detail-section__description p {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .service-detail-section__description p {
    font-size: 15px;
  }
}

.footer {
  padding: 80px 0 40px 0;
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 32, 47, 0.08);
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 32px 0;
  }
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 768px) {
  .footer__content {
    gap: 40px;
  }
}

.footer__logo img {
  height: 40px;
  width: auto;
}
@media (max-width: 768px) {
  .footer__logo img {
    height: 30px;
  }
}

.footer__nav {
  width: 100%;
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1024px) {
  .footer__nav-list {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer__nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
    align-items: start;
  }
}

.footer__nav-item {
  margin: 0;
}

.footer__nav-link {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #00202F;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.footer__nav-link:hover {
  opacity: 0.7;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__privacy-link {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #00202F;
  letter-spacing: 0.07em;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.footer__privacy-link:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .footer__privacy-link {
    font-size: 13px;
  }
}

.footer__copyright p {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #00202F;
  letter-spacing: 0.07em;
  margin: 0;
}
@media (max-width: 768px) {
  .footer__copyright p {
    font-size: 12px;
  }
}

.privacy-hero {
  background-color: #F8F8F8;
  padding: 120px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .privacy-hero {
    padding: 80px 0;
    min-height: unset;
    padding-top: 60px;
  }
}

.privacy-hero__content {
  text-align: start;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .privacy-hero__content {
    text-align: center;
  }
}

.privacy-hero__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 0 0 24px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .privacy-hero__title {
    font-size: 44px;
    margin-bottom: 12px;
  }
}

.privacy-hero__subtitle {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #00202F;
  margin: 0;
}
@media (max-width: 768px) {
  .privacy-hero__subtitle {
    font-size: 16px;
    text-align: center;
  }
}

.privacy-content {
  background-color: #FFFFFF;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .privacy-content {
    padding: 80px 0;
  }
}

.privacy-content__text {
  max-width: 900px;
  margin: 0 auto;
}
.privacy-content__text p {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0 0 32px;
}
@media (max-width: 768px) {
  .privacy-content__text p {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 24px;
  }
}
.privacy-content__text h2 {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 60px 0 24px 0;
}
.privacy-content__text h2:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .privacy-content__text h2 {
    font-size: 20px;
    margin: 48px 0 20px 0;
  }
}
.privacy-content__text h3 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #00202F;
  margin: 32px 0 16px 0;
}
@media (max-width: 768px) {
  .privacy-content__text h3 {
    font-size: 15px;
    margin: 24px 0 12px 0;
  }
}
.privacy-content__text hr {
  border: none;
  border-top: 1px solid rgba(0, 32, 47, 0.15);
  margin: 60px 0;
}
@media (max-width: 768px) {
  .privacy-content__text hr {
    margin: 48px 0;
  }
}
.privacy-content__text ul {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0 0 32px;
  padding-left: 32px;
}
@media (max-width: 768px) {
  .privacy-content__text ul {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 24px;
    padding-left: 24px;
  }
}
.privacy-content__text ul li {
  margin-bottom: 8px;
}

.contact-info {
  padding-left: 8px;
  border-radius: 8px;
  margin: 32px 0;
}
@media (max-width: 768px) {
  .contact-info {
    margin: 24px 0;
  }
}
.contact-info p {
  margin-bottom: 16px;
}
.contact-info p:last-child {
  margin-bottom: 0;
}
.contact-info .contact-info__heading {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact-info .contact-info__heading {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .contact-info .contact-info__email {
    word-break: break-all;
  }
}

@media (max-width: 768px) {
  .contact-content__text_sp p {
    font-size: 16px;
    font-weight: 500;
    font-family: "Yu Gothic", "YuGothic", sans-serif;
  }
}

.privacy-footer {
  margin-top: 80px;
  text-align: right;
}
@media (max-width: 768px) {
  .privacy-footer {
    margin-top: 60px;
    text-align: center;
  }
}
.privacy-footer .privacy-footer__company,
.privacy-footer .privacy-footer__date {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: #00202F;
  margin: 0 0 8px;
}
@media (max-width: 768px) {
  .privacy-footer .privacy-footer__company,
  .privacy-footer .privacy-footer__date {
    font-size: 14px;
  }
}

.mobile-only-br {
  display: none;
}
@media (max-width: 768px) {
  .mobile-only-br {
    display: inline;
  }
}

/*# sourceMappingURL=navbar.css.map */
