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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333333;
  background: #ffffff;
  font-size: 1rem;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

p {
  font-size: 1rem;
  margin-bottom: 0.75em;
  text-align: justify;
  text-justify: inter-ideograph;
  -ms-text-justify: inter-ideograph;
}
@media screen and (max-width: 749px) {
  p {
    font-size: 0.9375rem;
  }
}

a {
  color: #35729b;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 1023px) {
  .br-pc-only {
    display: none;
  }
}

.br-tb {
  display: none;
}
@media screen and (max-width: 1023px) {
  .br-tb {
    display: block;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 479px) {
  .br-sp {
    display: block;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  transition: background 0.4s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 40px 32px;
  padding-inline: 40px;
  width: 100%;
  margin-inline: auto;
  transition: padding-block 0.2s;
}
@media screen and (max-width: 749px) {
  .header__inner {
    padding-block: 24px;
    padding-inline: 20px;
  }
}
.header.is-scrolled .header__inner {
  padding-block: 20px;
  transition: padding-block 0.4s ease;
}
@media screen and (max-width: 749px) {
  .header.is-scrolled .header__inner {
    padding-block: 13px;
  }
}
.header__logo {
  margin: 0;
  height: 48px;
  font-size: 1.5rem;
}
@media screen and (max-width: 749px) {
  .header__logo {
    height: 30px;
  }
}
.header__logo a {
  display: block;
  height: 100%;
}
.header__logo img {
  height: 100%;
  aspect-ratio: 346/100;
  object-fit: contain;
}
.header:has(.nav.sp-show) {
  background: rgb(246, 248, 249);
}

.nav {
  height: 100%;
}
@media screen and (max-width: 749px) {
  .nav {
    position: fixed;
    top: 56px;
    right: -360px;
    width: 60vw;
    max-width: 320px;
    height: calc(100vh - 56px);
    background: #f6f8f9;
    transition: right 0.3s ease;
    z-index: 999;
  }
}
.nav.sp-show {
  right: 0;
  transition: right 0.4s;
}
.nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .nav__list {
    gap: calc(8vw - 56px);
  }
}
@media screen and (max-width: 749px) {
  .nav__list {
    flex-direction: column;
    gap: min(5.5svh, 40px);
    padding: 64px 32px 0;
  }
}
.nav.is-open {
  transform: translateX(0);
}
.nav__item {
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 749px) {
  .nav__item {
    height: auto;
    width: 100%;
    justify-content: center;
  }
}
.nav__item a {
  font-size: 1rem;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #333333;
}
@media screen and (max-width: 749px) {
  .nav__item a {
    font-size: 1.125rem;
  }
}
.nav__item:not(:last-child) a {
  padding: 4px 8px;
  position: relative;
}
.nav__item:not(:last-child) a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -8px;
  height: 2px;
  width: 0;
  background: #333333;
  transition: width 0.3s ease;
}
.nav__item:not(:last-child) a:focus-visible::after {
  width: 100%;
}
@media (any-hover: hover) {
  .nav__item:not(:last-child) a:hover::after {
    width: 100%;
  }
}
.nav__item:last-child a {
  padding: 8px 20px;
  border: 2px solid #333333;
  border-radius: 100vmax;
  margin-left: 8px;
  text-align: center;
  letter-spacing: 0.025em;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 749px) {
  .nav__item:last-child a {
    margin-left: 0;
    width: 100%;
  }
}
.nav__item:last-child a:focus-visible {
  background-color: #333333;
  color: white;
}
@media (any-hover: hover) {
  .nav__item:last-child a:hover {
    background-color: #333333;
    color: white;
    opacity: 1;
  }
}

