/* common 
******************************************************************************************/
html {
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: 6.6rem;
}

@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 9rem;
  }
}
@media (min-width: 769px) {
  html {
    font-size: 0.7849293564vw;
  }
}
@media (min-width: 1025px) {
  html {
    font-size: clamp(7.5px, 0.5882352941vw, 10px);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
body {
  position: relative;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #333333;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
body.is-noscroll {
  overflow: hidden;
}

.main {
  overflow: hidden;
}

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

a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
.container {
  max-width: 118rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .container {
    width: 88%;
  }
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}
.pc-none {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }
}
.heading {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.title-ja {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  margin-top: 0.8rem;
  color: #003f87;
}

@media screen and (max-width: 768px) {
  .title-ja {
    font-size: 2.4rem;
  }
}
.title-en {
  padding-bottom: 0.7rem;
  border-bottom: 0.1rem solid #1b4c8b;
}

@media screen and (max-width: 768px) {
  .title-en {
    padding-bottom: 0.9rem;
  }
}
/* header
******************************************************************************************/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.6rem;
  background-color: #fff;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0rem 0.5rem 0.6rem rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .header {
    padding: 1.74rem 2.3rem;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 157rem;
  width: 100%;
  margin-inline: auto;
}

.header__logo {
  position: relative;
  width: 38.3rem;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .header__logo {
    width: 43.8rem;
  }
}
.header__right {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.header-nav__list {
  display: flex;
  align-items: center;
  gap: 2.9rem;
}

.header-nav__item {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

.header-nav__item a {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.header-nav__item a::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 92%;
  height: 0.4rem;
  top: 1rem;
  left: 50%;
  translate: -50%;
  background: #1b4c8b;
  transition: top 0.2s;
  z-index: -1;
}

@media (any-hover: hover) {
  .header-nav__item a:hover::before {
    top: -0.5rem;
  }
}
.header-sns {
  margin-left: 4.8rem;
}

@media screen and (max-width: 768px) {
  .header-sns {
    display: none;
  }
}
.header-sns {
  width: 2.7rem;
  transition: opacity 0.4s;
}

@media (any-hover: hover) {
  .header-sns:hover {
    opacity: 0.6;
  }
}
.header-btn {
  position: relative;
  width: 7rem;
  height: 4.4rem;
  margin-left: auto;
  aspect-ratio: 1;
  z-index: 2;
  cursor: pointer;
  transition: background-color 0.4s;
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .header-btn {
    width: 7rem;
  }
}
.header-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  .header-btn {
    display: block;
  }
}
.header-btn span {
  position: absolute;
  width: 7rem;
  height: 0.5rem;
  left: 50%;
  translate: -50%;
  background-color: #003f87;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.header-btn span:nth-child(1) {
  top: 0;
}

.header-btn span:nth-child(2) {
  top: 2.15rem;
}

.header-btn span:nth-child(3) {
  top: 4.2rem;
}

.header-btn span.close:nth-child(1) {
  top: 3.15rem;
  width: 6rem;
  height: 0.7rem;
  transform: rotate(-45deg);
  background-color: #fff;
}

.header-btn span.close:nth-child(2) {
  display: none;
}

.header-btn span.close:nth-child(3) {
  top: 3.15rem;
  width: 6rem;
  height: 0.7rem;
  transform: rotate(45deg);
  background-color: #fff;
}

.drawer {
  position: fixed;
  width: 50rem;
  height: 73.5rem;
  top: 0;
  left: 100%;
  padding: 6.6rem 2.4rem 0;
  transition: left 0.4s;
  z-index: 4;
  background: #003f87;
}

.drawer.slidein {
  left: calc(100% - 50rem);
}

.drawer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow: auto;
}

.drawer__text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
  max-width: 35.8rem;
  width: calc(100% - 3.2rem);
  padding: 8.8rem 8rem 0 0;
}

.drawer-link-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 0;
  z-index: 1;
}

.drawer-link__list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: 100%;
}

.drawer-link__item {
  position: relative;
  width: 100%;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}

.drawer-link__item a {
  display: block;
  padding: 0.5em 0;
  transition: color 0.4s;
}

