@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Old+Mincho&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  background-image: url(../image/main-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center bottom;
}
@media screen and (max-width: 768px) {
  body {
    background-image: url(../image/main-bg-sp.webp);
  }
}
body.open {
  height: 100vh;
}

body,
a {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

a {
  transition: 0.3s;
  text-decoration: none;
}
a:hover {
  transition: 0.3s;
  opacity: 0.7;
}

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

ul li {
  list-style: none;
}

.inner {
  padding-inline: 4%;
}
.inner--narrow {
  padding-inline: 8.4% 9%;
}
@media screen and (max-width: 1200px) {
  .inner--narrow {
    padding-inline: 4%;
  }
}
.inner--narrow2 {
  padding-inline: 8.4% 11%;
}
@media screen and (max-width: 1200px) {
  .inner--narrow2 {
    padding-inline: 4%;
  }
}

.common-titles__big {
  margin-bottom: 20px;
  color: #005CA2;
  font-size: 76px;
  font-weight: 100;
  line-height: 1;
  letter-spacing: -0.05em;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
@media screen and (max-width: 768px) {
  .common-titles__big {
    font-size: 12.5vw;
    margin-bottom: 15px;
    font-weight: 200;
  }
}
.common-titles__big--thin-blue {
  color: #09CCFA;
}
.common-titles__big--white {
  color: #fff;
}
.common-titles__big.inview {
  opacity: 1;
  transform: translateY(0);
}
.common-titles__small {
  color: #005CA2;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
@media screen and (max-width: 768px) {
  .common-titles__small {
    font-size: 14px;
  }
}
.common-titles__small--thin-blue {
  color: #09CCFA;
}
.common-titles__small--white {
  color: #fff;
}
.common-titles__small.inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.common-text {
  font-weight: 400;
  line-height: 1.75;
}
.common-text01 {
  font-weight: 400;
  font-size: large;
  line-height: 1.75;
}
.common-text--white {
  color: #fff;
}

.common-btn {
  border: 1px solid #C1C1C1;
  border-radius: 32px;
  background: #fff;
  padding: 8px 10px 8px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 75.5px;
       column-gap: 75.5px;
  width: 220px;
  transition: 0.1s;
}
@media screen and (max-width: 599px) {
  .common-btn {
    width: 210px;
    max-height: 58px;
  }
}
.common-btn__left {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
}
.common-btn__title {
  color: #09CCFA;
  font-weight: 600;
}
.common-btn__img img {
  width: auto;
  height: auto;
  max-width: none;
}
.common-btn__right {
  width: 48px;
  aspect-ratio: 1/1;
  height: auto;
  background: #EDF4F7;
  border-radius: 100px;
  position: relative;
  transition: 0.15s;
}
.common-btn__right::after {
  content: "";
  position: absolute;
  left: 51%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 7px;
  background: url(../image/arrow-blue.svg) no-repeat center center/contain;
  transition: 0.25s;
}
.common-btn:hover {
  transition: 0.1s;
  opacity: 1;
  border: 3px solid #09CCFA;
}
.common-btn:hover .common-btn__right {
  background: #09CCFA;
  transition: 0.15s;
}
.common-btn:hover .common-btn__right::after {
  transition: 0.25s;
  left: 65%;
  background: url(../image/arrow-white.svg) no-repeat center center/contain;
}

.header-wrapper {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: #fff;
  width: 92%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 6px;
  z-index: 21;
}
@media screen and (max-width: 768px) {
  .header-wrapper {
    top: 10px;
  }
}
.header-wrapper.open {
  box-shadow: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.3%;
  padding-inline: 3.4% 2%;
}
@media screen and (max-width: 1520px) {
  header {
    padding-block: 20px;
  }
}
@media screen and (max-width: 1200px) {
  header {
    padding-inline: 3%;
  }
}
@media screen and (max-width: 450px) {
  header {
    padding-block: 15px;
  }
}
header .logo {
  flex: 0 0 23%;
  aspect-ratio: 25/3;
  height: auto;
}
@media screen and (max-width: 1520px) {
  header .logo {
    flex: 0 0 20%;
  }
}
@media screen and (max-width: 1200px) {
  header .logo {
    flex: 0 0 30%;
  }
}
@media screen and (max-width: 768px) {
  header .logo {
    flex: 0 0 35%;
  }
}
@media screen and (max-width: 500px) {
  header .logo {
    flex: 0 0 45%;
  }
}
@media screen and (max-width: 450px) {
  header .logo {
    flex: 0 0 60%;
  }
}
header .logo a {
  display: block;
  height: 100%;
}
header .logo a img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  header .logo a .pc {
    display: none;
  }
}
header .logo a .sp {
  display: none;
}
@media screen and (max-width: 1200px) {
  header .logo a .sp {
    display: block;
  }
}
header ul {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: end;
  -moz-column-gap: 4.5%;
       column-gap: 4.5%;
}
@media screen and (max-width: 1200px) {
  header ul {
    display: none;
  }
}
header ul li {
  height: -moz-fit-content;
  height: fit-content;
}
header ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #005CA2;
  font-size: max(0.95vw, 14px);
  font-weight: 500;
  line-height: normal;
}
header ul li a:hover {
  opacity: 1;
  color: #09CCFA;
}
header ul li .change {
  padding: 10px 67px;
  background: rgba(15, 15, 15, 0.15);
  border: 1px solid #fff;
}
@media screen and (max-width: 1520px) {
  header ul li .change {
    padding: 7px 50px;
  }
}
header .toggle-button {
  display: none;
  padding: 10px;
}
@media screen and (max-width: 1200px) {
  header .toggle-button {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  header .toggle-button {
    padding: 5px;
  }
}
header .toggle-button__hamburger {
  position: relative;
  width: 35px;
  height: 13px;
}
@media screen and (max-width: 768px) {
  header .toggle-button__hamburger {
    width: 25px;
    height: 11px;
  }
}
@media screen and (max-width: 500px) {
  header .toggle-button__hamburger {
    width: 20px;
  }
}
header .toggle-button__hamburger span {
  height: 2px;
  background-color: #005CA2;
  position: absolute;
  left: 0;
  right: 0;
  transition: all 0.4s;
}
header .toggle-button__hamburger span:first-child {
  top: 20%;
}
header .toggle-button__hamburger span:last-child {
  bottom: 20%;
}
header .toggle-button.open span {
  transition: all 0.4s;
}
header .toggle-button.open span:first-child {
  top: calc(50% - 1px);
  transform: rotateZ(45deg);
}
header .toggle-button.open span:last-child {
  top: calc(50% - 1px);
  transform: rotateZ(-45deg);
}

.header-menu {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #fff;
  transition: all 0.4s;
  padding-top: 120px;
  padding-left: 4%;
}
@media screen and (max-width: 500px) {
  .header-menu {
    padding-top: 90px;
  }
}
.header-menu li {
  margin-bottom: 55px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .header-menu li {
    margin-bottom: 35px;
  }
}
.header-menu a {
  color: #005CA2;
  font-size: 2.4vw;
}
@media screen and (max-width: 500px) {
  .header-menu a {
    font-weight: 500;
    font-size: 16px;
  }
}
.header-menu a:hover {
  opacity: 1;
  color: #09CCFA;
}
.header-menu.open {
  z-index: 20;
  opacity: 1;
  transition: all 0.4s;
}

.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
}
.black-bg.open {
  opacity: 0.2;
  visibility: visible;
}

.to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 3;
}
.to-top__box {
  width: 48px;
  height: 48px;
  background-color: #005CA2;
  border: 1px solid #FFFFFF;
  border-radius: 100px;
  position: relative;
  transition: 0.2s;
}
.to-top__box img {
  transition: 0.2s;
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg) scaleY(-1);
  transform-origin: center;
  width: 16.6px;
  height: 4.8px;
}
.to-top:hover {
  opacity: 1;
}
.to-top:hover .to-top__box {
  transition: 0.2s;
  background: #09CCFA;
}
.to-top:hover .to-top__box img {
  transition: 0.2s;
  top: 30%;
}