.hamburger-button {
  display: none;
  width: 28px;
  height: 32px;
  z-index: 1000;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 68px;
  height: 100%;
  background: transparent;
  transition: background 0.4s ease, gap 0.4s ease;
}
@media screen and (max-width: 749px) {
  .hamburger-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
}
.hamburger-button__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 16px;
  margin-top: 4px;
  position: relative;
}
.hamburger-button__inner span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #333333;
  transition: all 0.4s;
}
.hamburger-button__text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: #000;
  line-height: 10px;
  transition: color 0.4s ease;
}
.hamburger-button[data-open=true] {
  background: #35729b;
  gap: 10px;
}
.hamburger-button[data-open=true] .hamburger-button__inner span:nth-child(1) {
  transform: translate(2px, 10px) rotate(225deg);
  transform-origin: center center;
  background-color: white;
  width: 80%;
}
.hamburger-button[data-open=true] .hamburger-button__inner span:nth-child(2) {
  opacity: 0;
}
.hamburger-button[data-open=true] .hamburger-button__inner span:nth-child(3) {
  transform: translate(2px, -4px) rotate(-225deg);
  transform-origin: center center;
  background-color: white;
  width: 80%;
}
.hamburger-button[data-open=true] .hamburger-button__text {
  color: white;
}

.drawer-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.drawer-bg.is-show {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.5s;
}

.js-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s ease, transform 0.5s ease;
}
.js-animation.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.point__header .js-animation {
  transform: translateX(-10px);
}
.point__header .js-animation.is-visible {
  transform: translateX(0);
}

.section {
  padding: 40px;
  overflow: hidden;
}
@media screen and (max-width: 749px) {
  .section {
    padding: 40px 20px 20px;
  }
}
.section__inner {
  max-width: 1120px;
  margin-inline: auto;
}
.section__header {
  margin-block: 40px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 749px) {
  .section__header {
    margin-block: 20px 32px;
    gap: 8px;
  }
}
.section__subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #35729b;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .section__subtitle {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 749px) {
  .section__subtitle {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 479px) {
  .section__subtitle {
    font-size: 1.25rem;
  }
}
.section__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1023px) {
  .section__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 749px) {
  .section__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 479px) {
  .section__title {
    font-size: 1.25rem;
  }
}