.drawer-link__item > a:active {
  color: #f07026;
}

@media (any-hover: hover) {
  .drawer-link__item a:hover {
    color: #f07026;
  }
}
.drawer-sns {
  margin-top: 8.5rem;
  margin-left: 1.5rem;
}

.drawer-sns__list {
  display: flex;
  gap: 3.2rem;
}

.drawer-sns__item {
  width: 4rem;
  transition: opacity 0.4s;
  filter: brightness(200);
}

@media (any-hover: hover) {
  .drawer-sns__item:hover {
    opacity: 0.6;
  }
}
.mv {
  margin-top: 7rem;
}

@media screen and (max-width: 768px) {
  .mv {
    margin-top: 9.2rem;
  }
}
.profile {
  position: relative;
  padding: 9.5rem 1.6rem 7.5rem;
}

@media screen and (max-width: 768px) {
  .profile {
    padding: 6rem 0 12.8rem;
  }
}
.profile .title-en {
  width: 17.8rem;
}

@media screen and (max-width: 768px) {
  .profile .title-en {
    width: 20.4rem;
  }
}
.profile::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 49.6rem;
  top: 23.5rem;
  left: 0;
  background: linear-gradient(to right, #f4f4f4 0%, #f4f4f4 50%, transparent 50%, transparent 100%);
}