.footer {
  background: #EDF4F7;
}
.footer__top {
  background: #005CA2;
  border-radius: 40px 40px 0 0;
  padding-block: 60px 80px;
}
@media screen and (max-width: 599px) {
  .footer__top {
    padding-block: 40px 60px;
  }
}
.footer__content {
  display: flex;
  -moz-column-gap: 10%;
       column-gap: 10%;
}
@media screen and (min-width: 1521px) {
  .footer__content {
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    row-gap: 40px;
    align-items: start;
  }
}
.footer__right {
  flex: 0 0 70%;
  display: flex;
  align-items: center;
  -moz-column-gap: 8%;
       column-gap: 8%;
}
@media screen and (min-width: 1521px) {
  .footer__right {
    justify-content: right;
  }
}
@media screen and (max-width: 1024px) {
  .footer__right {
    flex: 0 0 67%;
  }
}
@media screen and (max-width: 950px) {
  .footer__right {
    flex-direction: column;
    row-gap: 30px;
    flex-shrink: 1;
  }
}
@media screen and (max-width: 768px) {
  .footer__right {
    align-items: start;
  }
}
.footer__string {
  flex: 0 0 44%;
}
.footer__number {
  margin-top: 15px;
  color: #fff;
  font-size: 2.5vw;
  font-weight: 600;
  line-height: 1.16;
}
@media screen and (max-width: 768px) {
  .footer__number {
    font-size: 4vw;
  }
}
@media screen and (max-width: 599px) {
  .footer__number {
    font-size: 9.5vw;
  }
}
.footer__line {
  height: 100%;
  width: 1px;
  background: #fff;
}
@media screen and (max-width: 950px) {
  .footer__line {
    display: none;
  }
}