.mv {
  display: flex;
  align-items: center;
  position: relative;
  height: calc(var(--vh, 1svh) * 100 - 120px - 40px);
  padding-inline: 40px;
  margin-block: 120px 40px;
}
@media screen and (max-width: 749px) {
  .mv {
    margin-block: 80px 20px;
    padding-inline: 20px;
    height: calc(var(--vh, 1svh) * 100 - 80px - 20px);
  }
}
.mv__inner {
  width: 100%;
  padding-inline: 8.8%;
}
@media screen and (max-width: 749px) {
  .mv__inner {
    padding-inline: 4%;
  }
}
.mv__title {
  width: 92%;
  max-width: 720px;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 749px) {
  .mv__title {
    width: 96%;
  }
}
.mv__title--en {
  width: 100%;
}
.mv__title--jp {
  width: 74%;
  margin-top: 5%;
}
@media screen and (max-width: 749px) {
  .mv__title--jp {
    width: 68%;
  }
}
.mv__scroll {
  position: absolute;
  bottom: 120px;
  right: min(10vw - 76px, 80px);
  display: flex;
  rotate: 90deg;
  width: 174px;
}
@media screen and (max-width: 479px) {
  .mv__scroll {
    bottom: 88px;
    right: 0;
    width: 112px;
  }
}
.mv__scroll--text {
  font-size: 0.9375rem;
  font-family: "Barlow", sans-serif;
  color: white;
  letter-spacing: 0.2em;
  animation: pulse 3s infinite;
  transform: translateY(5px);
}
@media screen and (max-width: 479px) {
  .mv__scroll--text {
    font-size: 0.75rem;
  }
}
.mv__scroll--arrow {
  width: 100px;
  animation: arrowDown 3s infinite;
}
.mv__bg {
  position: absolute;
  inset: 0 40px;
  z-index: -1;
}
@media screen and (max-width: 749px) {
  .mv__bg {
    inset: 0 20px;
  }
}
.mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes pulse {
  0% {
    opacity: 0.4;
  }
  25% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes arrowDown {
  0% {
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: translateX(16px);
  }
  100% {
    opacity: 0;
    transform: translateX(40px);
  }
}
.mission__content {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  position: relative;
}
@media screen and (max-width: 749px) {
  .mission__content {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.mission__text {
  width: 44.6428571429%;
  padding-left: 5%;
}
@media screen and (max-width: 1023px) {
  .mission__text {
    padding-left: 0;
    padding-right: 4%;
  }
}
@media screen and (max-width: 749px) {
  .mission__text {
    width: 80vw;
    padding-right: 5vw;
    margin-left: auto;
  }
}
@media screen and (max-width: 479px) {
  .mission__text {
    padding-right: 20px;
  }
}
.mission__text p {
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (max-width: 749px) {
  .mission__text p {
    font-size: 0.9375rem;
  }
}
.mission__img {
  width: 53.5714285714%;
  position: relative;
  padding-right: 40px;
}
@media screen and (max-width: 1023px) {
  .mission__img {
    padding-right: 20px;
  }
}
@media screen and (max-width: 749px) {
  .mission__img {
    width: 100%;
    padding-right: 5vw;
    display: flex;
    justify-content: right;
  }
}
@media screen and (max-width: 479px) {
  .mission__img {
    padding-right: 20px;
  }
}
.mission__img--main {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 749px) {
  .mission__img--main {
    margin-top: 0;
  }
}
.mission__img--main:after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #d4d7dd;
  opacity: 0.1;
}
.mission__img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  aspect-ratio: 560/320;
}
@media screen and (max-width: 749px) {
  .mission__img--main img {
    width: 74.6666666667vw;
  }
}
.mission__img--sub {
  position: absolute;
  bottom: 160px;
  right: 0;
  width: 71.4285714286%;
  min-width: 300px;
  aspect-ratio: 1/1;
  z-index: -1;
}
@media screen and (max-width: 749px) {
  .mission__img--sub {
    width: 42.6666666667vw;
    min-width: auto;
    bottom: auto;
    top: -100px;
  }
}
.mission__img--sub:after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.7;
}
.mission__img--sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  aspect-ratio: 1/1;
}
.mission__bg {
  position: absolute;
  top: -80px;
  left: -40px;
  z-index: -1;
  width: 104px;
}
@media screen and (max-width: 749px) {
  .mission__bg {
    width: 88px;
    top: 0px;
    left: -20px;
  }
}
.mission__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service {
  position: relative;
}
.service:before {
  position: absolute;
  content: "";
  top: 400px;
  right: -80px;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(0deg, transparent 79px, #ecf0f1 80px), linear-gradient(90deg, transparent 79px, #ecf0f1 80px);
  background-size: 80px 80px;
  transform: translateX(-40px);
  z-index: -2;
}
.service__content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 749px) {
  .service__content {
    flex-direction: column-reverse;
    gap: 32px;
    padding-top: 32px;
  }
}
.service__content:before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw) 8%;
  background-color: #f6f8f9;
  z-index: -1;
}
@media screen and (max-width: 749px) {
  .service__content:before {
    inset: 56px calc(50% - 50vw) -24px;
  }
}
.service__text {
  width: 53.5714285714%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1.8;
  padding-block: 40px calc(40px + 2%);
}
@media screen and (max-width: 749px) {
  .service__text {
    width: 80vw;
    padding-left: 5vw;
    padding-block: 0;
  }
}
@media screen and (max-width: 479px) {
  .service__text {
    padding-left: 20px;
  }
}
.service__text h3 {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 1.25em;
}
@media screen and (max-width: 1023px) {
  .service__text h3 {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 749px) {
  .service__text h3 {
    font-size: 1.078125rem;
    line-height: 1.75;
  }
}
@media screen and (max-width: 479px) {
  .service__text h3 {
    font-size: 1rem;
  }
}
.service__text h3 strong {
  font-size: 1.2em;
  color: #155e8f;
  font-weight: 500;
}
@media screen and (max-width: 479px) {
  .service__text h3 strong {
    font-size: 1.125rem;
  }
}
.service__img {
  width: 44.6428571429%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .service__img {
    padding-right: 20px;
  }
}
@media screen and (max-width: 749px) {
  .service__img {
    width: 100%;
    margin-right: auto;
    padding-left: 5vw;
    display: flex;
    justify-content: left;
  }
}
@media screen and (max-width: 479px) {
  .service__img {
    padding-left: 20px;
  }
}
.service__img--main {
  width: 64%;
  height: 100%;
  margin-left: 80px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .service__img--main {
    margin-left: 8%;
    width: 80%;
    max-width: 280px;
  }
}
@media screen and (max-width: 749px) {
  .service__img--main {
    margin-left: 0;
    width: auto;
    max-width: 100%;
  }
}
.service__img--main:after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #d4d7dd;
  opacity: 0.1;
}
.service__img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  aspect-ratio: 320/420;
}
@media screen and (max-width: 749px) {
  .service__img--main img {
    width: 74.6666666667vw;
    aspect-ratio: 280/160;
  }
}
.service__img--sub {
  position: absolute;
  inset: 0;
  top: -120px;
  right: 0;
  width: 64.2857142857%;
  aspect-ratio: 1/1;
  z-index: -1;
}
@media screen and (max-width: 749px) {
  .service__img--sub {
    width: 42.6666666667vw;
    top: -100px;
  }
}
.service__img--sub:after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.8;
}
.service__img--sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.service__bg {
  position: absolute;
  top: 100%;
  right: -40px;
  z-index: -1;
}
@media screen and (max-width: 749px) {
  .service__bg {
    top: calc(100% + 20px);
    right: -20px;
  }
}
.service__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service__points {
  padding-block: 40px 20px;
}
@media screen and (max-width: 1023px) {
  .service__points {
    padding-block: 0 20px;
  }
}
@media screen and (max-width: 749px) {
  .service__points {
    margin-top: 24px;
    padding-block: 20px 60px;
    padding-inline: 5vw;
    max-width: 600px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 479px) {
  .service__points {
    padding-inline: 20px;
  }
}
.service__points .point {
  padding-block: 60px;
}
@media screen and (max-width: 1023px) {
  .service__points .point {
    padding-block: 40px;
  }
}
.service__points .point__number {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #155e8f;
  margin-bottom: 0.25em;
}
@media screen and (max-width: 749px) {
  .service__points .point__number {
    font-size: 1.25rem;
  }
}
.service__points .point__title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.25em;
}
@media screen and (max-width: 749px) {
  .service__points .point__title {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 479px) {
  .service__points .point__title {
    font-size: 1.125rem;
    letter-spacing: 0.02em;
  }
}
.service__points .point__lead p {
  line-height: 2;
}
@media screen and (max-width: 749px) {
  .service__points .point__lead p {
    line-height: 1.75;
  }
}
.service__points .point--01 .point__header {
  padding-left: 80px;
}
@media screen and (max-width: 1023px) {
  .service__points .point--01 .point__header {
    padding-left: 0;
    max-width: 600px;
  }
}
.service__points .point--01 .point__lead p {
  margin-bottom: 0;
}
.service__points .point--01 .point__services {
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
  padding-inline: 2%;
}
@media screen and (max-width: 1023px) {
  .service__points .point--01 .point__services {
    margin-top: 40px;
    padding-inline: 0;
  }
}
@media screen and (max-width: 749px) {
  .service__points .point--01 .point__services {
    flex-direction: column;
    gap: 32px;
  }
}
.service__points .point--01 .point__services .service-card {
  width: 30%;
  max-width: 320px;
}
@media screen and (max-width: 1023px) {
  .service__points .point--01 .point__services .service-card {
    width: 31%;
  }
}
@media screen and (max-width: 749px) {
  .service__points .point--01 .point__services .service-card {
    width: 80%;
    max-width: 400px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 479px) {
  .service__points .point--01 .point__services .service-card {
    width: 100%;
  }
}
.service__points .point--01 .point__services .service-card__header {
  position: relative;
  aspect-ratio: 320/240;
  padding: 8px;
}
.service__points .point--01 .point__services .service-card__header:before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  z-index: 1;
}
.service__points .point--01 .point__services .service-card__header:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #00417e;
  opacity: 0.5;
  z-index: 1;
}
.service__points .point--01 .point__services .service-card__inner {
  width: 100%;
  height: 100%;
  border: 1px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.service__points .point--01 .point__services .service-card__icon {
  height: 28px;
}
.service__points .point--01 .point__services .service-card__title {
  margin-bottom: 0;
  color: white;
  font-weight: 500;
  font-size: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .service__points .point--01 .point__services .service-card__title {
    font-size: 1.0625rem;
    letter-spacing: 0.01em;
  }
}
@media screen and (max-width: 749px) {
  .service__points .point--01 .point__services .service-card__title {
    font-size: 1.375rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 479px) {
  .service__points .point--01 .point__services .service-card__title {
    font-size: 1.25rem;
  }
}
.service__points .point--01 .point__services .service-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.service__points .point--01 .point__services .service-card__desc {
  margin-top: 20px;
}
.service__points .point--02 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 749px) {
  .service__points .point--02 {
    flex-direction: column;
    gap: 32px;
  }
}
.service__points .point--02 .point__header {
  width: 71.4285714286%;
  padding-left: min(8.8vw, 140px);
}
@media screen and (max-width: 1023px) {
  .service__points .point--02 .point__header {
    padding-left: 8%;
    padding-right: 20px;
  }
}
@media screen and (max-width: 749px) {
  .service__points .point--02 .point__header {
    width: 100%;
    padding-left: 0;
  }
}
.service__points .point--02 .point__img {
  width: 28.5714285714%;
  position: relative;
}
@media screen and (max-width: 749px) {
  .service__points .point--02 .point__img {
    width: 100%;
    display: flex;
    justify-content: right;
  }
}
.service__points .point--02 .point__img--main {
  width: 100%;
  width: 87.5%;
  aspect-ratio: 280/320;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 749px) {
  .service__points .point--02 .point__img--main {
    width: 74.6666666667vw;
    max-width: 440px;
    aspect-ratio: 280/160;
  }
}
.service__points .point--02 .point__img--main:after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #d4d7dd;
  opacity: 0.1;
}
.service__points .point--02 .point__img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.service__points .point--02 .point__img--sub {
  width: 100%;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: -60px;
  right: clamp(-80px, -0.7 * (100vw - 1280px) - 24px, -24px);
  width: 87.5%;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .service__points .point--02 .point__img--sub {
    top: calc(240px - 16vw);
    bottom: auto;
    right: -24px;
  }
}
@media screen and (max-width: 749px) {
  .service__points .point--02 .point__img--sub {
    width: 42.6666666667vw;
    max-width: 240px;
    top: auto;
    bottom: -80px;
    right: -32px;
  }
}
@media screen and (max-width: 479px) {
  .service__points .point--02 .point__img--sub {
    right: -20px;
  }
}
.service__points .point--02 .point__img--sub:after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.8;
}
.service__points .point--02 .point__img--sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