@media screen and (max-width: 768px) {
  .profile::before {
    top: 21.5rem;
    height: 41.5rem;
    background: linear-gradient(to right, #f4f4f4 0%, #f4f4f4 73%, transparent 73%, transparent 100%);
  }
}
.profile__content {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

@media screen and (max-width: 768px) {
  .profile__content {
    flex-direction: column;
    margin-top: 5.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .profile__content {
    margin-top: 4rem;
  }
}
.profile__image {
  width: 43.711864%;
}

@media screen and (max-width: 768px) {
  .profile__image {
    width: 70%;
  }
}
.profile__image .inner {
  max-width: 36.5rem;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .profile__image .inner {
    max-width: 30rem;
  }
}
.profile__text {
  width: 46.627119%;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 400;
  letter-spacing: 0.025em;
  margin-top: 7.7rem;
}

@media screen and (max-width: 768px) {
  .profile__text span {
    margin-left: 3em;
  }
}
@media screen and (max-width: 768px) {
  .profile__text {
    width: 100%;
    font-size: 2.8rem;
    line-height: 1.5357142857;
    margin-top: 4.1rem;
  }
}
.policy {
  padding-bottom: 8rem;
  background-color: #b4e8f9;
}

@media screen and (max-width: 768px) {
  .policy {
    padding-bottom: 12rem;
  }
}
.policy .title-en {
  width: 14.5rem;
  border-bottom: 0.1rem solid #fff;
}

@media screen and (max-width: 768px) {
  .policy .title-en {
    width: 17.5rem;
  }
}
.policy .title-ja {
  color: #fff;
}

.policy__head {
  padding: 9rem 1.6rem 6rem;
  background-color: #003f87;
  border-radius: 0 0 3.9rem 3.9rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .policy__head {
    max-width: 59rem;
    padding: 9.6rem 1.6rem 6rem;
    margin-inline: auto;
  }
}
.policy__lead--strong {
  font-size: 5rem;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-top: 4.5rem;
  color: #FFE100;
}

@media screen and (max-width: 768px) {
  .policy__lead--strong {
    font-size: 5.4rem;
    line-height: 1.2037037037;
    margin-top: 6.4rem;
  }
}
.policy__lead {
  font-size: 2.8rem;
  line-height: 1.4285714286;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-top: 1.5rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .policy__lead {
    font-size: 3.2rem;
    line-height: 1.46875;
    margin-top: 1.9rem;
  }
}
.policy__list {
  display: flex;
  flex-direction: column;
  gap: 7rem;
  margin-top: 7.5rem;
}

@media screen and (max-width: 768px) {
  .policy__list {
    gap: 10rem;
    margin-top: 5.5rem;
    padding: 0 7%;
  }
}
.policy__item {
  position: relative;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .policy__item {
    flex-direction: column;
    gap: 7rem;
  }
}
.policy__item::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 0;
  left: 0;
  width: calc(50vw + 22%);
  margin-left: calc(50% - 50vw);
  background: #f5f6f7;
  border-radius: 0 3.9rem 3.9rem 0;
}

@media screen and (max-width: 768px) {
  .policy__item::before {
    width: calc(50vw + 54%);
    height: 100%;
  }
}
.policy__item:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .policy__item:nth-child(even) {
    flex-direction: column;
  }
}
.policy__item:nth-child(even)::before {
  right: 0;
  margin-left: auto;
  margin-right: calc(50% - 50vw);
  border-radius: 3.9rem 0 0 3.9rem;
}

.policy__item:nth-child(1) {
  padding: 5rem 0 0;
}

@media screen and (max-width: 768px) {
  .policy__item:nth-child(1) {
    padding: 8.1rem 0 6rem;
  }
}
.policy__item:nth-child(1) .policy__text {
  width: 53.7288135593%;
}

@media screen and (max-width: 768px) {
  .policy__item:nth-child(1) .policy__text {
    width: 98%;
  }
}
.policy__item:nth-child(1)::before {
  height: 53rem;
}

@media screen and (max-width: 768px) {
  .policy__item:nth-child(1)::before {
    height: 100%;
  }
}
.policy__item:nth-child(2) {
  padding: 4.7rem 0 0;
}

@media screen and (max-width: 768px) {
  .policy__item:nth-child(2) {
    padding: 6.4rem 0 1rem;
  }
}
.policy__item:nth-child(2) .policy__text {
  width: 61.983051%;
  padding-top: 1rem;
}

@media screen and (max-width: 768px) {
  .policy__item:nth-child(2) .policy__text {
    width: 98%;
  }
}
.policy__item:nth-child(2)::before {
  height: 51rem;
}

@media screen and (max-width: 768px) {
  .policy__item:nth-child(2)::before {
    height: 100%;
  }
}
.policy__item:nth-child(3) {
  padding: 4.6rem 0 0;
  margin-top: -2rem;
}

@media screen and (max-width: 768px) {
  .policy__item:nth-child(3) {
    padding: 8.4rem 0 7.3rem;
  }
}
.policy__item:nth-child(3) .policy__text {
  width: 53.9830508475%;
}

@media screen and (max-width: 768px) {
  .policy__item:nth-child(3) .policy__text {
    width: 98%;
  }
}
.policy__item:nth-child(3)::before {
  height: 53rem;
}

@media screen and (max-width: 768px) {
  .policy__item:nth-child(3)::before {
    height: 100%;
  }
}
.policy__item:nth-child(4) {
  padding: 4.4rem 0 0;
  margin-top: 2.5rem;
}

@media screen and (max-width: 768px) {
  .policy__item:nth-child(4) {
    padding: 6.1rem 0 8.5rem;
    margin-top: 0.5rem;
  }
}
.policy__item:nth-child(4) .policy__text {
  width: 62.355932%;
  padding-top: 1.2rem;
}

@media screen and (max-width: 768px) {
  .policy__item:nth-child(4) .policy__text {
    width: 98%;
  }
}
.policy__item:nth-child(4)::before {
  height: 42rem;
}

@media screen and (max-width: 768px) {
  .policy__item:nth-child(4)::before {
    height: 100%;
  }
}
.policy__text {
  position: relative;
}

.policy__num {
  display: block;
  width: 7.5rem;
}

@media screen and (max-width: 768px) {
  .policy__num {
    width: 10.5rem;
  }
}
.policy__title {
  font-size: 4rem;
  line-height: 1.325;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 1rem;
  color: #003f88;
  font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
  .policy__title {
    font-size: 5.4rem;
    margin-top: 0.4rem;
  }
}
.policy__title span {
  color: #06B4EA;
}

.policy__title span.tite {
  letter-spacing: -0.05em;
}

.policy__sublist {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3.4rem;
}

@media screen and (max-width: 768px) {
  .policy__sublist {
    gap: 3.2rem;
    margin-top: 3rem;
  }
}
.policy__subitem dt {
  position: relative;
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0;
  padding-left: 1em;
}

@media screen and (max-width: 768px) {
  .policy__subitem dt {
    font-size: 3.2rem;
    line-height: 1.5625;
  }
}
.policy__subitem dt::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 1em;
  aspect-ratio: 1;
  top: 0.8rem;
  left: 0;
  border-radius: 100vmax;
  background: #06B4EA;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .policy__subitem dt::before {
    top: 1.1rem;
  }
}
.policy__subitem dd {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: 400;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .policy__subitem dd {
    font-size: 2.8rem;
    line-height: 1.4285714286;
  }
}
.policy__subitem sub {
  bottom: 0;
}