.copyright {
  padding-block: 33px 30px;
}
.copyright p {
  color: #005CA2;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.fv {
  background: url(../image/mv.webp) no-repeat center center/cover;
  aspect-ratio: 1.184/1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv {
    aspect-ratio: 0.85/1;
  }
}
.fv::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 0;
  background: #fff;
  width: 100%;
  height: 10%;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .fv::before {
    bottom: -15%;
    height: 15%;
  }
}
.fv__title {
  position: absolute;
  right: 4%;
  top: 30%;
  font-family: "Noto Serif JP", serif;
  color: #005CA2;
  font-size: 2.65vw;
  line-height: 1.63;
  letter-spacing: 0.116em;
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 5.5vw;
    line-height: 1.5;
    top: 23%;
    right: 8%;
  }
  .fv__title .second {
    margin-top: 10px;
    display: inline-block;
  }
}
@media screen and (max-width: 599px) {
  .fv__title {
    font-weight: 500;
  }
}
.fv__title .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .fv__title .sp {
    display: block;
  }
}

.fv__title span.char {
  opacity: 0;
  display: inline-block;
  transform: translateX(-20px);
  animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.message {
  margin-top: -23%;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .message {
    margin-top: -11%;
  }
}
@media screen and (max-width: 768px) {
  .message {
    margin-top: -17%;
  }
}
.message::before {
  content: "";
  position: absolute;
  bottom: 14.5%;
  left: 0;
  background: #fff;
  width: 100%;
  height: auto;
  aspect-ratio: 8/1;
  z-index: -1;
}
@media screen and (max-width: 1880px) {
  .message::before {
    aspect-ratio: 7/1;
  }
}
@media screen and (max-width: 1700px) {
  .message::before {
    aspect-ratio: 6/1;
  }
}
@media screen and (max-width: 1600px) {
  .message::before {
    aspect-ratio: 5.5/1;
  }
}
@media screen and (max-width: 1520px) {
  .message::before {
    aspect-ratio: 5/1;
  }
}
@media screen and (max-width: 1440px) {
  .message::before {
    aspect-ratio: 4.5/1;
    bottom: 13.5%;
  }
}
@media screen and (max-width: 1400px) {
  .message::before {
    aspect-ratio: 4/1;
  }
}
@media screen and (max-width: 1270px) {
  .message::before {
    bottom: 12.5%;
    aspect-ratio: 3.8/1;
  }
}
@media screen and (max-width: 1235px) {
  .message::before {
    aspect-ratio: 3.5/1;
  }
}
@media screen and (max-width: 1200px) {
  .message::before {
    aspect-ratio: 1.55/1;
    bottom: 10.5%;
  }
}
@media screen and (max-width: 1160px) {
  .message::before {
    aspect-ratio: 1.4/1;
  }
}
@media screen and (max-width: 1110px) {
  .message::before {
    aspect-ratio: 1.3/1;
    bottom: 9.5%;
  }
}
@media screen and (max-width: 1024px) {
  .message::before {
    aspect-ratio: 0.93/1;
    bottom: 7.5%;
  }
}
@media screen and (max-width: 950px) {
  .message::before {
    aspect-ratio: 0.87/1;
  }
}
@media screen and (max-width: 900px) {
  .message::before {
    aspect-ratio: 0.83/1;
  }
}
@media screen and (max-width: 850px) {
  .message::before {
    aspect-ratio: 0.8/1;
  }
}
@media screen and (max-width: 820px) {
  .message::before {
    aspect-ratio: 0.75/1;
  }
}
@media screen and (max-width: 768px) {
  .message::before {
    aspect-ratio: 0.64/1;
  }
}
@media screen and (max-width: 660px) {
  .message::before {
    aspect-ratio: 0.56/1;
  }
}
@media screen and (max-width: 500px) {
  .message::before {
    aspect-ratio: 0.48/1;
  }
}
@media screen and (max-width: 450px) {
  .message::before {
    aspect-ratio: 0.46/1;
    bottom: 8%;
  }
}
@media screen and (max-width: 429px) {
  .message::before {
    aspect-ratio: 0.445/1;
  }
}
@media screen and (max-width: 410px) {
  .message::before {
    aspect-ratio: 0.43/1;
  }
}
@media screen and (max-width: 400px) {
  .message::before {
    aspect-ratio: 0.42/1;
  }
}
@media screen and (max-width: 390px) {
  .message::before {
    aspect-ratio: 0.41/1;
  }
}
@media screen and (max-width: 375px) {
  .message::before {
    aspect-ratio: 0.39/1;
  }
}
.message__content {
  background: linear-gradient(to bottom, rgba(0, 92, 162, 0.75), rgb(0, 92, 162));
  border-radius: 20px;
  padding: 85px 5.5% 90px;
}
@media screen and (max-width: 599px) {
  .message__content {
    padding: 40px 4%;
  }
}
.message__top {
  display: flex;
  -moz-column-gap: 2.5%;
       column-gap: 2.5%;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .message__top {
    flex-direction: column;
    row-gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .message__top {
    align-items: normal;
    row-gap: 40px;
  }
}
.message__titles {
  flex: 0 0 71%;
}
.message__titles-first {
  display: flex;
  align-items: end;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .message__titles-first {
    margin-bottom: 10px;
  }
}
.message__img-title {
  flex: 0 0 20%;
}
.message__heading {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-size: 3vw;
  font-weight: 400;
  line-height: 1.666;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .message__heading {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 599px) {
  .message__heading {
    font-weight: 500;
  }
}
.message__heading--change {
  line-height: 120%;
}
.message__human {
  flex: 0 0 26.5%;
}
.message__post {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  letter-spacing: 0.15em;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .message__post {
    justify-content: center;
    -moz-column-gap: 4%;
         column-gap: 4%;
  }
}
@media screen and (max-width: 500px) {
  .message__post {
    justify-content: right;
  }
}
.message__president {
  white-space: nowrap;
}
@media screen and (max-width: 500px) {
  .message__president {
    font-size: 12px;
  }
}
.message__name {
  white-space: nowrap;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
}
@media screen and (max-width: 500px) {
  .message__name {
    font-size: 21px;
  }
}
.message__under {
  margin-top: 30px;
  display: flex;
  align-items: center;
  -moz-column-gap: 8%;
       column-gap: 8%;
}
@media screen and (max-width: 1024px) {
  .message__under {
    flex-direction: column;
    row-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .message__under {
    align-items: normal;
  }
}

.blue-bg {
  background: #EDF4F7;
  padding-block: 240px 80px;
  margin-top: -7%;
}
@media screen and (max-width: 1200px) {
  .blue-bg {
    margin-top: -10%;
  }
}
@media screen and (max-width: 950px) {
  .blue-bg {
    margin-top: -15%;
  }
}
@media screen and (max-width: 768px) {
  .blue-bg {
    padding-top: 200px 60px;
  }
}
@media screen and (max-width: 599px) {
  .blue-bg {
    padding-block: 170px 40px;
    margin-top: -20%;
  }
}
@media screen and (max-width: 450px) {
  .blue-bg {
    margin-top: -28%;
  }
}

.purpose {
  padding-left: 8.4%;
}
@media screen and (max-width: 1200px) {
  .purpose {
    padding-inline: 4%;
  }
}
.purpose__content {
  display: flex;
  -moz-column-gap: 7%;
       column-gap: 7%;
}
@media screen and (max-width: 1200px) {
  .purpose__content {
    flex-direction: column;
    row-gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .purpose__content {
    row-gap: 40px;
  }
}
.purpose__left {
  flex: 0 0 36.5%;
}
.purpose__left .common-text {
  margin-top: 50px;
}
@media screen and (max-width: 599px) {
  .purpose__left .common-text {
    margin-top: 40px;
  }
}
.purpose__img {
  flex: 0 0 56.5%;
}

.marquee-banner {
  margin-block: 60px;
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .marquee-banner {
    margin-block: 35px 45px;
  }
}
.marquee-banner .marquee-inner {
  animation: marquee 20s linear infinite;
  color: #fff;
  font-size: 8.4vw;
  font-weight: 300;
  line-height: 150%;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .marquee-banner .marquee-inner {
    font-size: 23vw;
  }
}
@keyframes marquee {
  0% {
    translate: 0;
  }
  100% {
    translate: calc(-100% - 1rem);
  }
}

.facility__content {
  display: flex;
  -moz-column-gap: 15%;
       column-gap: 15%;
}
@media screen and (max-width: 1024px) {
  .facility__content {
    flex-direction: column;
    row-gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .facility__content {
    row-gap: 40px;
  }
}

@media screen and (max-width: 900px) {
  .facility-imgs__pc {
    display: none;
  }
}

.facility-imgs {
  display: none;
}
@media screen and (max-width: 900px) {
  .facility-imgs {
    display: flex;
    flex-direction: column;
  }
}
.facility-imgs__card1 {
  flex: 0 0 47.4%;
}
.facility-imgs__card2 {
  flex: 0 0 51.6%;
}

.products {
  padding-block: 150px 120px;
  padding-right: 9%;
}
@media screen and (max-width: 900px) {
  .products {
    padding-block: 100px;
  }
}
@media screen and (max-width: 599px) {
  .products {
    padding-block: 60px 70px;
    padding-right: 4%;
  }
}
.products__content {
  display: flex;
  -moz-column-gap: 10%;
       column-gap: 10%;
}
@media screen and (max-width: 1024px) {
  .products__content {
    flex-direction: column-reverse;
    row-gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .products__content {
    row-gap: 40px;
  }
}
.products__left {
  flex: 0 0 68.5%;
}
.products__card {
  border-radius: 0 20px 20px 0;
  background: linear-gradient(to right, #09CCFA, #005CA2);
  padding: 20px 4.5% 20px 6.5%;
  display: flex;
  -moz-column-gap: 5.5%;
       column-gap: 5.5%;
  position: relative;
}
@media screen and (min-width: 1521px) {
  .products__card {
    align-items: center;
  }
}
@media screen and (max-width: 660px) {
  .products__card {
    flex-direction: column;
    row-gap: 30px;
    padding-inline: 9% 6.5%;
    padding-bottom: 35px;
    background: linear-gradient(to bottom right, #09CCFA, #005CA2);
  }
}
.products__card--first {
  margin-bottom: 20px;
}
.products__card:hover {
  transition: 0.1s;
  opacity: 1;
}
.products__card:hover .products__arrow {
  background: #09CCFA;
  transition: 0.15s;
}
.products__card:hover .products__arrow::after {
  transition: 0.25s;
  left: 65%;
  background: url(../image/arrow-white.svg) no-repeat center center/contain;
}
.products__img {
  flex: 0 0 36%;
}
.products__string p {
  color: #fff;
}
.products__subtitle {
  font-weight: 600;
}
.products__flex {
  margin-block: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .products__flex {
    margin-block: 6px 15px;
  }
}
.products__title {
  font-family: "Noto Serif JP", serif;
  font-size: 3vw;
  line-height: 1.1;
}
@media screen and (min-width: 1521px) {
  .products__title {
    font-size: 38px;
  }
}
@media screen and (max-width: 660px) {
  .products__title {
    font-size: 7.5vw;
  }
}
.products__arrow {
  width: 48px;
  aspect-ratio: 1/1;
  height: auto;
  background: #EDF4F7;
  border-radius: 100px;
  transition: 0.15s;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .products__arrow {
    width: 35px;
  }
}
@media screen and (max-width: 660px) {
  .products__arrow {
    width: 48px;
  }
}
@media screen and (max-width: 450px) {
  .products__arrow {
    width: 40px;
  }
}
.products__arrow::after {
  content: "";
  position: absolute;
  left: 51%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 7px;
  background: url(../image/arrow-blue.svg) no-repeat center center/contain;
  transition: 0.25s;
}
@media screen and (max-width: 450px) {
  .products__arrow::after {
    width: 15px;
    height: 5.25;
  }
}
@media screen and (max-width: 1024px) {
  .products__right {
    padding-left: 4%;
  }
}

.access {
  background: #EDF4F7;
  padding-block: 60px 80px;
}
@media screen and (max-width: 768px) {
  .access {
    padding-block: 50px 70px;
  }
}
.access__content {
  display: flex;
  -moz-column-gap: 8%;
       column-gap: 8%;
}
@media screen and (min-width: 1521px) {
  .access__content {
    justify-content: space-between;
  }
}
@media screen and (max-width: 1200px) {
  .access__content {
    flex-direction: column;
    row-gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .access__content {
    row-gap: 50px;
  }
}
.access__left .common-text {
  margin-block: 40px;
}
@media screen and (max-width: 768px) {
  .access__left .common-text {
    margin-block: 35px;
  }
}
.access__right {
  flex: 0 0 69%;
  display: flex;
  -moz-column-gap: 7.5%;
       column-gap: 7.5%;
}
@media screen and (max-width: 1024px) {
  .access__right {
    flex-direction: column;
    row-gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .access__right {
    row-gap: 40px;
  }
}
.access__string {
  flex: 0 0 58.5%;
}
.access__heading {
  margin-bottom: 10px;
  background: #005CA2;
  border-radius: 12px;
  padding-inline: 13px;
  color: #fff;
  font-weight: 600;
  line-height: 1.75;
  width: -moz-fit-content;
  width: fit-content;
}
.access__heading--second {
  margin-top: 40px;
}
.access__imgs {
  flex: 0 0 34%;
}
@media screen and (max-width: 1024px) {
  .access__imgs {
    display: flex;
    -moz-column-gap: 6%;
         column-gap: 6%;
  }
}
@media screen and (max-width: 660px) {
  .access__imgs {
    flex-direction: column;
  }
}
.access__img--first {
  margin-bottom: 20px;
}/*# sourceMappingURL=style.css.map */