.company {
  background: linear-gradient(135deg, #f6f8f9 20%, #dae0e8 100%);
}
.company__inner {
  position: relative;
}
.company__bg {
  position: absolute;
  top: 180px;
  left: -40px;
}
@media screen and (max-width: 1023px) {
  .company__bg {
    display: none;
  }
}
.company .vision {
  width: 88%;
  max-width: 920px;
  margin-inline: auto;
  display: flex;
  justify-content: space-around;
  background-color: white;
  padding: 56px 3%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .company .vision {
    width: 100%;
    padding-inline: 4%;
  }
}
@media screen and (max-width: 749px) {
  .company .vision {
    width: 100%;
    flex-direction: column;
    gap: 16px;
    padding-block: 24px 40px;
    padding-inline: 8%;
    max-width: 560px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 479px) {
  .company .vision {
    padding-inline: 6%;
  }
}
.company .vision__header {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #35729b;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px 4%;
}
@media screen and (max-width: 1023px) {
  .company .vision__header {
    padding-inline: 0;
    width: 320px;
  }
}
@media screen and (max-width: 749px) {
  .company .vision__header {
    gap: 24px;
    width: 100%;
  }
}
.company .vision__logo {
  height: 36px;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 749px) {
  .company .vision__logo {
    height: 32px;
  }
}
.company .vision__logo img {
  height: 100%;
  padding-right: 12px;
  object-fit: contain;
}
.company .vision__copy {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.company .vision__copy img {
  object-fit: contain;
  width: 200px;
}
@media screen and (max-width: 749px) {
  .company .vision__copy img {
    width: 180px;
  }
}
.company .vision__text {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .company .vision__text {
    font-size: 1.03125rem;
    width: calc(100% - 320px);
    padding-right: 4%;
  }
}
@media screen and (max-width: 749px) {
  .company .vision__text {
    font-size: 0.9375rem;
    line-height: 1.75;
    padding-right: 0;
    width: 100%;
  }
}
.company .info {
  width: 88%;
  max-width: 920px;
  margin: 60px auto;
  background-color: white;
  padding: 64px;
}
@media screen and (max-width: 1023px) {
  .company .info {
    width: 100%;
    padding-inline: 10%;
  }
}
@media screen and (max-width: 749px) {
  .company .info {
    margin-block: 32px;
    padding: 32px 8%;
    max-width: 560px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 479px) {
  .company .info {
    padding-inline: 6%;
  }
}
.company .info__table {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
}
.company .info__row {
  display: flex;
  border-bottom: 1px solid #aaaaaa;
  padding: 16px 0;
}
@media screen and (max-width: 749px) {
  .company .info__row {
    flex-direction: column;
    gap: 4px;
  }
}
.company .info__term {
  width: 30%;
  max-width: 200px;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #155e8f;
}
@media screen and (max-width: 749px) {
  .company .info__term {
    padding-left: 8px;
    justify-content: left;
  }
}
.company .info__desc {
  flex: 1;
  margin: 0;
}
@media screen and (max-width: 749px) {
  .company .info__desc {
    padding-left: 8px;
    font-size: 0.9375rem;
  }
}
.company .info__desc address {
  font-style: normal;
}
.company .info__desc .external-link {
  color: #155e8f;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 0.25em;
  margin-top: 8px;
}
@media screen and (max-width: 749px) {
  .company .info__desc .external-link {
    margin-top: 4px;
  }
}
.company .info__desc .external-link img {
  width: 0.75em;
  height: 0.75em;
  margin-top: 0.125em;
  vertical-align: middle;
}
.company .info__desc .info__map {
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
  position: relative;
  margin-block: 20px 8px;
}
@media screen and (max-width: 749px) {
  .company .info__desc .info__map {
    aspect-ratio: 1/1;
  }
}
.company .info__desc .info__map iframe {
  position: absolute;
  top: -76.9230769231%;
  left: 0;
  width: 100%;
  height: 253.8461538462%;
}

.contact__form {
  background: #f5f7f9;
  max-width: 920px;
  margin-inline: auto;
  margin-bottom: 60px;
  padding: 80px 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 749px) {
  .contact__form {
    padding: 40px 6%;
  }
}
.contact__form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin-inline: auto;
}
@media screen and (max-width: 749px) {
  .contact__form form {
    gap: 8px;
  }
}
.contact__form form dt {
  font-weight: 500;
  margin-bottom: 0.75em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 749px) {
  .contact__form form dt {
    margin-bottom: 0.5em;
  }
}
.contact__form form dt .required-label,
.contact__form form dt .optional-label {
  display: inline-block;
  font-size: 0.85em;
  font-weight: 400;
  margin-left: 16px;
  padding-inline: 12px;
  border-radius: 3px;
  color: #fff;
}
.contact__form form dt .required-label {
  background: #35729b;
}
.contact__form form dt .optional-label {
  background: #a1a1a1;
}
.contact__form form input[type=text],
.contact__form form input[type=email],
.contact__form form input[type=tel],
.contact__form form select,
.contact__form form textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 20px;
  border: 1px solid #d3d7db;
  border-radius: 4px;
  background: #fff;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-bottom: 16px;
  box-sizing: border-box;
  color: #333333;
}
@media screen and (max-width: 749px) {
  .contact__form form input[type=text],
  .contact__form form input[type=email],
  .contact__form form input[type=tel],
  .contact__form form select,
  .contact__form form textarea {
    font-size: 0.875rem;
    padding: 8px 12px;
  }
}
.contact__form form input::placeholder,
.contact__form form textarea::placeholder,
.contact__form form select:invalid {
  color: #acacac;
}
.contact__form form select {
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='none' stroke='%23acacac' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1 1 5 5 9 1' /%3E%3C/svg%3E") no-repeat right 20px center;
  background-size: 12px;
}
.contact__form form textarea {
  min-height: 280px;
  resize: vertical;
}
.contact__form form #form_submit_button {
  appearance: none;
  background: #35729b;
  color: white;
  border: none;
  padding-block: 8px 10px;
  width: 240px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin: 24px auto 0 auto;
  display: block;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .contact__form form #form_submit_button:hover {
    opacity: 0.8;
  }
}
.contact__form form .privacy {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.95em;
  font-size: 0.875rem;
}
.contact__form form .privacy label {
  margin-left: 8px;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.contact__form form .privacy label .external-link {
  color: #155e8f;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 0.25em;
}
.contact__form form .privacy label .external-link img {
  width: 1em;
  height: 1em;
  margin-top: 0.125em;
  vertical-align: middle;
}

.footer {
  background: #37404d;
  color: white;
  padding: 40px;
}
@media screen and (max-width: 749px) {
  .footer {
    padding: 24px 20px;
  }
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
}
@media screen and (max-width: 749px) {
  .footer__logo {
    height: 20px;
  }
}
.footer__logo img {
  height: 100%;
  vertical-align: bottom;
}
.footer__top a {
  color: white;
  margin-block-end: 1rem;
  display: inline-block;
}
.footer__top a:hover, .footer__top a:focus-visible {
  text-decoration: underline;
}
.footer__copyright {
  font-size: 0.9375rem;
  padding-top: 0.25em;
}
@media screen and (max-width: 749px) {
  .footer__copyright {
    font-size: 0.625rem;
  }
}

.page-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 40px;
  height: 100px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 100;
}
@media screen and (max-width: 749px) {
  .page-top {
    right: 0;
    height: 50px;
  }
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.page-top__arrow {
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .page-top:hover {
    opacity: 0.8;
  }
}

.privacy-policy {
  padding: 120px 40px 60px;
}
@media screen and (max-width: 749px) {
  .privacy-policy {
    padding: 80px 20px 40px;
  }
}
.privacy-policy__inner {
  max-width: 800px;
  margin-inline: auto;
  background: #ffffff;
  padding: 64px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 749px) {
  .privacy-policy__inner {
    padding: 32px 24px;
  }
}
.privacy-policy__title {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 749px) {
  .privacy-policy__title {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }
}
.privacy-policy__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 749px) {
  .privacy-policy__content {
    gap: 16px;
  }
}
.privacy-policy__section h3 {
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 0.25em;
  margin-bottom: 0.5em;
  color: #155e8f;
  border-bottom: 1px solid #d3d7db;
}
@media screen and (max-width: 749px) {
  .privacy-policy__section h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
  }
}
.privacy-policy__section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
@media screen and (max-width: 749px) {
  .privacy-policy__section p {
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}
.privacy-policy__section ul {
  list-style: disc;
  margin-left: 1.5em;
  margin-bottom: 16px;
}
.privacy-policy__section ul li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.25em;
}
@media screen and (max-width: 749px) {
  .privacy-policy__section ul li {
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}
.privacy-policy__section address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 749px) {
  .privacy-policy__section address {
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}

.thanks__wrapper {
  margin: 120px auto 0;
  padding-block: 40px 80px;
  min-height: calc(100svh - 120px - 112px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 749px) {
  .thanks__wrapper {
    margin-top: 78px;
    min-height: calc(100svh - 78px - 68px);
  }
}

#thanks {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  padding: 40px;
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
@media screen and (max-width: 749px) {
  #thanks {
    width: 90%;
    padding: 40px 0;
  }
}
#thanks h1 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 749px) {
  #thanks h1 {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }
}
#thanks p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (max-width: 749px) {
  #thanks p {
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 479px) {
  #thanks p {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}
#thanks p:last-of-type {
  margin-top: 40px;
  margin-bottom: 0;
}
@media screen and (max-width: 749px) {
  #thanks p:last-of-type {
    margin-top: 32px;
  }
}
#thanks p:last-of-type a {
  display: inline-block;
  padding: 8px 32px;
  background: #35729b;
  color: white;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  #thanks p:last-of-type a:hover {
    opacity: 0.8;
  }
}/*# sourceMappingURL=style.css.map */