.policy__image {
  position: relative;
  width: 33.8983050847%;
}

@media screen and (max-width: 768px) {
  .policy__image {
    width: 84.3%;
    margin-inline: auto;
  }
}
.contact {
  padding: 8rem 1.6rem 10rem;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 10.5rem 1.6rem 8.7rem;
  }
}
.contact__link {
  display: grid;
  place-content: center;
  max-width: 80rem;
  aspect-ratio: 800/230;
  margin-inline: auto;
  background-color: #003f87;
  transition: background-color 0.4s;
}

@media screen and (max-width: 768px) {
  .contact__link {
    max-width: 56rem;
    aspect-ratio: 560/240;
  }
}
.contact__link span {
  display: flex;
  align-items: center;
  gap: 3rem;
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .contact__link span {
    font-size: 4.4rem;
    gap: 2rem;
  }
}
.contact__link span::before {
  display: inline-block;
  content: "";
  width: 6rem;
  aspect-ratio: 60/45;
  background: url(../images/mail.webp) no-repeat;
  background-size: contain;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .contact__link span::before {
    width: 6.4rem;
  }
}
@media (any-hover: hover) {
  .contact__link:hover {
    background-color: #0742aa;
  }
}
.footer {
  padding: 6.5rem 1.6rem 1.2rem;
  background-color: #f4f4f4;
  color: #003f87;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 8.8rem 1.6rem 1.2rem;
  }
}
.footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-nav__list {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.footer-nav__item {
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .footer-nav__item {
    font-size: 2.6rem;
  }
}
.footer-nav__item a {
  transition: text-decoration 0.4s;
}

@media (any-hover: hover) {
  .footer-nav__item a:hover {
    text-decoration: underline;
  }
}
.footer__sns {
  width: 2rem;
  margin-left: 4rem;
  transition: opacity 0.4s;
}

@media screen and (max-width: 768px) {
  .footer__sns {
    width: 2.4rem;
  }
}
@media (any-hover: hover) {
  .footer__sns:hover {
    opacity: 0.6;
  }
}
.company-name {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 14.4rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .company-name {
    font-size: 3.2rem;
    margin-top: 20rem;
  }
}
.company-info {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 1.4rem;
}

@media screen and (max-width: 768px) {
  .company-info {
    font-size: 2.6rem;
    line-height: 1.3846153846;
  }
}
.copyright {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 5.5rem;
  text-align: center;
  color: #989b9e;
}

@media screen and (max-width: 768px) {
  .copyright {
    font-size: 1.8rem;
  }
}
.page-top {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 14rem;
  aspect-ratio: 1;
  font-size: 2rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0;
  bottom: 4.5rem;
  right: 6rem;
  background-color: #06b4ea;
  color: #003f87;
  border-radius: 100vmax;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, background-color 0.4s;
}

.page-top:active {
  background-color: #37d3f7;
}

@media screen and (max-width: 768px) {
  .page-top {
    width: 12rem;
    font-size: 1.7rem;
    bottom: 18rem;
    right: 0;
  }
}
.page-top span::before {
  display: block;
  content: "";
  width: 2.9rem;
  aspect-ratio: 29.5/8.16;
  margin: 0 auto 1rem;
  background: #003f87;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

@media screen and (max-width: 768px) {
  .page-top span::before {
    width: 2.5rem;
  }
}
.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (any-hover: hover) {
  .page-top:hover {
    background-color: #37d3f7;
  }
}
.bg.is-show {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(2, 2, 2, 0.4);
  z-index: 2;
}